/* This file was produced by running the config_h.SH script, which
 * gets its values from uconfig.sh, which is generally produced by
 * running Configure.
 *
 * Feel free to modify any of this as the need arises.  Note, however,
 * that running config_h.SH again will wipe out any changes you've made.
 * For a more permanent change edit uconfig.sh and rerun config_h.SH.
 */

/* Package name      : perl5
 * Source directory  : .
 * Configuration time: Thu Jan  1 00:00:00 GMT 1970
 * Configured by     : root@localhost
 * Target system     : unknown
 */

#ifndef _config_h_
#define _config_h_

/* LOC_SED:
 *	This symbol holds the complete pathname to the sed program.
 */
#define LOC_SED 	""	/**/

/* HAS_ALARM:
 *	This symbol, if defined, indicates that the alarm routine is
 *	available.
 */
/*#define HAS_ALARM		/ **/

/* HAS_CBRT:
 *	This symbol, if defined, indicates that the cbrt() (cube root)
 *	function is available.
 */
/*#define HAS_CBRT	/ **/

/* HAS_CHOWN:
 *	This symbol, if defined, indicates that the chown routine is
 *	available.
 */
/*#define HAS_CHOWN		/ **/

/* HAS_CHROOT:
 *	This symbol, if defined, indicates that the chroot routine is
 *	available.
 */
/*#define HAS_CHROOT		/ **/

/* HAS_CHSIZE:
 *	This symbol, if defined, indicates that the chsize routine is available
 *	to truncate files.  You might need a -lx to get this routine.
 */
/*#define	HAS_CHSIZE		/ **/

/* HAS_CRYPT:
 *	This symbol, if defined, indicates that the crypt routine is available
 *	to encrypt passwords and the like.
 */
/*#define HAS_CRYPT		/ **/

/* HAS_CTERMID:
 *	This symbol, if defined, indicates that the ctermid routine is
 *	available to generate filename for terminal.
 */
/*#define HAS_CTERMID		/ **/

/* HAS_CUSERID:
 *	This symbol, if defined, indicates that the cuserid routine is
 *	available to get character login names.
 */
/*#define HAS_CUSERID		/ **/

/* HAS_DIFFTIME:
 *	This symbol, if defined, indicates that the difftime routine is
 *	available.
 */
/*#define HAS_DIFFTIME		/ **/

/* HAS_DLERROR:
 *	This symbol, if defined, indicates that the dlerror routine is
 *	available to return a string describing the last error that
 *	occurred from a call to dlopen(), dlclose() or dlsym().
 */
/*#define HAS_DLERROR	/ **/

/* HAS_DUP2:
 *	This symbol, if defined, indicates that the dup2 routine is
 *	available to duplicate file descriptors.
 */
/*#define HAS_DUP2	/ **/

/* HAS_FCHMOD:
 *	This symbol, if defined, indicates that the fchmod routine is available
 *	to change mode of opened files.  If unavailable, use chmod().
 */
/*#define HAS_FCHMOD		/ **/

/* HAS_FCHOWN:
 *	This symbol, if defined, indicates that the fchown routine is available
 *	to change ownership of opened files.  If unavailable, use chown().
 */
/*#define HAS_FCHOWN		/ **/

/* HAS_FCNTL:
 *	This symbol, if defined, indicates to the C program that
 *	the fcntl() function exists.
 */
/*#define HAS_FCNTL		/ **/

/* HAS_FGETPOS:
 *	This symbol, if defined, indicates that the fgetpos routine is
 *	available to get the file position indicator, similar to ftell().
 */
/*#define HAS_FGETPOS	/ **/

/* HAS_FLOCK:
 *	This symbol, if defined, indicates that the flock routine is
 *	available to do file locking.
 */
/*#define HAS_FLOCK		/ **/

/* HAS_FORK:
 *	This symbol, if defined, indicates that the fork routine is
 *	available.
 */
#define HAS_FORK		/**/

/* HAS_FSETPOS:
 *	This symbol, if defined, indicates that the fsetpos routine is
 *	available to set the file position indicator, similar to fseek().
 */
/*#define HAS_FSETPOS	/ **/

/* HAS_GETTIMEOFDAY:
 *	This symbol, if defined, indicates that the gettimeofday() system
 *	call is available for a sub-second accuracy clock. Usually, the file
 *	<sys/resource.h> needs to be included (see I_SYS_RESOURCE).
 *	The type "Timeval" should be used to refer to "struct timeval".
 */
/*#define HAS_GETTIMEOFDAY	/ **/
#ifdef HAS_GETTIMEOFDAY
#define Timeval struct timeval	/* Structure used by gettimeofday() */
#endif

/* HAS_GETGROUPS:
 *	This symbol, if defined, indicates that the getgroups() routine is
 *	available to get the list of process groups.  If unavailable, multiple
 *	groups are probably not supported.
 */
/*#define HAS_GETGROUPS		/ **/

/* HAS_GETLOGIN:
 *	This symbol, if defined, indicates that the getlogin routine is
 *	available to get the login name.
 */
/*#define HAS_GETLOGIN		/ **/

/* HAS_GETPGID:
 *	This symbol, if defined, indicates to the C program that
 *	the getpgid(pid) function is available to get the
 *	process group id.
 */
/*#define HAS_GETPGID		/ **/

/* HAS_GETPGRP2:
 *	This symbol, if defined, indicates that the getpgrp2() (as in DG/UX)
 *	routine is available to get the current process group.
 */
/*#define HAS_GETPGRP2		/ **/

/* HAS_GETPPID:
 *	This symbol, if defined, indicates that the getppid routine is
 *	available to get the parent process ID.
 */
/*#define HAS_GETPPID		/ **/

/* HAS_GETPRIORITY:
 *	This symbol, if defined, indicates that the getpriority routine is
 *	available to get a process's priority.
 */
/*#define HAS_GETPRIORITY		/ **/

/* HAS_INET_ATON:
 *	This symbol, if defined, indicates to the C program that the
 *	inet_aton() function is available to parse IP address "dotted-quad"
 *	strings.
 */
/*#define HAS_INET_ATON		/ **/

/* HAS_KILLPG:
 *	This symbol, if defined, indicates that the killpg routine is available
 *	to kill process groups.  If unavailable, you probably should use kill
 *	with a negative process number.
 */
/*#define HAS_KILLPG	/ **/

/* HAS_LINK:
 *	This symbol, if defined, indicates that the link routine is
 *	available to create hard links.
 */
/*#define HAS_LINK	/ **/

/* HAS_LOCALECONV:
 *	This symbol, if defined, indicates that the localeconv routine is
 *	available for numeric and monetary formatting conventions.
 */
/*#define HAS_LOCALECONV	/ **/

/* HAS_LOCKF:
 *	This symbol, if defined, indicates that the lockf routine is
 *	available to do file locking.
 */
/*#define HAS_LOCKF		/ **/

/* HAS_LSTAT:
 *	This symbol, if defined, indicates that the lstat routine is
 *	available to do file stats on symbolic links.
 */
/*#define HAS_LSTAT		/ **/

/* HAS_MBLEN:
 *	This symbol, if defined, indicates that the mblen routine is available
 *	to find the number of bytes in a multibyte character.
 */
/*#define HAS_MBLEN		/ **/

/* HAS_MBSTOWCS:
 *	This symbol, if defined, indicates that the mbstowcs routine is
 *	available to convert a multibyte string into a wide character string.
 */
/*#define	HAS_MBSTOWCS		/ **/

/* HAS_MBTOWC:
 *	This symbol, if defined, indicates that the mbtowc routine is available
 *	to convert a multibyte to a wide character.
 */
/*#define HAS_MBTOWC		/ **/

/* HAS_MKDIR:
 *	This symbol, if defined, indicates that the mkdir routine is available
 *	to create directories.  Otherwise you should fork off a new process to
 *	exec /bin/mkdir.
 */
/*#define HAS_MKDIR		/ **/

/* HAS_MKFIFO:
 *	This symbol, if defined, indicates that the mkfifo routine is
 *	available to create FIFOs. Otherwise, mknod should be able to
 *	do it for you. However, if mkfifo is there, mknod might require
 *	super-user privileges which mkfifo will not.
 */
/*#define HAS_MKFIFO		/ **/

/* HAS_MKTIME:
 *	This symbol, if defined, indicates that the mktime routine is
 *	available.
 */
/*#define HAS_MKTIME		/ **/

/* HAS_MSG:
 *	This symbol, if defined, indicates that the entire msg*(2) library is
 *	supported (IPC mechanism based on message queues).
 */
/*#define HAS_MSG		/ **/

/* HAS_MSYNC:
 *	This symbol, if defined, indicates that the msync system call is
 *	available to synchronize a mapped file.
 */
/*#define HAS_MSYNC		/ **/

/* HAS_MUNMAP:
 *	This symbol, if defined, indicates that the munmap system call is
 *	available to unmap a region, usually mapped by mmap().
 */
/*#define HAS_MUNMAP		/ **/

/* HAS_NICE:
 *	This symbol, if defined, indicates that the nice routine is
 *	available.
 */
/*#define HAS_NICE		/ **/

/* HAS_PATHCONF:
 *	This symbol, if defined, indicates that pathconf() is available
 *	to determine file-system related limits and options associated
 *	with a given filename.
 */
/* HAS_FPATHCONF:
 *	This symbol, if defined, indicates that pathconf() is available
 *	to determine file-system related limits and options associated
 *	with a given open file descriptor.
 */
/*#define HAS_PATHCONF		/ **/
/*#define HAS_FPATHCONF		/ **/

/* HAS_PAUSE:
 *	This symbol, if defined, indicates that the pause routine is
 *	available to suspend a process until a signal is received.
 */
/*#define HAS_PAUSE		/ **/

/* HAS_PIPE:
 *	This symbol, if defined, indicates that the pipe routine is
 *	available to create an inter-process channel.
 */
/*#define HAS_PIPE		/ **/

/* HAS_POLL:
 *	This symbol, if defined, indicates that the poll routine is
 *	available to poll active file descriptors.  Please check I_POLL and
 *	I_SYS_POLL to know which header should be included as well.
 */
/*#define HAS_POLL		/ **/

/* HAS_READDIR:
 *	This symbol, if defined, indicates that the readdir routine is
 *	available to read directory entries. You may have to include
 *	<dirent.h>. See I_DIRENT.
 */
#define HAS_READDIR		/**/

/* HAS_SEEKDIR:
 *	This symbol, if defined, indicates that the seekdir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_SEEKDIR		/ **/

/* HAS_TELLDIR:
 *	This symbol, if defined, indicates that the telldir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_TELLDIR		/ **/

/* HAS_REWINDDIR:
 *	This symbol, if defined, indicates that the rewinddir routine is
 *	available. You may have to include <dirent.h>. See I_DIRENT.
 */
/*#define HAS_REWINDDIR		/ **/

/* HAS_READLINK:
 *	This symbol, if defined, indicates that the readlink routine is
 *	available to read the value of a symbolic link.
 */
/*#define HAS_READLINK		/ **/

/* HAS_REGCOMP:
 *	This symbol, if defined, indicates that the regcomp() routine is
 *	available to do some regular pattern matching (usually on POSIX.2
 *	conforming systems).
 */
#define HAS_REGCOMP		/* POSIX.2 */

/* HAS_RENAME:
 *	This symbol, if defined, indicates that the rename routine is available
 *	to rename files.  Otherwise you should do the unlink(), link(), unlink()
 *	trick.
 */
#define HAS_RENAME	/**/

/* HAS_RMDIR:
 *	This symbol, if defined, indicates that the rmdir routine is
 *	available to remove directories. Otherwise you should fork off a
 *	new process to exec /bin/rmdir.
 */
/*#define HAS_RMDIR		/ **/

/* HAS_SELECT:
 *	This symbol, if defined, indicates that the select routine is
 *	available to select active file descriptors. If the timeout field
 *	is used, <sys/time.h> may need to be included.
 */
/*#define HAS_SELECT	/ **/

/* HAS_SEM:
 *	This symbol, if defined, indicates that the entire sem*(2) library is
 *	supported.
 */
/*#define HAS_SEM		/ **/

/* HAS_SETEGID:
 *	This symbol, if defined, indicates that the setegid routine is available
 *	to change the effective gid of the current program.
 */
/*#define HAS_SETEGID		/ **/

/* HAS_SETEUID:
 *	This symbol, if defined, indicates that the seteuid routine is available
 *	to change the effective uid of the current program.
 */
/*#define HAS_SETEUID		/ **/

/* HAS_SETGROUPS:
 *	This symbol, if defined, indicates that the setgroups() routine is
 *	available to set the list of process groups.  If unavailable, multiple
 *	groups are probably not supported.
 */
/*#define HAS_SETGROUPS		/ **/

/* HAS_SETLINEBUF:
 *	This symbol, if defined, indicates that the setlinebuf routine is
 *	available to change stderr or stdout from block-buffered or unbuffered
 *	to a line-buffered mode.
 */
/*#define HAS_SETLINEBUF		/ **/

/* HAS_SETPGID:
 *	This symbol, if defined, indicates that the setpgid(pid, gpid)
 *	routine is available to set process group ID.
 */
/*#define HAS_SETPGID	/ **/

/* HAS_SETPGRP2:
 *	This symbol, if defined, indicates that the setpgrp2() (as in DG/UX)
 *	routine is available to set the current process group.
 */
/*#define HAS_SETPGRP2		/ **/

/* HAS_SETPRIORITY:
 *	This symbol, if defined, indicates that the setpriority routine is
 *	available to set a process's priority.
 */
/*#define HAS_SETPRIORITY		/ **/

/* HAS_SETREGID:
 *	This symbol, if defined, indicates that the setregid routine is
 *	available to change the real and effective gid of the current
 *	process.
 */
/* HAS_SETRESGID:
 *	This symbol, if defined, indicates that the setresgid routine is
 *	available to change the real, effective and saved gid of the current
 *	process.
 */
/*#define HAS_SETREGID		/ **/
/*#define HAS_SETRESGID		/ **/

/* HAS_SETREUID:
 *	This symbol, if defined, indicates that the setreuid routine is
 *	available to change the real and effective uid of the current
 *	process.
 */
/* HAS_SETRESUID:
 *	This symbol, if defined, indicates that the setresuid routine is
 *	available to change the real, effective and saved uid of the current
 *	process.
 */
/*#define HAS_SETREUID		/ **/
/*#define HAS_SETRESUID		/ **/

/* HAS_SETRGID:
 *	This symbol, if defined, indicates that the setrgid routine is available
 *	to change the real gid of the current program.
 */
/*#define HAS_SETRGID		/ **/

/* HAS_SETRUID:
 *	This symbol, if defined, indicates that the setruid routine is available
 *	to change the real uid of the current program.
 */
/*#define HAS_SETRUID		/ **/

/* HAS_SETSID:
 *	This symbol, if defined, indicates that the setsid routine is
 *	available to set the process group ID.
 */
/*#define HAS_SETSID	/ **/

/* HAS_STAT:
 *	This symbol, if defined, indicates that the stat routine is
 *	available to get file status.
 */
#define HAS_STAT	/**/

/* HAS_STRCOLL:
 *	This symbol, if defined, indicates that the strcoll routine is
 *	available to compare strings using collating information.
 */
/*#define HAS_STRCOLL	/ **/

/* HAS_STRTOD:
 *	This symbol, if defined, indicates that the strtod routine is
 *	available to provide better numeric string conversion than atof().
 */
/*#define HAS_STRTOD	/ **/

/* HAS_STRTOL:
 *	This symbol, if defined, indicates that the strtol routine is available
 *	to provide better numeric string conversion than atoi() and friends.
 */
#define HAS_STRTOL	/**/

/* HAS_STRXFRM:
 *	This symbol, if defined, indicates that the strxfrm() routine is
 *	available to transform strings.
 */
/*#define HAS_STRXFRM	/ **/

/* HAS_SYMLINK:
 *	This symbol, if defined, indicates that the symlink routine is available
 *	to create symbolic links.
 */
/*#define HAS_SYMLINK	/ **/

/* HAS_SYSCALL:
 *	This symbol, if defined, indicates that the syscall routine is
 *	available to call arbitrary system calls. If undefined, that's tough.
 */
/*#define HAS_SYSCALL	/ **/

/* HAS_SYSCONF:
 *	This symbol, if defined, indicates that sysconf() is available
 *	to determine system related limits and options.
 */
/*#define HAS_SYSCONF	/ **/

/* HAS_SYSTEM:
 *	This symbol, if defined, indicates that the system routine is
 *	available to issue a shell command.
 */
/*#define HAS_SYSTEM	/ **/

/* HAS_TCGETPGRP:
 *	This symbol, if defined, indicates that the tcgetpgrp routine is
 *	available to get foreground process group ID.
 */
/*#define HAS_TCGETPGRP		/ **/

/* HAS_TCSETPGRP:
 *	This symbol, if defined, indicates that the tcsetpgrp routine is
 *	available to set foreground process group ID.
 */
/*#define HAS_TCSETPGRP		/ **/

/* HAS_TRUNCATE:
 *	This symbol, if defined, indicates that the truncate routine is
 *	available to truncate files.
 */
/*#define HAS_TRUNCATE	/ **/

/* HAS_TZNAME:
 *	This symbol, if defined, indicates that the tzname[] array is
 *	available to access timezone names.
 */
/*#define HAS_TZNAME		/ **/

/* HAS_UMASK:
 *	This symbol, if defined, indicates that the umask routine is
 *	available to set and get the value of the file creation mask.
 */
/*#define HAS_UMASK		/ **/

/* HAS_USLEEP:
 *	This symbol, if defined, indicates that the usleep routine is
 *	available to let the process sleep on a sub-second accuracy.
 */
/*#define HAS_USLEEP		/ **/

/* HAS_WAIT4:
 *	This symbol, if defined, indicates that wait4() exists.
 */
/*#define HAS_WAIT4	/ **/

/* HAS_WAITPID:
 *	This symbol, if defined, indicates that the waitpid routine is
 *	available to wait for child process.
 */
/*#define HAS_WAITPID	/ **/

/* HAS_WCSTOMBS:
 *	This symbol, if defined, indicates that the wcstombs routine is
 *	available to convert wide character strings to multibyte strings.
 */
/*#define HAS_WCSTOMBS	/ **/

/* HAS_WCTOMB:
 *	This symbol, if defined, indicates that the wctomb routine is available
 *	to convert a wide character to a multibyte.
 */
/*#define HAS_WCTOMB		/ **/

/* Groups_t:
 *	This symbol holds the type used for the second argument to
 *	getgroups() and setgroups().  Usually, this is the same as
 *	gidtype (gid_t) , but sometimes it isn't.
 *	It can be int, ushort, gid_t, etc...
 *	It may be necessary to include <sys/types.h> to get any
 *	typedef'ed information.  This is only required if you have
 *	getgroups() or setgroups()..
 */
#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
#define Groups_t int	/* Type for 2nd arg to [sg]etgroups() */
#endif

/* I_ARPA_INET:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <arpa/inet.h> to get inet_addr and friends declarations.
 */
/*#define	I_ARPA_INET		/ **/

/* I_DBM:
 *	This symbol, if defined, indicates that <dbm.h> exists and should
 *	be included.
 */
/* I_RPCSVC_DBM:
 *	This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and
 *	should be included.
 */
/*#define I_DBM	/ **/
/*#define I_RPCSVC_DBM	/ **/

/* I_DLFCN:
 *	This symbol, if defined, indicates that <dlfcn.h> exists and should
 *	be included.
 */
/*#define I_DLFCN		/ **/

/* I_FCNTL:
 *	This manifest constant tells the C program to include <fcntl.h>.
 */
/*#define I_FCNTL	/ **/

/* I_GDBM:
 *	This symbol, if defined, indicates that <gdbm.h> exists and should
 *	be included.
 */
/*#define I_GDBM	/ **/

/* I_LOCALE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <locale.h>.
 */
/*#define	I_LOCALE		/ **/

/* I_NETINET_IN:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <netinet/in.h>. Otherwise, you may try <sys/in.h>.
 */
/*#define I_NETINET_IN	/ **/

/* I_SYS_DIR:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/dir.h>.
 */
/*#define I_SYS_DIR		/ **/

/* I_SYS_FILE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/file.h> to get definition of R_OK and friends.
 */
/*#define I_SYS_FILE		/ **/

/* I_SYS_IOCTL:
 *	This symbol, if defined, indicates that <sys/ioctl.h> exists and should
 *	be included. Otherwise, include <sgtty.h> or <termio.h>.
 */
/* I_SYS_SOCKIO:
 *	This symbol, if defined, indicates the <sys/sockio.h> should be included
 *	to get socket ioctl options, like SIOCATMARK.
 */
/*#define	I_SYS_IOCTL		/ **/
/*#define I_SYS_SOCKIO	/ **/

/* I_SYS_NDIR:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/ndir.h>.
 */
/*#define I_SYS_NDIR	/ **/

/* I_SYS_PARAM:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/param.h>.
 */
/*#define I_SYS_PARAM		/ **/

/* I_SYS_POLL:
 *	This symbol, if defined, indicates that the program may include
 *	<sys/poll.h>.  When I_POLL is also defined, it's probably safest
 *	to only include <poll.h>.
 */
/*#define I_SYS_POLL	/ **/

/* I_SYS_RESOURCE:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/resource.h>.
 */
/*#define I_SYS_RESOURCE		/ **/

/* I_SYS_SELECT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/select.h> in order to get definition of struct timeval.
 */
/*#define I_SYS_SELECT	/ **/

/* I_SYS_STAT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/stat.h>.
 */
#define	I_SYS_STAT		/**/

/* I_SYS_TIMES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/times.h>.
 */
/*#define	I_SYS_TIMES		/ **/

/* I_SYS_TYPES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/types.h>.
 */
/*#define	I_SYS_TYPES		/ **/

/* I_SYS_UN:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/un.h> to get UNIX domain socket definitions.
 */
/*#define I_SYS_UN		/ **/

/* I_SYS_WAIT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/wait.h>.
 */
/*#define I_SYS_WAIT	/ **/

/* I_UNISTD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <unistd.h>.
 */
/*#define I_UNISTD		/ **/

/* I_UTIME:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <utime.h>.
 */
/*#define I_UTIME		/ **/

/* I_VFORK:
 *	This symbol, if defined, indicates to the C program that it should
 *	include vfork.h.
 */
/*#define I_VFORK	/ **/

/* STDCHAR:
 *	This symbol is defined to be the type of char used in stdio.h.
 *	It has the values "unsigned char" or "char".
 */
#define STDCHAR char	/**/

/* INTSIZE:
 *	This symbol contains the value of sizeof(int) so that the C
 *	preprocessor can make decisions based on it.
 */
/* LONGSIZE:
 *	This symbol contains the value of sizeof(long) so that the C
 *	preprocessor can make decisions based on it.
 */
/* SHORTSIZE:
 *	This symbol contains the value of sizeof(short) so that the C
 *	preprocessor can make decisions based on it.
 */
#define INTSIZE 4		/**/
#define LONGSIZE 4		/**/
#define SHORTSIZE 2		/**/

/* MULTIARCH:
 *	This symbol, if defined, signifies that the build
 *	process will produce some binary files that are going to be
 *	used in a cross-platform environment.  This is the case for
 *	example with the NeXT "fat" binaries that contain executables
 *	for several CPUs.
 */
/*#define MULTIARCH		/ **/

/* HAS_QUAD:
 *	This symbol, if defined, tells that there's a 64-bit integer type,
 *	Quad_t, and its unsigned counterpart, Uquad_t. QUADKIND will be one
 *	of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, QUAD_IS_INT64_T,
 *	or QUAD_IS___INT64.
 */
/*#define HAS_QUAD	/ **/
#ifdef HAS_QUAD
#   define Quad_t int64_t	/**/
#   define Uquad_t uint64_t	/**/
#   define QUADKIND 4	/**/
#   define QUAD_IS_INT	1
#   define QUAD_IS_LONG	2
#   define QUAD_IS_LONG_LONG	3
#   define QUAD_IS_INT64_T	4
#   define QUAD_IS___INT64	5
#endif

/* HAS_ACCESSX:
 *	This symbol, if defined, indicates that the accessx routine is
 *	available to do extended access checks.
 */
/*#define HAS_ACCESSX		/ **/

/* HAS_EACCESS:
 *	This symbol, if defined, indicates that the eaccess routine is
 *	available to do extended access checks.
 */
/*#define HAS_EACCESS		/ **/

/* I_SYS_ACCESS:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/access.h>.
 */
/*#define   I_SYS_ACCESS                / **/

/* I_SYS_SECURITY:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/security.h>.
 */
/*#define   I_SYS_SECURITY	/ **/

/* MEM_ALIGNBYTES:
 *	This symbol contains the number of bytes required to align a
 *	double, or a long double when applicable. Usual values are 2,
 *	4 and 8. The default is eight, for safety.  For cross-compiling
 *	or multiarch support, Configure will set a minimum of 8.
 */
#define MEM_ALIGNBYTES 4

/* BYTEORDER:
 *	This symbol holds the hexadecimal constant defined in byteorder,
 *	in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc...
 *	If the compiler supports cross-compiling or multiple-architecture
 *	binaries, use compiler-defined macros to
 *	determine the byte order.
 */
#if defined(MULTIARCH)
#  ifdef __LITTLE_ENDIAN__
#    if LONGSIZE == 4
#      define BYTEORDER 0x1234
#    else
#      if LONGSIZE == 8
#        define BYTEORDER 0x12345678
#      endif
#    endif
#  else
#    ifdef __BIG_ENDIAN__
#      if LONGSIZE == 4
#        define BYTEORDER 0x4321
#      else
#        if LONGSIZE == 8
#          define BYTEORDER 0x87654321
#        endif
#      endif
#    endif
#  endif
#else
#define BYTEORDER 0x1234	/* large digits for MSB */
#endif

/* CHARBITS:
 *	This symbol contains the size of a char, so that the C preprocessor
 *	can make decisions based on it.
 */
#define CHARBITS 8		/**/

/* CASTI32:
 *	This symbol is defined if the C compiler can cast negative
 *	or large floating point numbers to 32-bit ints.
 */
/*#define	CASTI32		/ **/

/* CASTNEGFLOAT:
 *	This symbol is defined if the C compiler can cast negative
 *	numbers to unsigned longs, ints and shorts.
 */
/* CASTFLAGS:
 *	This symbol contains flags that say what difficulties the compiler
 *	has casting odd floating values to unsigned long:
 *		0 = ok
 *		1 = couldn't cast < 0
 *		2 = couldn't cast >= 0x80000000
 *		4 = couldn't cast in argument expression list
 */
/*#define	CASTNEGFLOAT		/ **/
#define CASTFLAGS 0		/**/

/* VOID_CLOSEDIR:
 *	This symbol, if defined, indicates that the closedir() routine
 *	does not return a value.
 */
/*#define VOID_CLOSEDIR		/ **/

/* HAS_FD_SET:
 *	This symbol, when defined, indicates presence of the fd_set typedef
 *	in <sys/types.h>
 */
/*#define HAS_FD_SET	/ **/

/* Gconvert:
 *	This preprocessor macro is defined to convert a floating point
 *	number to a string without a trailing decimal point.  This
 *	emulates the behavior of sprintf("%g"), but is sometimes much more
 *	efficient.  If gconvert() is not available, but gcvt() drops the
 *	trailing decimal point, then gcvt() is used.  If all else fails,
 *	a macro using sprintf("%g") is used. Arguments for the Gconvert
 *	macro are: value, number of digits, whether trailing zeros should
 *	be retained, and the output buffer.
 *	The usual values are:
 *		d_Gconvert='gconvert((x),(n),(t),(b))'
 *		d_Gconvert='gcvt((x),(n),(b))'
 *		d_Gconvert='sprintf((b),"%.*g",(n),(x))'
 *	The last two assume trailing zeros should not be kept.
 */
#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))

/* HAS_GETPAGESIZE:
 *	This symbol, if defined, indicates that the getpagesize system call
 *	is available to get system page size, which is the granularity of
 *	many memory management calls.
 */
/*#define HAS_GETPAGESIZE		/ **/

/* HAS_GNULIBC:
 *	This symbol, if defined, indicates to the C program that
 *	the GNU C library is being used.  A better check is to use
 *	the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc.
 */
/*#define HAS_GNULIBC	/ **/
#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE)
#   define _GNU_SOURCE
#endif

/* HAS_ISASCII:
 *	This manifest constant lets the C program know that isascii
 *	is available.
 */
/*#define HAS_ISASCII		/ **/

/* HAS_LCHOWN:
 *	This symbol, if defined, indicates that the lchown routine is
 *	available to operate on a symbolic link (instead of following the
 *	link).
 */
/*#define HAS_LCHOWN		/ **/

/* HAS_OPEN3:
 *	This manifest constant lets the C program know that the three
 *	argument form of open(2) is available.
 */
/*#define HAS_OPEN3		/ **/

/* HAS_SIGACTION:
 *	This symbol, if defined, indicates that Vr4's sigaction() routine
 *	is available.
 */
/*#define HAS_SIGACTION	/ **/

/* HAS_SIGINFO_SI_ERRNO:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_errno member
 */
/* HAS_SIGINFO_SI_PID:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_pid member
 */
/* HAS_SIGINFO_SI_UID:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_uid member
 */
/* HAS_SIGINFO_SI_ADDR:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_addr member
 */
/* HAS_SIGINFO_SI_STATUS:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_status member
 */
/* HAS_SIGINFO_SI_BAND:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_band member
 */
/* HAS_SIGINFO_SI_VALUE:
 *	This symbol, if defined, indicates that siginfo_t has the
 *	si_value member
 */
/*#define	HAS_SIGINFO_SI_ERRNO	/ **/
/*#define	HAS_SIGINFO_SI_PID	/ **/
/*#define	HAS_SIGINFO_SI_UID	/ **/
/*#define	HAS_SIGINFO_SI_ADDR	/ **/
/*#define	HAS_SIGINFO_SI_STATUS	/ **/
/*#define	HAS_SIGINFO_SI_BAND	/ **/
/*#define	HAS_SIGINFO_SI_VALUE	/ **/

/* HAS_SIGSETJMP:
 *	This variable indicates to the C program that the sigsetjmp()
 *	routine is available to save the calling process's registers
 *	and stack environment for later use by siglongjmp(), and
 *	to optionally save the process's signal mask.  See
 *	Sigjmp_buf, Sigsetjmp, and Siglongjmp.
 */
/* Sigjmp_buf:
 *	This is the buffer type to be used with Sigsetjmp and Siglongjmp.
 */
/* Sigsetjmp:
 *	This macro is used in the same way as sigsetjmp(), but will invoke
 *	traditional setjmp() if sigsetjmp isn't available.
 *	See HAS_SIGSETJMP.
 */
/* Siglongjmp:
 *	This macro is used in the same way as siglongjmp(), but will invoke
 *	traditional longjmp() if siglongjmp isn't available.
 *	See HAS_SIGSETJMP.
 */
/*#define HAS_SIGSETJMP	/ **/
#ifdef HAS_SIGSETJMP
#define Sigjmp_buf sigjmp_buf
#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask))
#define Siglongjmp(buf,retval) siglongjmp((buf),(retval))
#else
#define Sigjmp_buf jmp_buf
#define Sigsetjmp(buf,save_mask) setjmp((buf))
#define Siglongjmp(buf,retval) longjmp((buf),(retval))
#endif

/* HAS_STATIC_INLINE:
 *	This symbol, if defined, indicates that the C compiler supports
 *	C99-style static inline.  That is, the function can't be called
 *	from another translation unit.
 */
/* PERL_STATIC_INLINE:
 *	This symbol gives the best-guess incantation to use for static
 *	inline functions.  If HAS_STATIC_INLINE is defined, this will
 *	give C99-style inline.  If HAS_STATIC_INLINE is not defined,
 *	this will give a plain 'static'.  It will always be defined
 *	to something that gives static linkage.
 *	Possibilities include
 *		static inline       (c99)
 *		static __inline__   (gcc -ansi)
 *		static __inline     (MSVC)
 *		static _inline      (older MSVC)
 *		static              (c89 compilers)
 */
/*#define HAS_STATIC_INLINE				/ **/
#define PERL_STATIC_INLINE static	/**/

/* USE_STDIO_PTR:
 *	This symbol is defined if the _ptr and _cnt fields (or similar)
 *	of the stdio FILE structure can be used to access the stdio buffer
 *	for a file handle.  If this is defined, then the FILE_ptr(fp)
 *	and FILE_cnt(fp) macros will also be defined and should be used
 *	to access these fields.
 */
/* FILE_ptr:
 *	This macro is used to access the _ptr field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_PTR is defined.
 */
/* STDIO_PTR_LVALUE:
 *	This symbol is defined if the FILE_ptr macro can be used as an
 *	lvalue.
 */
/* FILE_cnt:
 *	This macro is used to access the _cnt field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_PTR is defined.
 */
/* STDIO_CNT_LVALUE:
 *	This symbol is defined if the FILE_cnt macro can be used as an
 *	lvalue.
 */
/* STDIO_PTR_LVAL_SETS_CNT:
 *	This symbol is defined if using the FILE_ptr macro as an lvalue
 *	to increase the pointer by n has the side effect of decreasing the
 *	value of File_cnt(fp) by n.
 */
/* STDIO_PTR_LVAL_NOCHANGE_CNT:
 *	This symbol is defined if using the FILE_ptr macro as an lvalue
 *	to increase the pointer by n leaves File_cnt(fp) unchanged.
 */
/*#define USE_STDIO_PTR	/ **/
#ifdef USE_STDIO_PTR
#define FILE_ptr(fp)	((fp)->_IO_read_ptr)
/*#define STDIO_PTR_LVALUE		/ **/
#define FILE_cnt(fp)	((fp)->_IO_read_end - (fp)->_IO_read_ptr)
/*#define STDIO_CNT_LVALUE		/ **/
/*#define STDIO_PTR_LVAL_SETS_CNT	/ **/
/*#define STDIO_PTR_LVAL_NOCHANGE_CNT	/ **/
#endif

/* USE_STDIO_BASE:
 *	This symbol is defined if the _base field (or similar) of the
 *	stdio FILE structure can be used to access the stdio buffer for
 *	a file handle.  If this is defined, then the FILE_base(fp) macro
 *	will also be defined and should be used to access this field.
 *	Also, the FILE_bufsiz(fp) macro will be defined and should be used
 *	to determine the number of bytes in the buffer.  USE_STDIO_BASE
 *	will never be defined unless USE_STDIO_PTR is.
 */
/* FILE_base:
 *	This macro is used to access the _base field (or equivalent) of the
 *	FILE structure pointed to by its argument. This macro will always be
 *	defined if USE_STDIO_BASE is defined.
 */
/* FILE_bufsiz:
 *	This macro is used to determine the number of bytes in the I/O
 *	buffer pointed to by _base field (or equivalent) of the FILE
 *	structure pointed to its argument. This macro will always be defined
 *	if USE_STDIO_BASE is defined.
 */
/*#define USE_STDIO_BASE	/ **/
#ifdef USE_STDIO_BASE
#define FILE_base(fp)	((fp)->_IO_read_base)
#define FILE_bufsiz(fp)	((fp)->_IO_read_end - (fp)->_IO_read_base)
#endif

/* DOUBLESIZE:
 *	This symbol contains the size of a double, so that the C preprocessor
 *	can make decisions based on it.
 */
#define DOUBLESIZE 8		/**/

/* I_TIME:
 *	This symbol is always defined, and indicates to the C program that
 *	it should include <time.h>.
 */
/* I_SYS_TIME:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/time.h>.
 */
/* I_SYS_TIME_KERNEL:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <sys/time.h> with KERNEL defined.
 */
/* HAS_TM_TM_ZONE:
 *	This symbol, if defined, indicates to the C program that
 *	the struct tm has a tm_zone field.
 */
/* HAS_TM_TM_GMTOFF:
 *	This symbol, if defined, indicates to the C program that
 *	the struct tm has a tm_gmtoff field.
 */
#define I_TIME		/**/
/*#define I_SYS_TIME		/ **/
/*#define I_SYS_TIME_KERNEL		/ **/
/*#define HAS_TM_TM_ZONE		/ **/
/*#define HAS_TM_TM_GMTOFF		/ **/

/* VAL_O_NONBLOCK:
 *	This symbol is to be used during open() or fcntl(F_SETFL) to turn on
 *	non-blocking I/O for the file descriptor. Note that there is no way
 *	back, i.e. you cannot turn it blocking again this way. If you wish to
 *	alternatively switch between blocking and non-blocking, use the
 *	ioctl(FIOSNBIO) call instead, but that is not supported by all devices.
 */
/* VAL_EAGAIN:
 *	This symbol holds the errno error code set by read() when no data was
 *	present on the non-blocking file descriptor.
 */
/* RD_NODATA:
 *	This symbol holds the return code from read() when no data is present
 *	on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is
 *	not defined, then you can't distinguish between no data and EOF by
 *	issuing a read(). You'll have to find another way to tell for sure!
 */
/* EOF_NONBLOCK:
 *	This symbol, if defined, indicates to the C program that a read() on
 *	a non-blocking file descriptor will return 0 on EOF, and not the value
 *	held in RD_NODATA (-1 usually, in that case!).
 */
#define VAL_O_NONBLOCK O_NONBLOCK
#define VAL_EAGAIN EAGAIN
#define RD_NODATA -1
#undef EOF_NONBLOCK

/* PTRSIZE:
 *	This symbol contains the size of a pointer, so that the C preprocessor
 *	can make decisions based on it.  It will be sizeof(void *) if
 *	the compiler supports (void *); otherwise it will be
 *	sizeof(char *).
 */
#define PTRSIZE 4		/**/

/* Drand01:
 *	This macro is to be used to generate uniformly distributed
 *	random numbers over the range [0., 1.[.  You may have to supply
 *	an 'extern double drand48();' in your program since SunOS 4.1.3
 *	doesn't provide you with anything relevant in its headers.
 *	See HAS_DRAND48_PROTO.
 */
/* Rand_seed_t:
 *	This symbol defines the type of the argument of the
 *	random seed function.
 */
/* seedDrand01:
 *	This symbol defines the macro to be used in seeding the
 *	random number generator (see Drand01).
 */
/* RANDBITS:
 *	This symbol indicates how many bits are produced by the
 *	function used to generate normalized random numbers.
 *	Values include 15, 16, 31, and 48.
 */
#define Drand01()		Perl_drand48()		/**/
#define Rand_seed_t		U32		/**/
#define seedDrand01(x)	Perl_drand48_init((Rand_seed_t)x)	/**/
#define RANDBITS		48		/**/

/* SSize_t:
 *	This symbol holds the type used by functions that return
 *	a count of bytes or an error condition.  It must be a signed type.
 *	It is usually ssize_t, but may be long or int, etc.
 *	It may be necessary to include <sys/types.h> or <unistd.h>
 *	to get any typedef'ed information.
 *	We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
 */
#define SSize_t int	/* signed count of bytes */

/* EBCDIC:
 *	This symbol, if defined, indicates that this system uses
 *	EBCDIC encoding.
 */
/*#define	EBCDIC		/ **/

/* ARCHLIB:
 *	This variable, if defined, holds the name of the directory in
 *	which the user wants to put architecture-dependent public
 *	library files for perl5.  It is most often a local directory
 *	such as /usr/local/lib.  Programs using this variable must be
 *	prepared to deal with filename expansion.  If ARCHLIB is the
 *	same as PRIVLIB, it is not defined, since presumably the
 *	program already searches PRIVLIB.
 */
/* ARCHLIB_EXP:
 *	This symbol contains the ~name expanded version of ARCHLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define ARCHLIB "/usr/local/lib/perl5/5.36/unknown"		/ **/
/*#define ARCHLIB_EXP "/usr/local/lib/perl5/5.36/unknown"		/ **/

/* BIN:
 *	This symbol holds the path of the bin directory where the package will
 *	be installed. Program must be prepared to deal with ~name substitution.
 */
/* BIN_EXP:
 *	This symbol is the filename expanded version of the BIN symbol, for
 *	programs that do not want to deal with that at run-time.
 */
/* PERL_RELOCATABLE_INC:
 *	This symbol, if defined, indicates that we'd like to relocate entries
 *	in @INC at run time based on the location of the perl binary.
 */
#define BIN "/usr/local/bin"	/**/
#define BIN_EXP "/usr/local/bin"	/**/
#define PERL_RELOCATABLE_INC "undef"		/**/

/* PERL_INC_VERSION_LIST:
 *	This variable specifies the list of subdirectories in over
 *	which perl.c:incpush() and lib/lib.pm will automatically
 *	search when adding directories to @INC, in a format suitable
 *	for a C initialization string.  See the inc_version_list entry
 *	in Porting/Glossary for more details.
 */
/*#define PERL_INC_VERSION_LIST NULL		/ **/

/* INSTALL_USR_BIN_PERL:
 *	This symbol, if defined, indicates that Perl is to be installed
 *	also as /usr/bin/perl.
 */
/*#define INSTALL_USR_BIN_PERL	/ **/

/* PERL_OTHERLIBDIRS:
 *	This variable contains a colon-separated set of paths for the perl
 *	binary to search for additional library files or modules.
 *	These directories will be tacked to the end of @INC.
 *	Perl will automatically search below each path for version-
 *	and architecture-specific directories.  See PERL_INC_VERSION_LIST
 *	for more details.
 */
/*#define PERL_OTHERLIBDIRS " "		/ **/

/* PRIVLIB:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 */
/* PRIVLIB_EXP:
 *	This symbol contains the ~name expanded version of PRIVLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
#define PRIVLIB "/usr/local/lib/perl5/5.36"		/**/
#define PRIVLIB_EXP "/usr/local/lib/perl5/5.36"		/**/

/* SITEARCH:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 *	The standard distribution will put nothing in this directory.
 *	After perl has been installed, users may install their own local
 *	architecture-dependent modules in this directory with
 *		MakeMaker Makefile.PL
 *	or equivalent.  See INSTALL for details.
 */
/* SITEARCH_EXP:
 *	This symbol contains the ~name expanded version of SITEARCH, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define SITEARCH "/usr/local/lib/perl5/5.36/unknown"		/ **/
/*#define SITEARCH_EXP "/usr/local/lib/perl5/5.36/unknown"		/ **/

/* SITELIB:
 *	This symbol contains the name of the private library for this package.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.  The program
 *	should be prepared to do ~ expansion.
 *	The standard distribution will put nothing in this directory.
 *	After perl has been installed, users may install their own local
 *	architecture-independent modules in this directory with
 *		MakeMaker Makefile.PL
 *	or equivalent.  See INSTALL for details.
 */
/* SITELIB_EXP:
 *	This symbol contains the ~name expanded version of SITELIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/* SITELIB_STEM:
 *	This define is SITELIB_EXP with any trailing version-specific component
 *	removed.  The elements in inc_version_list (inc_version_list.U) can
 *	be tacked onto this variable to generate a list of directories to search.
 */
#define SITELIB "/usr/local/lib/perl5/5.36"		/**/
#define SITELIB_EXP "/usr/local/lib/perl5/5.36"		/**/
#define SITELIB_STEM "/usr/local/lib/perl5"		/**/

/* PERL_VENDORARCH:
 *	If defined, this symbol contains the name of a private library.
 *	The library is private in the sense that it needn't be in anyone's
 *	execution path, but it should be accessible by the world.
 *	It may have a ~ on the front.
 *	The standard distribution will put nothing in this directory.
 *	Vendors who distribute perl may wish to place their own
 *	architecture-dependent modules and extensions in this directory with
 *		MakeMaker Makefile.PL INSTALLDIRS=vendor
 *	or equivalent.  See INSTALL for details.
 */
/* PERL_VENDORARCH_EXP:
 *	This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/*#define PERL_VENDORARCH ""		/ **/
/*#define PERL_VENDORARCH_EXP ""		/ **/

/* PERL_VENDORLIB_EXP:
 *	This symbol contains the ~name expanded version of VENDORLIB, to be used
 *	in programs that are not prepared to deal with ~ expansion at run-time.
 */
/* PERL_VENDORLIB_STEM:
 *	This define is PERL_VENDORLIB_EXP with any trailing version-specific component
 *	removed.  The elements in inc_version_list (inc_version_list.U) can
 *	be tacked onto this variable to generate a list of directories to search.
 */
/*#define PERL_VENDORLIB_EXP ""		/ **/
/*#define PERL_VENDORLIB_STEM ""		/ **/

/* OSNAME:
 *	This symbol contains the name of the operating system, as determined
 *	by Configure.  You shouldn't rely on it too much; the specific
 *	feature tests from Configure are generally more reliable.
 */
/* OSVERS:
 *	This symbol contains the version of the operating system, as determined
 *	by Configure.  You shouldn't rely on it too much; the specific
 *	feature tests from Configure are generally more reliable.
 */
#define OSNAME "unknown"		/**/
#define OSVERS "unknown"		/**/

/* CAT2:
 *	This macro concatenates 2 tokens together.
 */
/* STRINGIFY:
 *	This macro surrounds its token with double quotes.
 */
#if 42 == 1
#define CAT2(a,b)	a/**/b
#define STRINGIFY(a)	"a"
#endif
#if 42 == 42
#define PeRl_CaTiFy(a, b)	a ## b
#define PeRl_StGiFy(a)	#a
#define CAT2(a,b)	PeRl_CaTiFy(a,b)
#define StGiFy(a)	PeRl_StGiFy(a)
#define STRINGIFY(a)	PeRl_StGiFy(a)
#endif
#if 42 != 1 && 42 != 42
#include "Bletch: How does this C preprocessor concatenate tokens?"
#endif

/* CPPSTDIN:
 *	This symbol contains the first part of the string which will invoke
 *	the C preprocessor on the standard input and produce to standard
 *	output.  Typical value of "cc -E" or "/lib/cpp", but it can also
 *	call a wrapper. See CPPRUN.
 */
/* CPPMINUS:
 *	This symbol contains the second part of the string which will invoke
 *	the C preprocessor on the standard input and produce to standard
 *	output.  This symbol will have the value "-" if CPPSTDIN needs a minus
 *	to specify standard input, otherwise the value is "".
 */
/* CPPRUN:
 *	This symbol contains the string which will invoke a C preprocessor on
 *	the standard input and produce to standard output. It needs to end
 *	with CPPLAST, after all other preprocessor flags have been specified.
 *	The main difference with CPPSTDIN is that this program will never be a
 *	pointer to a shell wrapper, i.e. it will be empty if no preprocessor is
 *	available directly to the user. Note that it may well be different from
 *	the preprocessor used to compile the C program.
 */
/* CPPLAST:
 *	This symbol is intended to be used along with CPPRUN in the same manner
 *	symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "".
 */
#define CPPSTDIN "cc -E"
#define CPPMINUS "-"
#define CPPRUN "cc -E"
#define CPPLAST "-"

/* HAS_ACCESS:
 *	This manifest constant lets the C program know that the access()
 *	system call is available to check for accessibility using real UID/GID.
 *	(always present on UNIX.)
 */
/*#define HAS_ACCESS		/ **/

/* HASATTRIBUTE_FORMAT:
 *	Can we handle GCC attribute for checking printf-style formats
 */
/* PRINTF_FORMAT_NULL_OK:
 *	Allows __printf__ format to be null when checking printf-style
 */
/* HASATTRIBUTE_MALLOC:
 *	Can we handle GCC attribute for malloc-style functions.
 */
/* HASATTRIBUTE_NONNULL:
 *	Can we handle GCC attribute for nonnull function parms.
 */
/* HASATTRIBUTE_NORETURN:
 *	Can we handle GCC attribute for functions that do not return
 */
/* HASATTRIBUTE_PURE:
 *	Can we handle GCC attribute for pure functions
 */
/* HASATTRIBUTE_UNUSED:
 *	Can we handle GCC attribute for unused variables and arguments
 */
/* HASATTRIBUTE_DEPRECATED:
 *	Can we handle GCC attribute for marking deprecated APIs
 */
/* HASATTRIBUTE_WARN_UNUSED_RESULT:
 *	Can we handle GCC attribute for warning on unused results
 */
/* HASATTRIBUTE_ALWAYS_INLINE:
 *	Can we handle GCC attribute for functions that should always be
 *	inlined.
 */
/*#define HASATTRIBUTE_DEPRECATED	/ **/
/*#define HASATTRIBUTE_FORMAT	/ **/
/*#define PRINTF_FORMAT_NULL_OK	/ **/
/*#define HASATTRIBUTE_NORETURN	/ **/
/*#define HASATTRIBUTE_MALLOC	/ **/
/*#define HASATTRIBUTE_NONNULL	/ **/
/*#define HASATTRIBUTE_PURE	/ **/
/*#define HASATTRIBUTE_UNUSED	/ **/
/*#define HASATTRIBUTE_WARN_UNUSED_RESULT	/ **/
/*#define HASATTRIBUTE_ALWAYS_INLINE	/ **/

/* HAS_BACKTRACE:
 *	This symbol, if defined, indicates that the backtrace() routine is
 *	available to get a stack trace.  The <execinfo.h> header must be
 *	included to use this routine.
 */
/*#define HAS_BACKTRACE	/ **/

/* HAS_CSH:
 *	This symbol, if defined, indicates that the C-shell exists.
 */
/* CSH:
 *	This symbol, if defined, contains the full pathname of csh.
 */
/*#define HAS_CSH		/ **/
#ifdef HAS_CSH
#define CSH ""	/**/
#endif

/* HAS_DLADDR:
 *	This symbol, if defined, indicates that the dladdr() routine is
 *	available to query dynamic linker information for an address.
 *	The <dlfcn.h> header must be included to use this routine.
 */
/*#define HAS_DLADDR	/ **/

/* SETUID_SCRIPTS_ARE_SECURE_NOW:
 *	This symbol, if defined, indicates that the bug that prevents
 *	setuid scripts from being secure is not present in this kernel.
 */
/* DOSUID:
 *	This symbol, if defined, indicates that the C program should
 *	check the script that it is executing for setuid/setgid bits, and
 *	attempt to emulate setuid/setgid on systems that have disabled
 *	setuid #! scripts because the kernel can't do it securely.
 *	It is up to the package designer to make sure that this emulation
 *	is done securely.  Among other things, it should do an fstat on
 *	the script it just opened to make sure it really is a setuid/setgid
 *	script, it should make sure the arguments passed correspond exactly
 *	to the argument on the #! line, and it should not trust any
 *	subprocesses to which it must pass the filename rather than the
 *	file descriptor of the script to be executed.
 */
/*#define SETUID_SCRIPTS_ARE_SECURE_NOW	/ **/
/*#define DOSUID		/ **/

/* HAS_ENDGRENT:
 *	This symbol, if defined, indicates that the getgrent routine is
 *	available for finalizing sequential access of the group database.
 */
/*#define HAS_ENDGRENT		/ **/

/* HAS_ENDHOSTENT:
 *	This symbol, if defined, indicates that the endhostent() routine is
 *	available to close whatever was being used for host queries.
 */
/*#define HAS_ENDHOSTENT		/ **/

/* HAS_ENDNETENT:
 *	This symbol, if defined, indicates that the endnetent() routine is
 *	available to close whatever was being used for network queries.
 */
/*#define HAS_ENDNETENT		/ **/

/* HAS_ENDPROTOENT:
 *	This symbol, if defined, indicates that the endprotoent() routine is
 *	available to close whatever was being used for protocol queries.
 */
/*#define HAS_ENDPROTOENT		/ **/

/* HAS_ENDPWENT:
 *	This symbol, if defined, indicates that the endpwent routine is
 *	available for finalizing sequential access of the passwd database.
 */
/*#define HAS_ENDPWENT		/ **/

/* HAS_ENDSERVENT:
 *	This symbol, if defined, indicates that the endservent() routine is
 *	available to close whatever was being used for service queries.
 */
/*#define HAS_ENDSERVENT		/ **/

/* FLEXFILENAMES:
 *	This symbol, if defined, indicates that the system supports filenames
 *	longer than 14 characters.
 */
/*#define	FLEXFILENAMES		/ **/

/* HAS_GETGRENT:
 *	This symbol, if defined, indicates that the getgrent routine is
 *	available for sequential access of the group database.
 */
/*#define HAS_GETGRENT		/ **/

/* HAS_GETHOSTBYADDR:
 *	This symbol, if defined, indicates that the gethostbyaddr() routine is
 *	available to look up hosts by their IP addresses.
 */
/*#define HAS_GETHOSTBYADDR		/ **/

/* HAS_GETHOSTBYNAME:
 *	This symbol, if defined, indicates that the gethostbyname() routine is
 *	available to look up host names in some data base or other.
 */
/*#define HAS_GETHOSTBYNAME		/ **/

/* HAS_GETHOSTENT:
 *	This symbol, if defined, indicates that the gethostent() routine is
 *	available to look up host names in some data base or another.
 */
/*#define HAS_GETHOSTENT		/ **/

/* HAS_GETHOSTNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	gethostname() routine to derive the host name.  See also HAS_UNAME
 *	and PHOSTNAME.
 */
/* HAS_UNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	uname() routine to derive the host name.  See also HAS_GETHOSTNAME
 *	and PHOSTNAME.
 */
/* PHOSTNAME:
 *	This symbol, if defined, indicates the command to feed to the
 *	popen() routine to derive the host name.  See also HAS_GETHOSTNAME
 *	and HAS_UNAME.	Note that the command uses a fully qualified path,
 *	so that it is safe even if used by a process with super-user
 *	privileges.
 */
/* HAS_PHOSTNAME:
 *	This symbol, if defined, indicates that the C program may use the
 *	contents of PHOSTNAME as a command to feed to the popen() routine
 *	to derive the host name.
 */
/*#define HAS_GETHOSTNAME	/ **/
/*#define HAS_UNAME		/ **/
/*#define HAS_PHOSTNAME	/ **/
#ifdef HAS_PHOSTNAME
#define PHOSTNAME "/bin/hostname"	/* How to get the host name */
#endif

/* HAS_GETNETBYADDR:
 *	This symbol, if defined, indicates that the getnetbyaddr() routine is
 *	available to look up networks by their IP addresses.
 */
/*#define HAS_GETNETBYADDR		/ **/

/* HAS_GETNETBYNAME:
 *	This symbol, if defined, indicates that the getnetbyname() routine is
 *	available to look up networks by their names.
 */
/*#define HAS_GETNETBYNAME		/ **/

/* HAS_GETNETENT:
 *	This symbol, if defined, indicates that the getnetent() routine is
 *	available to look up network names in some data base or another.
 */
/*#define HAS_GETNETENT		/ **/

/* HAS_GETPROTOENT:
 *	This symbol, if defined, indicates that the getprotoent() routine is
 *	available to look up protocols in some data base or another.
 */
/*#define HAS_GETPROTOENT		/ **/

/* HAS_GETPGRP:
 *	This symbol, if defined, indicates that the getpgrp routine is
 *	available to get the current process group.
 */
/* USE_BSD_GETPGRP:
 *	This symbol, if defined, indicates that getpgrp needs one
 *	arguments whereas USG one needs none.
 */
/*#define HAS_GETPGRP		/ **/
/*#define USE_BSD_GETPGRP	/ **/

/* HAS_GETPROTOBYNAME:
 *	This symbol, if defined, indicates that the getprotobyname()
 *	routine is available to look up protocols by their name.
 */
/* HAS_GETPROTOBYNUMBER:
 *	This symbol, if defined, indicates that the getprotobynumber()
 *	routine is available to look up protocols by their number.
 */
/*#define HAS_GETPROTOBYNAME		/ **/
/*#define HAS_GETPROTOBYNUMBER		/ **/

/* HAS_GETPWENT:
 *	This symbol, if defined, indicates that the getpwent routine is
 *	available for sequential access of the passwd database.
 *	If this is not available, the older getpw() function may be available.
 */
/*#define HAS_GETPWENT		/ **/

/* HAS_GETSERVENT:
 *	This symbol, if defined, indicates that the getservent() routine is
 *	available to look up network services in some data base or another.
 */
/*#define HAS_GETSERVENT		/ **/

/* HAS_GETSERVBYNAME:
 *	This symbol, if defined, indicates that the getservbyname()
 *	routine is available to look up services by their name.
 */
/* HAS_GETSERVBYPORT:
 *	This symbol, if defined, indicates that the getservbyport()
 *	routine is available to look up services by their port.
 */
/*#define HAS_GETSERVBYNAME		/ **/
/*#define HAS_GETSERVBYPORT		/ **/

/* HAS_HTONL:
 *	This symbol, if defined, indicates that the htonl() routine (and
 *	friends htons() ntohl() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_HTONS:
 *	This symbol, if defined, indicates that the htons() routine (and
 *	friends htonl() ntohl() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_NTOHL:
 *	This symbol, if defined, indicates that the ntohl() routine (and
 *	friends htonl() htons() ntohs()) are available to do network
 *	order byte swapping.
 */
/* HAS_NTOHS:
 *	This symbol, if defined, indicates that the ntohs() routine (and
 *	friends htonl() htons() ntohl()) are available to do network
 *	order byte swapping.
 */
/*#define HAS_HTONL		/ **/
/*#define HAS_HTONS		/ **/
/*#define HAS_NTOHL		/ **/
/*#define HAS_NTOHS		/ **/

/* HAS_LONG_DOUBLE:
 *	This symbol will be defined if the C compiler supports long
 *	doubles.
 */
/* LONG_DOUBLESIZE:
 *	This symbol contains the size of a long double, so that the
 *	C preprocessor can make decisions based on it.  It is only
 *	defined if the system supports long doubles.  Note that this
 *	is sizeof(long double), which may include unused bytes.
 */
/* HAS_LDEXPL:
 *	This symbol, if defined, indicates that the ldexpl routine is
 *	available to shift a long double floating-point number
 *	by an integral power of 2.
 */
/* LONG_DOUBLEKIND:
 *	LONG_DOUBLEKIND will be one of
 *	LONG_DOUBLE_IS_DOUBLE
 *	LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN
 *	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
 *	LONG_DOUBLE_IS_VAX_H_FLOAT
 *	LONG_DOUBLE_IS_UNKNOWN_FORMAT
 *	It is only defined if the system supports long doubles.
 */
/* LONG_DOUBLE_STYLE_IEEE:
 *	This symbol, if defined, indicates that the long double
 *	is any of the IEEE 754 style long doubles:
 *	LONG_DOUBLE_STYLE_IEEE_STD, LONG_DOUBLE_STYLE_IEEE_EXTENDED,
 *	LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE.
 */
/* LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit double-double.
 */
/* LONG_DOUBLE_STYLE_IEEE_EXTENDED:
 *	This symbol, if defined, indicates that the long double is
 *	the 80-bit IEEE 754. Note that despite the 'extended' this
 *	is less than the 'std', since this is an extension of
 *	the double precision.
 */
/* LONG_DOUBLE_STYLE_IEEE_STD:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit IEEE 754.
 */
/* LONG_DOUBLE_STYLE_VAX:
 *	This symbol, if defined, indicates that the long double is
 *	the 128-bit VAX format H.
 */
/*#define  HAS_LDEXPL		/ **/
/*#define HAS_LONG_DOUBLE		/ **/
#ifdef HAS_LONG_DOUBLE
#define LONG_DOUBLESIZE 8		/**/
#define LONG_DOUBLEKIND 0		/**/
#define LONG_DOUBLE_IS_DOUBLE				0
#define LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN	1
#define LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN	2
#define LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN		3
#define LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN		4
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE	5
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE	6
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE	7
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE	8
#define LONG_DOUBLE_IS_VAX_H_FLOAT			9
#define LONG_DOUBLE_IS_UNKNOWN_FORMAT			-1
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE /* back-compat */
#define LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN	LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE /* back-compat */
#undef LONG_DOUBLE_STYLE_IEEE
#undef LONG_DOUBLE_STYLE_IEEE_DOUBLEDOUBLE
#undef LONG_DOUBLE_STYLE_IEEE_EXTENDED
#undef LONG_DOUBLE_STYLE_IEEE_STD
#undef LONG_DOUBLE_STYLE_VAX
#endif

/* HAS_LONG_LONG:
 *	This symbol will be defined if the C compiler supports long long.
 */
/* LONGLONGSIZE:
 *	This symbol contains the size of a long long, so that the
 *	C preprocessor can make decisions based on it.  It is only
 *	defined if the system supports long long.
 */
/*#define HAS_LONG_LONG		/ **/
#ifdef HAS_LONG_LONG
#define LONGLONGSIZE 8		/**/
#endif

/* HAS_MKSTEMP:
 *	This symbol, if defined, indicates that the mkstemp routine is
 *	available to exclusively create and open a uniquely named
 *	temporary file.
 */
/*#define HAS_MKSTEMP		/ **/

/* HAS_MMAP:
 *	This symbol, if defined, indicates that the mmap system call is
 *	available to map a file into memory.
 */
/* Mmap_t:
 *	This symbol holds the return type of the mmap() system call
 *	(and simultaneously the type of the first argument).
 *	Usually set to 'void *' or 'caddr_t'.
 */
/*#define HAS_MMAP		/ **/
#define Mmap_t void *	/**/

/* HAS_SETGRENT:
 *	This symbol, if defined, indicates that the setgrent routine is
 *	available for initializing sequential access of the group database.
 */
/*#define HAS_SETGRENT		/ **/

/* HAS_SETHOSTENT:
 *	This symbol, if defined, indicates that the sethostent() routine is
 *	available.
 */
/*#define HAS_SETHOSTENT		/ **/

/* HAS_SETNETENT:
 *	This symbol, if defined, indicates that the setnetent() routine is
 *	available.
 */
/*#define HAS_SETNETENT		/ **/

/* HAS_SETPROTOENT:
 *	This symbol, if defined, indicates that the setprotoent() routine is
 *	available.
 */
/*#define HAS_SETPROTOENT		/ **/

/* HAS_SETPGRP:
 *	This symbol, if defined, indicates that the setpgrp routine is
 *	available to set the current process group.
 */
/* USE_BSD_SETPGRP:
 *	This symbol, if defined, indicates that setpgrp needs two
 *	arguments whereas USG one needs none.  See also HAS_SETPGID
 *	for a POSIX interface.
 */
/*#define HAS_SETPGRP		/ **/
/*#define USE_BSD_SETPGRP	/ **/

/* HAS_SETPWENT:
 *	This symbol, if defined, indicates that the setpwent routine is
 *	available for initializing sequential access of the passwd database.
 */
/*#define HAS_SETPWENT		/ **/

/* HAS_SETSERVENT:
 *	This symbol, if defined, indicates that the setservent() routine is
 *	available.
 */
/*#define HAS_SETSERVENT		/ **/

/* HAS_SETVBUF:
 *	This symbol, if defined, indicates that the setvbuf routine is
 *	available to change buffering on an open stdio stream.
 *	to a line-buffered mode.
 */
/*#define HAS_SETVBUF		/ **/

/* HAS_SHM:
 *	This symbol, if defined, indicates that the entire shm*(2) library is
 *	supported.
 */
/*#define HAS_SHM		/ **/

/* Shmat_t:
 *	This symbol holds the return type of the shmat() system call.
 *	Usually set to 'void *' or 'char *'.
 */
/* HAS_SHMAT_PROTOTYPE:
 *	This symbol, if defined, indicates that the sys/shm.h includes
 *	a prototype for shmat().  Otherwise, it is up to the program to
 *	guess one.  Shmat_t shmat(int, Shmat_t, int) is a good guess,
 *	but not always right so it should be emitted by the program only
 *	when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs.
 */
#define Shmat_t void *	/**/
/*#define HAS_SHMAT_PROTOTYPE	/ **/

/* HAS_SOCKET:
 *	This symbol, if defined, indicates that the BSD socket interface is
 *	supported.
 */
/* HAS_SOCKETPAIR:
 *	This symbol, if defined, indicates that the BSD socketpair() call is
 *	supported.
 */
/* HAS_SOCKADDR_SA_LEN:
 *	This symbol, if defined, indicates that the struct sockaddr
 *	structure has a member called sa_len, indicating the length of
 *	the structure.
 */
/* HAS_SOCKADDR_IN6:
 *	This symbol, if defined, indicates the availability of
 *	struct sockaddr_in6;
 */
/* HAS_SOCKADDR_STORAGE:
 *	This symbol, if defined, indicates the availability of
 *	struct sockaddr_storage;
 */
/* HAS_SIN6_SCOPE_ID:
 *	This symbol, if defined, indicates that the struct sockaddr_in6
 *	structure has a member called sin6_scope_id.
 */
/* HAS_IP_MREQ:
 *	This symbol, if defined, indicates the availability of
 *	struct ip_mreq;
 */
/* HAS_IP_MREQ_SOURCE:
 *	This symbol, if defined, indicates the availability of
 *	struct ip_mreq_source;
 */
/* HAS_IPV6_MREQ:
 *	This symbol, if defined, indicates the availability of
 *	struct ipv6_mreq;
 */
/* HAS_IPV6_MREQ_SOURCE:
 *	This symbol, if defined, indicates the availability of
 *	struct ipv6_mreq_source;
 */
/*#define	HAS_SOCKET		/ **/
/*#define	HAS_SOCKETPAIR	/ **/
/*#define	HAS_SOCKADDR_SA_LEN	/ **/
/*#define	HAS_SOCKADDR_IN6	/ **/
/*#define	HAS_SOCKADDR_STORAGE	/ **/
/*#define	HAS_SIN6_SCOPE_ID	/ **/
/*#define	HAS_IP_MREQ	/ **/
/*#define	HAS_IP_MREQ_SOURCE	/ **/
/*#define	HAS_IPV6_MREQ	/ **/
/*#define	HAS_IPV6_MREQ_SOURCE	/ **/

/* USE_STAT_BLOCKS:
 *	This symbol is defined if this system has a stat structure declaring
 *	st_blksize and st_blocks.
 */
#ifndef USE_STAT_BLOCKS
/*#define USE_STAT_BLOCKS	/ **/
#endif

/* HAS_SYS_ERRLIST:
 *	This symbol, if defined, indicates that the sys_errlist array is
 *	available to translate error numbers to strings. The extern int
 *	sys_nerr gives the size of that table.
 */
/*#define HAS_SYS_ERRLIST	/ **/

/* HAS_STRTOUL:
 *	This symbol, if defined, indicates that the strtoul routine is
 *	available to provide conversion of strings to unsigned long.
 */
#define HAS_STRTOUL	/**/

/* HAS_UNION_SEMUN:
 *	This symbol, if defined, indicates that the union semun is
 *	defined by including <sys/sem.h>.  If not, the user code
 *	probably needs to define it as:
 *	 union semun {
 *	    int val;
 *	    struct semid_ds *buf;
 *	    unsigned short *array;
 *	 }
 */
/* USE_SEMCTL_SEMUN:
 *	This symbol, if defined, indicates that union semun is
 *	used for semctl IPC_STAT.
 */
/* USE_SEMCTL_SEMID_DS:
 *	This symbol, if defined, indicates that struct semid_ds * is
 *	used for semctl IPC_STAT.
 */
/*#define HAS_UNION_SEMUN	/ **/
/*#define USE_SEMCTL_SEMUN	/ **/
/*#define USE_SEMCTL_SEMID_DS	/ **/

/* HAS_VFORK:
 *	This symbol, if defined, indicates that vfork() exists.
 */
/*#define HAS_VFORK	/ **/

/* HAS_PSEUDOFORK:
 *	This symbol, if defined, indicates that an emulation of the
 *	fork routine is available.
 */
/*#define HAS_PSEUDOFORK	/ **/

/* Signal_t:
 *	This symbol's value is either "void" or "int", corresponding to the
 *	appropriate return type of a signal handler.  Thus, you can declare
 *	a signal handler using "Signal_t (*handler)()", and define the
 *	handler using "Signal_t handler(sig)".
 */
#define Signal_t int	/* Signal handler's return type */

/* I_DIRENT:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <dirent.h>. Using this symbol also triggers the definition
 *	of the Direntry_t define which ends up being 'struct dirent' or
 *	'struct direct' depending on the availability of <dirent.h>.
 */
/* DIRNAMLEN:
 *	This symbol, if defined, indicates to the C program that the length
 *	of directory entry names is provided by a d_namlen field.  Otherwise
 *	you need to do strlen() on the d_name field.
 */
/* Direntry_t:
 *	This symbol is set to 'struct direct' or 'struct dirent' depending on
 *	whether dirent is available or not. You should use this pseudo type to
 *	portably declare your directory entries.
 */
#define I_DIRENT		/**/
/*#define DIRNAMLEN	/ **/
#define Direntry_t struct dirent

/* I_EXECINFO:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <execinfo.h> for backtrace() support.
 */
/*#define I_EXECINFO		/ **/

/* I_GRP:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <grp.h>.
 */
/* GRPASSWD:
 *	This symbol, if defined, indicates to the C program that struct group
 *	in <grp.h> contains gr_passwd.
 */
/*#define I_GRP		/ **/
/*#define GRPASSWD	/ **/

/* I_NDBM:
 *	This symbol, if defined, indicates that <ndbm.h> exists and should
 *	be included.
 */
/* I_GDBMNDBM:
 *	This symbol, if defined, indicates that <gdbm/ndbm.h> exists and should
 *	be included.  This was the location of the ndbm.h compatibility file
 *	in RedHat 7.1.
 */
/* I_GDBM_NDBM:
 *	This symbol, if defined, indicates that <gdbm-ndbm.h> exists and should
 *	be included.  This is the location of the ndbm.h compatibility file
 *	in Debian 4.0.
 */
/* NDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/* GDBMNDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <gdbm/ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/* GDBM_NDBM_H_USES_PROTOTYPES:
 *	This symbol, if defined, indicates that <gdbm-ndbm.h> uses real ANSI C
 *	prototypes instead of K&R style function declarations without any
 *	parameter information. While ANSI C prototypes are supported in C++,
 *	K&R style function declarations will yield errors.
 */
/*#define I_NDBM	/ **/
/*#define I_GDBMNDBM	/ **/
/*#define I_GDBM_NDBM	/ **/
/*#define NDBM_H_USES_PROTOTYPES	/ **/
/*#define GDBMNDBM_H_USES_PROTOTYPES	/ **/
/*#define GDBM_NDBM_H_USES_PROTOTYPES	/ **/

/* I_NETDB:
 *	This symbol, if defined, indicates that <netdb.h> exists and
 *	should be included.
 */
/*#define I_NETDB		/ **/

/* I_NET_ERRNO:
 *	This symbol, if defined, indicates that <net/errno.h> exists and
 *	should be included.
 */
/*#define I_NET_ERRNO		/ **/

/* I_PWD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <pwd.h>.
 */
/* PWQUOTA:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_quota.
 */
/* PWAGE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_age.
 */
/* PWCHANGE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_change.
 */
/* PWCLASS:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_class.
 */
/* PWEXPIRE:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_expire.
 */
/* PWCOMMENT:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_comment.
 */
/* PWGECOS:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_gecos.
 */
/* PWPASSWD:
 *	This symbol, if defined, indicates to the C program that struct passwd
 *	contains pw_passwd.
 */
/*#define I_PWD		/ **/
/*#define PWQUOTA	/ **/
/*#define PWAGE	/ **/
/*#define PWCHANGE	/ **/
/*#define PWCLASS	/ **/
/*#define PWEXPIRE	/ **/
/*#define PWCOMMENT	/ **/
/*#define PWGECOS	/ **/
/*#define PWPASSWD	/ **/

/* I_SYSUIO:
 *	This symbol, if defined, indicates that <sys/uio.h> exists and
 *	should be included.
 */
/*#define	I_SYSUIO		/ **/

/* I_TERMIO:
 *	This symbol, if defined, indicates that the program should include
 *	<termio.h> rather than <sgtty.h>.  There are also differences in
 *	the ioctl() calls that depend on the value of this symbol.
 */
/* I_TERMIOS:
 *	This symbol, if defined, indicates that the program should include
 *	the POSIX termios.h rather than sgtty.h or termio.h.
 *	There are also differences in the ioctl() calls that depend on the
 *	value of this symbol.
 */
/* I_SGTTY:
 *	This symbol, if defined, indicates that the program should include
 *	<sgtty.h> rather than <termio.h>.  There are also differences in
 *	the ioctl() calls that depend on the value of this symbol.
 */
/*#define I_TERMIO		/ **/
/*#define I_TERMIOS		/ **/
/*#define I_SGTTY		/ **/

/* Free_t:
 *	This variable contains the return type of free().  It is usually
 *	void, but occasionally int.
 */
/* Malloc_t:
 *	This symbol is the type of pointer returned by malloc and realloc.
 */
#define Malloc_t void *			/**/
#define Free_t void			/**/

/* PERL_MALLOC_WRAP:
 *	This symbol, if defined, indicates that we'd like malloc wrap checks.
 */
/*#define PERL_MALLOC_WRAP		/ **/

/* MYMALLOC:
 *	This symbol, if defined, indicates that we're using our own malloc.
 */
/*#define MYMALLOC			/ **/

/* SH_PATH:
 *	This symbol contains the full pathname to the shell used on this
 *	on this system to execute Bourne shell scripts.  Usually, this will be
 *	/bin/sh, though it's possible that some systems will have /bin/ksh,
 *	/bin/pdksh, /bin/ash, /bin/bash, or even something such as
 *	D:/bin/sh.exe.
 */
#define SH_PATH "/bin/sh"  /**/

/* SIG_NAME:
 *	This symbol contains a list of signal names in order of
 *	signal number. This is intended
 *	to be used as a static array initialization, like this:
 *		char *sig_name[] = { SIG_NAME };
 *	The signals in the list are separated with commas, and each signal
 *	is surrounded by double quotes. There is no leading SIG in the signal
 *	name, i.e. SIGQUIT is known as "QUIT".
 *	Gaps in the signal numbers (up to NSIG) are filled in with NUMnn,
 *	etc., where nn is the actual signal number (e.g. NUM37).
 *	The signal number for sig_name[i] is stored in sig_num[i].
 *	The last element is 0 to terminate the list with a NULL.  This
 *	corresponds to the 0 at the end of the sig_name_init list.
 *	Note that this variable is initialized from the sig_name_init,
 *	not from sig_name (which is unused).
 */
/* SIG_NUM:
 *	This symbol contains a list of signal numbers, in the same order as the
 *	SIG_NAME list. It is suitable for static array initialization, as in:
 *		int sig_num[] = { SIG_NUM };
 *	The signals in the list are separated with commas, and the indices
 *	within that list and the SIG_NAME list match, so it's easy to compute
 *	the signal name from a number or vice versa at the price of a small
 *	dynamic linear lookup.
 *	Duplicates are allowed, but are moved to the end of the list.
 *	The signal number corresponding to sig_name[i] is sig_number[i].
 *	if (i < NSIG) then sig_number[i] == i.
 *	The last element is 0, corresponding to the 0 at the end of
 *	the sig_name_init list.
 *	Note that this variable is initialized from the sig_num_init,
 *	not from sig_num (which is unused).
 */
/* SIG_SIZE:
 *	This variable contains the number of elements of the SIG_NAME
 *	and SIG_NUM arrays, excluding the final NULL entry.
 */
#define SIG_NAME 0		/**/
#define SIG_NUM  0		/**/
#define SIG_SIZE 1			/**/

/* USE_CROSS_COMPILE:
 *	This symbol, if defined, indicates that Perl is being cross-compiled.
 */
/* PERL_TARGETARCH:
 *	This symbol, if defined, indicates the target architecture
 *	Perl has been cross-compiled to.  Undefined if not a cross-compile.
 */
#ifndef USE_CROSS_COMPILE
/*#define	USE_CROSS_COMPILE	/ **/
#define	PERL_TARGETARCH	""	/**/
#endif

/* PERL_USE_DEVEL:
 *	This symbol, if defined, indicates that Perl was configured with
 *	-Dusedevel, to enable development features.  This should not be
 *	done for production builds.
 */
/*#define	PERL_USE_DEVEL		/ **/

/* HAS_ATOLF:
 *	This symbol, if defined, indicates that the atolf routine is
 *	available to convert strings into long doubles.
 */
/*#define HAS_ATOLF		/ **/

/* HAS_ATOLL:
 *	This symbol, if defined, indicates that the atoll routine is
 *	available to convert strings into long longs.
 */
/*#define HAS_ATOLL		/ **/

/* HAS__FWALK:
 *	This symbol, if defined, indicates that the _fwalk system call is
 *	available to apply a function to all the file handles.
 */
/*#define HAS__FWALK		/ **/

/* HAS_ACCEPT4:
 *	This symbol, if defined, indicates that the accept4 routine is
 *	available to accept socket connections.
 */
/*#define HAS_ACCEPT4	/ **/

/* HAS_ACOSH:
 *	This symbol, if defined, indicates that the acosh routine is
 *	available to do the inverse hyperbolic cosine function.
 */
/*#define HAS_ACOSH		/ **/

/* HAS_AINTL:
 *	This symbol, if defined, indicates that the aintl routine is
 *	available.  If copysignl is also present we can emulate modfl.
 */
/*#define HAS_AINTL		/ **/

/* HAS_ASINH:
 *	This symbol, if defined, indicates that the asinh routine is
 *	available to do the inverse hyperbolic sine function.
 */
/*#define HAS_ASINH		/ **/

/* HAS_ATANH:
 *	This symbol, if defined, indicates that the atanh routine is
 *	available to do the inverse hyperbolic tangent function.
 */
/*#define HAS_ATANH		/ **/

/* HAS_NON_INT_BITFIELDS:
 *	This symbol, if defined, indicates that the C compiler accepts, without
 *	error or warning, struct bitfields that are declared with sizes other
 *	than plain 'int'; for example 'unsigned char' is accepted.
 */
#define HAS_NON_INT_BITFIELDS	/**/

/* HAS_BUILTIN_CHOOSE_EXPR:
 *	Can we handle GCC builtin for compile-time ternary-like expressions
 */
/* HAS_BUILTIN_EXPECT:
 *	Can we handle GCC builtin for telling that certain values are more
 *	likely
 */
/*#define HAS_BUILTIN_EXPECT	/ **/
/*#define HAS_BUILTIN_CHOOSE_EXPR	/ **/

/* HAS_BUILTIN_ADD_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_add_overflow for adding integers with overflow checks.
 */
/* HAS_BUILTIN_SUB_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_sub_overflow for subtracting integers with overflow checks.
 */
/* HAS_BUILTIN_MUL_OVERFLOW:
 *	This symbol, if defined, indicates that the compiler supports
 *	__builtin_mul_overflow for multiplying integers with overflow checks.
 */
/*#define HAS_BUILTIN_ADD_OVERFLOW	/ **/
/*#define HAS_BUILTIN_SUB_OVERFLOW	/ **/
/*#define HAS_BUILTIN_MUL_OVERFLOW	/ **/

/* HAS_C99_VARIADIC_MACROS:
 *	If defined, the compiler supports C99 variadic macros.
 */
/*#define	HAS_C99_VARIADIC_MACROS	/ **/

/* HAS_CLASS:
 *	This symbol, if defined, indicates that the class routine is
 *	available to classify doubles.  Available for example in AIX.
 *	The returned values are defined in <float.h> and are:
 *
 *	FP_PLUS_NORM	Positive normalized, nonzero
 *	FP_MINUS_NORM	Negative normalized, nonzero
 *	FP_PLUS_DENORM	Positive denormalized, nonzero
 *	FP_MINUS_DENORM	Negative denormalized, nonzero
 *	FP_PLUS_ZERO	+0.0
 *	FP_MINUS_ZERO	-0.0
 *	FP_PLUS_INF	+INF
 *	FP_MINUS_INF	-INF
 *	FP_NANS		Signaling Not a Number (NaNS)
 *	FP_NANQ		Quiet Not a Number (NaNQ)
 */
/*#define HAS_CLASS		/ **/

/* HAS_CLEARENV:
 *	This symbol, if defined, indicates that the clearenv () routine is
 *	available for use.
 */
/*#define HAS_CLEARENV		/ **/

/* HAS_STRUCT_CMSGHDR:
 *	This symbol, if defined, indicates that the struct cmsghdr
 *	is supported.
 */
/*#define HAS_STRUCT_CMSGHDR	/ **/

/* HAS_COPYSIGN:
 *	This symbol, if defined, indicates that the copysign routine is
 *	available to do the copysign function.
 */
/*#define HAS_COPYSIGN		/ **/

/* HAS_COPYSIGNL:
 *	This symbol, if defined, indicates that the copysignl routine is
 *	available.  If aintl is also present we can emulate modfl.
 */
/*#define HAS_COPYSIGNL		/ **/

/* USE_CPLUSPLUS:
 *	This symbol, if defined, indicates that a C++ compiler was
 *	used to compiled Perl and will be used to compile extensions.
 */
/*#define USE_CPLUSPLUS		/ **/

/* HAS_DBMINIT_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the dbminit() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int dbminit(char *);
 */
/*#define	HAS_DBMINIT_PROTO	/ **/

/* HAS_DIR_DD_FD:
 *	This symbol, if defined, indicates that the the DIR* dirstream
 *	structure contains a member variable named dd_fd.
 */
/*#define HAS_DIR_DD_FD		/ **/

/* HAS_DIRFD:
 *	This manifest constant lets the C program know that dirfd
 *	is available.
 */
/*#define HAS_DIRFD		/ **/

/* DLSYM_NEEDS_UNDERSCORE:
 *	This symbol, if defined, indicates that we need to prepend an
 *	underscore to the symbol name before calling dlsym().  This only
 *	makes sense if you *have* dlsym, which we will presume is the
 *	case if you're using dl_dlopen.xs.
 */
/*#define	DLSYM_NEEDS_UNDERSCORE	/ **/

/* HAS_DUP3:
 *	This symbol, if defined, indicates that the dup3 routine is
 *	available to duplicate file descriptors.
 */
/*#define HAS_DUP3	/ **/

/* HAS_ERF:
 *	This symbol, if defined, indicates that the erf routine is
 *	available to do the error function.
 */
/*#define HAS_ERF		/ **/

/* HAS_ERFC:
 *	This symbol, if defined, indicates that the erfc routine is
 *	available to do the complementary error function.
 */
/*#define HAS_ERFC		/ **/

/* HAS_EXP2:
 *	This symbol, if defined, indicates that the exp2 routine is
 *	available to do the 2**x function.
 */
/*#define HAS_EXP2		/ **/

/* HAS_EXPM1:
 *	This symbol, if defined, indicates that the expm1 routine is
 *	available to do the exp(x) - 1 when x is near 1 function.
 */
/*#define HAS_EXPM1		/ **/

/* HAS_FAST_STDIO:
 *	This symbol, if defined, indicates that the "fast stdio"
 *	is available to manipulate the stdio buffers directly.
 */
/*#define HAS_FAST_STDIO		/ **/

/* HAS_FCHDIR:
 *	This symbol, if defined, indicates that the fchdir routine is
 *	available to change directory using a file descriptor.
 */
/*#define HAS_FCHDIR		/ **/

/* FCNTL_CAN_LOCK:
 *	This symbol, if defined, indicates that fcntl() can be used
 *	for file locking.  Normally on Unix systems this is defined.
 *	It may be undefined on VMS.
 */
/*#define FCNTL_CAN_LOCK		/ **/

/* HAS_FDCLOSE:
 *	This symbol, if defined, indicates that the fdclose routine is
 *	available to free a FILE structure without closing the underlying
 *	file descriptor.  This function appeared in FreeBSD 10.2.
 */
/*#define HAS_FDCLOSE		/ **/

/* HAS_FDIM:
 *	This symbol, if defined, indicates that the fdim routine is
 *	available to do the positive difference function.
 */
/*#define HAS_FDIM		/ **/

/* HAS_FDOPENDIR:
 *	This symbol, if defined, indicates that the fdopendir() routine is
 *	available to open directories using an opened file descriptor already
 *	referring to that directory.
 */
/*#define HAS_FDOPENDIR		/ **/

/* HAS_FEGETROUND:
 *	This symbol, if defined, indicates that the fegetround routine is
 *	available to return the macro corresponding to the current rounding
 *	mode.
 */
/*#define HAS_FEGETROUND	/ **/

/* HAS_FFS:
 *	This symbol, if defined, indicates that the ffs routine is available
 *	to find the first bit set in its argument.  If it's not available,
 *	roll your own.
 */
/* HAS_FFSL:
 *	This symbol, if defined, indicates that the ffsl routine is available
 *	to find the first bit set in its argument.  If it's not available,
 *	roll your own.
 */
/*#define HAS_FFS		/ **/
/*#define HAS_FFSL		/ **/

/* HAS_FINITE:
 *	This symbol, if defined, indicates that the finite routine is
 *	available to check whether a double is finite (non-infinity non-NaN).
 */
/*#define HAS_FINITE		/ **/

/* HAS_FINITEL:
 *	This symbol, if defined, indicates that the finitel routine is
 *	available to check whether a long double is finite
 *	(non-infinity non-NaN).
 */
/*#define HAS_FINITEL		/ **/

/* HAS_FLOCK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the flock() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int flock(int, int);
 */
/*#define	HAS_FLOCK_PROTO	/ **/

/* HAS_FMA:
 *	This symbol, if defined, indicates that the fma routine is
 *	available to do the multiply-add function.
 */
/*#define HAS_FMA		/ **/

/* HAS_FMAX:
 *	This symbol, if defined, indicates that the fmax routine is
 *	available to do the maximum function.
 */
/*#define HAS_FMAX		/ **/

/* HAS_FMIN:
 *	This symbol, if defined, indicates that the fmin routine is
 *	available to do the minimum function.
 */
/*#define HAS_FMIN		/ **/

/* HAS_FP_CLASS:
 *	This symbol, if defined, indicates that the fp_class routine is
 *	available to classify doubles.  Available for example in Digital UNIX.
 *	The returned values are defined in <math.h> and are:
 *
 *	FP_SNAN           Signaling NaN (Not-a-Number)
 *	FP_QNAN           Quiet NaN (Not-a-Number)
 *	FP_POS_INF        +infinity
 *	FP_NEG_INF        -infinity
 *	FP_POS_NORM       Positive normalized
 *	FP_NEG_NORM       Negative normalized
 *	FP_POS_DENORM     Positive denormalized
 *	FP_NEG_DENORM     Negative denormalized
 *	FP_POS_ZERO       +0.0 (positive zero)
 *	FP_NEG_ZERO       -0.0 (negative zero)
 */
/*#define HAS_FP_CLASS		/ **/

/* HAS_FP_CLASSL:
 *	This symbol, if defined, indicates that the fp_classl routine is
 *	available to classify long doubles.  Available for example in
 *	Digital UNIX.  See for possible values HAS_FP_CLASS.
 */
/*#define HAS_FP_CLASSL		/ **/

/* HAS_FPCLASS:
 *	This symbol, if defined, indicates that the fpclass routine is
 *	available to classify doubles.  Available for example in Solaris/SVR4.
 *	The returned values are defined in <ieeefp.h> and are:
 *
 *	FP_SNAN		signaling NaN
 *	FP_QNAN		quiet NaN
 *	FP_NINF		negative infinity
 *	FP_PINF		positive infinity
 *	FP_NDENORM	negative denormalized non-zero
 *	FP_PDENORM	positive denormalized non-zero
 *	FP_NZERO	negative zero
 *	FP_PZERO	positive zero
 *	FP_NNORM	negative normalized non-zero
 *	FP_PNORM	positive normalized non-zero
 */
/*#define HAS_FPCLASS		/ **/

/* HAS_FPCLASSIFY:
 *	This symbol, if defined, indicates that the fpclassify routine is
 *	available to classify doubles.  Available for example in HP-UX.
 *	The returned values are defined in <math.h> and are
 *
 *	  FP_NORMAL     Normalized
 *	  FP_ZERO       Zero
 *	  FP_INFINITE   Infinity
 *	  FP_SUBNORMAL  Denormalized
 *	  FP_NAN        NaN
 *
 */
/* HAS_FP_CLASSIFY:
 *	This symbol, if defined, indicates that the fp_classify routine is
 *	available to classify doubles. The values are defined in <math.h>
 *
 *	  FP_NORMAL     Normalized
 *	  FP_ZERO       Zero
 *	  FP_INFINITE   Infinity
 *	  FP_SUBNORMAL  Denormalized
 *	  FP_NAN        NaN
 *
 */
/*#define	HAS_FPCLASSIFY		/ **/
/*#define	HAS_FP_CLASSIFY		/ **/

/* HAS_FPCLASSL:
 *	This symbol, if defined, indicates that the fpclassl routine is
 *	available to classify long doubles.  Available for example in IRIX.
 *	The returned values are defined in <ieeefp.h> and are:
 *
 *	FP_SNAN		signaling NaN
 *	FP_QNAN		quiet NaN
 *	FP_NINF		negative infinity
 *	FP_PINF		positive infinity
 *	FP_NDENORM	negative denormalized non-zero
 *	FP_PDENORM	positive denormalized non-zero
 *	FP_NZERO	negative zero
 *	FP_PZERO	positive zero
 *	FP_NNORM	negative normalized non-zero
 *	FP_PNORM	positive normalized non-zero
 */
/*#define HAS_FPCLASSL		/ **/

/* HAS_FPGETROUND:
 *	This symbol, if defined, indicates that the fpgetround routine is
 *	available to get the floating point rounding mode.
 */
/*#define HAS_FPGETROUND		/ **/

/* HAS_FPOS64_T:
 *	This symbol will be defined if the C compiler supports fpos64_t.
 */
/*#define	HAS_FPOS64_T	/ **/

/* HAS_FREXPL:
 *	This symbol, if defined, indicates that the frexpl routine is
 *	available to break a long double floating-point number into
 *	a normalized fraction and an integral power of 2.
 */
/*#define HAS_FREXPL		/ **/

/* HAS_STRUCT_FS_DATA:
 *	This symbol, if defined, indicates that the struct fs_data
 *	to do statfs() is supported.
 */
/*#define HAS_STRUCT_FS_DATA	/ **/

/* HAS_FCHMODAT:
 *	This symbol is defined if the fchmodat() routine is available.
 */
/* HAS_LINKAT:
 *	This symbol is defined if the linkat() routine is available.
 */
/* HAS_OPENAT:
 *	This symbol is defined if the openat() routine is available.
 */
/* HAS_RENAMEAT:
 *	This symbol is defined if the renameat() routine is available.
 */
/* HAS_UNLINKAT:
 *	This symbol is defined if the unlinkat() routine is available.
 */
/*#define	HAS_FCHMODAT	/ **/
/*#define	HAS_LINKAT	/ **/
/*#define	HAS_OPENAT	/ **/
/*#define	HAS_RENAMEAT	/ **/
/*#define	HAS_UNLINKAT	/ **/

/* HAS_FSEEKO:
 *	This symbol, if defined, indicates that the fseeko routine is
 *	available to fseek beyond 32 bits (useful for ILP32 hosts).
 */
/*#define HAS_FSEEKO		/ **/

/* HAS_FSTATFS:
 *	This symbol, if defined, indicates that the fstatfs routine is
 *	available to stat filesystems by file descriptors.
 */
/*#define HAS_FSTATFS		/ **/

/* HAS_FSYNC:
 *	This symbol, if defined, indicates that the fsync routine is
 *	available to write a file's modified data and attributes to
 *	permanent storage.
 */
/*#define HAS_FSYNC		/ **/

/* HAS_FTELLO:
 *	This symbol, if defined, indicates that the ftello routine is
 *	available to ftell beyond 32 bits (useful for ILP32 hosts).
 */
/*#define HAS_FTELLO		/ **/

/* HAS_FUTIMES:
 *	This symbol, if defined, indicates that the futimes routine is
 *	available to change file descriptor time stamps with struct timevals.
 */
/*#define HAS_FUTIMES		/ **/

/* HAS_GAI_STRERROR:
 *	This symbol, if defined, indicates that the gai_strerror routine
 *	is available to translate error codes returned by getaddrinfo()
 *	into human readable strings.
 */
/*#define HAS_GAI_STRERROR	/ **/

/* HAS_GETADDRINFO:
 *	This symbol, if defined, indicates that the getaddrinfo() function
 *	is available for use.
 */
/*#define HAS_GETADDRINFO		/ **/

/* HAS_GETCWD:
 *	This symbol, if defined, indicates that the getcwd routine is
 *	available to get the current working directory.
 */
/*#define HAS_GETCWD		/ **/

/* HAS_GETESPWNAM:
 *	This symbol, if defined, indicates that the getespwnam system call is
 *	available to retrieve enhanced (shadow) password entries by name.
 */
/*#define HAS_GETESPWNAM		/ **/

/* HAS_GETFSSTAT:
 *	This symbol, if defined, indicates that the getfsstat routine is
 *	available to stat filesystems in bulk.
 */
/*#define HAS_GETFSSTAT		/ **/

/* HAS_GETITIMER:
 *	This symbol, if defined, indicates that the getitimer routine is
 *	available to return interval timers.
 */
/*#define HAS_GETITIMER		/ **/

/* HAS_GETMNT:
 *	This symbol, if defined, indicates that the getmnt routine is
 *	available to get filesystem mount info by filename.
 */
/*#define HAS_GETMNT		/ **/

/* HAS_GETMNTENT:
 *	This symbol, if defined, indicates that the getmntent routine is
 *	available to iterate through mounted file systems to get their info.
 */
/*#define HAS_GETMNTENT		/ **/

/* HAS_GETNAMEINFO:
 *	This symbol, if defined, indicates that the getnameinfo() function
 *	is available for use.
 */
/*#define HAS_GETNAMEINFO		/ **/

/* HAS_GETPRPWNAM:
 *	This symbol, if defined, indicates that the getprpwnam system call is
 *	available to retrieve protected (shadow) password entries by name.
 */
/*#define HAS_GETPRPWNAM		/ **/

/* HAS_GETSPNAM:
 *	This symbol, if defined, indicates that the getspnam system call is
 *	available to retrieve SysV shadow password entries by name.
 */
/*#define HAS_GETSPNAM		/ **/

/* HAS_HASMNTOPT:
 *	This symbol, if defined, indicates that the hasmntopt routine is
 *	available to query the mount options of file systems.
 */
/*#define HAS_HASMNTOPT		/ **/

/* HAS_HYPOT:
 *	This symbol, if defined, indicates that the hypot routine is
 *	available to do the hypotenuse function.
 */
/*#define HAS_HYPOT		/ **/

/* HAS_ILOGB:
 *	This symbol, if defined, indicates that the ilogb routine is
 *	available to get integer exponent of a floating-point value.
 */
/*#define HAS_ILOGB		/ **/

/* HAS_ILOGBL:
 *	This symbol, if defined, indicates that the ilogbl routine is
 *	available.  If scalbnl is also present we can emulate frexpl.
 */
/*#define HAS_ILOGBL		/ **/

/* HAS_INETNTOP:
 *	This symbol, if defined, indicates that the inet_ntop() function
 *	is available to parse IPv4 and IPv6 strings.
 */
/*#define HAS_INETNTOP		/ **/

/* HAS_INETPTON:
 *	This symbol, if defined, indicates that the inet_pton() function
 *	is available to parse IPv4 and IPv6 strings.
 */
/*#define HAS_INETPTON		/ **/

/* HAS_INT64_T:
 *	This symbol will defined if the C compiler supports int64_t.
 *	Usually the <inttypes.h> needs to be included, but sometimes
 *	<sys/types.h> is enough.
 */
/*#define     HAS_INT64_T               / **/

/* HAS_ISBLANK:
 *	This manifest constant lets the C program know that isblank
 *	is available.
 */
/*#define HAS_ISBLANK		/ **/

/* HAS_ISFINITE:
 *	This symbol, if defined, indicates that the isfinite routine is
 *	available to check whether a double is finite (non-infinity non-NaN).
 */
/*#define HAS_ISFINITE		/ **/

/* HAS_ISFINITEL:
 *	This symbol, if defined, indicates that the isfinitel routine is
 *	available to check whether a long double is finite.
 *	(non-infinity non-NaN).
 */
/*#define HAS_ISFINITEL		/ **/

/* HAS_ISINF:
 *	This symbol, if defined, indicates that the isinf routine is
 *	available to check whether a double is an infinity.
 */
/*#define HAS_ISINF		/ **/

/* HAS_ISINFL:
 *	This symbol, if defined, indicates that the isinfl routine is
 *	available to check whether a long double is an infinity.
 */
/*#define HAS_ISINFL		/ **/

/* HAS_ISLESS:
 *	This symbol, if defined, indicates that the isless routine is
 *	available to do the isless function.
 */
/*#define HAS_ISLESS		/ **/

/* HAS_ISNAN:
 *	This symbol, if defined, indicates that the isnan routine is
 *	available to check whether a double is a NaN.
 */
/*#define HAS_ISNAN		/ **/

/* HAS_ISNANL:
 *	This symbol, if defined, indicates that the isnanl routine is
 *	available to check whether a long double is a NaN.
 */
/*#define HAS_ISNANL		/ **/

/* HAS_ISNORMAL:
 *	This symbol, if defined, indicates that the isnormal routine is
 *	available to check whether a double is normal (non-zero normalized).
 */
/*#define HAS_ISNORMAL		/ **/

/* HAS_J0:
 *	This symbol, if defined, indicates to the C program that the
 *	j0() function is available for Bessel functions of the first
 *	kind of the order zero, for doubles.
 */
/* HAS_J0L:
 *	This symbol, if defined, indicates to the C program that the
 *	j0l() function is available for Bessel functions of the first
 *	kind of the order zero, for long doubles.
 */
/*#define	HAS_J0		/ **/
/*#define	HAS_J0L		/ **/

/* HAS_LC_MONETARY_2008:
 *	This symbol, if defined, indicates that the localeconv routine is
 *	available and has the additional members added in POSIX 1003.1-2008.
 */
/*#define HAS_LC_MONETARY_2008		/ **/

/* HAS_LDBL_DIG:
 *	This symbol, if defined, indicates that this system's <float.h>
 *	or <limits.h> defines the symbol LDBL_DIG, which is the number
 *	of significant digits in a long double precision number. Unlike
 *	for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined.
 */
/*#define HAS_LDBL_DIG	/ * */

/* HAS_LGAMMA:
 *	This symbol, if defined, indicates that the lgamma routine is
 *	available to do the log gamma function.  See also HAS_TGAMMA and
 *	HAS_LGAMMA_R.
 */
/*#define HAS_LGAMMA		/ **/

/* HAS_LGAMMA_R:
 *	This symbol, if defined, indicates that the lgamma_r routine is
 *	available to do the log gamma function without using the global
 *	signgam variable.
 */
/*#define HAS_LGAMMA_R		/ **/

/* LIBM_LIB_VERSION:
 *	This symbol, if defined, indicates that libm exports _LIB_VERSION
 *	and that math.h defines the enum to manipulate it.
 */
/*#define LIBM_LIB_VERSION		/ **/

/* HAS_LLRINT:
 *	This symbol, if defined, indicates that the llrint routine is
 *	available to return the long long value closest to a double
 *	(according to the current rounding mode).
 */
/*#define HAS_LLRINT		/ **/

/* HAS_LLRINTL:
 *	This symbol, if defined, indicates that the llrintl routine is
 *	available to return the long long value closest to a long double
 *	(according to the current rounding mode).
 */
/*#define HAS_LLRINTL		/ **/

/* HAS_LLROUND:
 *	This symbol, if defined, indicates that the llround routine is
 *	available to return the nearest long long value.
 */
/*#define HAS_LLROUND		/ **/

/* HAS_LLROUNDL:
 *	This symbol, if defined, indicates that the llroundl routine is
 *	available to return the nearest long long value away from zero of
 *	the long double argument value.
 */
/*#define HAS_LLROUNDL		/ **/

/* HAS_LOG1P:
 *	This symbol, if defined, indicates that the log1p routine is
 *	available to do the logarithm of 1 plus argument function.
 */
/*#define HAS_LOG1P		/ **/

/* HAS_LOG2:
 *	This symbol, if defined, indicates that the log2 routine is
 *	available to do the log2 function.
 */
/*#define HAS_LOG2		/ **/

/* HAS_LOGB:
 *	This symbol, if defined, indicates that the logb routine is
 *	available to do the logb function.
 */
/*#define HAS_LOGB		/ **/

/* HAS_LRINT:
 *	This symbol, if defined, indicates that the lrint routine is
 *	available to return the integral value closest to a double
 *	(according to the current rounding mode).
 */
/*#define HAS_LRINT		/ **/

/* HAS_LRINTL:
 *	This symbol, if defined, indicates that the lrintl routine is
 *	available to return the integral value closest to a long double
 *	(according to the current rounding mode).
 */
/*#define HAS_LRINTL		/ **/

/* HAS_LROUND:
 *	This symbol, if defined, indicates that the lround routine is
 *	available to return the nearest integral value.
 */
/*#define HAS_LROUND		/ **/

/* HAS_LROUNDL:
 *	This symbol, if defined, indicates that the lroundl routine is
 *	available to return the nearest integral value away from zero of
 *	the long double argument value.
 */
/*#define HAS_LROUNDL		/ **/

/* HAS_MADVISE:
 *	This symbol, if defined, indicates that the madvise system call is
 *	available to map a file into memory.
 */
/*#define HAS_MADVISE		/ **/

/* HAS_MALLOC_SIZE:
 *	This symbol, if defined, indicates that the malloc_size
 *	routine is available for use.
 */
/*#define HAS_MALLOC_SIZE		/ **/

/* HAS_MALLOC_GOOD_SIZE:
 *	This symbol, if defined, indicates that the malloc_good_size
 *	routine is available for use.
 */
/*#define HAS_MALLOC_GOOD_SIZE	/ **/

/* HAS_MEMMEM:
 *	This symbol, if defined, indicates that the memmem routine is
 *	available to return a pointer to the start of the first occurrence
 *	of a substring in a memory area (or NULL if not found).
 *	In glibc, memmem is a GNU extension.  The function is visible in
 *	libc, but the prototype is only visible if _GNU_SOURCE is #defined.
 *	Thus we only define this if both the prototype and symbol are found.
 */
/*#define HAS_MEMMEM		/ **/

/* HAS_MEMRCHR:
 *	This symbol, if defined, indicates that the memrchr routine is
 *	available to return a pointer to the last occurrence of a byte in
 *	a memory area (or NULL if not found).
 */
/*#define HAS_MEMRCHR		/ **/

/* HAS_MKDTEMP:
 *	This symbol, if defined, indicates that the mkdtemp routine is
 *	available to exclusively create a uniquely named temporary directory.
 */
/*#define HAS_MKDTEMP		/ **/

/* HAS_MKOSTEMP:
 *	This symbol, if defined, indicates that the mkostemp routine is
 *	available to exclusively create and open a uniquely named (with a
 *	suffix) temporary file.
 */
/*#define HAS_MKOSTEMP	/ **/

/* HAS_MKSTEMPS:
 *	This symbol, if defined, indicates that the mkstemps routine is
 *	available to exclusively create and open a uniquely named
 *	(with a suffix) temporary file.
 */
/*#define HAS_MKSTEMPS		/ **/

/* HAS_MODFL:
 *	This symbol, if defined, indicates that the modfl routine is
 *	available to split a long double x into a fractional part f and
 *	an integer part i such that |f| < 1.0 and (f + i) = x.
 */
/* HAS_MODFL_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the modfl() function.  Otherwise, it is up
 *	to the program to supply one.
 */
/*#define HAS_MODFL		/ **/
/*#define HAS_MODFL_PROTO		/ **/

/* HAS_MPROTECT:
 *	This symbol, if defined, indicates that the mprotect system call is
 *	available to modify the access protection of a memory mapped file.
 */
/*#define HAS_MPROTECT		/ **/

/* HAS_STRUCT_MSGHDR:
 *	This symbol, if defined, indicates that the struct msghdr
 *	is supported.
 */
/*#define HAS_STRUCT_MSGHDR	/ **/

/* HAS_NAN:
 *	This symbol, if defined, indicates that the nan routine is
 *	available to generate NaN.
 */
/*#define HAS_NAN		/ **/

/* HAS_NANOSLEEP:
 *	This symbol, if defined, indicates that the nanosleep
 *	system call is available to sleep with 1E-9 sec accuracy.
 */
/*#define HAS_NANOSLEEP		/ **/

/* HAS_NEARBYINT:
 *	This symbol, if defined, indicates that the nearbyint routine is
 *	available to return the integral value closest to (according to
 *	the current rounding mode) to x.
 */
/*#define HAS_NEARBYINT		/ **/

/* HAS_NEWLOCALE:
 *	This symbol, if defined, indicates that the newlocale routine is
 *	available to return a new locale object or modify an existing
 *	locale object.
 */
/* HAS_FREELOCALE:
 *	This symbol, if defined, indicates that the freelocale routine is
 *	available to deallocates the resources associated with a locale object.
 */
/* HAS_USELOCALE:
 *	This symbol, if defined, indicates that the uselocale routine is
 *	available to set the current locale for the calling thread.
 */
/* HAS_DUPLOCALE:
 *	This symbol, if defined, indicates that the duplocale routine is
 *	available to duplicate a locale object.
 */
/* HAS_QUERYLOCALE:
 *	This symbol, if defined, indicates that the querylocale routine is
 *	available to return the name of the locale for a category mask.
 */
/* I_XLOCALE:
 *	This symbol, if defined, indicates to the C program that the
 *	header xlocale.h is available.  See also NEED_XLOCALE_H
 */
/* NEED_XLOCALE_H:
 *	This symbol, if defined, indicates that the C program should
 *	include <xlocale.h> to get newlocale() and its friends.
 */
/*#define	HAS_NEWLOCALE	/ **/
/*#define	HAS_FREELOCALE	/ **/
/*#define	HAS_USELOCALE	/ **/
/*#define	HAS_DUPLOCALE	/ **/
/*#define	HAS_QUERYLOCALE	/ **/
/*#define	NEED_XLOCALE_H	/ **/
/*#define	I_XLOCALE               / **/

/* HAS_NEXTAFTER:
 *	This symbol, if defined, indicates that the nextafter routine is
 *	available to return the next machine representable double from
 *	x in direction y.
 */
/*#define HAS_NEXTAFTER		/ **/

/* HAS_NEXTTOWARD:
 *	This symbol, if defined, indicates that the nexttoward routine is
 *	available to return the next machine representable long double from
 *	x in direction y.
 */
/*#define HAS_NEXTTOWARD		/ **/

/* HAS_NL_LANGINFO:
 *	This symbol, if defined, indicates that the nl_langinfo routine is
 *	available to return local data.  You will also need <langinfo.h>
 *	and therefore I_LANGINFO.
 */
/*#define HAS_NL_LANGINFO		/ **/

/* HAS_OFF64_T:
 *	This symbol will be defined if the C compiler supports off64_t.
 */
/*#define	HAS_OFF64_T		/ **/

/* HAS_PIPE2:
 *	This symbol, if defined, indicates that the pipe2 routine is
 *	available to create an inter-process channel.
 */
/*#define HAS_PIPE2		/ **/

/* HAS_PRCTL:
 *	This symbol, if defined, indicates that the prctl routine is
 *	available to set process title.
 *	Note that there are at least two prctl variants: Linux and Irix.
 *	While they are somewhat similar, they are incompatible.
 */
/* HAS_PRCTL_SET_NAME:
 *	This symbol, if defined, indicates that the prctl routine is
 *	available to set process title and supports PR_SET_NAME.
 */
/*#define HAS_PRCTL		/ **/
/*#define HAS_PRCTL_SET_NAME		/ **/

/* HAS_PROCSELFEXE:
 *	This symbol is defined if PROCSELFEXE_PATH is a symlink
 *	to the absolute pathname of the executing program.
 */
/* PROCSELFEXE_PATH:
 *	If HAS_PROCSELFEXE is defined this symbol is the filename
 *	of the symbolic link pointing to the absolute pathname of
 *	the executing program.
 */
/*#define HAS_PROCSELFEXE	/ **/
#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH)
#define PROCSELFEXE_PATH		/**/
#endif

/* HAS_PTHREAD_ATTR_SETSCOPE:
 *	This symbol, if defined, indicates that the pthread_attr_setscope
 *	system call is available to set the contention scope attribute of
 *	a thread attribute object.
 */
/*#define HAS_PTHREAD_ATTR_SETSCOPE		/ **/

/* HAS_PTRDIFF_T:
 *	This symbol will be defined if the C compiler supports ptrdiff_t.
 */
#define	HAS_PTRDIFF_T		/**/

/* HAS_READV:
 *	This symbol, if defined, indicates that the readv routine is
 *	available to do gather reads.  You will also need <sys/uio.h>
 *	and there I_SYSUIO.
 */
/*#define HAS_READV		/ **/

/* HAS_RECVMSG:
 *	This symbol, if defined, indicates that the recvmsg routine is
 *	available to send structured socket messages.
 */
/*#define HAS_RECVMSG		/ **/

/* HAS_REMAINDER:
 *	This symbol, if defined, indicates that the remainder routine is
 *	available to return the floating-point remainder.
 */
/*#define HAS_REMAINDER		/ **/

/* HAS_REMQUO:
 *	This symbol, if defined, indicates that the remquo routine is
 *	available to return the remainder and part of quotient.
 */
/*#define HAS_REMQUO		/ **/

/* HAS_RINT:
 *	This symbol, if defined, indicates that the rint routine is
 *	available to return the nearest integral value to x as double
 *	using the current rounding mode.
 */
/*#define HAS_RINT		/ **/

/* HAS_ROUND:
 *	This symbol, if defined, indicates that the round routine is
 *	available to round to nearest integer, away from zero.
 */
/*#define HAS_ROUND		/ **/

/* HAS_SBRK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the sbrk() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern void* sbrk(int);
 *		extern void* sbrk(size_t);
 */
/*#define	HAS_SBRK_PROTO	/ **/

/* HAS_SCALBN:
 *	This symbol, if defined, indicates that the scalbn routine is
 *	available to multiply floating-point number by integral power
 *	of radix.
 */
/*#define HAS_SCALBN		/ **/

/* HAS_SCALBNL:
 *	This symbol, if defined, indicates that the scalbnl routine is
 *	available.  If ilogbl is also present we can emulate frexpl.
 */
/*#define HAS_SCALBNL		/ **/

/* HAS_SENDMSG:
 *	This symbol, if defined, indicates that the sendmsg routine is
 *	available to send structured socket messages.
 */
/*#define HAS_SENDMSG		/ **/

/* HAS_SETITIMER:
 *	This symbol, if defined, indicates that the setitimer routine is
 *	available to set interval timers.
 */
/*#define HAS_SETITIMER		/ **/

/* HAS_SETLOCALE:
 *	This symbol, if defined, indicates that the setlocale routine is
 *	available to handle locale-specific ctype implementations.
 */
/* SETLOCALE_ACCEPTS_ANY_LOCALE_NAME:
 *	This symbol, if defined, indicates that the setlocale routine is
 *	available and it accepts any input locale name as valid.
 */
/*#define HAS_SETLOCALE	/ **/
/*#define SETLOCALE_ACCEPTS_ANY_LOCALE_NAME	/ **/

/* HAS_SETPROCTITLE:
 *	This symbol, if defined, indicates that the setproctitle routine is
 *	available to set process title.
 */
/*#define HAS_SETPROCTITLE		/ **/

/* HAS_SIGNBIT:
 *	This symbol, if defined, indicates that the signbit routine is
 *	available to check if the given number has the sign bit set.
 *	This should include correct testing of -0.0.  This will only be set
 *	if the signbit() routine is safe to use with the NV type used internally
 *	in perl.  Users should call Perl_signbit(), which will be #defined to
 *	the system's signbit() function or macro if this symbol is defined.
 */
/*#define HAS_SIGNBIT		/ **/

/* HAS_SIGPROCMASK:
 *	This symbol, if defined, indicates that the sigprocmask
 *	system call is available to examine or change the signal mask
 *	of the calling process.
 */
/*#define HAS_SIGPROCMASK		/ **/

/* USE_SITECUSTOMIZE:
 *	This symbol, if defined, indicates that sitecustomize should
 *	be used.
 */
#ifndef USE_SITECUSTOMIZE
/*#define	USE_SITECUSTOMIZE		/ **/
#endif

/* HAS_SNPRINTF:
 *	This symbol, if defined, indicates that the snprintf () library
 *	function is available for use.
 */
/* HAS_VSNPRINTF:
 *	This symbol, if defined, indicates that the vsnprintf () library
 *	function is available for use.
 */
/*#define HAS_SNPRINTF	/ **/
/*#define HAS_VSNPRINTF	/ **/

/* HAS_SOCKATMARK:
 *	This symbol, if defined, indicates that the sockatmark routine is
 *	available to test whether a socket is at the out-of-band mark.
 */
/*#define HAS_SOCKATMARK		/ **/

/* HAS_SOCKATMARK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the sockatmark() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int sockatmark(int);
 */
/*#define	HAS_SOCKATMARK_PROTO	/ **/

/* HAS_SOCKS5_INIT:
 *	This symbol, if defined, indicates that the socks5_init routine is
 *	available to initialize SOCKS 5.
 */
/*#define HAS_SOCKS5_INIT		/ **/

/* HAS_SQRTL:
 *	This symbol, if defined, indicates that the sqrtl routine is
 *	available to do long double square roots.
 */
/*#define HAS_SQRTL		/ **/

/* HAS_SETRESGID_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the setresgid() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int setresgid(uid_t ruid, uid_t euid, uid_t suid);
 */
/*#define	HAS_SETRESGID_PROTO	/ **/

/* HAS_SETRESUID_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the setresuid() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
 */
/*#define	HAS_SETRESUID_PROTO	/ **/

/* HAS_STRUCT_STATFS_F_FLAGS:
 *	This symbol, if defined, indicates that the struct statfs
 *	does have the f_flags member containing the mount flags of
 *	the filesystem containing the file.
 *	This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
 *	not from <sys/statfs.h> (SYSV).  Older BSDs (like Ultrix) do not
 *	have statfs() and struct statfs, they have ustat() and getmnt()
 *	with struct ustat and struct fs_data.
 */
/*#define HAS_STRUCT_STATFS_F_FLAGS		/ **/

/* HAS_STRUCT_STATFS:
 *	This symbol, if defined, indicates that the struct statfs
 *	to do statfs() is supported.
 */
/*#define HAS_STRUCT_STATFS	/ **/

/* HAS_FSTATVFS:
 *	This symbol, if defined, indicates that the fstatvfs routine is
 *	available to stat filesystems by file descriptors.
 */
/*#define HAS_FSTATVFS		/ **/

/* HAS_STRERROR_L:
 *	This symbol, if defined, indicates that the strerror_l routine is
 *	available to return the error message for a given errno value in
 *	a particular locale (identified by a locale_t object).
 */
/*#define HAS_STRERROR_L		/ **/

/* HAS_STRFTIME:
 *	This symbol, if defined, indicates that the strftime routine is
 *	available to do time formatting.
 */
/*#define HAS_STRFTIME		/ **/

/* HAS_STRLCAT:
 *	This symbol, if defined, indicates that the strlcat () routine is
 *	available to do string concatenation.
 */
/*#define HAS_STRLCAT		/ **/

/* HAS_STRLCPY:
 *	This symbol, if defined, indicates that the strlcpy () routine is
 *	available to do string copying.
 */
/*#define HAS_STRLCPY		/ **/

/* HAS_STRNLEN:
 *	This symbol, if defined, indicates that the strnlen () routine is
 *	available to check the length of a string up to a maximum.
 */
/*#define HAS_STRNLEN		/ **/

/* HAS_STRTOLD:
 *	This symbol, if defined, indicates that the strtold routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOLD		/ **/

/* HAS_STRTOLL:
 *	This symbol, if defined, indicates that the strtoll routine is
 *	available to convert strings to long longs.
 */
/*#define HAS_STRTOLL		/ **/

/* HAS_STRTOQ:
 *	This symbol, if defined, indicates that the strtoq routine is
 *	available to convert strings to long longs (quads).
 */
/*#define HAS_STRTOQ		/ **/

/* HAS_STRTOULL:
 *	This symbol, if defined, indicates that the strtoull routine is
 *	available to convert strings to unsigned long longs.
 */
/*#define HAS_STRTOULL		/ **/

/* HAS_STRTOUQ:
 *	This symbol, if defined, indicates that the strtouq routine is
 *	available to convert strings to unsigned long longs (quads).
 */
/*#define HAS_STRTOUQ		/ **/

/* HAS_STRXFRM_L:
 *	This symbol, if defined, indicates that the strxfrm_l() routine is
 *	available to transform strings.
 */
/*#define HAS_STRXFRM_L	/ **/

/* HAS_SYSCALL_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the syscall() function.  Otherwise, it is up
 *	to the program to supply one.  Good guesses are
 *		extern int syscall(int,  ...);
 *		extern int syscall(long, ...);
 */
/*#define	HAS_SYSCALL_PROTO	/ **/

/* HAS_TELLDIR_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the telldir() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern long telldir(DIR*);
 */
/*#define	HAS_TELLDIR_PROTO	/ **/

/* HAS_TGAMMA:
 *	This symbol, if defined, indicates that the tgamma routine is
 *	available to do the gamma function. See also HAS_LGAMMA.
 */
/*#define HAS_TGAMMA		/ **/

/* HAS_CTIME64:
 *	This symbol, if defined, indicates that the ctime64 () routine is
 *	available to do the 64bit variant of ctime ()
 */
/* HAS_LOCALTIME64:
 *	This symbol, if defined, indicates that the localtime64 () routine is
 *	available to do the 64bit variant of localtime ()
 */
/* HAS_GMTIME64:
 *	This symbol, if defined, indicates that the gmtime64 () routine is
 *	available to do the 64bit variant of gmtime ()
 */
/* HAS_MKTIME64:
 *	This symbol, if defined, indicates that the mktime64 () routine is
 *	available to do the 64bit variant of mktime ()
 */
/* HAS_DIFFTIME64:
 *	This symbol, if defined, indicates that the difftime64 () routine is
 *	available to do the 64bit variant of difftime ()
 */
/* HAS_ASCTIME64:
 *	This symbol, if defined, indicates that the asctime64 () routine is
 *	available to do the 64bit variant of asctime ()
 */
/*#define	HAS_CTIME64		/ **/
/*#define	HAS_LOCALTIME64		/ **/
/*#define	HAS_GMTIME64		/ **/
/*#define	HAS_MKTIME64		/ **/
/*#define	HAS_DIFFTIME64		/ **/
/*#define	HAS_ASCTIME64		/ **/

/* HAS_TIMEGM:
 *	This symbol, if defined, indicates that the timegm routine is
 *	available to do the opposite of gmtime ()
 */
/*#define HAS_TIMEGM		/ **/

/* HAS_TOWLOWER:
 *	This symbol, if defined, indicates that the towlower () routine is
 *	available to do case conversion.
 */
/*#define HAS_TOWLOWER		/ **/

/* HAS_TOWUPPER:
 *	This symbol, if defined, indicates that the towupper () routine is
 *	available to do case conversion.
 */
/*#define HAS_TOWUPPER		/ **/

/* HAS_TRUNC:
 *	This symbol, if defined, indicates that the trunc routine is
 *	available to round doubles towards zero.
 */
/*#define HAS_TRUNC		/ **/

/* HAS_TRUNCL:
 *	This symbol, if defined, indicates that the truncl routine is
 *	available. If copysignl is also present we can emulate modfl.
 */
/*#define HAS_TRUNCL		/ **/

/* U32_ALIGNMENT_REQUIRED:
 *	This symbol, if defined, indicates that you must access
 *	character data through U32-aligned pointers.
 */
#ifndef U32_ALIGNMENT_REQUIRED
#define U32_ALIGNMENT_REQUIRED	/**/
#endif

/* HAS_UALARM:
 *	This symbol, if defined, indicates that the ualarm routine is
 *	available to do alarms with microsecond granularity.
 */
/*#define HAS_UALARM		/ **/

/* HAS_UNORDERED:
 *	This symbol, if defined, indicates that the unordered routine is
 *	available to check whether two doubles are unordered
 *	(effectively: whether either of them is NaN)
 */
/*#define HAS_UNORDERED		/ **/

/* HAS_UNSETENV:
 *	This symbol, if defined, indicates that the unsetenv () routine is
 *	available for use.
 */
/*#define HAS_UNSETENV		/ **/

/* HAS_USLEEP_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the usleep() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern int usleep(useconds_t);
 */
/*#define	HAS_USLEEP_PROTO	/ **/

/* HAS_USTAT:
 *	This symbol, if defined, indicates that the ustat system call is
 *	available to query file system statistics by dev_t.
 */
/*#define HAS_USTAT		/ **/

/* HAS_WCSCMP:
 *	This symbol, if defined, indicates that the wcscmp routine is
 *	available to compare two wide character strings.
 */
/*#define HAS_WCSCMP	/ **/

/* HAS_WCSXFRM:
 *	This symbol, if defined, indicates that the wcsxfrm routine is
 *	available to tranform a wide character string for wcscmp().
 */
/*#define HAS_WCSXFRM	/ **/

/* HAS_WRITEV:
 *	This symbol, if defined, indicates that the writev routine is
 *	available to do scatter writes.
 */
/*#define HAS_WRITEV		/ **/

/* DEFAULT_INC_EXCLUDES_DOT:
 *	This symbol, if defined, removes the legacy default behavior of
 *	including '.' at the end of @INC.
 */
/*#define DEFAULT_INC_EXCLUDES_DOT	/ **/

/* USE_DYNAMIC_LOADING:
 *	This symbol, if defined, indicates that dynamic loading of
 *	some sort is available.
 */
/*#define USE_DYNAMIC_LOADING		/ **/

/* FFLUSH_NULL:
 *	This symbol, if defined, tells that fflush(NULL) correctly
 *	flushes all pending stdio output without side effects. In
 *	particular, on some platforms calling fflush(NULL) *still*
 *	corrupts STDIN if it is a pipe.
 */
/* FFLUSH_ALL:
 *	This symbol, if defined, tells that to flush
 *	all pending stdio output one must loop through all
 *	the stdio file handles stored in an array and fflush them.
 *	Note that if fflushNULL is defined, fflushall will not
 *	even be probed for and will be left undefined.
 */
/*#define	FFLUSH_NULL		/ **/
/*#define	FFLUSH_ALL		/ **/

/* I_BFD:
 *	This symbol, if defined, indicates that <bfd.h> exists and
 *	can be included.
 */
/*#define	I_BFD		/ **/

/* I_CRYPT:
 *	This symbol, if defined, indicates that <crypt.h> exists and
 *	should be included.
 */
/*#define	I_CRYPT		/ **/

/* DB_Prefix_t:
 *	This symbol contains the type of the prefix structure element
 *	in the <db.h> header file.  In older versions of DB, it was
 *	int, while in newer ones it is u_int32_t.
 */
/* DB_Hash_t:
 *	This symbol contains the type of the prefix structure element
 *	in the <db.h> header file.  In older versions of DB, it was
 *	int, while in newer ones it is size_t.
 */
/* DB_VERSION_MAJOR_CFG:
 *	This symbol, if defined, defines the major version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 */
/* DB_VERSION_MINOR_CFG:
 *	This symbol, if defined, defines the minor version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 *	For DB version 1 this is always 0.
 */
/* DB_VERSION_PATCH_CFG:
 *	This symbol, if defined, defines the patch version number of
 *	Berkeley DB found in the <db.h> header when Perl was configured.
 *	For DB version 1 this is always 0.
 */
#define DB_Hash_t	u_int32_t		/**/
#define DB_Prefix_t	size_t		/**/
#define DB_VERSION_MAJOR_CFG	0	/**/
#define DB_VERSION_MINOR_CFG	0	/**/
#define DB_VERSION_PATCH_CFG	0	/**/

/* I_FENV:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <fenv.h> to get the floating point environment definitions.
 */
/*#define I_FENV		/ **/

/* I_FP:
 *	This symbol, if defined, indicates that <fp.h> exists and
 *	should be included.
 */
/*#define	I_FP		/ **/

/* I_FP_CLASS:
 *	This symbol, if defined, indicates that <fp_class.h> exists and
 *	should be included.
 */
/*#define	I_FP_CLASS		/ **/

/* I_IEEEFP:
 *	This symbol, if defined, indicates that <ieeefp.h> exists and
 *	should be included.
 */
/*#define	I_IEEEFP		/ **/

/* I_INTTYPES:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <inttypes.h>.
 */
/*#define   I_INTTYPES                / **/

/* I_LANGINFO:
 *	This symbol, if defined, indicates that <langinfo.h> exists and
 *	should be included.
 */
/*#define	I_LANGINFO		/ **/

/* I_LIBUTIL:
 *	This symbol, if defined, indicates that <libutil.h> exists and
 *	should be included.
 */
/*#define	I_LIBUTIL		/ **/

/* I_MALLOCMALLOC:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <malloc/malloc.h>.
 */
/*#define I_MALLOCMALLOC		/ **/

/* I_MNTENT:
 *	This symbol, if defined, indicates that <mntent.h> exists and
 *	should be included.
 */
/*#define	I_MNTENT		/ **/

/* I_NETINET_TCP:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <netinet/tcp.h>.
 */
/*#define   I_NETINET_TCP                / **/

/* I_POLL:
 *	This symbol, if defined, indicates that <poll.h> exists and
 *	should be included. (see also HAS_POLL)
 */
/*#define	I_POLL		/ **/

/* I_PROT:
 *	This symbol, if defined, indicates that <prot.h> exists and
 *	should be included.
 */
/*#define	I_PROT		/ **/

/* I_QUADMATH:
 *	This symbol, if defined, indicates that <quadmath.h> exists and
 *	should be included.
 */
/*#define	I_QUADMATH		/ **/

/* I_SHADOW:
 *	This symbol, if defined, indicates that <shadow.h> exists and
 *	should be included.
 */
/*#define	I_SHADOW		/ **/

/* I_SOCKS:
 *	This symbol, if defined, indicates that <socks.h> exists and
 *	should be included.
 */
/*#define	I_SOCKS		/ **/

/* I_STDBOOL:
 *	This symbol, if defined, indicates that <stdbool.h> exists and
 *	can be included.
 */
/*#define	I_STDBOOL		/ **/

/* I_STDINT:
 *	This symbol, if defined, indicates that <stdint.h> exists and
 *	should be included.
 */
/*#define I_STDINT		/ **/

/* I_SUNMATH:
 *	This symbol, if defined, indicates that <sunmath.h> exists and
 *	should be included.
 */
/*#define	I_SUNMATH		/ **/

/* I_SYSLOG:
 *	This symbol, if defined, indicates that <syslog.h> exists and
 *	should be included.
 */
/*#define	I_SYSLOG		/ **/

/* I_SYSMODE:
 *	This symbol, if defined, indicates that <sys/mode.h> exists and
 *	should be included.
 */
/*#define	I_SYSMODE		/ **/

/* I_SYS_MOUNT:
 *	This symbol, if defined, indicates that <sys/mount.h> exists and
 *	should be included.
 */
/*#define	I_SYS_MOUNT		/ **/

/* I_SYS_STATFS:
 *	This symbol, if defined, indicates that <sys/statfs.h> exists.
 */
/*#define	I_SYS_STATFS		/ **/

/* I_SYS_STATVFS:
 *	This symbol, if defined, indicates that <sys/statvfs.h> exists and
 *	should be included.
 */
/*#define	I_SYS_STATVFS		/ **/

/* I_SYSUTSNAME:
 *	This symbol, if defined, indicates that <sys/utsname.h> exists and
 *	should be included.
 */
/*#define	I_SYSUTSNAME		/ **/

/* I_SYS_VFS:
 *	This symbol, if defined, indicates that <sys/vfs.h> exists and
 *	should be included.
 */
/*#define	I_SYS_VFS		/ **/

/* I_USTAT:
 *	This symbol, if defined, indicates that <ustat.h> exists and
 *	should be included.
 */
/*#define	I_USTAT		/ **/

/* I_WCHAR:
 *	This symbol, if defined, indicates to the C program that <wchar.h>
 *	is available for inclusion
 */
/*#define   I_WCHAR	/ **/

/* I_WCTYPE:
 *	This symbol, if defined, indicates that <wctype.h> exists.
 */
/*#define	I_WCTYPE		/ **/

/* DOUBLEINFBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes for the double precision infinity.
 */
/* DOUBLENANBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes (0xHH) for the double precision not-a-number.
 */
/* LONGDBLINFBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes for the long double precision infinity.
 */
/* LONGDBLNANBYTES:
 *	This symbol, if defined, is a comma-separated list of
 *	hexadecimal bytes (0xHH) for the long double precision not-a-number.
 */
#define DOUBLEINFBYTES  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f		/**/
#define DOUBLENANBYTES  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x7f		/**/
#define LONGDBLINFBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00		/**/
#define LONGDBLNANBYTES 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00		/**/

/* PERL_PRIfldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'f') for output.
 */
/* PERL_PRIgldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'g') for output.
 */
/* PERL_PRIeldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'e') for output.
 */
/* PERL_SCNfldbl:
 *	This symbol, if defined, contains the string used by stdio to
 *	format long doubles (format 'f') for input.
 */
/* DOUBLEKIND:
 *	DOUBLEKIND will be one of
 *	DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
 *	DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
 *	DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
 *	DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
 *	DOUBLE_IS_VAX_F_FLOAT
 *	DOUBLE_IS_VAX_D_FLOAT
 *	DOUBLE_IS_VAX_G_FLOAT
 *	DOUBLE_IS_IBM_SINGLE_32_BIT
 *	DOUBLE_IS_IBM_DOUBLE_64_BIT
 *	DOUBLE_IS_CRAY_SINGLE_64_BIT
 *	DOUBLE_IS_UNKNOWN_FORMAT
 */
/* DOUBLE_HAS_INF:
 *	This symbol, if defined, indicates that the double has
 *	the infinity.
 */
/* DOUBLE_HAS_NAN:
 *	This symbol, if defined, indicates that the double has
 *	the not-a-number.
 */
/* DOUBLE_HAS_NEGATIVE_ZERO:
 *	This symbol, if defined, indicates that the double has
 *	the negative_zero.
 */
/* DOUBLE_HAS_SUBNORMALS:
 *	This symbol, if defined, indicates that the double has
 *	the subnormals (denormals).
 */
/* DOUBLE_STYLE_CRAY:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit CRAY mainframe format.
 */
/* DOUBLE_STYLE_IBM:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit IBM mainframe format.
 */
/* DOUBLE_STYLE_IEEE:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit IEEE 754.
 */
/* DOUBLE_STYLE_VAX:
 *	This symbol, if defined, indicates that the double is
 *	the 64-bit VAX format D or G.
 */
#define DOUBLEKIND 3		/**/
#define DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN	1
#define DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN	2
#define DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN	3
#define DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN	4
#define DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN	5
#define DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN	6
#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE	7
#define DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE	8
#define DOUBLE_IS_VAX_F_FLOAT	9
#define DOUBLE_IS_VAX_D_FLOAT	10
#define DOUBLE_IS_VAX_G_FLOAT	11
#define DOUBLE_IS_IBM_SINGLE_32_BIT	12
#define DOUBLE_IS_IBM_DOUBLE_64_BIT	13
#define DOUBLE_IS_CRAY_SINGLE_64_BIT	14
#define DOUBLE_IS_UNKNOWN_FORMAT		-1
/*#define PERL_PRIfldbl	"llf"	/ **/
/*#define PERL_PRIgldbl	"llg"	/ **/
/*#define PERL_PRIeldbl	"lle"	/ **/
/*#define PERL_SCNfldbl	"llf"	/ **/
#define DOUBLE_HAS_INF
#define DOUBLE_HAS_NAN
#define DOUBLE_HAS_NEGATIVE_ZERO
#define DOUBLE_HAS_SUBNORMALS
#undef DOUBLE_STYLE_CRAY
#undef DOUBLE_STYLE_IBM
#define DOUBLE_STYLE_IEEE
#undef DOUBLE_STYLE_VAX

/* DOUBLEMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	there are in double precision floating point format.
 *	Note that this is usually DBL_MANT_DIG minus one, since
 *	with the standard IEEE 754 formats DBL_MANT_DIG includes
 *	the implicit bit, which doesn't really exist.
 */
/* LONGDBLMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	there are in long double precision floating point format.
 *	Note that this can be LDBL_MANT_DIG minus one,
 *	since LDBL_MANT_DIG can include the IEEE 754 implicit bit.
 *	The common x86-style 80-bit long double does not have
 *	an implicit bit.
 */
/* NVMANTBITS:
 *	This symbol, if defined, tells how many mantissa bits
 *	(not including implicit bit) there are in a Perl NV.
 *	This depends on which floating point type was chosen.
 */
#define DOUBLEMANTBITS  52
#define LONGDBLMANTBITS 64
#define NVMANTBITS      52

/* NEED_VA_COPY:
 *	This symbol, if defined, indicates that the system stores
 *	the variable argument list datatype, va_list, in a format
 *	that cannot be copied by simple assignment, so that some
 *	other means must be used when copying is required.
 *	As such systems vary in their provision (or non-provision)
 *	of copying mechanisms, handy.h defines a platform-
 *	independent macro, Perl_va_copy(src, dst), to do the job.
 */
#define	NEED_VA_COPY		/**/

/* IVTYPE:
 *	This symbol defines the C type used for Perl's IV.
 */
/* UVTYPE:
 *	This symbol defines the C type used for Perl's UV.
 */
/* I8TYPE:
 *	This symbol defines the C type used for Perl's I8.
 */
/* U8TYPE:
 *	This symbol defines the C type used for Perl's U8.
 */
/* I16TYPE:
 *	This symbol defines the C type used for Perl's I16.
 */
/* U16TYPE:
 *	This symbol defines the C type used for Perl's U16.
 */
/* I32TYPE:
 *	This symbol defines the C type used for Perl's I32.
 */
/* U32TYPE:
 *	This symbol defines the C type used for Perl's U32.
 */
/* I64TYPE:
 *	This symbol defines the C type used for Perl's I64.
 */
/* U64TYPE:
 *	This symbol defines the C type used for Perl's U64.
 */
/* NVTYPE:
 *	This symbol defines the C type used for Perl's NV.
 */
/* IVSIZE:
 *	This symbol contains the sizeof(IV).
 */
/* UVSIZE:
 *	This symbol contains the sizeof(UV).
 */
/* I8SIZE:
 *	This symbol contains the sizeof(I8).
 */
/* U8SIZE:
 *	This symbol contains the sizeof(U8).
 */
/* I16SIZE:
 *	This symbol contains the sizeof(I16).
 */
/* U16SIZE:
 *	This symbol contains the sizeof(U16).
 */
/* I32SIZE:
 *	This symbol contains the sizeof(I32).
 */
/* U32SIZE:
 *	This symbol contains the sizeof(U32).
 */
/* I64SIZE:
 *	This symbol contains the sizeof(I64).
 */
/* U64SIZE:
 *	This symbol contains the sizeof(U64).
 */
/* NVSIZE:
 *	This symbol contains the sizeof(NV).
 *	Note that some floating point formats have unused bytes.
 *	The most notable example is the x86* 80-bit extended precision
 *	which comes in byte sizes of 12 and 16 (for 32 and 64 bit
 *	platforms, respectively), but which only uses 10 bytes.
 *	Perl compiled with -Duselongdouble on x86* is like this.
 */
/* NV_PRESERVES_UV:
 *	This symbol, if defined, indicates that a variable of type NVTYPE
 *	can preserve all the bits of a variable of type UVTYPE.
 */
/* NV_PRESERVES_UV_BITS:
 *	This symbol contains the number of bits a variable of type NVTYPE
 *	can preserve of a variable of type UVTYPE.
 */
/* NV_OVERFLOWS_INTEGERS_AT:
 *	This symbol gives the largest integer value that NVs can hold. This
 *	value + 1.0 cannot be stored accurately. It is expressed as constant
 *	floating point expression to reduce the chance of decimal/binary
 *	conversion issues. If it can not be determined, the value 0 is given.
 */
/* NV_ZERO_IS_ALLBITS_ZERO:
 *	This symbol, if defined, indicates that a variable of type NVTYPE
 *	stores 0.0 in memory as all bits zero.
 */
#define	IVTYPE		long		/**/
#define	UVTYPE		unsigned long		/**/
#define	I8TYPE		signed char		/**/
#define	U8TYPE		unsigned char		/**/
#define	I16TYPE		short	/**/
#define	U16TYPE		unsigned short	/**/
#define	I32TYPE		long	/**/
#define	U32TYPE		unsigned long	/**/
#ifdef HAS_QUAD
#define	I64TYPE		int64_t	/**/
#define	U64TYPE		uint64_t	/**/
#endif
#define	NVTYPE		double		/**/
#define	IVSIZE		4		/**/
#define	UVSIZE		4		/**/
#define	I8SIZE		1		/**/
#define	U8SIZE		1		/**/
#define	I16SIZE		2	/**/
#define	U16SIZE		2	/**/
#define	I32SIZE		4	/**/
#define	U32SIZE		4	/**/
#ifdef HAS_QUAD
#define	I64SIZE		8	/**/
#define	U64SIZE		8	/**/
#endif
#define	NVSIZE		8		/**/
#undef	NV_PRESERVES_UV
#define	NV_PRESERVES_UV_BITS	0
#define	NV_OVERFLOWS_INTEGERS_AT	(256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0)
#undef	NV_ZERO_IS_ALLBITS_ZERO
#if UVSIZE == 8
#   ifdef BYTEORDER
#       if BYTEORDER == 0x1234
#           undef BYTEORDER
#           define BYTEORDER 0x12345678
#       else
#           if BYTEORDER == 0x4321
#               undef BYTEORDER
#               define BYTEORDER 0x87654321
#           endif
#       endif
#   endif
#endif

/* IVdf:
 *	This symbol defines the format string used for printing a Perl IV
 *	as a signed decimal integer.
 */
/* UVuf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned decimal integer.
 */
/* UVof:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned octal integer.
 */
/* UVxf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned hexadecimal integer in lowercase abcdef.
 */
/* UVXf:
 *	This symbol defines the format string used for printing a Perl UV
 *	as an unsigned hexadecimal integer in uppercase ABCDEF.
 */
/* NVef:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %e-ish floating point format.
 */
/* NVff:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %f-ish floating point format.
 */
/* NVgf:
 *	This symbol defines the format string used for printing a Perl NV
 *	using %g-ish floating point format.
 */
#define	IVdf		"ld"		/**/
#define	UVuf		"lu"		/**/
#define	UVof		"lo"		/**/
#define	UVxf		"lx"		/**/
#define	UVXf		"lX"		/**/
#define	NVef		"e"		/**/
#define	NVff		"f"		/**/
#define	NVgf		"g"		/**/

/* SELECT_MIN_BITS:
 *	This symbol holds the minimum number of bits operated by select.
 *	That is, if you do select(n, ...), how many bits at least will be
 *	cleared in the masks if some activity is detected.  Usually this
 *	is either n or 32*ceil(n/32), especially many little-endians do
 *	the latter.  This is only useful if you have select(), naturally.
 */
#define SELECT_MIN_BITS	32	/**/

/* ST_DEV_SIZE:
 *	This variable contains the size of struct stat's st_dev in bytes.
 */
/* ST_DEV_SIGN:
 *	This symbol holds the signedness of struct stat's st_dev.
 *	1 for unsigned, -1 for signed.
 */
#define ST_DEV_SIGN 1	/* st_dev sign */
#define ST_DEV_SIZE 4	/* st_dev size */

/* ST_INO_SIZE:
 *	This variable contains the size of struct stat's st_ino in bytes.
 */
/* ST_INO_SIGN:
 *	This symbol holds the signedness of struct stat's st_ino.
 *	1 for unsigned, -1 for signed.
 */
#define ST_INO_SIGN 1	/* st_ino sign */
#define ST_INO_SIZE 4	/* st_ino size */

/* STARTPERL:
 *	This variable contains the string to put in front of a perl
 *	script to make sure (one hopes) that it runs with perl and not
 *	some shell.
 */
#define STARTPERL "#!perl"		/**/

/* HAS_STDIO_STREAM_ARRAY:
 *	This symbol, if defined, tells that there is an array
 *	holding the stdio streams.
 */
/* STDIO_STREAM_ARRAY:
 *	This symbol tells the name of the array holding the stdio streams.
 *	Usual values include _iob, __iob, and __sF.
 */
/*#define	HAS_STDIO_STREAM_ARRAY	/ **/
#ifdef HAS_STDIO_STREAM_ARRAY
#define STDIO_STREAM_ARRAY	
#endif

/* GMTIME_MAX:
 *	This symbol contains the maximum value for the time_t offset that
 *	the system function gmtime () accepts, and defaults to 0
 */
/* GMTIME_MIN:
 *	This symbol contains the minimum value for the time_t offset that
 *	the system function gmtime () accepts, and defaults to 0
 */
/* LOCALTIME_MAX:
 *	This symbol contains the maximum value for the time_t offset that
 *	the system function localtime () accepts, and defaults to 0
 */
/* LOCALTIME_MIN:
 *	This symbol contains the minimum value for the time_t offset that
 *	the system function localtime () accepts, and defaults to 0
 */
#define GMTIME_MAX		2147483647	/**/
#define GMTIME_MIN		0	/**/
#define LOCALTIME_MAX	2147483647	/**/
#define LOCALTIME_MIN	0	/**/

/* USE_64_BIT_INT:
 *	This symbol, if defined, indicates that 64-bit integers should
 *	be used when available.  If not defined, the native integers
 *	will be employed (be they 32 or 64 bits).  The minimal possible
 *	64-bitness is used, just enough to get 64-bit integers into Perl.
 *	This may mean using for example "long longs", while your memory
 *	may still be limited to 2 gigabytes.
 */
/* USE_64_BIT_ALL:
 *	This symbol, if defined, indicates that 64-bit integers should
 *	be used when available.  If not defined, the native integers
 *	will be used (be they 32 or 64 bits).  The maximal possible
 *	64-bitness is employed: LP64 or ILP64, meaning that you will
 *	be able to use more than 2 gigabytes of memory.  This mode is
 *	even more binary incompatible than USE_64_BIT_INT. You may not
 *	be able to run the resulting executable in a 32-bit CPU at all or
 *	you may need at least to reboot your OS to 64-bit mode.
 */
#ifndef USE_64_BIT_INT
/*#define	USE_64_BIT_INT		/ **/
#endif
#ifndef USE_64_BIT_ALL
/*#define	USE_64_BIT_ALL		/ **/
#endif

/* USE_C_BACKTRACE:
 *	This symbol, if defined, indicates that Perl should
 *	be built with support for backtrace.
 */
/*#define USE_C_BACKTRACE		/ **/

/* USE_STRICT_BY_DEFAULT:
 *	This symbol, if defined, enables additional defaults.
 *	At this time it only enables implicit strict by default.
 */
/*#define USE_STRICT_BY_DEFAULT	/ * use strict by default */

/* USE_DTRACE:
 *	This symbol, if defined, indicates that Perl should
 *	be built with support for DTrace.
 */
/*#define USE_DTRACE		/ **/

/* USE_FAST_STDIO:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use 'fast stdio'.
 *	Defaults to define in Perls 5.8 and earlier, to undef later.
 */
#ifndef USE_FAST_STDIO
/*#define	USE_FAST_STDIO		/ **/
#endif

/* USE_KERN_PROC_PATHNAME:
 *	This symbol, if defined, indicates that we can use sysctl with
 *	KERN_PROC_PATHNAME to get a full path for the executable, and hence
 *	convert $^X to an absolute path.
 */
/*#define USE_KERN_PROC_PATHNAME	/ **/

/* USE_LARGE_FILES:
 *	This symbol, if defined, indicates that large file support
 *	should be used when available.
 */
#ifndef USE_LARGE_FILES
/*#define	USE_LARGE_FILES		/ **/
#endif

/* USE_LONG_DOUBLE:
 *	This symbol, if defined, indicates that long doubles should
 *	be used when available.
 */
#ifndef USE_LONG_DOUBLE
/*#define	USE_LONG_DOUBLE		/ **/
#endif

/* USE_MORE_BITS:
 *	This symbol, if defined, indicates that 64-bit interfaces and
 *	long doubles should be used when available.
 */
#ifndef USE_MORE_BITS
/*#define	USE_MORE_BITS		/ **/
#endif

/* MULTIPLICITY:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use multiplicity.
 */
#ifndef MULTIPLICITY
/*#define	MULTIPLICITY		/ **/
#endif

/* USE_NSGETEXECUTABLEPATH:
 *	This symbol, if defined, indicates that we can use _NSGetExecutablePath
 *	and realpath to get a full path for the executable, and hence convert
 *	$^X to an absolute path.
 */
/*#define USE_NSGETEXECUTABLEPATH	/ **/

/* USE_PERLIO:
 *	This symbol, if defined, indicates that the PerlIO abstraction should
 *	be used throughout.  If not defined, stdio should be
 *	used in a fully backward compatible manner.
 */
#ifndef USE_PERLIO
/*#define	USE_PERLIO		/ **/
#endif

/* USE_QUADMATH:
 *	This symbol, if defined, indicates that the quadmath library should
 *	be used when available.
 */
#ifndef USE_QUADMATH
/*#define	USE_QUADMATH		/ **/
#endif

/* USE_SOCKS:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use socks.
 */
#ifndef USE_SOCKS
/*#define	USE_SOCKS		/ **/
#endif

/* HAS_DRAND48_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the drand48() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern double drand48(void);
 */
/*#define	HAS_DRAND48_PROTO	/ **/

/* HAS_GETHOST_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for gethostent(), gethostbyname(), and
 *	gethostbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETHOST_PROTOS	/ **/

/* HAS_GETNET_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getnetent(), getnetbyname(), and
 *	getnetbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETNET_PROTOS	/ **/

/* HAS_GETPROTO_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getprotoent(), getprotobyname(), and
 *	getprotobyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETPROTO_PROTOS	/ **/

/* HAS_GETSERV_PROTOS:
 *	This symbol, if defined, indicates that <netdb.h> includes
 *	prototypes for getservent(), getservbyname(), and
 *	getservbyaddr().  Otherwise, it is up to the program to guess
 *	them.  See netdbtype.U for probing for various Netdb_xxx_t types.
 */
/*#define	HAS_GETSERV_PROTOS	/ **/

/* HAS_LSEEK_PROTO:
 *	This symbol, if defined, indicates that the system provides
 *	a prototype for the lseek() function.  Otherwise, it is up
 *	to the program to supply one.  A good guess is
 *		extern off_t lseek(int, off_t, int);
 */
/*#define	HAS_LSEEK_PROTO	/ **/

/* Netdb_host_t:
 *	This symbol holds the type used for the 1st argument
 *	to gethostbyaddr().
 */
/* Netdb_hlen_t:
 *	This symbol holds the type used for the 2nd argument
 *	to gethostbyaddr().
 */
/* Netdb_name_t:
 *	This symbol holds the type used for the argument to
 *	gethostbyname().
 */
/* Netdb_net_t:
 *	This symbol holds the type used for the 1st argument to
 *	getnetbyaddr().
 */
#define Netdb_host_t		const char * /**/
#define Netdb_hlen_t		int /**/
#define Netdb_name_t		const char * /**/
#define Netdb_net_t		unsigned long /**/

/* Select_fd_set_t:
 *	This symbol holds the type used for the 2nd, 3rd, and 4th
 *	arguments to select.  Usually, this is 'fd_set *', if HAS_FD_SET
 *	is defined, and 'int *' otherwise.  This is only useful if you
 *	have select(), of course.
 */
#define Select_fd_set_t	int	/**/

/* Sock_size_t:
 *	This symbol holds the type used for the size argument of
 *	various socket calls (just the base type, not the pointer-to).
 */
#define Sock_size_t		int /**/

/* ARCHNAME:
 *	This symbol holds a string representing the architecture name.
 *	It may be used to construct an architecture-dependant pathname
 *	where library files may be held under a private library, for
 *	instance.
 */
#define ARCHNAME "unknown"		/**/

/* HAS_ASCTIME_R:
 *	This symbol, if defined, indicates that the asctime_r routine
 *	is available to asctime re-entrantly.
 */
/* ASCTIME_R_PROTO:
 *	This symbol encodes the prototype of asctime_r.
 *	It is zero if d_asctime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r
 *	is defined.
 */
/*#define HAS_ASCTIME_R	/ **/
#define ASCTIME_R_PROTO 0	/**/

/* HAS_CRYPT_R:
 *	This symbol, if defined, indicates that the crypt_r routine
 *	is available to crypt re-entrantly.
 */
/* CRYPT_R_PROTO:
 *	This symbol encodes the prototype of crypt_r.
 *	It is zero if d_crypt_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r
 *	is defined.
 */
/*#define HAS_CRYPT_R	/ **/
#define CRYPT_R_PROTO 0	/**/

/* HAS_CTERMID_R:
 *	This symbol, if defined, indicates that the ctermid_r routine
 *	is available to ctermid re-entrantly.
 */
/* CTERMID_R_PROTO:
 *	This symbol encodes the prototype of ctermid_r.
 *	It is zero if d_ctermid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r
 *	is defined.
 */
/*#define HAS_CTERMID_R	/ **/
#define CTERMID_R_PROTO 0	/**/

/* HAS_CTIME_R:
 *	This symbol, if defined, indicates that the ctime_r routine
 *	is available to ctime re-entrantly.
 */
/* CTIME_R_PROTO:
 *	This symbol encodes the prototype of ctime_r.
 *	It is zero if d_ctime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r
 *	is defined.
 */
/*#define HAS_CTIME_R	/ **/
#define CTIME_R_PROTO 0	/**/

/* HAS_DRAND48_R:
 *	This symbol, if defined, indicates that the drand48_r routine
 *	is available to drand48 re-entrantly.
 */
/* DRAND48_R_PROTO:
 *	This symbol encodes the prototype of drand48_r.
 *	It is zero if d_drand48_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r
 *	is defined.
 */
/*#define HAS_DRAND48_R	/ **/
#define DRAND48_R_PROTO 0	/**/

/* HAS_ENDGRENT_R:
 *	This symbol, if defined, indicates that the endgrent_r routine
 *	is available to endgrent re-entrantly.
 */
/* ENDGRENT_R_PROTO:
 *	This symbol encodes the prototype of endgrent_r.
 *	It is zero if d_endgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r
 *	is defined.
 */
/*#define HAS_ENDGRENT_R	/ **/
#define ENDGRENT_R_PROTO 0	/**/

/* HAS_ENDHOSTENT_R:
 *	This symbol, if defined, indicates that the endhostent_r routine
 *	is available to endhostent re-entrantly.
 */
/* ENDHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of endhostent_r.
 *	It is zero if d_endhostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r
 *	is defined.
 */
/*#define HAS_ENDHOSTENT_R	/ **/
#define ENDHOSTENT_R_PROTO 0	/**/

/* HAS_ENDNETENT_R:
 *	This symbol, if defined, indicates that the endnetent_r routine
 *	is available to endnetent re-entrantly.
 */
/* ENDNETENT_R_PROTO:
 *	This symbol encodes the prototype of endnetent_r.
 *	It is zero if d_endnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r
 *	is defined.
 */
/*#define HAS_ENDNETENT_R	/ **/
#define ENDNETENT_R_PROTO 0	/**/

/* HAS_ENDPROTOENT_R:
 *	This symbol, if defined, indicates that the endprotoent_r routine
 *	is available to endprotoent re-entrantly.
 */
/* ENDPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of endprotoent_r.
 *	It is zero if d_endprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r
 *	is defined.
 */
/*#define HAS_ENDPROTOENT_R	/ **/
#define ENDPROTOENT_R_PROTO 0	/**/

/* HAS_ENDPWENT_R:
 *	This symbol, if defined, indicates that the endpwent_r routine
 *	is available to endpwent re-entrantly.
 */
/* ENDPWENT_R_PROTO:
 *	This symbol encodes the prototype of endpwent_r.
 *	It is zero if d_endpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r
 *	is defined.
 */
/*#define HAS_ENDPWENT_R	/ **/
#define ENDPWENT_R_PROTO 0	/**/

/* HAS_ENDSERVENT_R:
 *	This symbol, if defined, indicates that the endservent_r routine
 *	is available to endservent re-entrantly.
 */
/* ENDSERVENT_R_PROTO:
 *	This symbol encodes the prototype of endservent_r.
 *	It is zero if d_endservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r
 *	is defined.
 */
/*#define HAS_ENDSERVENT_R	/ **/
#define ENDSERVENT_R_PROTO 0	/**/

/* GETENV_PRESERVES_OTHER_THREAD:
 *	This symbol, if defined, indicates that the getenv system call doesn't
 *	zap the static buffer of getenv() in a different thread.
 *
 *	The typical getenv() implementation will return a pointer to the proper
 *	position in **environ.  But some may instead copy them to a static
 *	buffer in getenv().  If there is a per-thread instance of that buffer,
 *	or the return points to **environ, then a many-reader/1-writer mutex
 *	will work; otherwise an exclusive locking mutex is required to prevent
 *	races.
 */
#define GETENV_PRESERVES_OTHER_THREAD	/**/

/* HAS_GETGRENT_R:
 *	This symbol, if defined, indicates that the getgrent_r routine
 *	is available to getgrent re-entrantly.
 */
/* GETGRENT_R_PROTO:
 *	This symbol encodes the prototype of getgrent_r.
 *	It is zero if d_getgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r
 *	is defined.
 */
/*#define HAS_GETGRENT_R	/ **/
#define GETGRENT_R_PROTO 0	/**/

/* HAS_GETGRGID_R:
 *	This symbol, if defined, indicates that the getgrgid_r routine
 *	is available to getgrgid re-entrantly.
 */
/* GETGRGID_R_PROTO:
 *	This symbol encodes the prototype of getgrgid_r.
 *	It is zero if d_getgrgid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r
 *	is defined.
 */
/*#define HAS_GETGRGID_R	/ **/
#define GETGRGID_R_PROTO 0	/**/

/* HAS_GETGRNAM_R:
 *	This symbol, if defined, indicates that the getgrnam_r routine
 *	is available to getgrnam re-entrantly.
 */
/* GETGRNAM_R_PROTO:
 *	This symbol encodes the prototype of getgrnam_r.
 *	It is zero if d_getgrnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r
 *	is defined.
 */
/*#define HAS_GETGRNAM_R	/ **/
#define GETGRNAM_R_PROTO 0	/**/

/* HAS_GETHOSTBYADDR_R:
 *	This symbol, if defined, indicates that the gethostbyaddr_r routine
 *	is available to gethostbyaddr re-entrantly.
 */
/* GETHOSTBYADDR_R_PROTO:
 *	This symbol encodes the prototype of gethostbyaddr_r.
 *	It is zero if d_gethostbyaddr_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r
 *	is defined.
 */
/*#define HAS_GETHOSTBYADDR_R	/ **/
#define GETHOSTBYADDR_R_PROTO 0	/**/

/* HAS_GETHOSTBYNAME_R:
 *	This symbol, if defined, indicates that the gethostbyname_r routine
 *	is available to gethostbyname re-entrantly.
 */
/* GETHOSTBYNAME_R_PROTO:
 *	This symbol encodes the prototype of gethostbyname_r.
 *	It is zero if d_gethostbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r
 *	is defined.
 */
/*#define HAS_GETHOSTBYNAME_R	/ **/
#define GETHOSTBYNAME_R_PROTO 0	/**/

/* HAS_GETHOSTENT_R:
 *	This symbol, if defined, indicates that the gethostent_r routine
 *	is available to gethostent re-entrantly.
 */
/* GETHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of gethostent_r.
 *	It is zero if d_gethostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r
 *	is defined.
 */
/*#define HAS_GETHOSTENT_R	/ **/
#define GETHOSTENT_R_PROTO 0	/**/

/* HAS_GETLOGIN_R:
 *	This symbol, if defined, indicates that the getlogin_r routine
 *	is available to getlogin re-entrantly.
 */
/* GETLOGIN_R_PROTO:
 *	This symbol encodes the prototype of getlogin_r.
 *	It is zero if d_getlogin_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r
 *	is defined.
 */
/*#define HAS_GETLOGIN_R	/ **/
#define GETLOGIN_R_PROTO 0	/**/

/* HAS_GETNETBYADDR_R:
 *	This symbol, if defined, indicates that the getnetbyaddr_r routine
 *	is available to getnetbyaddr re-entrantly.
 */
/* GETNETBYADDR_R_PROTO:
 *	This symbol encodes the prototype of getnetbyaddr_r.
 *	It is zero if d_getnetbyaddr_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r
 *	is defined.
 */
/*#define HAS_GETNETBYADDR_R	/ **/
#define GETNETBYADDR_R_PROTO 0	/**/

/* HAS_GETNETBYNAME_R:
 *	This symbol, if defined, indicates that the getnetbyname_r routine
 *	is available to getnetbyname re-entrantly.
 */
/* GETNETBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getnetbyname_r.
 *	It is zero if d_getnetbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r
 *	is defined.
 */
/*#define HAS_GETNETBYNAME_R	/ **/
#define GETNETBYNAME_R_PROTO 0	/**/

/* HAS_GETNETENT_R:
 *	This symbol, if defined, indicates that the getnetent_r routine
 *	is available to getnetent re-entrantly.
 */
/* GETNETENT_R_PROTO:
 *	This symbol encodes the prototype of getnetent_r.
 *	It is zero if d_getnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r
 *	is defined.
 */
/*#define HAS_GETNETENT_R	/ **/
#define GETNETENT_R_PROTO 0	/**/

/* HAS_GETPROTOBYNAME_R:
 *	This symbol, if defined, indicates that the getprotobyname_r routine
 *	is available to getprotobyname re-entrantly.
 */
/* GETPROTOBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getprotobyname_r.
 *	It is zero if d_getprotobyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r
 *	is defined.
 */
/*#define HAS_GETPROTOBYNAME_R	/ **/
#define GETPROTOBYNAME_R_PROTO 0	/**/

/* HAS_GETPROTOBYNUMBER_R:
 *	This symbol, if defined, indicates that the getprotobynumber_r routine
 *	is available to getprotobynumber re-entrantly.
 */
/* GETPROTOBYNUMBER_R_PROTO:
 *	This symbol encodes the prototype of getprotobynumber_r.
 *	It is zero if d_getprotobynumber_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r
 *	is defined.
 */
/*#define HAS_GETPROTOBYNUMBER_R	/ **/
#define GETPROTOBYNUMBER_R_PROTO 0	/**/

/* HAS_GETPROTOENT_R:
 *	This symbol, if defined, indicates that the getprotoent_r routine
 *	is available to getprotoent re-entrantly.
 */
/* GETPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of getprotoent_r.
 *	It is zero if d_getprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r
 *	is defined.
 */
/*#define HAS_GETPROTOENT_R	/ **/
#define GETPROTOENT_R_PROTO 0	/**/

/* HAS_GETPWENT_R:
 *	This symbol, if defined, indicates that the getpwent_r routine
 *	is available to getpwent re-entrantly.
 */
/* GETPWENT_R_PROTO:
 *	This symbol encodes the prototype of getpwent_r.
 *	It is zero if d_getpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r
 *	is defined.
 */
/*#define HAS_GETPWENT_R	/ **/
#define GETPWENT_R_PROTO 0	/**/

/* HAS_GETPWNAM_R:
 *	This symbol, if defined, indicates that the getpwnam_r routine
 *	is available to getpwnam re-entrantly.
 */
/* GETPWNAM_R_PROTO:
 *	This symbol encodes the prototype of getpwnam_r.
 *	It is zero if d_getpwnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r
 *	is defined.
 */
/*#define HAS_GETPWNAM_R	/ **/
#define GETPWNAM_R_PROTO 0	/**/

/* HAS_GETPWUID_R:
 *	This symbol, if defined, indicates that the getpwuid_r routine
 *	is available to getpwuid re-entrantly.
 */
/* GETPWUID_R_PROTO:
 *	This symbol encodes the prototype of getpwuid_r.
 *	It is zero if d_getpwuid_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r
 *	is defined.
 */
/*#define HAS_GETPWUID_R	/ **/
#define GETPWUID_R_PROTO 0	/**/

/* HAS_GETSERVBYNAME_R:
 *	This symbol, if defined, indicates that the getservbyname_r routine
 *	is available to getservbyname re-entrantly.
 */
/* GETSERVBYNAME_R_PROTO:
 *	This symbol encodes the prototype of getservbyname_r.
 *	It is zero if d_getservbyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r
 *	is defined.
 */
/*#define HAS_GETSERVBYNAME_R	/ **/
#define GETSERVBYNAME_R_PROTO 0	/**/

/* HAS_GETSERVBYPORT_R:
 *	This symbol, if defined, indicates that the getservbyport_r routine
 *	is available to getservbyport re-entrantly.
 */
/* GETSERVBYPORT_R_PROTO:
 *	This symbol encodes the prototype of getservbyport_r.
 *	It is zero if d_getservbyport_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r
 *	is defined.
 */
/*#define HAS_GETSERVBYPORT_R	/ **/
#define GETSERVBYPORT_R_PROTO 0	/**/

/* HAS_GETSERVENT_R:
 *	This symbol, if defined, indicates that the getservent_r routine
 *	is available to getservent re-entrantly.
 */
/* GETSERVENT_R_PROTO:
 *	This symbol encodes the prototype of getservent_r.
 *	It is zero if d_getservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r
 *	is defined.
 */
/*#define HAS_GETSERVENT_R	/ **/
#define GETSERVENT_R_PROTO 0	/**/

/* HAS_GETSPNAM_R:
 *	This symbol, if defined, indicates that the getspnam_r routine
 *	is available to getspnam re-entrantly.
 */
/* GETSPNAM_R_PROTO:
 *	This symbol encodes the prototype of getspnam_r.
 *	It is zero if d_getspnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r
 *	is defined.
 */
/*#define HAS_GETSPNAM_R	/ **/
#define GETSPNAM_R_PROTO 0	/**/

/* HAS_GMTIME_R:
 *	This symbol, if defined, indicates that the gmtime_r routine
 *	is available to gmtime re-entrantly.
 */
/* GMTIME_R_PROTO:
 *	This symbol encodes the prototype of gmtime_r.
 *	It is zero if d_gmtime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r
 *	is defined.
 */
/*#define HAS_GMTIME_R	/ **/
#define GMTIME_R_PROTO 0	/**/

/* HAS_LOCALECONV_L:
 *	This symbol, if defined, indicates that the localeconv_l routine is
 *	available to query certain information about a locale.
 */
/*#define HAS_LOCALECONV_L		/ **/

/* HAS_LOCALTIME_R:
 *	This symbol, if defined, indicates that the localtime_r routine
 *	is available to localtime re-entrantly.
 */
/* LOCALTIME_R_NEEDS_TZSET:
 *	Many libc's localtime_r implementations do not call tzset,
 *	making them differ from localtime(), and making timezone
 *	changes using $ENV{TZ} without explicitly calling tzset
 *	impossible. This symbol makes us call tzset before localtime_r
 */
/*#define LOCALTIME_R_NEEDS_TZSET / **/
#ifdef LOCALTIME_R_NEEDS_TZSET
#define L_R_TZSET tzset(),
#else
#define L_R_TZSET
#endif

/* L_R_TZSET:
 *	If localtime_r() needs tzset, it is defined in this define
 */
/* LOCALTIME_R_PROTO:
 *	This symbol encodes the prototype of localtime_r.
 *	It is zero if d_localtime_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r
 *	is defined.
 */
/*#define HAS_LOCALTIME_R	/ **/
#define LOCALTIME_R_PROTO 0	/**/

/* HAS_MBRLEN:
 *	This symbol, if defined, indicates that the mbrlen routine is
 *	available to get the length of multi-byte character strings.
 */
/*#define HAS_MBRLEN	/ **/

/* HAS_MBRTOWC:
 *	This symbol, if defined, indicates that the mbrtowc routine is
 *	available to convert a multi-byte character into a wide character.
 */
/*#define HAS_MBRTOWC	/ **/

/* HAS_NL_LANGINFO_L:
 *	This symbol, when defined, indicates presence of the nl_langinfo_l()
 *	function
 */
/* HAS_THREAD_SAFE_NL_LANGINFO_L:
 *	This symbol, when defined, indicates presence of the nl_langinfo_l()
 *	function, and that it is thread-safe.
 */
/*#define HAS_NL_LANGINFO_L	/ **/
/*#define HAS_THREAD_SAFE_NL_LANGINFO_L	/ **/

/* OLD_PTHREAD_CREATE_JOINABLE:
 *	This symbol, if defined, indicates how to create pthread
 *	in joinable (aka undetached) state.  NOTE: not defined
 *	if pthread.h already has defined PTHREAD_CREATE_JOINABLE
 *	(the new version of the constant).
 *	If defined, known values are PTHREAD_CREATE_UNDETACHED
 *	and __UNDETACHED.
 */
/*#define OLD_PTHREAD_CREATE_JOINABLE  / **/

/* HAS_PTHREAD_ATFORK:
 *	This symbol, if defined, indicates that the pthread_atfork routine
 *	is available to setup fork handlers.
 */
/*#define HAS_PTHREAD_ATFORK		/ **/

/* HAS_PTHREAD_YIELD:
 *	This symbol, if defined, indicates that the pthread_yield
 *	routine is available to yield the execution of the current
 *	thread.	 sched_yield is preferable to pthread_yield.
 */
/* SCHED_YIELD:
 *	This symbol defines the way to yield the execution of
 *	the current thread.  Known ways are sched_yield,
 *	pthread_yield, and pthread_yield with NULL.
 */
/* HAS_SCHED_YIELD:
 *	This symbol, if defined, indicates that the sched_yield
 *	routine is available to yield the execution of the current
 *	thread.	 sched_yield is preferable to pthread_yield.
 */
/*#define HAS_PTHREAD_YIELD	/ **/
#define SCHED_YIELD	sched_yield()	/**/
/*#define HAS_SCHED_YIELD	/ **/

/* HAS_RANDOM_R:
 *	This symbol, if defined, indicates that the random_r routine
 *	is available to random re-entrantly.
 */
/* RANDOM_R_PROTO:
 *	This symbol encodes the prototype of random_r.
 *	It is zero if d_random_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r
 *	is defined.
 */
/*#define HAS_RANDOM_R	/ **/
#define RANDOM_R_PROTO 0	/**/

/* HAS_READDIR64_R:
 *	This symbol, if defined, indicates that the readdir64_r routine
 *	is available to readdir64 re-entrantly.
 */
/* READDIR64_R_PROTO:
 *	This symbol encodes the prototype of readdir64_r.
 *	It is zero if d_readdir64_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r
 *	is defined.
 */
/*#define HAS_READDIR64_R	/ **/
#define READDIR64_R_PROTO 0	/**/

/* HAS_READDIR_R:
 *	This symbol, if defined, indicates that the readdir_r routine
 *	is available to readdir re-entrantly.
 */
/* READDIR_R_PROTO:
 *	This symbol encodes the prototype of readdir_r.
 *	It is zero if d_readdir_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r
 *	is defined.
 */
/*#define HAS_READDIR_R	/ **/
#define READDIR_R_PROTO 0	/**/

/* HAS_SETGRENT_R:
 *	This symbol, if defined, indicates that the setgrent_r routine
 *	is available to setgrent re-entrantly.
 */
/* SETGRENT_R_PROTO:
 *	This symbol encodes the prototype of setgrent_r.
 *	It is zero if d_setgrent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r
 *	is defined.
 */
/*#define HAS_SETGRENT_R	/ **/
#define SETGRENT_R_PROTO 0	/**/

/* HAS_SETHOSTENT_R:
 *	This symbol, if defined, indicates that the sethostent_r routine
 *	is available to sethostent re-entrantly.
 */
/* SETHOSTENT_R_PROTO:
 *	This symbol encodes the prototype of sethostent_r.
 *	It is zero if d_sethostent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r
 *	is defined.
 */
/*#define HAS_SETHOSTENT_R	/ **/
#define SETHOSTENT_R_PROTO 0	/**/

/* HAS_SETLOCALE_R:
 *	This symbol, if defined, indicates that the setlocale_r routine
 *	is available to setlocale re-entrantly.
 */
/* SETLOCALE_R_PROTO:
 *	This symbol encodes the prototype of setlocale_r.
 *	It is zero if d_setlocale_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r
 *	is defined.
 */
/*#define HAS_SETLOCALE_R	/ **/
#define SETLOCALE_R_PROTO 0	/**/

/* HAS_SETNETENT_R:
 *	This symbol, if defined, indicates that the setnetent_r routine
 *	is available to setnetent re-entrantly.
 */
/* SETNETENT_R_PROTO:
 *	This symbol encodes the prototype of setnetent_r.
 *	It is zero if d_setnetent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r
 *	is defined.
 */
/*#define HAS_SETNETENT_R	/ **/
#define SETNETENT_R_PROTO 0	/**/

/* HAS_SETPROTOENT_R:
 *	This symbol, if defined, indicates that the setprotoent_r routine
 *	is available to setprotoent re-entrantly.
 */
/* SETPROTOENT_R_PROTO:
 *	This symbol encodes the prototype of setprotoent_r.
 *	It is zero if d_setprotoent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r
 *	is defined.
 */
/*#define HAS_SETPROTOENT_R	/ **/
#define SETPROTOENT_R_PROTO 0	/**/

/* HAS_SETPWENT_R:
 *	This symbol, if defined, indicates that the setpwent_r routine
 *	is available to setpwent re-entrantly.
 */
/* SETPWENT_R_PROTO:
 *	This symbol encodes the prototype of setpwent_r.
 *	It is zero if d_setpwent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r
 *	is defined.
 */
/*#define HAS_SETPWENT_R	/ **/
#define SETPWENT_R_PROTO 0	/**/

/* HAS_SETSERVENT_R:
 *	This symbol, if defined, indicates that the setservent_r routine
 *	is available to setservent re-entrantly.
 */
/* SETSERVENT_R_PROTO:
 *	This symbol encodes the prototype of setservent_r.
 *	It is zero if d_setservent_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r
 *	is defined.
 */
/*#define HAS_SETSERVENT_R	/ **/
#define SETSERVENT_R_PROTO 0	/**/

/* HAS_SRAND48_R:
 *	This symbol, if defined, indicates that the srand48_r routine
 *	is available to srand48 re-entrantly.
 */
/* SRAND48_R_PROTO:
 *	This symbol encodes the prototype of srand48_r.
 *	It is zero if d_srand48_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r
 *	is defined.
 */
/*#define HAS_SRAND48_R	/ **/
#define SRAND48_R_PROTO 0	/**/

/* HAS_SRANDOM_R:
 *	This symbol, if defined, indicates that the srandom_r routine
 *	is available to srandom re-entrantly.
 */
/* SRANDOM_R_PROTO:
 *	This symbol encodes the prototype of srandom_r.
 *	It is zero if d_srandom_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r
 *	is defined.
 */
/*#define HAS_SRANDOM_R	/ **/
#define SRANDOM_R_PROTO 0	/**/

/* HAS_STRERROR_R:
 *	This symbol, if defined, indicates that the strerror_r routine
 *	is available to strerror re-entrantly.
 */
/* STRERROR_R_PROTO:
 *	This symbol encodes the prototype of strerror_r.
 *	It is zero if d_strerror_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r
 *	is defined.
 */
/*#define HAS_STRERROR_R	/ **/
#define STRERROR_R_PROTO 0	/**/

/* HAS_STRTOD_L:
 *	This symbol, if defined, indicates that the strtod_l routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOD_L		/ **/

/* HAS_STRTOLD_L:
 *	This symbol, if defined, indicates that the strtold_l routine is
 *	available to convert strings to long doubles.
 */
/*#define HAS_STRTOLD_L		/ **/

/* PERL_THREAD_LOCAL:
 *	This symbol, if defined, gives a linkage specification for thread-local
 *	storage. For example, for a C11 compiler this will be _Thread_local.
 *	Beware, some compilers are sensitive to the C language standard they are
 *	told to parse. For example, suncc defaults to C11, so our probe will
 *	report that _Thread_local can be used. However, if the -std=c99 is later
 *	added to the compiler flags, then _Thread_local will become a syntax
 *	error. Hence it is important for these flags to be consistent between
 *	probing and use.
 */
/*#define PERL_THREAD_LOCAL 	/ **/

/* HAS_TMPNAM_R:
 *	This symbol, if defined, indicates that the tmpnam_r routine
 *	is available to tmpnam re-entrantly.
 */
/* TMPNAM_R_PROTO:
 *	This symbol encodes the prototype of tmpnam_r.
 *	It is zero if d_tmpnam_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r
 *	is defined.
 */
/*#define HAS_TMPNAM_R	/ **/
#define TMPNAM_R_PROTO 0	/**/

/* HAS_TTYNAME_R:
 *	This symbol, if defined, indicates that the ttyname_r routine
 *	is available to ttyname re-entrantly.
 */
/* TTYNAME_R_PROTO:
 *	This symbol encodes the prototype of ttyname_r.
 *	It is zero if d_ttyname_r is undef, and one of the
 *	REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r
 *	is defined.
 */
/*#define HAS_TTYNAME_R	/ **/
#define TTYNAME_R_PROTO 0	/**/

/* HAS_WCRTOMB:
 *	This symbol, if defined, indicates that the wcrtomb routine is
 *	available to convert a wide character into a multi-byte character.
 */
/*#define HAS_WCRTOMB	/ **/

/* I_MACH_CTHREADS:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <mach/cthreads.h>.
 */
/*#define   I_MACH_CTHREADS	/ **/

/* I_PTHREAD:
 *	This symbol, if defined, indicates to the C program that it should
 *	include <pthread.h>.
 */
/*#define   I_PTHREAD	/ **/

/* USE_ITHREADS:
 *	This symbol, if defined, indicates that Perl should be built to
 *	use the interpreter-based threading implementation.
 */
/* USE_THREADS:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use threads.  At present, it is a synonym for
 *	and USE_ITHREADS, but eventually the source ought to be
 *	changed to use this to mean _any_ threading implementation.
 */
/* OLD_PTHREADS_API:
 *	This symbol, if defined, indicates that Perl should
 *	be built to use the old draft POSIX threads API.
 */
/* USE_REENTRANT_API:
 *	This symbol, if defined, indicates that Perl should
 *	try to use the various _r versions of library functions.
 *	This is extremely experimental.
 */
/*#define	USE_ITHREADS		/ **/
/*#define		USE_THREADS		/ **/
/*#define	OLD_PTHREADS_API		/ **/
/*#define	USE_REENTRANT_API	/ **/

/* HAS_TIME:
 *	This symbol, if defined, indicates that the time() routine exists.
 */
/* Time_t:
 *	This symbol holds the type returned by time(). It can be long,
 *	or time_t on BSD sites (in which case <sys/types.h> should be
 *	included).
 */
#define HAS_TIME		/**/
#define Time_t time_t		/* Time type */

/* HAS_TIMES:
 *	This symbol, if defined, indicates that the times() routine exists.
 *	Note that this became obsolete on some systems (SUNOS), which now
 *	use getrusage(). It may be necessary to include <sys/times.h>.
 */
/*#define HAS_TIMES		/ **/

/* Fpos_t:
 *	This symbol holds the type used to declare file positions in libc.
 *	It can be fpos_t, long, uint, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Fpos_t int		/* File position type */

/* Gid_t_f:
 *	This symbol defines the format string used for printing a Gid_t.
 */
#define	Gid_t_f		"lu"		/**/

/* Gid_t_sign:
 *	This symbol holds the signedness of a Gid_t.
 *	1 for unsigned, -1 for signed.
 */
#define Gid_t_sign	1		/* GID sign */

/* Gid_t_size:
 *	This symbol holds the size of a Gid_t in bytes.
 */
#define Gid_t_size 4		/* GID size */

/* Gid_t:
 *	This symbol holds the return type of getgid() and the type of
 *	argument to setrgid() and related functions.  Typically,
 *	it is the type of group ids in the kernel. It can be int, ushort,
 *	gid_t, etc... It may be necessary to include <sys/types.h> to get
 *	any typedef'ed information.
 */
#define Gid_t int		/* Type for getgid(), etc... */

/* Off_t:
 *	This symbol holds the type used to declare offsets in the kernel.
 *	It can be int, long, off_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
/* LSEEKSIZE:
 *	This symbol holds the number of bytes used by the Off_t.
 */
/* Off_t_size:
 *	This symbol holds the number of bytes used by the Off_t.
 */
#define Off_t int		/* <offset> type */
#define LSEEKSIZE 4		/* <offset> size */
#define Off_t_size 4	/* <offset> size */

/* Mode_t:
 *	This symbol holds the type used to declare file modes
 *	for systems calls.  It is usually mode_t, but may be
 *	int or unsigned short.  It may be necessary to include <sys/types.h>
 *	to get any typedef'ed information.
 */
#define Mode_t int	 /* file mode parameter for system calls */

/* Pid_t:
 *	This symbol holds the type used to declare process ids in the kernel.
 *	It can be int, uint, pid_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Pid_t int		/* PID type */

/* Size_t_size:
 *	This symbol holds the size of a Size_t in bytes.
 */
#define Size_t_size 4		/**/

/* Size_t:
 *	This symbol holds the type used to declare length parameters
 *	for string functions.  It is usually size_t, but may be
 *	unsigned long, int, etc.  It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Size_t size_t	 /* length parameter for string functions */

/* Uid_t_f:
 *	This symbol defines the format string used for printing a Uid_t.
 */
#define	Uid_t_f		"lu"		/**/

/* Uid_t_sign:
 *	This symbol holds the signedness of a Uid_t.
 *	1 for unsigned, -1 for signed.
 */
#define Uid_t_sign	1		/* UID sign */

/* Uid_t_size:
 *	This symbol holds the size of a Uid_t in bytes.
 */
#define Uid_t_size 4		/* UID size */

/* Uid_t:
 *	This symbol holds the type used to declare user ids in the kernel.
 *	It can be int, ushort, uid_t, etc... It may be necessary to include
 *	<sys/types.h> to get any typedef'ed information.
 */
#define Uid_t int		/* UID type */

#endif

/* Generated from:
 * 57ecebb7fc7e3ed45e00ca0e0af53d74ad39725a0c940647d7d9c33e5d3e98b8 config_h.SH
 * 42c09d1ec67e7ea93ad71f8dcf212ba3ba8e6be29eb8ac0520e718b83e80e78e uconfig.sh
 * ex: set ro: */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           d34@@> !xD@@ @-=E@--@h44h44@@J E@B@@AkGA@@C@@AB@cB@@A@_@@@AC@  , X0@-A#SC@  , Zh442@@1A&W@B
B@  , `f4^4zf4^4@@8A-^B@  , ef4^4b=@@<@1bB@  , piu552@@1ALm448@!bJ@=m44@@w #auxK@W@@ @.C@.@@@ @.C@. ĠC@.n(@@ @.qC@.o@ @.pD@.@@ @.C@.!@ @."@ @.#D@.@"n44#n45@@ @/B@@A6A@@B@@B@  , \-n44r@@q@?@@A@@A@  , T3s554s55@A:Stdlib__Buffer.to_seqi.auxA@@@  , L9s55:s55@AA@@@  , <>s55?s55@@;4@D@.AX!iLH@Jn45Kn45@@ !xM]@@ @.XE@.H@Vr55Wr55@@ Ѱ@B@@ANA@@C@@AB@oB@@A@k@@@AC@  , ,5@2A#C@  , jr557@@6A&@B
B@  , pp5Z5vqp5Z5}@@=A-B@  , up5Z5^B@@A@1B@  , yw56zw56
@@@@C@/_@@C@/@C@/͐Aw55@!bQ@w55@@ #seqR@w55w55@@ @B@@AA@@B@>B@@A@C@  , w55@@@B@  , "{696;{696F@@@B@/dC@/SB	y66@!iU	@
y66@@8 !bV@@ @/;C@/1@z6"6(z6"6)@@D ?@B@@AA@@B@MC@@B@@AB@B@  , O-#@@"A$KBA  , Tz6"6,z6"65@A)A+S@@A@A
  , ]z6"6$2@@1@2ZA@  , xa88<@@;AO\8C8CC@!b`\@H8C8Q@@p  !xaY@8C8R8C8S@@w à,new_positionb@@@ @/C@/@8V8\8V8h@@ ~@B@@AC@@A@@AB@B@@A@C@  , `88i@@hA-
C@  , `8}88}8@@@B@/C@/D@/uB;C@  , P@xA=C@  , <&8}8}@@|AA!C@  , (*8V8X@@@D@%@A"@B!@B@  , 19^9`29^9@@@B@0C@0C@88@!be@E89@@ Ơ!xf@K89L89@@ Ǡ,new_positiong@@ @06C@0&@W9	9X9	9@@ Ұ@B@@AC@@A@@AB@$B@@A@C@  , 5@@A,C@  , i909Rj909\@N@@B@0mC@0kD@0dΐB:C@  , @A<C@  , y9092@@A@ C@  , }9	9@@@C@$@A!@B @B@  ,  :::::@g@@B@1C@1Cǐ99@!bj@99@@ ʠ!xk@9999@@ ˠ,new_positionl@@ @0C@0@9999@@* %@B@@AC@@A@@AB@wB@@A@C@  , x55@@A,1C@  , x89:9:@@@B@0C@0D@0'B:?C@  , dF@*A<AC@  , PH99/@@.A@E C@  , <L993@@2@CI@$@A!@B @B@  , S::::@@@B@1C@1FCL:Z:ZO@!bo@T:Z:l@@j Π!xp@:Z:m:Z:n@@q Ϡ,new_positionq:@@ @1JC@1:@:q:w:q:@@} x@B@@AC@@A@@AB@B@@A@C@  ,  5t@@sA,C@  ,  ::::@@@B@1C@1D@1xB:C@  , @A<C@  , ::@@A@ C@  , #:q:s@@@C@$@A!@B @B@  , *;%;\+;%;]@@A)1;;@!bt)@6;; @@ Ҡ!xu&@<;;!=;;"@@ @B@@AA@@B@B@@A@B@  , ŰI;%;NJ;%;V@@AB@  , |ʰN;%;'@@@#B@  , TΰR;w;S;w;@@A3Y;`;`@!bx3@^;`;r@@ ՠ!xy0@d;`;se;`;t@@ ߰@B@@AA@@B@B@@A@B@  , Hq;w;r;w;@@AB@  , 4v;w;y@@@#B@  , z;< {;<@@A=;;@!b|=@;;@@ ؠ!x}:@;;;;@@ @B@@AA@@B@B@@A@B@  , ;;;;@MB@2VD@2RA$B@  ,  
@A&B@  ,  !;; @@@*B@  ,  %<<K<<S@AB@2C@2D@20A!U<<8@!bU@=<<@@; ۠!xR@<<<<@@B =@B@@AA@@B@B@@A@B@  ,  K&@MAF	B@  ,  M<<D<<E@@RA!KB@  ,  R<<W@@V@%OB@  ,  V<m<<m<@@aALa<V<Vh@!ba@m<V<h@@e ޠ!x^@<V<i<V<j@@l g@B@@AA@@B@B@@A@B@  ,  |u<m<<m<@qB@2D@2A$xB@  ,  p
@A&zB@  ,  \<m<o@@@*~B@  ,  @	<<
<<@eB@2C@2D@2Ay<<@!by@<<@@ !xv@"<<#<<@@ @B@@AA@@B@EB@@A@B@  , t&@A	B@  , h1<<2<<@@A!B@  , T6<<@@@%B@@         
   &./boot(./stdlib@ D  w`  z  T  S  , .Stdlib__Stream&_none_@@ AA"??A@@@@@@@@@@@  , 8	A"??A@*floatarrayQ  8 @@@A@@@@@N@@@5extension_constructorP  8 @@@A@@@@@R@@@#intA  8 @@@A@@@@@V@A@$charB  8 @@@A@@@@@Z@A@&stringO  8 @@@A@@@@@^@@@%floatD  8 @@@A@@@@@b@@@$boolE  8 @@%false^@@l@$true_@@r@@@A@@@@@s@A@$unitF  8 @@"()`@@}@@@A@@@@@~@A@
#exnG  8 @@AA@@@@@@@@%arrayH  8 @ @O@A@A@ @@@@@@@@$listI  8 @ @P@A"[]a@@@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@A蠰=ocaml.warn_on_literal_pattern@@.Assert_failure\    @@ @X@@A@
0Division_by_zeroY    '@@@A @+End_of_fileX    /@@@A @)Sys_errorW    7@3@@A)(@.Sys_blocked_io[    @@@@A10@)Not_foundV    H@@@A!9$8$@'FailureU    P@L@@A*B-A-@0Invalid_argumentT    Y@U@@A3K6J6@.Stack_overflowZ    b@@@A;S>R>@-Out_of_memoryS    j@@@AC[FZF@-Match_failureR    r@qmn@ @c@@AQiThT@
%bytesC  8 @@@A@@@@@X@@@&Stdlib&buffio UA  8 @@"ic n@*in_channel@@ @)stream.ml[[@@oO$buff o@ @@ @
[[@@{P#len pA.@@ @[[@@Q#ind qA:@@ @%[&[@@R@@A@@@@@)Z||*[@@@@D#gen TA  8 !a @@A$curr lAC@@@ @@@ @FY2AGY2a@@M$func m@@i@@ @)C@@@ @@ @[Y2b\Y2y@@N@@A@ @@@@@aY22bY2{@@@@C$data SA  8 !a @+@A&Sempty X@@sStS@@G%Scons YC@,C@.@@ @0@@TT@@H$Sapp Z/.C@2@@ @476C@6@@ @8@@UU@@I%Slazy [$Lazy!tONC@@@ @@@ @@@VV@@'J$Sgen j`C@@@ @@@WW@@8K'Sbuffio k@@ @@w@@ @@@ @XX1@@PL@@A@ @@@@@R@@@@UB$cell RA  8 !a @!@A%count VA@@ @"QRbQRv@@jE$data WAC@%@@ @'QRwQR@@yF@@A@ @@@@@QRRQR@@@@A!t QA  8 !a @@A@A:C@@@ @@@ @ @@@@@,P77-P7Q@@@@@'Failure tB    @@@A4]5]@@S%Error uC    @N@@ @L@@AA^B^@@T%count v@l@ @Y@@ @XD@S@@ @RD@O@@ @_D@P@ @QD@N@a`b`
@@U$data z@   @D@@@ @D@{@@ @zD@w	@@ @D@x@ @yD@v@c@Dc@H@@W)fill_buff ~@@@ @D@@@ @	D@@ @D@@gg@@Y(get_data @@@ @	$@F!v @	%@@ @	)O	@@ @	(@ @	'@ @	&@kk@@$[)peek_data @נ!v @
_@@ @
b	@@ @
a@ @
`@ I=E I=N@@;l$peek @  @D@@@ @D@@@ @D@@@ @D@@ @D@@ ]

 ]

@@[y)junk_data @!v @@@ @@@ @@ @@ b

 b
@@q{$junk@  @5@@ @<D@%@@ @$D@!@@ @-D@"@ @#D@ @! p" p@@ C)nget_data@#intA@@ @D@X@ @D@	@@ @
D@Y
D@@@ @D@Z̠D@@@ @D@[&@@ @D@\@ @]@ @^@ @_E@W@X t Y t @@ E*npeek_data@7@@ @LD@@ @n@@ @mD@#>@@ @D@$@ @%D@@ @D@@y ~z ~@@ L%npeek@X@@ @D@@A@A @D@@@ @D@@@ @D@~	@@ @D@@ @D@@ @D@@ Z^ Zc@@ R$next@b@ @D@@@ @
@@ @	D@@ @D@@  @@* U%empty@{
w @5@@ @@@@ @?D@*@@ @bD@+@ @,D@)@  @@E X$iter@@@ @ @D@ʐA @D@n@ D@@@ @@@ @D@u@@ @D@v@ @wD@o@ @pD@m@ BF BJ@@p Z$from&@@@@ @< @
@@ @;@ @:D@͠̠@@ @D@@@ @D@ @ @D@@% & @@ _'of_list)@$listI @RE@@@ @D@D@@ @SD@L@@ @MD@E@ @FD@C@H >BI >I@@ a)of_stringn@&stringO@@ @sD@$charB@@ @qD@@@ @@@ @D@@ @D@@m n @@ e(of_bytes@%bytesC@@ @D@41$charB@@ @D@@@ @@@ @D@@ @D@@  @@  i*of_channel@@@ @PD@(VU@@ @GD@6@@ @7D@0@@ @1D@)@ @*D@'@ >B >L@@! m$iapp@rop @D@@@ @@@ @D@}@D@@@ @@@ @D@@@ @D@@@ @D@@ @D@~@ @D@|@  @@U o%icons@ @D@@D@@@ @@@ @D@@@ @D@@@ @D@@ @D@@ @D@@  @@ r%ising@ @ D@ӠҠ@@ @!D@@@ @D@@ @D@@+ QU, QZ@@ u$lapp@@@@ @D@ @PD@{@@ @@@ @D@A @D@;@D@@@ @@@ @D@B@@ @QD@J@@ @KD@C@ @DD@<@ @=D@:@j k @@ w%lcons@@^@@ @D@( @D@A @D@@;8D@@@ @ 
@@ @ 	D@GF@@ @D@@@ @D@@ @D@@ @D@@  @@
 z%lsing@@@@ @ [D@ W] @ 0D@ XA @ YD@ "lk
@@ @ 1D@ *@@ @ +D@ #@ @ $D@ !@ +/ +4@@2 }&semptyx @ u@@ @ vD@ s@ vz v@@@ %slazy@@@@ @ D@  @ D@ @@ @ @@ @ D@ A @ D@ y@@ @ D@ @@ @ D@ z@ @ {D@ x@  @@o $dump@@!v @ @@ @ @ @ @@@ @ @@ @ @ @ @ @ @   @@ )dump_data@@!v @ &@@ @ @ @! @Ҡ@@ @ 1@@ @ @ @ @ @ @= > @@ @B@@AA@@C@@ABD@@K^@@A._@@O@@ABE@@PQ@@ACDF@@V@@AqW@@IX@@ABP@@ZJ@@ACEqI@@8Y@@AZ@@[@@ABN@@HK@@ACM@@L@@AT@@U@@ABMR@@-S@@AH@@G@@A\@@]@@ABCDEF@@_@  ,   AA4Stdlib__Stream.slazyA@@@  ,  +5 +tAA4Stdlib__Stream.lsingA@@@  ,   *AA4Stdlib__Stream.lconsA@@@  ,   AA3Stdlib__Stream.lappA@@@  ,  Q[ QAA4Stdlib__Stream.isingA@@@  , 
   PAA4Stdlib__Stream.iconsA@	@@  ,   AA3Stdlib__Stream.iappA@@@  ,  >M eAA9Stdlib__Stream.of_channelA@@@  , |  -;AA7Stdlib__Stream.of_bytesA@@@  , l"  AA8Stdlib__Stream.of_stringA@! @@  , \( >J NAA6Stdlib__Stream.of_listA@'&@@  , L.  <AA3Stdlib__Stream.fromA@-,@@  , <4 BK AA3Stdlib__Stream.iterA@32@@  , $:  1?AA4Stdlib__Stream.emptyA@98@@  , @  AA3Stdlib__Stream.nextA@?>@@  , F Zd AA4Stdlib__Stream.npeekA@ED@@  , L ~ SWAA9Stdlib__Stream.npeek_dataA@KJ@@  , R p r@A3Stdlib__Stream.junkA@QP@@  , X ]

 _

@A3Stdlib__Stream.peekA@WV@@  , T^ghAA8Stdlib__Stream.fill_buffA@]\@@  , Ddc@Keg@A3Stdlib__Stream.dataA@cb@@  , 4j `
b$?@A4Stdlib__Stream.countA@ih@@  , $pApA@kj@@  , rArA@ml@@  , t
a"a#@@
AQȐ`@v@%param yA@@A@@AB  , b$:@@A%count x(@@ @Z@#b$/$b$4@@V@'*match*B@@AC@@@AB@@C  , 2A/@%!A  , 5dT`6dTf@@;A}Ӑ:c@@@@@+ }A@@A@@AB  , Deg|J@@IA$data |F@@ @@NegrOegv@@X@+B@@AC@@@AB@@C  , bA_@$ A  , pɰ_hk@@jAܐdgp@!b @uig@@ZѰ@	A@@A@@A@  , h۰qhrh@b@@F@G@DA@  , (}h@@@A@  ,  ^

 ^

@@A ]

@@w A@@A@B@@A@AB  ,  _

@@A!s @ _

 _

@@z@@B@@AB@B  , 
A@A  ,  q q@@A p@@A@@A@B@@A@AB  , ! r@@A$data@ r r@@+ D&@B@@A@B@B  , 2A@-A  , 5 SU@@Av ~@!nv@ ~@@F M!ss@ ~ ~@@M N"al|D@6@@ @HE@+@    	@@\ O!dw@@ @IE@,@    @@i P#len@@ @JE@-@    @@u Qp@+C@@/F@@AB!E@@D@@AAB@@=A@@ABC@B@@A@F@  ,  DF;@@:ARF@  , ! &(?@@>AVF@  , %  &  "@H:.@ @0E@GKBa@@A@B@B@  , p6  T@@S@hB@  , X: q}; q@@^A@ ZZd@!n@iE Ze@@ S@
B@@A9A@@B@B@@A@BB  , HT x@@wA!d@Z [ @@ Tð@C@@A@@AB@C  , 0A@(B  ,  Ӱi @#exnG@@F@F@Aΐw @!s@| @@ V@X,B@@AA@@B@XB@@AD@@C@@AB@B@  , $@AB@  ,   @ @@E@F@A&!aD@&D@D@@  @@	 W	@'@AC@@'@AB&@C@  , 	 @@A		C@  , 	  @g@@ @AF	@8@A7@A@  , 	( @@@L	%A@  , 	, 1=@@A	 @!s@ @@	9 Y	4@-B@@AA@@B@B@@AC@@B@B@  , 	E # 0@s@@F@YF@]A 	IB@  , 	P@A"	KB@  , 	R 	 @ @@ @>A-	V@@A@A@  , 	_ %@@$@3	\A@  , 	c /@@.A	O#  BB6@!f!#@; BL@@	r [$strm"@ BM BQ@@	y \&do_rec#@@@ @E@} @@ @E@~@ @F@|@  T^! Td@@	 ]	@C@@A'B@@#A@@AB@&C@@^B@@AB@C@  , 	1 TVg@@f@7	@@A@B@B@  , l	8 9 @@:Stdlib__Stream.iter.do_recAA	@/B@@A.%A@@B@DD@@A@C@@yB@@ACE@@BC@>@@@AB@  , \	O P @@AX!a$]D@@W X @@	 ^	@@AC@@@ABC@  , X	̰b c @~+A	C@  , H	Ӱi j @@@G@H@7A!	C@  , @	߰%@@;A$	C@  , $	x jty j}@.)@@ @EA	@B@A@8A@  , 	 jnM@@L@	A@  , 	 @AA@		@@  , 	 @AA@		@@  , 
	  ;@AA@		@@  , 

  $@AA@		@@  , 

@@	 @!f(@ @@
 `

@	A@@A@@A@  , 

 NP@AA@

@@  , 

 NU@AA@

@@  , 

 Nh N@@@E@]E@C
 >>@!l+@ >K@@
2 b
-@	A@@A@@A@  , 

7 Nx N@A<Stdlib__Stream.of_list.(fun)A@
6
5@@  , 

=)@@
8A@  , 

? N N@AA@
=
<@@  , 

D@
@!xl@ N} N~@@
M c!lm0E@@ N N@@
U d
P@A@@B@@AB@@B@  , 
l
\ :@A>Stdlib__Stream.of_string.(fun)A@
Z
Y@@  , 
\
a ?@@>A
O E@!sp@J	 @@
o f%countq&Stdlib#ref	@@ @E@@@ @E@@	 	 @@
 g
@B@@A"A@@B@B@@A@B@  , 
X
	% 	& @AmA@

@@  , 
L
	* r@@q@2
@@A
@A@  , 
@
	0 	1 @@?A;!cr	@@ @'F@@	< 4<	= 4=@@
 h
@B@@A1A@@B@CC@@KB@@AB@B@  , 
8
	L e{	M e@A[A@

@@  , 
0
	Q e@`B"
B@  , 
 
@cA$
B@  , 

ð	Y en	Z e@@hA)
B@  , 
Ȱ	^ JN.@@lA-
 B@  , 
̰	b 482@@p@k
ɰ@"@A @A@  , 
Ұ	h @A=Stdlib__Stream.of_bytes.(fun)A@

@@  , 
װ	m @@A
 	s @!s @	x @@
 j%countv
@@ @E@@@ @E@@	 	 @@
 k
@B@@AA@@B@B@@A@B@  ,  	 	 @AA@

@@  , 	 @@@-@@A
@A@  , 	 -6	 -:@@:A6!c
0@@ @F@@	 	 @@ l@B@@AA@@B@>C@@FB@@AB@B@  , '	 	 +@AVA@%$@@  , ,	 @;[B"+B@  , 2@^A$-B@  , 4	 
	 ,@@cA)2B@  , t9	 .@@gA-6 B@  , h=	 2@@k@f:@"@A @A@  , `C	 RT-@A,A@@?@@  , XG	 RY1@A0A@DC@@  , LK	 et	 e@A5A@IH@@  , DP	 e|@A9A@ML@@  , 4T	 e	 e@	@@F@WG@aDAK_	 >>K@"ic_@P	 >O@@i nd@	A@@A@@C@  , n+@U@iA@  , p
 `@A_A@ml@@  , t

 d@AcA@qp@@  ,  x
 
 @AhA@vu@@  , }
 
 @	T@@E@E@tAwi
" |@!ii@
' @@ p!s^@
- 
. @@ q@B@@AA@@B@B@@A@C@  , 
: 

; @	{@@E@E@A'B@  , A@@)B@  , 
I &@AA@@@  , 
M +@AA@@@  , 
Q >
R O@AA@@@  , 
V H
W N@	ܠk@@E@E@Ax
e @!ix@
j !@@ s!sw@
p "
q #@@ tٰ@B@@AA@@B@	B@@A@B@  , 4@@	B@  , 
 Q_@AA@@@  , 
 Qd@AA@@@  , x
 Qw
 Q@AA@@@  , h
@@x
 QQ@!ix@
 Q\@@ v@	A@@A@@A@  , `
 @AA@@@  , X

 @AA@@@  , L
 
 @AA@@@  , D
 
 @AA@@@  , <AA@@@  , $@@
  @!f@%
 @@& x!sm@
 
 @@- y(@B@@AA@@B@	eB@@A@B@  , 6#A5A@10@@  , 8
 
 @
C@@E@vE@AA)>@%paramDA@@A@	|B@@A,C@@(D@@AB@B@  ,  P
 @RA:OB@  , 
V
 
 @
Y@@E@wE@_AG\A@  , 
c
 k@AjA@`_@@  , 
g
 o@AnA@dc@@  , 
k  )@AsA@ih@@  , 
p  (@AxA@nm@@  , 
uAzA@po@@  , 
w@|@j @!f@ @@ {!s@  @@ |@B@@AA@@B@	B@@A@B@  , 
#AA@@@  , 
+ , @A#@WFA@@A@	B@@A%C@@!D@@AB@B@  , 
|<  = &@
 @@E@E@ A:A@  , 
hI +9@AA@@@  , 
`M +>@AA@@@  , 
TQ +QR +s@AA@@@  , 
LV +\W +r@AA@@@  , 
DAA@@@  , 
4@@` ++@!f@e +6@@ ~Ͱ@	A@@A@@A@  , 
,AA@@@  , 
$ٰo +dp +h@Aٰ@HA@@A@B@@A@B@  , 
| @AA@@@  , 
 @AA@@@  , 	  @AA@@@  , 	  @AA@@@  , 	A	A@@@  , 	@@ @!f@ @@
 
 @	A@@A@
;B@@A@A@  , 	
  @!A
@JA@@A@
IB@@AC@@B@A@  , 	
 v v@@8Stdlib__Stream.dump_dataA
F  8 @@@A@@@A@}@@@@
& !f@@@ @"@@ @"@ @"@  @@
7 @  8 @@@A
@@ @"@@AG
=@@@
? @A
:@B@@AA@@B@
B@@A
zC@@B@ @@A@@@BBF  , 	
Q Tb Tu@@6A4
OB  , 	h
W 0? 0S@@<A:
UB
  , 	L
] 	 @
d@@G@#H@#HBI"d1q9@@ @"@@ @"@	 
 @@
w "d2wG@@ @"@@ @"@  @@
 
@!D@@AC@@BI@I@ACGCD@  , 	<
$ % @
@@G@#H@#yA1
D@  , 	$
0 1 @
@@G@#H@#B=
D@  , 	
< = @
@@G@#tH@#nAI
+D@  , 	
H /@@AM
/Dg  , 
M v|N v@
@@G@#QH@#>B!a@@ @"@_  +`  ,@@
 !d@@ @"@@ @"@m  .n  /@@
 
ְ@D@@AC@@B@@ACD@  , 
z ]c{ ]t@
@@G@#*H@#$ϐA-
D@  , 
 RX R[@
@@G@#H@#ېA9
D@  , 
 4: 4P@@@G@#H@#AE+D@  ,  @@AI/D  , X
 
 @@ABà  , 4A@BƠ  ,   @@@F@"G@!3Stdlib__Stream.dumpAF  8 @@@A@@@A@ @@@@) !f@
@@ @!S
@@ @!R@ @!Q@  @@: !s @@ @!e@@ @!d@  @@J E@%B@@AA@@B@E@@AF@@B@@@@AC@@BB@  , Y qs q@`@@F@!G@!CBB^B@  , e q@ΠC@@G@!G@!@@H@!H@!H@!VAUq,B@  , x
 UW
 Uo@@@F@!G@!bAa}8B@  , 
 >@
 >S@@@F@!G@!nAmDB@  , 
& >J@
@@H@!H@!I@!|A{RB@  , 
4 "$
5 "<@@@F@!|G@!vA^B@  , @@@aB@  , x
C {
D {@A8Stdlib__Stream.nget_dataA@@@  , `@A!n"@
N t 
O t @@ F!sD@h@
V t 
W t @@ G@3&C@@AB@@A@@AB@sC@@B@@AB@C@@@AC@  , X԰
j z~
k z~@A'A@@@  , Pٰ
o z~@A+A@@@  , @ݰ
s z~
t z~@A0A@@@  , (@2A3!aDD@@
 xYd
 xYe@@ H"al	ED@@
 z~
 z~@@ I!d
ED@@
 z~
 z~@@ J!kED@@
 z~
 z~@@ K@v%EF@A(D@@#H@@AG@@BCF@@KJBDHDH@  , 
 z~
 z~@.' @ @F@qB=@^@@AB]\CZVD@  , (
 yiq
 yi|@/@@E@F@AM-D@  , 4_@@AP0D@  , 7
 w>H
 w>S@	U@@ @A;@z@Ax@BwsB@  , E
 w>B@@ABB@  , I
 u)
 u6@AA@GF@@  , N@AIB@  , P
 u@@@MB@  , T
 l
 l@@8Stdlib__Stream.junk_dataA: F  8 @@@A@@@A@
 m@@@@_|!s 
@@ @@@ @ @ b
! b
"@@o}j@CB@@AA@@B@B@@AXC@@B@#@@@AC@  , p m%@@+A*}C@  , d klx kl@V'@@ @}H@s@@ @z:A:@ @A@BB@  , X- klr<@@BAAB@  , 81 i'N2 i'a@@GAH!b 
e@@ @Y@< f= f@@ A@C  8 @@@A
f@@ @X@@AG@@@~@A@?@AC@@?@AB>:C@  ,  N i'2O i'b@@dAC@  , T hU h&@@jA#C@  , İZ h@@oA(C@  , ɰ_ g` g@@@G@H@I@}A7,%C@  , @A:/(C@  , ۰q g#@@A?4-C@  , v euw eu@@A!g U@@ @7J@C@@ @EJ@8@ eu~ eu@@ @@fD@AC@@@ABD@  ,  eu!@@A D@  , \ d:i d:t@@A!d "@@ @@@ @@ d:H d:I@@@@AC@@@ABC@  , H d:N@@A	C@  , " c&(@@@@@AA@  , ( Z
~
 Z
~
@A8Stdlib__Stream.peek_dataA@'&@@  , .@A
 F  8 @@@A@@@A@@@@@6m!s 
@@ @
@@ @
@ I=r I=s@@Fn!b @@ @@ W

 W

@@Pw@  8 @@@A@@ @@@AGU@@@Wo@AR@B@@AC@@)A@@AB@
rB@@A
\C@@B@
A@@@AC@  , g Y
E
u Y
E
y@@?A<fC@  , m Y
E
] Y
E
}@@EAB!lC@  , s	 Y
E
JK@@JAG&qC@  , x X

8 X

C@
@@G@H@I@XAV5.C@  , @\AY81C@  ,   X

!b@@aA^=6C@  , % V
& V
@@gAd!g j]@@ @
@@ @
@4 V5 V@@u!x m@@ @-@@ @,H@@D VE V@@v@	!D^@A%C@@\@E@@ABC]YE@  , |T V
U V
@AA@@@  , tðY V4@@A3EA  , pɰ_ V` V@AA:Ȱ@r@ABqmD  , \Ӱi VD@@ABD@  , Tװm Un U@@A!a 6@@ @
@@ @
@{ U| U@@t@7@E@@AB6CE@  ,  T T@@AĠ!f ߠ@@ @
@@ @
@@ @
@ T T@@s@@AC@@@ABC@  , 
 T T@@@I@@@I@I@A'C@  ,  T,@@A+C@  ,   PA PG@AA@@@  , %@A!a @@ @U@ P& P'@@1q!d MK@[@@ @Z@ P  P0@@>r9@@D@@ABC@@@ACD@  , G P4'@@A$DD@  , pK QHY QH]@@#AI@@A
BC@  , lS R^j R^v@.@@H@@@H@H@7B3^C@  , Te@:A5`C@  , 0g O O@P3@@ @HH@0@@ @<IBEp@@A@BB@  , z O Sw@@RAMxB@  ,  M M@AWA@}|@@  , @YAU!a K@@ @
@! M" M@@p@8@AC@@6@AB51C@  , , L- L@@nAi$B@  , 1 Ks@@r@m@A@A@<A@  , 7p$8p%@@7Stdlib__Stream.get_dataA F  8 @@@A@@@A@@ F:@@@@\%count _@@ @	e@JkKk@@]!d @@ @	w@@ @	v@Zk[k@@^ð@B@@AA@@B@B@@A@@@@AB@  , Ӱi E
j E
@A2A@@@  , @4A6!b @@ @
@w @

x @

@@h!r @@ @H@@ C
p
{ C
p
|@@i@2  8 @@@A@@ @
@@AG@@@_@A@"C@@A2@2@D@@ABC31D@  ,  E

/@@`A, D@  , t C
p
w4@@eA0A@A@AB@>C@  , h B
L
d B
L
j@@nA9!	C@  , T B
L
QB@@sA>&C@  , T A
#
? A
#
J@#@@G@H@I@AM5"C@  , H)@AP8% C@  , 0, A
#
(Y@@AU=*%C@  , 1|	x	|	x	@@A!g |@@ @
@@ @
@z	H	Pz	H	Q@@Cf>@
F
D@@A@B@E!g C@@ACF@  , T|	x	#@@A"QF@  ,  X}		}		@AA@VU@@  , ]@A*!a @@ @9@}		}		@@hgc@%@AG@@@AB"CG@  , p{	U	f{	U	r@@@ @&@@ @%אAHw@6@A@B4CE@  , {	U	Z


@@AQ	E@  , ww@@A@
EG@A@B@C@ACE@  , *y	'	<+y	'	G@AA@@@  , @A!a @@ @	@7x	8x	@@dU@@ @	J@	@@ @	J@	@Gx	Hx	#@@e@+@AF@@@AB*CF@  , Sy	'	,)@@A&
F@  , PW F,@(@@G@hG@.@@H@;H@eH@O.A.!f  @@ @
"@@ @
!@@ @
 @w Fx F@@j@C@@ABC@  ,   FB@@IAC@  ,  sb{sb@ANA@@@  ,  sbsb@ASA@@@  ,  
@UAX"d1 D@@ @	@@ @	@q&/q&1@@`"d2 R@@ @	@@ @	@q&3q&5@@a!a ]@@ @
Z@sbpsbq@@#b#d11 <j@@ @
\@@ @
[@sbssbv@@1c,@E@@AG@@n@ABm@?D@@AF@@4C@@ABCrpG@  ,  Att@@AI?@@A}@B|@@A@BC}{E@  ,  Luu@@@H@
@@H@
H@
B`VE@  ,  |]@AbXE@  ,  X_r:Kr:\@H@@ @
PH@
>@@ @
JȐBrh'CD@  ,  Lqr:?v@@AyoD@  , Tvk@@@sB@@         
   &./boot(./stdlib@         N  , ,Stdlib__Lazy&_none_@@ AA"??A@@@@@@@@@@@  , 8	A"??A@*floatarrayQ  8 @@@A@@@@@7@@@5extension_constructorP  8 @@@A@@@@@;@@@#intA  8 @@@A@@@@@?@A@$charB  8 @@@A@@@@@C@A@&stringO  8 @@@A@@@@@G@@@%floatD  8 @@@A@@@@@K@@@$boolE  8 @@%false^@@U@$true_@@[@@@A@@@@@\@A@$unitF  8 @@"()`@@f@@@A@@@@@g@A@
#exnG  8 @@AA@@@@@k@@@%arrayH  8 @ @O@A@A@ @@@@@t@@@$listI  8 @ @P@A"[]a@@@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@AѠ=ocaml.warn_on_literal_patternՐ@@.Assert_failure\    @@ @X@@Aᠰ@
0Division_by_zeroY    '@@@A頰@+End_of_fileX    /@@@A񠰠 @)Sys_errorW    7@3@@A)(@.Sys_blocked_io[    @@@@A10@)Not_foundV    H@@@A
9
8
@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@AKJ@.Stack_overflowZ    b@@@A$S'R'@-Out_of_memoryS    j@@@A,[/Z/@-Match_failureR    r@qmn@ @c@@A:i=h=@
%bytesC  8 @@@A@@@@@A@@@&Stdlib!t QA  8 !a @@A@A0CamlinternalLazy!tC@(@@ @*Y@@@@@'lazy.mlrr	@@@@a@)Undefined TB    @@@A	t		
t		G@@iA,make_forward U@!a @KC@F͠
@@ @H@ @I6caml_lazy_make_forwardAA @@@"v	I	I#v	I	@@B%force V@D!a @QC@L@@ @N@ @O+%lazy_forceAA@@@:x		;x		@@C)force_val W@&lazy_tN@ @Z@@ @[@ @YC@X@N{		O{		@@D(from_fun X@@^@@ @h#arg @dC@a@ @gC@]
@@ @C@^@ @_C@\@n}		o}		@@E(from_val @#arg @eC@C@O@@ @ZC@@ @C@@ B
m
q B
m
y@@H&is_val @#arg @C@@@ @C@$boolE@@ @C@@ @C@@ K>B K>H@@K-lazy_from_fun @@W@@ @l @@ @O@@ @@ @C@@ M~ M~@@M-lazy_from_val @| @G@@ @@ @C@@ O O@@,N+lazy_is_val @C @@@ @;@@ @@ @C@@ Q Q@@?O#map @@@ @@ @C@搐A @C@@ѠC@@@ @C@@@ @C@@ @C@@ @C@@	 T
 T@@iP'map_val @@ @~C@V @=C@WA @XC@@C@@@ @+C@@@ @NC@@ @C@@ @
C@
@1 W2 W@@S@5A@@AB@@C@@ABD@@E@@AF@@G@@ABvH@@eI@@=J@@ABCD@@J@  , 4L WM Z<UAA4Stdlib__Lazy.map_valA@@@  ,  R TS UAA0Stdlib__Lazy.mapA@@@  , X K>IY K>|AA3Stdlib__Lazy.is_valA@@@  , ^ B
m
z_ H6;AA5Stdlib__Lazy.from_valA@@@  , d}		e @
U
kAA5Stdlib__Lazy.from_funA@@@  , ưj
3
5k
3
S@q@@C@D@r
C%y}		@!f Z@#@@ @j"@ @i@}		}		@@F!x [&Stdlib#Obj!t@@ @QD@o@~
	
~
	
@@G@"A@@B@@AB@@B@  , 7<@@;A-BA  , ~
	
~
	
/@ABB4@@A@@A
  , ~
	
K@@J@;A@  , x G  G+@@UAF B
m
m\@!v F@ B
m
{ B
m
|@@I!t #intA@@ @D@@ C

 C

@@.J)@B@@AA@@B@@B@  , p5 D

 F
@^C@T~A*7B@  , d>	@A,9B@  , @ D

@@A0=BA  , F C

 C

@AA7E@@A@@A
  , O C

@@@>LA@  , S K>X K>l@3@@C@AMu K>>@!l sr@@ @@ K>J K>K@@kLf@A@@A@@B@  , p@@@lA@  , s U@AA@po@@  , wAA@rq@@  , y U@@@r># T@!f >@( T@@Q!x 4@. T/ T@@R@B@@AA@@B@@B@  , 9 U: U@>A@%paramA@@A@ B@@AC@@B@A@  , 4H Z<H@AA@@@  , ,AA@@@  , N Z<C@@AET W@!f E@
Y W@@T!x ;@_ W` W@@U@B@@AA@@B@B@@AC@@B@B@  , ʰn Y.o Y;@W#A#B@  , Ѱu Y1v Y:@aC@[+A*B@  ,  ذ| Y @@/A.B@  ,  ܰ X X@@@C@9D@#;A;(B@  ,   X
A@@@@?,B@  ,  p Z<K Z<T@{FAE@XA@@A@FB@@AAC@@B@A@@         
   &./boot(./stdlib@ $    B  K    , |0CamlinternalLazy&_none_@@ AA"??A@@@@@@@@@@@  , X	A"??A@*floatarrayQ  8 @@@A@@@@@2@@@5extension_constructorP  8 @@@A@@@@@6@@@#intA  8 @@@A@@@@@:@A@$charB  8 @@@A@@@@@>@A@&stringO  8 @@@A@@@@@B@@@%floatD  8 @@@A@@@@@F@@@$boolE  8 @@%false^@@P@$true_@@V@@@A@@@@@W@A@$unitF  8 @@"()`@@a@@@A@@@@@b@A@
#exnG  8 @@AA@@@@@f@@@%arrayH  8 @ @O@A@A@ @@@@@o@@@$listI  8 @ @P@A"[]a@@|@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@A̠=ocaml.warn_on_literal_patternА@@.Assert_failure\    @@ @X@@Aܠ@
0Division_by_zeroY    '@@@A䠰@+End_of_fileX    /@@@A젰 @)Sys_errorW    7@3@@A)(@.Sys_blocked_io[    @@@@A1 0 @)Not_foundV    H@@@A98@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@AKJ@.Stack_overflowZ    b@@@AS"R"@-Out_of_memoryS    j@@@A'[*Z*@-Match_failureR    r@qmn@ @c@@A5i8h8@
%bytesC  8 @@@A@@@@@<@@@&Stdlib!t QA  8 !a @@A@AC@@@ @Y@@@@@3camlinternalLazy.mlR``R`u@@@@X@)Undefined RB    @@@A	Tww
Tw@@`A/raise_undefined S&Stdlib#Obj!t@@ @C@+@VV@@sB,make_forward @>#Obj!t@@ @"@G#Obj!t@@ @#2@@ @$@ @%@ @&5caml_obj_make_forwardBA @@@@?X@X@@C0force_lazy_block @#arg @+C@-@@ @3C@*@ @,C@)@W[>BX[>R@@D4force_val_lazy_block @#arg @C@@@ @C@@ @C@@ohph@@I%force @-#arg @C@@@ @C@@ @C@@tt@@M)force_val
@E#arg @	PC@	R@@ @	XC@	O@ @	QC@	N@ D@D D@M@@R@A@@6E@@ABgC@@"F@@ASD@@B@@ABC@@F@  , T D@N I'AA:CamlinternalLazy.force_valA@@@  , Dt A"=AA6CamlinternalLazy.forceA@
	@@  , 4hmAA	%CamlinternalLazy.force_val_lazy_blockA@@@  , $[>SdAA	!CamlinternalLazy.force_lazy_blockA@@@  , VV@A	&CamlinternalLazy.raise_undefined.(fun)A@@@  , #A#A@@@  , %VV@#exnG@@F@F@A!,@%param A@@A@B@@A@A@  , :@@*5	A@  , <d%@@@D@D@D@,A<[>>4@#blk @@ @4@[>T[>W@@XE'closure @@@ @CC@;@ @B@\io\iv@@fF!e @@ @&@bGNbGO@@pHk@'A@@AB@@C@@AB@B@@A@C@  , {(cSW)cS@+@@C@D@BkC@C@  , 5cS6cS@A	'CamlinternalLazy.force_lazy_block.(fun)A@@@  , v@@uAIC@  , >`	
?`	:@@@C@$D@BU&result C@@M_N_@@G@4@A3@
G@@AB2@G@  , Xa<F@@A	GA  , ^___@AAn@D@D@ABA@F  , |h]i]@@@@C@D@C~B@  , lǰ@@ABA  , h̰y\iz\i@AB˰@_@A[@A
  , Xհ\ik@@@A@  , TٰcScS@@@H@H@H@YA߰@ A@@A@B@@A@A@  , P@a@A@  , Dll@s@@C@D@aBMh@#blk KJ@@ @@hh@@
J'closure @@@ @XC@@ @@ii@@K&result `C@B@kzkz@@ L@%A@@AB@@C@@AB@B@@A@C@  , 8+=@@A4'CA  , 40kzkz@AA;/@@@AB@B  , (:jHJjHx@@@C@AD@/CK?B@  , F4@@3ANBBA  , Kii4@A:BUJ@.@A*@A
  , TiC@@B@\QA@  ,  X A")M@@LAS
tU@#lzv @@ @@tt@@mN#lzv C@@@ @D@@$|
W
]%|
W
`@@{O!x@@ @D@@0}
~
1}
~
@@P!t	#intA@@ @D@@?~

@~

@@Q@-B:A@@AD@@$C@@AB@B@@A@D@  ,  P @
Q @
@@ALD@  ,  U @

@@APD@  ,  Y

Z

@K@@D@	
BZD@  ,  c


@@A^"D@  ,  g

@@Ab&DA  ,  m~

n~

@AAi@-@)@AB(@C  ,  ʰw~

@@AqC@  ,  ΰ{}
~
@@At˰@9@A3@B@  ,  ԰|
W
Y@@@yѰ@=@A9@A@  ,  tڰ I@@A D@@@#lzv@@ @	Y@ D@O D@R@@S!x
@@ @	kD@	^@ Edj Edk@@T!ts@@ @	{D@	q@ F~ F~@@U@'A@@AC@@B@@AB@aB@@A@C@  ,  h H H@@A8C@  ,  L H@@A<C@  ,  D G G@@@D@	BFC@  , t$ G
@@AJ! C@  , d( G#@@"AN%$CA  , X. F~ F~@A)AU-@+@)@AB(@B  , P8 F~3@@2A]5B@  , H< Edf7@@6@`9@7@A3@A@@         
   &./boot(./stdlib@ 밄  <  	  +s  *Ġ  , d-Stdlib__Queue&_none_@@ AA"??A@@@@@@@@@@@  , 	A"??A@*floatarrayQ  8 @@@A@@@@@@@@@5extension_constructorP  8 @@@A@@@@@D@@@#intA  8 @@@A@@@@@H@A@$charB  8 @@@A@@@@@L@A@&stringO  8 @@@A@@@@@P@@@%floatD  8 @@@A@@@@@T@@@$boolE  8 @@%false^@@^@$true_@@d@@@A@@@@@e@A@$unitF  8 @@"()`@@o@@@A@@@@@p@A@
#exnG  8 @@AA@@@@@t@@@%arrayH  8 @ @O@A@A@ @@@@@}@@@$listI  8 @ @P@A"[]a@@@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@Aڠ=ocaml.warn_on_literal_patternސ@@.Assert_failure\    @@ @X@@A꠰@
0Division_by_zeroY    '@@@A򠰠@+End_of_fileX    /@@@A @)Sys_errorW    7@3@@A)(@.Sys_blocked_io[    @@@@A10@)Not_foundV    H@@@A98@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@A%K(J(@.Stack_overflowZ    b@@@A-S0R0@-Out_of_memoryS    j@@@A5[8Z8@-Match_failureR    r@qmn@ @c@@ACiFhF@
%bytesC  8 @@@A@@@@@J@@@&Stdlib%Empty QA    @@@A(queue.mlQQ@@X@$cell RB  8 !a @@A#Nil S@@TT@@jB$Cons T'content U@D@"U#U@@yC$next VA('D@@@ @1U2U@@D@@5U6U@@E@@A@ @@@@@;S@@@@A!t WC  8 !a @=@A&length XA[@@ @>OXPX@@N%first YAUE@A@@ @C^Y_Y@@O$last ZAd*E@G@@ @ImZ!nZ6@@P@@A@ @@@@@sWt[78@@@@M&create [@o@@ @aD@^K@ @h@@ @iD@_@ @`D@]@]:>]:D@@Q%clear ^@ @@@ @D@@@ @D@@ @D@@cy}cy@@R#add a@( @TD@@3
@@ @SD@@@ @4D@@ @D@@ @D@@hh@@T$push g@C @@J@@ @3@@ @@ @@ @D@@ww@@.Y$peek h@^@ @D@@@ @D@@ @D@@zz@@CZ(peek_opt l@st @.D@@@ @D@@@ @/D@@ @D@ @$($0@@^]#top p@ @R@@ @S@ @QD@P@ D D@@n`$take q@@ @VD@@@ @D@U@ @WD@T@, G- G@@a(take_opt w@ @D@@@ @D@l@@@ @D@m@ @nD@k@F RfjG Rfr@@f#pop }@ˠ @@@ @@ @D@@V ]	A	EW ]	A	H@@k$copy ~@ݠ @D@@@ @D@@@ @D@@ @D@@p `	S	Wq `	S	[@@l(is_empty @ @@@ @D@$boolE@@ @D@@ @D@@ n

 n

@@v&length @ @	@@ @	
D@	S@@ @	D@	@ @	D@	@ q
 q
	@@x$iter @@& @	@@ @	A @	D@	@6D@	@@ @	D@	D@@ @	D@	@ @	D@	@ @	D@	@ t t"@@z$fold @@@ @
WD@
a@R @
cA @
tA @
sD@
H@D@
O@fD@
x@@ @
yD@
V@ @
XD@
P@ @
QD@
I@ @
JD@	@ ~ ~@@I B(transfer @yx @T@@ @[D@
@
D@@@ @D@
q@@ @D@
@ @
D@
@ @
D@
@  @@l M&to_seq @ @
+D@
B@@ @
CD@@$unitF@@ @
>&Stdlib#Seq$node@@ @
=@ @
<D@@ @D@@> 

? 

@@ Q'add_seq @Š @
z@@ @
D@
I@#!tD@
\@@ @
jD@
P3@@ @
iD@
Q@ @
RD@
J@ @
KD@
H@d |e |@@ W&of_seq @ @
@@ @
D@
@@ @
D@
@ @
D@
@| } @@ [ΰ@A@@AD@@GS@@ABC@@4L@@AB@@P@@ABM@@O@@AN@@0T@@ABCDF@@G@@TK@@ABE@@I@@AsJ@@R@@AH@@Q@@ABCDE@@T@  ,   AA4Stdlib__Queue.of_seqA@@@  ,  | |AA5Stdlib__Queue.add_seqA@@@  , 
 

 mzAA4Stdlib__Queue.to_seqA@	@@  ,   

AA6Stdlib__Queue.transferA@@@  , l su s@A8Stdlib__Queue.fold.(fun)A@@@  , \@2Stdlib__Queue.foldA$fold @@@ @	E@
@@ @
	
E@

A @
E@
A @
E@	@@ @@ @
E@	E@	@ @	@ @	@ @	F@	@  @@H CC@t@t@ABqpn@3P@@ABm@k@k@ABCDhgcb`@]@ABCE@@P@  , @X | |@A8Stdlib__Queue.iter.(fun)A@WV@@  , 0^@2Stdlib__Queue.iterAP$iter @@@ @	T{@@ @	YE@	UA @	VE@	@@@ @	dE@	@@ @	NE@	@ @	@ @	F@	@. u%// u%3@@{=@@A,O@@@ABCD:E@@O@  , < q

= rAA4Stdlib__Queue.lengthA@@@  , B n

C o

AA6Stdlib__Queue.is_emptyA@@@  , H l

I l

@A8Stdlib__Queue.copy.(fun)A@@@  , @2Stdlib__Queue.copyA$copy @Ӡ @@@ @E@@`
@@ @gE@@A@@ @hE@E@@ @@ @@ @F@@q a	^	hr a	^	l@@mð@+L@@A@BC{D@@L@  , а} Rfs~ [	/	?AA6Stdlib__Queue.take_optA@@@  , ְ G PYdAA2Stdlib__Queue.takeA@@@  , ܰ$1 BZ~AA6Stdlib__Queue.peek_optA@@@  , z}"AA2Stdlib__Queue.peekA@@@  , |huAA1Stdlib__Queue.addA@@@  , lcyfAA3Stdlib__Queue.clearA@@@  , \]:EavwAA4Stdlib__Queue.createA@@@  , LAA@@@  , (]:J@AA@@@  ,  @	@6]::@@%param ]A@@A@@A@  ,  f@@A*cyy"@!q `*@'cy@@S@	A@@A@@A@  , e/@@.AA@  , !d3@@2@A@  , %qKOqK]@@=A/hE@!x c/@Jh@@5U!q d.@hh@@<V$cell eAD@@@ @E@@ii@@JWE@'*match* D@@AC@@BA@@&B@@AC@@D@  , Wp6:2@@nA1TD@  , [o#'6@@rA5XD@  , _uw@@vA:$last ffD@@@ @
@r^gr^k@@oXj%!@E@@AB"!C@@E@  , v#t@@As	E@  , z'sos@@Aw
E@  , p~+m@@AX{@2@A10B@@C@  , l2i3l @AA@@@  , \7i@@@c@<;B@@B@  , L=|>|@#exnG@@F@F@AoLz@!q jo@Qz@@[@\ B@@AA@@B@`B@@A@B@  , H!@A
B@  , @`}@@A'content k@f}g}@@\@@AC@@@AB@C@  ,  İq{@@@*@@A@A@  , ʰw AJUx AJY@@A}$$@!q n@$2@@^Ӱ@ B@@AA@@B@@B@  ,  BZr@AA@@@  , @A'content o@ BZe BZl@@_@@AC@@@AB@@C@  ,  @57@@@(@@A@@A@  ,  I I@i@@F@F@)A G/@!q s@4 G@@
b@ B@@AA@@B@B@@A3C@@B@B@  ,  @@AB@  ,  K K@-@@E@F@KA$'content tD@hD@ZD@_@ J J@@2c-@ D(@AC@@(@AB'@D@  , <! L@@eA9D@  , @ PY]j@@iAB'content u@ M M@@Kd$next vѠ(@@ @@ M  M @@VeQ$F"@E@@AK@BCJ@F@  , _ ODH@@A\F@  , c N&*@@A#`F@  , Xg H@@@gd@Y@AX@A@  , Lm T T@@A]  Rff@!q y@% Rft@@{gv@0 B@@AA@@B@B@@A@B@  , D2 W3 W@AA@@@  , 87 V8 V@@@E@F@A%'content z	D@v@F UG U@@h@R D%@AC@@%@AB$@D@  , ,!@@AD@  , $W [	/	3@AA@@@  , @A@'content {@` Xa X@@i$next |=%@@ @@k Xl X@@j%F#@E@@AI@BCH@F@  , ˰x Z		@@AF@  , ϰ| Y	 @@A#F@  , Ӱ Swy@@@eа@W@AV@A@  , ٰ l

 l

@A>A@@@  , ް l

C@@B@?!q 0@ l

 l

@@u@
A@@A@JB@@A@A@  , | c		 c		@@7Stdlib__Queue.copy.copyAT%q_res O@ a	^	m a	^	r@@n$prev ME@@ a	^	s a	^	w@@o$cell ME@@ a	^	x a	^	|@@p
@
A@@AB@@ C@@AB@@u@@@AC@  , p c		+@@*A)
C@  , X j
s
y j
s
@@/A1'content zE@@ d		 d		@@-q$next @@ @@ d		 d		@@8r#res E@@@ @G@@ e		 e		@@FsA@8@A'D@@ E@@AB:@9@F@@ABC@:F@  , LR g
&
5  g
&
G@@cA4PF@  , 4W h
H
Z h
H
g@@hA:!p @@ @@ h
H
U h
H
V@@fta @@G@@ABCYD@VG@  , $n f


P@@~AOk*F@  ,  r e		  e	
@AA@po@@  , w$ e		Y@@AWt3hgC@eE@  , }* b		_@@@zpC@  , . o

@@@s3 n

@!q @8 n

@@w@	A@@A@@A@  , @ r@@@E q

	@!q @J q
@@y@	A@@A@@A@  , R |M@@L@J!f @Y |Z |@@ @!q @` |a |@@ A@B@@AA@@B@^B@@A@B@  , m wQ^n wQ`@@7Stdlib__Queue.iter.iterAg!f b@v u%4w u%5@@|$cell ZE@	@ u%6 u%:@@}Ѱ@A@@B@@AB@@}@@@AB@  , |߰ y y@v A"'content E@	(@ xan xau@@~$next u@@ @	A@ xaw xa{@@@%@AC@@%@D@@ABC@&D@  , t$ z@@BA! D@  , T v=A@@F@E3B@  , , s@@@!f @ sy sz@@ J$accu @ s{ s@@ K!q @ s s@@% L @B@@AC@@A@@AB@B@@A@C@  , 0  @@7Stdlib__Queue.fold.foldA!f @  @@> D$accu E@	@  @@F E$cell E@	@  @@O FJ@B@@AA@@C@@AB@@:@@@AC@  ,  Z W] Wm@@*A,'content 4E@	@ ! (@@i G$next @@ @	@ * .@@t H$accu DE@
@% 4>& 4B@@| Iw@F/@A.@$D@@A/@E@@ABC@0FA  , 7 4E8 4S@AZB0?=C@:E
  , @ 4:9@@bA7E@  , D =@@f@eJC@  , H 
?
EI 
?
M@@AWO @"q1 W@T @@ N"q2 R@Z [ @@ O@f C@@AB@@A@@AB@B@@A@C@  , j 
%
+"@@A!C@  , n 
	
&@@A%C@  , |Űr *@@A)C@  , lɰv 

@@A.$last jrD@
@@ @
@ 
N
Y 
N
]@@ PӰ@'@D@@AB'&C$@D@  , \߰ 

@@A	D@  , L 

@@A
D@  , 4 
a
g@@AD@  ,  @@AO@:@A8@B7@B@  ,   @@@VB@  ,   mo@@A 

@!q @ 

@@	 R#aux @X5 @pE@@@ @E@@@@ @E@G@@@ @E@@ @@ @F@@ 
 
@@	( S	#@(B@@A/A@@B@@B@  ,  	/ 

%@@$@8	,@@A@@A@  ,  	5 & -@@8Stdlib__Queue.to_seq.auxAB!c 2@ 
 
@@	A T	<@B@@A? A@@B@@E@@@AB@  ,  	K .Q .g@AA@	I	H@@  ,  	P .^ .f@@@9@G@A !x L@	 .C
 .D@@	` U$next V@@ @@ .F .J@@	k V	f@*@D@@AB+@C@@AC@+D@  ,  	t)@<A	o	D@  ,  	v# 
+@@@@?	s7B@  ,  h	z' |( |@A;Stdlib__Queue.add_seq.(fun)A@	y	x@@  ,  P	- ||@@{@	y3 ||@!q @8 |@@	 X!i @> |? |@@	 Y	@
A@@B@@AB@B@@A@B@  , p	K |L |@@$@ !x @R |S |@@	 Z	@
A@@A@B@@A(C@@B@A@  , d	_ ` @@@D@
E@
B	m @!g @r @@	 \!q D@
@@ @
E@
@  @@	 ]	Ұ@A@@B@@AB@IC@@B@@AB@B@  , X	0@@A'	BA  , T	  @AA.	@@A@A
  , H	 @@@5	A@@         
   &./boot(./stdlib@   "'      ;  , -Stdlib__Stack&_none_@@ AA"??A@@@@@@@@@@@  , 	A"??A@*floatarrayQ  8 @@@A@@@@@;@@@5extension_constructorP  8 @@@A@@@@@?@@@#intA  8 @@@A@@@@@C@A@$charB  8 @@@A@@@@@G@A@&stringO  8 @@@A@@@@@K@@@%floatD  8 @@@A@@@@@O@@@$boolE  8 @@%false^@@Y@$true_@@_@@@A@@@@@`@A@$unitF  8 @@"()`@@j@@@A@@@@@k@A@
#exnG  8 @@AA@@@@@o@@@%arrayH  8 @ @O@A@A@ @@@@@x@@@$listI  8 @ @P@A"[]a@@@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@Aՠ=ocaml.warn_on_literal_patternِ@@.Assert_failure\    @@ @X@@A堰@
0Division_by_zeroY    '@@@A@+End_of_fileX    /@@@A @)Sys_errorW    7@3@@A)(@.Sys_blocked_io[    @@@@A1	0	@)Not_foundV    H@@@A98@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@A K#J#@.Stack_overflowZ    b@@@A(S+R+@-Out_of_memoryS    j@@@A0[3Z3@-Match_failureR    r@qmn@ @c@@A>iAhA@
%bytesC  8 @@@A@@@@@E@@@&Stdlib!t QA  8 !a @@A!c RAC@@@ @(stack.mlP7EP7Y@@cA#len SA)@@ @
P7ZP7l@@oB@@A@ @@@@@P77P7n@@@@u@%Empty TB    @@@ARppRp@@}C&create U@'@@ @2C@/E@ @8@@ @:C@0@ @1C@.@5T6T@@D%clear X@ @Y@@ @[C@NH@@ @oC@O@ @PC@M@MVNV@@E$copy [@,+ @@@ @C@s3	C@|@@ @~C@t@ @uC@r@gXhX@@G$push ^@B @C@@M
@@ @C@8@@ @C@@ @C@@ @C@@ZZ@@I#pop b@c@ @C@)@@ @(C@@ @C@@\(,\(/@@L'pop_opt g@xy @C@@@ @C@Ly@@ @C@M@ @NC@K@aa@@P#top l@@ @C@@@ @C@@ @C@@ff@@+T'top_opt p@ @C@@@ @C@0@@ @C@@ @C@@kAEkAL@@EW(is_empty t@  @,@@ @-C@$boolE@@ @)C@@ @C@@pp@@_Z&length w@ܠ @@@@ @?C@6@@ @>C@7@ @8C@5@rr@@v\$iter z@@ @$unitF@@ @@ @C@D@C@@@ @C@K@@ @C@L@ @MC@E@ @FC@C@<t=t@@^$fold @@@ @C@@ @@ @@ @C@@C@@/C@@@ @C@@ @C@@ @C@@ @C@@cvdv@@a&to_seq @BC @	C@
$@@ @
%C@&Stdlib#Seq!t@@ @
C@@ @C@@z $z *@@e'add_seq @cb @
\@@ @
fC@
+@&Stdlib#Seq!tC@
>@@ @
LC@
2$unitF@@ @
KC@
3@ @
4C@
,@ @
-C@
*@|@D|@K@@g&of_seq @" @
@@ @
C@
~@@ @
C@
@ @
C@
}@~rv~r|@@+k&@A@@MO@@ABC@@D@@ACB@@M@@AJ@@L@@ABDK@@/P@@A]F@@JG@@AB}E@@N@@A4H@@!I@@ABCE@@P@  , N~r} AAA4Stdlib__Stack.of_seqA@ML@@  , T|@L|@pAA5Stdlib__Stack.add_seqA@SR@@  , Zz +z >AA4Stdlib__Stack.to_seqA@YX@@  , `vvAA2Stdlib__Stack.foldA@_^@@  , ft	tAA2Stdlib__Stack.iterA@ed@@  , lrrAA4Stdlib__Stack.lengthA@kj@@  , rppAA6Stdlib__Stack.is_emptyA@qp@@  , xkAMnwAA5Stdlib__Stack.top_optA@wv@@  , x~ f!i'?AA1Stdlib__Stack.topA@}|@@  , h&a'dAA5Stdlib__Stack.pop_optA@@@  , X,\(0-_uAA1Stdlib__Stack.popA@@@  , H2Z3Z&AA2Stdlib__Stack.pushA@@@  , 88X9XAA2Stdlib__Stack.copyA@@@  , (>V?VAA3Stdlib__Stack.clearA@@@  , DTETAA4Stdlib__Stack.createA@@@  , /AA@@@  , LT@AA@@@  , @	@1RT@@%param WA@@A@@A@  , [V@@A%`V"@!s Z%@'eV@@F@	A@@A@@A@  , ˰mV/@@.@A@  , ϰqX9@A8A@@@  , @:@%xX@@!s ]%@E}X@@Hٰ@	A@@A@@A@  , tZS@@RAZY@!x `@^Z@@J!s a@ZZ @@K@
A@@B@@AB@@B@  , lZ
Z@AoA@@@  , XZt@@s@!B@  , H_u~@#exnG@@E@<E@@A .\((@!s d.@\(1@@M@'*match* B@@A
A@@B@B@@A@B@  , D)!@A$B@  , 8+^Er^Et@@A"hd eAC@@^EI^EK@@8N"tl f@@ @@^EM^EO@@CO>@%@D@@AB$@C@@AC%@D@  ,  L^E^!@@A ID@  , P^ES%@@A$MD@  , T]46@@@CQ@4@A3@A@  , Zd@@AJba@!s ib@a@@gQb@I B@@AA@@B@@B@  , occ@AA@ml@@  , t@A"hd jrC@V@cc@@~R"tl k@@ @]@'c(c@@S@"@D@@AB"@C@@AC@@D@  , 4c#@@
A D@  , 8c'@@A$D@  , <b@@@@@2@A@@A@  , Bi'4"@@@E@E@'AMf-@!s n@2Rf@@U@ B@@AA@@B@FB@@A@B@  , @<A
B@  , xah$bh&@@AA"hd o@hhih@@VŰ@@AC@@@AB@C@  , XѰsgS@@R@+ΰ@@A@A@  , Lװynw_@@^A~kAAd@!s r@ikAN@@X߰@ B@@AA@@B@@B@  , Dmbombv@AtA@@@  , <@vA"hd s@mbfmbh@@Y@@AC@@@AB@@C@  ,  lQS@@@)@@A@@A@  , p@@@Đp@!s v@p@@[@	A@@A@@A@  ,  r@@@r@!s y@r@@%] @	A@@A@@A@  ,  *t@@@ t@!f |@t@@8_!s }@tt@@?`:@B@@AA@@B@@B@  ,  Fv@@@>v@!f @v@@Ub#acc @vv@@\c!s @vv@@cd^@B@@AC@@A@@AB@@C@  ,  |lz /@@@cz  @!s @z ,@@yft@	A@@A@@A@  ,  h~ |@[!|@n@A;Stdlib__Stack.add_seq.(fun)A@}|@@  ,  P&|@R0@@/@},|@@6@!q @;1|@M@@h!i @7|@N8|@O@@i@
A@@B@@AB@B@@A@B@  , pD|@eE|@m@@$@ !x @K|@`L|@a@@j@
A@@A@B@@A(C@@B@A@  , dX @Y @@@@C@
D@
nBf~rrv@!g @{k~r~@@l!s EC@
@@ @
D@
@yz@@mְ@A@@B@@AB@C@@gB@@AB@B@  , X0@@A'BA  , T@AA.@@A@A
  , H@@@5A@@         
   &./boot(./stdlib@ @ B  6i  E  㿠  , 4+Stdlib__Map&_none_@@ AA"??A@@@@@@@@@@@  , 4	AA@@@  , 4
A"??Aô@*floatarrayQ  8 @@@A@@@@@/@@@5extension_constructorP  8 @@@A@@@@@3@@@#intA  8 @@@A@@@@@7@A@$charB  8 @@@A@@@@@;@A@&stringO  8 @@@A@@@@@?@@@%floatD  8 @@@A@@@@@C@@@$boolE  8 @@%false^@@M@$true_@@S@@@A@@@@@T@A@$unitF  8 @@"()`@@^@@@A@@@@@_@A@
#exnG  8 @@AA@@@@@c@@@%arrayH  8 @ @O@A@A@ @@@@@l@@@$listI  8 @ @P@A"[]a@@y@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@Aɠ=ocaml.warn_on_literal_pattern͐@@.Assert_failure\    @@ @X@@A٠@
0Division_by_zeroY    '@@@Aᠰ@+End_of_fileX    /@@@A頰 @)Sys_errorW    7@3@@A򠰠)(@.Sys_blocked_io[    @@@@A10@)Not_foundV    H@@@A98@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@AKJ@.Stack_overflowZ    b@@@ASR@-Out_of_memoryS    j@@@A$['Z'@-Match_failureR    r@qmn@ @c@@A2i5h5@
%bytesC  8 @@@A@@@@@9@@@&Stdlib+OrderedType SB!t QA  8 @@@A@@@@@&map.mlRW[RWa@@@@M@A@'compare R@@@ @@@@ @,@@ @@ @@ @@SbfSb@@fA@@@P77T@jB!S E#key TC  8 @@@A@@@@@,X-X@@@@xCA@!t UD  8 !a @@A@A@I@B@@@<Y=Y@@@@DA@%empty V!a @!E@@@ @@PZQZ@@E@(is_empty W@,!a @(E@"@@ @$l@@ @%@ @&@j[k[@@F@#mem X@O@@ @)@L!a @1E@*@@ @,@@ @-@ @.@ @/@\\@@G@#add Y@o@@ @2@!a @<E@3@t@@ @5y@@ @7@ @8@ @9@ @:@]]6@@H@&update Z@@@ @=@@!a @LE@>@@ @@@@ @B@ @C@@@ @E@@ @G@ @H@ @I@ @J@^7;^7v@@(I@)singleton [@@@ @M@!a @TE@NĠ
@@ @P@ @Q@ @R@_w{_w@@DJ@&remove \@@@ @U@ڠ!a @^E@V@@ @X@@ @Z@ @[@ @\@``@@eK@%merge ]@@ @@ @_@!a @vE@`@@ @b@!b @xE@c@@ @e!c @zE@f@@ @h@ @i@ @j@ @k@"%@@ @m@)@@ @o.@@ @q@ @r@ @s@ @t@bacb@@L@%union ^@@I@@ @{@!a @E@|@=@@ @~@ @@ @@ @@U@@ @@\@@ @a@@ @@ @@ @@ @@c"cc@@M@'compare _@@!a @E@@@@ @@ @@ @@@@ @@@@ @@@ @@ @@ @@ @@ddhdd@@N@%equal `@@!a @E@@@@ @@ @@ @@@@ @@@@ @@@ @@ @@ @@ @@ee@@7O@$iter a@@@@ @@!a @E@@@ @@ @@ @@۠@@ @@@ @@ @@ @@ff	@@_P@$fold b@@@@ @@!a @E@@!b @E@@ @@ @@ @@@@ @@@ @@ @@ @@=g
>g
C@@Q@'for_all c@@$@@ @@!a @E@\@@ @@ @@ @@-@@ @g@@ @@ @@ @@ehDHfhDx@@R@&exists d@@L@@ @@!a @E@@@ @@ @@ @@U@@ @@@ @@ @@ @@iy}iy@@S@&filter e@@t@@ @@!a @E@@@ @@ @@ @@}@@ @@@ @@ @@ @@jj@@T@*filter_map f@@@@ @@!a @E@!b @E@@@ @@ @@ @@@@ @@@ @@ @@ @@kk@@2U@)partition g@@@@ @@!a @	E@@@ @@ @@ @@֠@@ @ ޠ@@ @@@ @@ @@ @@ @@l"l[@@dV@(cardinal h@!a @E@
@@ @D@@ @
@ @@2m\`3m\y@@~W@(bindings i@!a @E@@@ @%)@@ @@ @@@ @@ @@Unz~Vnz@@X@+min_binding j@1!a @"E@@@ @H@@ @@ @@ @ @soto@@Y@/min_binding_opt k@O!a @,E@#@@ @%Ij@@ @&@ @'@@ @)@ @*@pp@@Z@+max_binding l@r!a @4E@-@@ @/@@ @0@ @1@ @2@q	q	&@@ [@/max_binding_opt m@!a @>E@5@@ @7@@ @8@ @9@@ @;@ @<@r	'	+r	'	Y@@#\@&choose n@!a @FE@?@@ @A@@ @B@ @C@ @D@s	Z	^s	Z	|@@A]@*choose_opt o@Ѡ!a @PE@G@@ @Iˠ@@ @J@ @K@@ @M@ @N@t	}	t	}	@@d^@%split p@@@ @Q@!a @_E@R@@ @T@@ @V@@ @X@@ @Z@ @[@ @\@ @]@Hu		Iu		@@_@$find q@-@@ @`@*!a @gE@a@@ @c@ @d@ @e@dv		ev	
 @@`@(find_opt r@I@@ @h@F!a @qE@i@@ @k@@@ @m@ @n@ @o@w

w

+@@a@*find_first s@@l@@ @r@@ @s@ @t@m!a @}E@u@@ @w@@ @x@ @y@ @z@ @{@x
,
0x
,
a@@b@.find_first_opt t@@@@ @~@@ @@ @@!a @E@@@ @@@ @@ @@@ @@ @@ @@y
b
fy
b
@@*c@)find_last u@@@@ @@@ @@ @@Ơ!a @E@@@ @@@ @@ @@ @@ @@z

	z

@@Td@-find_last_opt v@@@@ @@@ @@ @@!a @E@@@ @@@ @@ @@@ @@ @@ @@7{

8{
@@e@#map w@@!a @E@!b @E@@ @@#@@ @(@@ @@ @@ @@\| ]|C@@f@$mapi x@@C@@ @@!a @E@!b @E@@ @@ @@N@@ @S@@ @@ @@ @@}DH}Ds@@g@&to_seq @c!a @nE@@@ @#Seq!t@@ @h@ @i@@ @k@ @l@~tx~t@@h@*to_rev_seq @!a @xE@o@@ @q#Seq!t@@ @r@ @s@@ @u@ @v@@@i@+to_seq_from @@@ @y@!a @E@z@@ @| #Seq!t@@ @}@ @~@@ @@ @@ @@ @  @@@Kj@'add_seq @#Seq!t@@ @!a @E@@ @@@ @@
@@ @@@ @@ @@ @@, A- A4@@xk@&of_seq @H#Seq!t@@ @!a @E@@ @@@ @@@ @@ @@R B59S B5^@@l@@@VVW C_d@m$MakeF@#Ord Gn#key H  8 @@@A!t@@ @@@@@q Gr G@@@@oA@!t I  8 !a @@A%Empty @@ J J@@q$Node !l @K@@@ @ K K@@r!v @=@@ @ K K@@s!d @4K@ K K@@t!r @CBK@@@ @ K K@@
u!h @@@ @ K K@@v@@ K K@@w@@A@Y@@@@@ I@@@@pA@&height @n@ @@@ @J@n@@ @ J@@ @J@@ M
  M
@@:~@&create @k @\@@ @vJ@ @g@@ @J@'@J@.@`@@ @J@5; @@ @^J@6@ @7J@/@ @0J@(@ @)J@!@ @"J@@! Q
<
D" Q
<
J@@m @@)singleton @@@ @3J@@S @	J@Z@@ @J@@ @J@@ @J@@@ U

A U

@@ G@#bal @l @@@ @MJ@l@@@ @YJ@s@J@z@@@ @oJ@J@@@ @J@@ @J@{@ @|J@t@ @uJ@m@ @nJ@k@t W
u W
@@ J@%empty  @@@ @J@@ u u@@ c@(is_empty @ @@@ @J@@@ @J@@ @J@@ w w@@ d@#add @@@ @yJ@
(@ @/J@
)@'
@@ @J@
+@@ @DJ@
*@ @
,@ @
-@ @
.K@
'@ y y@@	 e@$find @v@@ @J@@I@ @nJ@@@ @8J@J@@ @@ @K@@  @@	0 q@.find_first_aux @R@@ @J@v@@ @w@@a@@ @J@	
@@ @J@␐A @J@x@@@ @J@|'J@y%J@z@ @{@ @}@ @~@ @@ @K@u@  @@	i x@*find_first @@@@ @*@@ @ߐA @J@Y@W @@@ @J@[@@ @ܠ@ @J@Z@ @\@ @]K@X@H nzI n@@	 @2find_first_opt_aux @@@ @J@0@@ @1@@@@ @J@d@@ @J@A @J@2@@@ @J@4	:.J@+J@@ @J@@@ @J@3@ @5@ @6@ @7@ @8K@/@ >J >\@@	 @.find_first_opt @@@@ @@@ @A @J@
@ @o@@ @J@2@@ @@ @J@[@@ @\J@@ @@ @K@@ ,8 ,F@@
 @-find_last_aux @'@@ @bJ@@@ @@@6@@ @KJ@H@@ @MJ@IA @JJ@@.@@ @cJ@&J@$J@@ @@ @@ @@ @@ @K@@ 	 @@
= @)find_last@@a@@ @G@@ @FA @EJ@@|+ @+@@ @ZJ@w@@ @C@ @BJ@@ @@ @K@@	 	 @@
h @1find_last_opt_aux@@@ @J@@@ @@@@@ @J@8@@ @J@A @J@@@@ @J@Ԡ-J@*J@@ @J@@@ @J@@ @@ @@ @@ @K@@	[ 	\ @@
 @-find_last_opt@@@@ @h@@ @A @J@t@ @@@ @J@v@@ @@ @J@@@ @J@u@ @w@ @xK@s@	 	 @@
 @(find_opt@@@ @J@D@ @J@@@ @J@F1@@ @J@E@ @G@ @HK@C@	 ]i	 ]q@@
 @#mem$@@@ @xJ@@3 @.@@ @J@ $boolE@@ @J@@ @!@ @"K@@	 4@	 4C@@ @+min_binding+@@ @WJ@@@ @J@O@@ @YJ@V@ @XJ@@ @K@@	 	 @@@ @/min_binding_opt0@!@ @VJ@@@ @ J@v@@ @XJ@U@ @WJ@L@@ @MJ@@ @K@@
 r~
 r@@h @+max_binding5@I@ @[J@ @@ @J@@@ @]J@Z@ @\J@@ @K@@
> 

? @@ @/max_binding_opt:@k@ @ZJ@@@ @J@ ݠ@@ @\J@Y@ @[J@P@@ @QJ@@ @K@@
f 
g @@ @2remove_min_binding?@ @}J@@@ @J@@@ @J@@ @ K@@
   +
   =@@ @&removeN@@@ @ !J@@ @ 
J@ >@@ @ gJ@	J@ @@ @ J@@ @@ @K@@
!!
!!@@ @&updateX@@@ @"J@! @@F @#rJ@!@@ @!J@!O	J@!@@ @!J@!A @!J@!!@BJ@"@@ @#
J@!#$@@ @#J@!"@ @!$@ @!%@ @!&K@!@
#	#
#	#@@+ @$iterf@@Q@@ @$AJ@$;@@ @$>@@ @$DJ@$?A @$@J@$<A @$=J@#@wJ@#@@ @$5J@#@@ @$'J@#@ @#@ @#K@#@&%%&%%@@a @#mapm@@@ @$D @$J@$A @$J@$@J@$@@ @$J@$J@%@@ @%KJ@$@ @$@ @$K@$@>+& &,?+& &/@@ @$mapix@@@@ @&J@&@@ @&v @&J@&A @&J@&A @&J@%@ӠJ@%@@ @&J@%J@&/@@ @&lJ@%@ @%@ @%K@%@r4&'s4&'@@@$fold@@@@ @'@J@'7@@ @':@@ @&J@'=J@'>A @'?J@';A @'<J@'8A @'9J@&@J@&@@ @'5J@&@J@&J@&@ @&@ @&@ @&K@&@=''=''@@@'for_all@@@@ @'J@'@@ @'@@ @'J@'A @'J@'A @'J@'@C@@ @(J@'@@ @(J@'@ @'@ @'K@'@C(k(wC(k(~@@
+@&exists@@Q@@ @(J@(@@ @(1@@ @(J@(ҐA @(J@(ϐA @(J@(i@w@@ @(J@(kC@@ @(J@(j@ @(l@ @(mK@(h@G((G((@@
^@/add_min_binding@@@ @)J@)A@@ @)B@J@)[@@ @)J@)DJ@)@@ @)J@)C@ @)E@ @)F@ @)GK@)@@9S**:S**@@
 @/add_max_binding@@@ @*J@*#@@ @*$@J@*@@ @*J@*&@@ @*J@*%@ @*'@ @*(@ @*)K@*"@_X+0+<`X+0+K@@
'@$join@ܠ @,@@ @,J@+@@@ @,J@+@
J@+@ˠ@@ @,J@+J@,@@ @,J@+	@ @+
@ @+@ @+@ @+
K@+@`,,,8`,,,<@@
.@&concat@ @.D@@ @.LJ@-@J@-
J@-@ @-J@-@ @-J@-@n.D.Ln.D.R@@
=@.concat_or_join@& @/tJ@/P@@ @/dJ@/%@$@@ @/fJ@/,@TJ@/C@@ @/BJ@/3@!J@/:"J@/;@ @/<J@/4@ @/5J@/-@ @/.J@/&@ @/'J@/$@v//v//%@@&D@%split@@@ @0J@/@^ @/J@0%@@ @0NJ@/J@/@@ @/J@/J@/@@ @/J@/*@@ @/J@/@ @/@ @/@ @/K@/@
{//
{//@@\J@%merge@@@@ @2=J@24@K @2fJ@2?@@ @2@J@27@V @1@@ @2BJ@2:Ơ_ @1J@2@@ @2J@2;A @2<J@28A @29J@25A @26J@0@%J@1!@@ @2+J@0@x!@@ @2,J@0~@@ @1J@0@ @0@ @0@ @0K@0@
d01
e01
@@W@%union@@@@ @5?J@56@ @5J@59@J@5<@@ @5J@5=A @5>J@5:A @5;J@57A @58J@3@J@4@@ @4J@3@	J@3J@3@ @3@ @3@ @3K@3@
22
22@@j@&filter@@@@ @7#J@7@ @7	J@7 @@ @74J@7!A @7"J@7A @7J@6@8J@6@@ @7J@6@@ @7
J@6@ @6@ @6K@6@
55
55@@!@*filter_map@@G@@ @8BJ@8<@@ @8?y @8(J@8U@@ @8TJ@8@A @8AJ@8=A @8>J@7@pJ@7@@ @87J@7(@@ @8)J@7@ @7@ @7K@7@6666@@Z@)partition@@@@ @9PJ@9J@D @9-J@9M&@@ @9iJ@9NA @9OJ@9KA @9LJ@8@J@8@@ @9EJ@8`J@9)@@ @9*J@8֠h#@@ @9.J@8@ @8@ @8@ @8K@8@N8[8gO8[8p@@@+enumeration%J  8 !a @:@A#End&@@b99c99@@$More'@@ @:L@: "L@:@@ @:+*L@: @@ @:"@@999:@@@@A@Y@@@@@99@@@@A@)cons_enum(@ @:K@:J@@ @:IK@:5@Q
@@ @:K@:6K@:7@ @:8@ @:9L@:4@:!:-:!:6@@@'compare/@@ @;K@;@ @;K@;I@@ @;IK@;A @;K@;A @;K@:@K@<I@@ @<TK@:@!K@<a@@ @<lK@:!K@:@ @:K@:@ @:K@:@ @:K@:@::::@@3@%equal@@@ @=ZK@=E@ @=oK@=H;@@ @=CK@=IA @=JK@=FA @=GK@<}@/K@>@@ @>
K@<@;!K@>@@ @>%K@<J@@ @=K@<@ @<K@<@ @<K@<~@ @<K@<|@(<<)<<@@t@(cardinalP@UT @><@@ @>;K@>7#intA@@ @>vK@>6@ @>8L@>5@D>>"E>>*@@@,bindings_auxT@0@@ @?&K@?#@ @?$@ @?%K@?@@ @? K@>@
@@ @?1K@>K@>@ @>@ @>L@>@o>}>p>}>@@@(bindings[@Ǡ @?~@@ @?K@?q2@@ @?@ @?@@ @?K@?r@ @?sK@?p@?	??	?@@@&choose^@ @?@@ @?	@@ @?	@ @?@ @?K@?@?7???7?E@@@*choose_opt_@Ԡ @?@@ @?A	 @@ @?@ @?@@ @?@ @?K@?@?U?]?U?g@@@'add_seq`@&Stdlib#Seq!t	E@@ @?K@?ؠ	 @?K@?@ @?K@?@@ @?K@?@	b@@ @?K@?K@?@ @?K@?@ @?K@?@?{??{?@@F@&of_seqj@4	n@@ @@	- @@{@ @@@@ @@K@@p	@@ @@K@@q@ @@rK@@o@????@@g@,seq_of_enum_m@	I @@K@@@@ @@K@@@$unitF@@ @AK@@j$node@@ @@K@@Π"K@@@ @@M@@@@ @A K@@@ @@@ @@L@@@Q??R?@@@@&to_seqt@	~	 @A2K@AO@@ @AZK@A%@6@@ @AI/@@ @AH@ @AG@@ @AF@ @AEK@A&@ @A'K@A$@y@}@z@}@@@@)snoc_enumw@		 @AK@A|@@ @A{K@Ag@	@@ @AK@AhK@Ai@ @Aj@ @AkL@Af@ @@ @@@@@0rev_seq_of_enum_~@	 @B^K@B'@@ @B&K@B@~@@ @BvK@B{X@@ @BFK@BCK@BD@ @BEM@Bs@@ @BuK@B@ @B@ @BL@B@A4A@A4AP@@@*to_rev_seq@		 @BK@B@@ @BK@B@@@ @B@@ @B@ @B@@ @B@ @BK@B@ @BK@B@
AA
AA@@>@+to_seq_from@	/@@ @D9K@B@
S
) @D
K@D(@@ @D8K@B@@@ @D!٠@@ @D @ @D@@ @D@ @DK@B@ @BK@B@ @BK@B@#
BB#$
BB.@@o@@@' Eff(CC@sn@
A@@A@@A@  , 4x0 Efq	@A0Stdlib__Map.MakeA@vu@@  , 4}5 Ef@AA@zy@@  , 2AA@@z Efr{ Efu@n




W
U
8
6

									[	Y	0	.\Z\Z:8%mergeF@

 @@@ @J@;@J@B
J@C@ @DJ@<@ @=J@:@      @@ }{TR ~YW31.,DB
jhNL#! wuA?۰@@BBA@@A
 I@@gd@@ABc@@v@@A
fF@@B8s@@er@@ACDq@@t@@Au@@o@@AB%f@@g@@.n@@ABCE
D@@
GG@@p@@ABb@@ k@@l@@ABC
 J@@	L@@A	K@@	BN@@AB	M@@P@@ACDF	O@@xR@@AQ@@KS@@Af`@@/a@@ABCC@@
[H@@A]@@e@@AB^@@_@@AW@@X@@ABCD;T@@iyZ@@A U@@BV@@w@@Am@@w[@@ABCY@@f{@@Ax@@B
E@@z@@AC*h@@>|@@Ay@@}@@ABj@@h\@@ACDEFG@@}@  , 2^
BB/CcCAA<Stdlib__Map.Make.to_seq_fromA@]\@@  , 2d
AAABAA;Stdlib__Map.Make.to_rev_seqA@cb@@  , 2xj"@}@#@@AA7Stdlib__Map.Make.to_seqA@ih@@  , 2Hp(??)??AA7Stdlib__Map.Make.of_seqA@on@@  , 20v.?{?/??AA8Stdlib__Map.Make.add_seqA@ut@@  , 2|4?	?5??5AA9Stdlib__Map.Make.bindingsA@{z@@  , 1:<<;=>AA6Stdlib__Map.Make.equalA@@@  , 1@::A<L<AA8Stdlib__Map.Make.compareA@@@  , 0Fv//&Gy/f/AA?Stdlib__Map.Make.concat_or_joinA@@@  , 0Ln.D.SMt./
AA7Stdlib__Map.Make.concatA@@@  , /R   S!t!AA6Stdlib__Map.Make.mergeA@@@  , .PX wY w@A9Stdlib__Map.Make.is_emptyA@@@  , .<^ W_ sIAA4Stdlib__Map.Make.balA@@@  , .(d U

e U
 AA:Stdlib__Map.Make.singletonA@@@  , .j Q
<
Kk S

AA7Stdlib__Map.Make.createA@@@  , .p M
	q O
%
:@A7Stdlib__Map.Make.heightA@@@  , -v N

#w N

$@@A{ M@@%param A@@A@@AB  , -ΰ O
%
9@@A!h @@ @@ O
%
3 O
%
4@@ְ@B@@A@B@@B  , -*A'@!A  , - S

3@A2A@@@  , - S

 S

@@7A7 Q
<
@B@!l @G Q
<
L@@ A!x @ Q
<
M Q
<
N@@ B!d @ Q
<
O Q
<
P@@
 C!r @ Q
<
Q Q
<
R@@ D"hl Q@@ @HK@<@ R
U
_ R
U
a@@ E"hr ]@@ @VK@=@ R
U
q R
U
s@@) F$@+B@@AE@@F@@AB<D@@*A@@:C@@ABC@B@@A@F@  , -: S

 S

@@AQ8F@  , -p? S

@@AU<FA  , -lE R
U
v R
U
~@AA[D @@ABC@E  , -`P R
U
d	 R
U
l@>AgP@+@(@AB&%C#@D@  , -T[ R
U
[@@@oXD@  , -@_ U

@AA@\[@@  , - c U

@@@! U

@!x @& U

@@q H!d @, U

- U

@@x Is@
A@@B@@AB@@B@  , -7 sIU@AA@|{@@  , ,; sI< sI@@AF W@!l @K W@@ K!x @Q WR W@@ L!d @X WY W@@ M!r @_ W` W@@ N"hl @@ @K@@k X"l X$@@ O"hr @@ @K@@w YR\x YR^@@ Q@+B@@AE@@F@@AB<D@@*A@@:C@@ABC@C@@B@@AB@F@  , ,ְ sIx sI~@@0ASF@  , ,۰ sIQ5@@4AWF@  , ,߰ h h@@9A\F@  , , n} n}@@>Ae"rl 
HJ@	@@ @
X@ i i@@ ["rv 
@@ @
a@ i i@@ \"rd @ i i@@ ]"rr 
@@ @
q@ i i@@ ^PJ@K@AH@@0J@@ABG@@(I@@AP@BCDO@J@  , ,t! p p@
OJ@_@@M@vM@M@DL#rll 
\J@
@@ @#@ o o@@? _#rlv 
Y@@ @,@ o o@@I `#rld @ o o@@P a#rlr 
T@@ @<@ o o@@[ bVGCF@G@AL@@2N@@AK@@)M@@ABCMLDE@Q@  , ,8j" p# p)@
sI@@M@tM@M@͐DHrN@  , ,y1 p@@ALv N@  , +}5 lJ[6 q*9@@A{mJ@  , +: k/; k@@
T@@L@
L@
L@
D|M@  , +I k(J kI@@AJ@  , +xN jO j@@@K@
AK@  , +lX jY j@M@
AJ@  , +da j,@@AJ@  , +0e f^f r:C@@A*F@  , +j f^m@@A.F@  , *n \o \@@A3F@  , *s bt b@@A<"ll 
J@
J@
J@@@ @?@ ] ]@@ S"lv 
@@ @H@ ] ]@@ T"ld @ ] ]	@@ U"lr 
"@@ @X@ ]
 ]@@ V,&@H@@4J@@ABG@@'I@@A-,BCD*@J@  , * d d2@*J@	F@@M@	]M@	M@	xaDQ#lrl 8J@@@ @	
@ c c@@ W#lrv 5@@ @	@ c c@@% X#lrd @ c c@@, Y#lrr 0@@ @	#@ c c @@7 Z2uoHCD@L@@1N@@ABK@@(M@@ACJ@wvBDEt@Q@  , *F d; dM@OJ@@M@	[M@	M@	DHNN@  , *\U
 d@@ALR N@  , *,Y `o eN]@@AWmJ@  , *^ _?] _?n@g
@@L@L@L@Df|J@  , )m% _?M@@AjJ@  , )q) ^#* ^,@@@K@ϐAtK@  , ){3 ^04 ^9@M@ؐA}J@  , )< ^ +@@AJ@  , )@ ZA f^g@@AF@  , )tE Z@@A	F@  , )lI YRwJ YRx@@A
@@ABC@E@  , )\R YRS YR@@A!h @@ @@\ YR] YR@@ R@@F@@ABBC@F@  , )Dh YRX
@@	A+E@  , )<l X=m X>@@A/@@@ABC@D@  , ),u XMv XN@@A9!h @@ @@ XG XH@@ Pư@@AE@@@ABC@E@  , )Ӱ X-@@,@MD@  , (װ w w@@7A# w<@ٰ@ A@@A@@AB  , ( wF@@EA
A  , (KAH@
A	  , (!	!!	! @@TAO.   \@"t1H.@a   @@ Ԡ"t2I)@      @@ ՠ!tJ0J@K@!	!!	!@@
 @C@@AB@@A@@AB@B@@AC@@fD@@AB@C@  , (!!!7!!!8@@A.!tKXJ@J@S@!!!*!!!+@@* %@C@@A@@AB@C@  , (1!t!@9kJ@@@L@L@L@AO!xL]@@ @L@n@!K!Z!K![@@M ؠ!dMJ@o@	!K!]
!K!^@@U P@'*match*C@@D@@ABL@K@E@@ABCL@E@  , (b!t!~@@A%_E@  , (f!K!b!K!p@+ @ @rL@ӐAl@c@Aa@B`@B@  , (xv.!K!U@@AsB@  , (`z2   @@@wB@  , (L~6p.u.7p.u.@@A	>n.D.H@"t1	@Cn.D.U@@>"t2	@In.D.VJn.D.X@@?!t	J@-@Qp.u.Rp.u.@@@@C@@AB@@A@@AB@	D@@AB@@C@@AB@C@  , (<dq..eq..@@A.!t	J@.;J@-@nq..oq..@@A@C@@A@@AB@C@  , (yt..-@ɠ	J@.$@@L@.9L@.OL@.K7AO!x@@ @.L@.@s..s..@@B!dJ@.@s..s..@@C@C@@D@@ABK@J@E@@ABCK@E@  , (t..]@@\A$E@  , 's..s..@*@ @.L@.hA~@b@A`@B_@B@  , 's..q@@pAB@  , '	o.[.au@@t@B@  , '
y/f/v@@~A{
v//@"t1
@v//(@@E!v
@v//)v//*@@$F!d
@v//+v//,@@+G"t2
@v//-v///@@2H-@B@@!D@@ABA@@C@@AC@
bC@@
B@@AB@D@  , 'Ax/E/Wx/E/e@@A6!d
/@ x/E/Rx/E/S@@LIG@EBC@E@  , 'Sw/2/8@@@FP#D@  , 'hW<L<a<L<s@u^@@L@<DL@<\L@<SؐBؠ#cmp0m@#::@@n"m11X@)::*::@@u"m22S@0::1::@@|+compare_aux3@L@;@@ @;L@:@@@ @;L@:L@:@ @:@ @:M@:@K::L::@@@3C@@!D@@AB0B@@+A@@AC@B@@AC@@B@E@  , 'X^<L<t@à@@L@<CL@<tL@<k&BND@  , 'Hl<L<U,@@+ARD@  , ',p::0@@/@U@#@A B@C@  , 'w:;x:;@@	$Stdlib__Map.Make.compare.compare_auxAa"e14E@::::@@"e25CL@;@::::@@а@B@@AA@@B@5B@@AvD@@	
C@@AB@f@@@AB@  , ';;-;;/@@%A$B@  , &;0;F;0;G@@*A)B@  , &<<(<<9@oL@;2B<"v16	N@@ @;2@;H;X;H;Z@@	"d17@;H;\;H;^@@"r18	W@@ @;3@;H;`;H;b@@"e19	Z@@ @;4@;H;d;H;f@@&"v2:	u@@ @;:@;H;n;H;p@@0"d2;	*L@;@;H;r;H;t@@8"r2<	@@ @;;@;H;v;H;x@@C"e2=	@@ @;<@;H;z;H;|@@N!c>@@ @;bN@;R@;;;;@@Z!c?	QK@;@;;;;@@b]@LK@@AbI@@B<E@@SG@AC-C@dH@@A=D@@yJ@@ASF@@BCDM@  , &{3<<:4<<K@B{L@  , &:<<@@A"L@  , &>;<	?;<
@@A'L@  , &C;;@@A+LA  , &I;;J;;@AҐB@1@A0@B/.C+)DK
  , &U;;"@@A
K@  , &|Y;;Z;;@@AK@  , &p^;;+@@AKA  , &ld;;e;;@AB@J@AIHBECDJ  , &\o;;<@@A	J@  , & s::@@@@B@  , %w==x=>@	ݠ	@@L@=L@>L@>FBB	<<P@#cmpB	@U<<@@"m1C	@<<<<@@"m2D	@<<<<@@ )equal_auxE@
	L@<@@ @<L@<@
	@@ @=yL@<@@ @=BL@<@ @<@ @<M@<@<<<<@@@7C@@%D@@AB4B@@/A@@AC@kB@@A
>C@@B@E@  , %=>@
3	@@L@=L@>-L@>$BVD@  , %$==@@AZ!D@  , %(<<@@@]%@#@A B@C@  , %/<<<<@@	 Stdlib__Map.Make.equal.equal_auxAi"e1FI@<<<<@@<Ġ"e2GGL@<@<<<<@@E@@B@@AA@@B@B@@AzD@@
zC@@AB@j@@@AB@  , %T<=
<=@@%A$RB@  , %pY==0==5@@*A)WB@  , %\^====@sL@=d2B:"v1H
@@ @<@+=6=F,=6=H@@wƠ"d1I@2=6=J3=6=L@@~Ǡ"r1J
Š@@ @<@==6=N>=6=P@@Ƞ"e1K
Ƞ@@ @<@H=6=RI=6=T@@ɠ"v2L
@@ @<@R=6=\S=6=^@@ʠ"d2M
ZL@<@Z=6=`[=6=b@@ˠ"r2N
@@ @<@e=6=df=6=f@@̠"e2O
@@ @<@p=6=hq=6=j@@@JI@@A$E@@;G}@ABC~@LH@@A%D@@aJ@@A;F@@BCDK@  , %LѰ====@BqJ@  , %4ذ=p==p=@
Bx!J@  , %߰=p=|=p=@@@N@=#B+J@  , % 
@@A.J@  , $<<@@@B@  , $??$t@@s@h
6?	?
y@!s]
6@~?	?@@@	A@@A@
pB@@A@A@  , $p????@A>Stdlib__Map.Make.add_seq.(fun)A@@@  , $X
??@@@	?{?@!ib	@?{?@@ܠ!mc	@?{??{?@@@B@@AA@@B@:B@@A@B@  , $8(????@@$A"!md	K@?@????@@7ޠ!ke
@????@@>ߠ!vf
@????@@E@@D@@AB@@BgA@@C@@AC@eB@@A@DA  , $$UQAN@IP@@A
@B	@B  , $[??@@@
??@!il
@??@@hc@	A@@A@
YC@@B@@AB@A@  , #q)@@@	@@L@AJL@AbL@AYB	ߐ8@}@@!mv	@=@}@@@@	A@@A@B@@A
&C@@B@A@  , #I@@'@@&@A@  , #MAB1@	y@@L@BL@BL@B9B	 	\
AA@@!c	@Ea
AA@@@	A@@A@	C@@	B@@AB@A@  , #mAAQ@@P@A@  , #qCcCv[@֠	l@@L@D"L@DBL@D7cC	G	
BBl@#low	@q
BB2@@!m	@
BB3
BB4@@#aux@@@ @CZL@B@ @Co@@ @CL@B@.	@@ @CL@BL@B@ @B@ @B@ @BM@B@B7BEB7BH@@@'C@@A5B@@1A@@AB@^B@@A
C@@B@C@  , #	CcCi@@AFC@  , #
B7B=@@@I
@@A@B@B@  , #B`BsB`Bt@@	 Stdlib__Map.Make.to_seq_from.auxAV#low>@B7BIB7BL@@"!m>L@B@B7BMB7BN@@+!c>L@C@B7BOB7BP@@3 .@A@@AC@@B@@AB@B@@A@e@@@AC@  , #x@BBBB@A,A@>=@@  , #\E@.A1!lreL@C
@@ @C @
BuBBuB@@V!vp@@ @C)@BuBBuB@@`!d@BuBBuB@@g!rk@@ @C9@&BuB'BuB@@rm@@@AE@@0G@@ABB@B@!nH@@ABD@@,F@@ACDHFH@  , #H<CC6=CCI@ApA@@@  , #,ACC,@@tAFH@  , #EBCFBC@@yAL4@@ @Cf@MBBNBB@@'H@  , #SBCTBC@@A,H@  , "XBBYBB@F@@ @CYBc6s@s@A-,BCrpG@  , "fBBgCJCY@@Al	G@  , "kB7BS@@@C@  , "oAeAtpAeA{@@	!Stdlib__Map.Make.rev_seq_of_enum_A
9!c
@wA4AQxA4AR@@@B@@A	 A@@B@B@@A@
@@@AB@  , "ϰAAAA@AA@@@  , "԰AAAA@AA@@@  , "|ٰAAAA@@

@M@Bp%A)!k
3@@ @B-@A|AA|A@@!v
@A|AA|A@@!t
<@@ @B.@A|AA|A@@ $rest
?@@ @B/@A|AA|A@@@H@,F@@ABI@C@@AD@@(E@@ABCMKF@  , "tAA?@-K@BhcB>F@  , "h Q@fA@F@  , "8"A4AXS@@j@iaB@  , " &@@@@@@:Stdlib__Map.Make.snoc_enumA
!sxa@ @@ @@@@3!eyWK@As@ @@ @@@@;6@A@@B@@AB@@{@@@AB@  , "D@A @A2@AA@BA@@  , !I@A@@"A%!lzx@@ @A@@A@A@@Z!v{t@@ @A@@A@A	@@d!d|@@A @A@@k!r}o@@ @A@*@A+@A@@vq@D@@A>@.F@@ABC@@@@'E@@ABC@AF@  , !;@@?@@\@[JB@  , !?@@%@@@,@@=Stdlib__Map.Make.seq_of_enum_A!cn@G?@H?@@@@B@@A	sA@@B@
B@@A@4@@@AB@  , !W@-@JX@-@{@AA@@@  , !\@-@T]@-@Y@AA@@@  , !a@-@[b@-@z@@4*@M@@%A)!ko@@ @@@r@-@;s@-@<@@!vpL@y@-@=z@-@>@@!tqV@@ @@@@-@?@-@@@@$restra@@ @@@@-@A@-@E@@ְ@H@,F@@ABI@C@@AD@@(E@@ABCMKF@  , !@-@h?@{K@@cB>F@  , !|Q@fA@F@  , !L?@	S@@j@iaB@  , !4>>>>@@=Stdlib__Map.Make.bindings_auxAo$accuU
e@>}>>}>@@@B@@A
?ZA@@B@@
x@@@ABB  , !(>>>?@AA@@@  , ! >>>>@AA@@@  , !>>>?@
g#B'!lVJ
K@>@@ @>@>>>>@@.Ӡ!vWH@@ @>@>>>>@@8Ԡ!dX@>>>>@@?ՠ!rYC@@ @?@>>>>@@JE@I@AD@@0F@@ABK@C@@'E@@ABC@MG@  , ! W>>>?@@aA=UFP  ,  ]_AAe@Y\BT  ,  a>6>G>6>H@@9Stdlib__Map.Make.cardinalA`@
SA@@A@@
@@@AAB  ,  o'>I>`(>I>j@
A!lQ
@@ @>N@5>I>W6>I>X@@Ϡ!rR@@ @>W@@>I>ZA>I>[@@@C@@A)@B@@AB@)D@  ,  L>I>qM>I>{@K@>K@>7A(C@  ,  /	@@;A+C4  ,  pZ>>-@A@@?A9  ,  d_:P:a`:P:b@@:Stdlib__Map.Make.cons_enumA!m)@h:!:7i:!:8@@!e*K@:A@p:!:9q:!::@@@A@@B@@AB@@@@@AB@  ,  TŰ}:c:~:c:@AA@@@  ,  <ʰ:c:@@"A%!l+@@ @:`@:c:q:c:r@@!v,@@ @:i@:c:t:c:u@@!d-@:c:w:c:x@@!r.@@ @:y@:c:z:c:{@@@D@@A>@.F@@AB>@C@@'E@@ABC@AF@  ,  :=:C?@@\@[JB@  , 8~88~8@@:Stdlib__Map.Make.partitionA{!p@8[8q8[8r@@@B@@AQ$A@@B@AC@@qB@@AB@@@@ABB  , $9999@AA@"!@@  , )9999@J@9#B,!la@@ @8@8888@@C!v]@@ @9@8888@@M!d@88	88@@T!rX@@ @9@8888@@_"ltJ@94@8989	@@g"lf J@95@#89$89
@@o#pvd!J@9H@+9"90,9"93@@w"rt"J@9T@39?9N49?9P@@"rf#J@9U@;9?9R<9?9T@@@4K7G@@AED@@B[F@@/H@@A8I@@@ABC@,J@@AHC@@ L@@A)M@@_E@@ABCDN@  , \99]99@J@9D{#M@  , @A}%M@  , f9z9g9z9@AA@@@  , k9z9l9z9@/J@9D2N@  , \s9z9t9z9@/J@9B:M@  , L@A<M@  , DŰ}9i9s@@A@M@  , 0ɰ9?9X9?9e@XQ@ @9XL@9dȐBϰ@J@AH@BGFCA?@:@ABDJ@  ,  ݰ9?9I@@AJA  , 9"969"9;@AېB@OBDI  , 9"9,@@AI@  , 8989@@ @98L@9DB@o@An@@ABCF@  ,  89@@A  	F  ,  AA@
w B  ,  7	77	7@@;Stdlib__Map.Make.filter_mapA
~!f@6666@@  @B@@AUA@@B@EC@@uB@@AB@@@@ABB  ,  (8)8?8)8K@@A"!l[@@ @8 @7 7.7 7/@@ =!vW@@ @8	@7 717 72@@ G!d@7 747 75@@ N!rR@@ @8@
7 777 78@@ Y"l'J@8-@7z77z7@@ a#fvd+J@8:@7777@@ i"r'J@8E@%77&77@@ q l@/D@@A[@H@@AHF@@#G@@ABC`@1C@@AI@@EE@@ABDd`I@  , t <8 8=8 8(@@xA]"d'M@C8 8D8 8@@  @@
J@@ABzCyDwsJ@  , ` O77P8L8Y@@Ao )IA  , \ V77W77@ABv 1@'@%@ABDH  , P a77@@A 	HA  , L g77h77@AB B@>=BCDG  , @ r77#@@A 	GA  , < x7z7y7z7@AB S@O@AB$CF  , 0 ˰7z74@@A 	F  ,   а8AA@> B  ,  ԰5555@@7Stdlib__Map.Make.filterAE!p@5555@@  ۰@!m
A@@B@@AB@C@@>B@@AB@@@@ABB  ,  6666@@A$!l'J@6@@ @6M@6@5555@@!!v'@@ @6M@6@5555@@!!dJ@6@5555@@!!r	%#J@6@@ @6M@6@5555@@!-J@@ @6@5555@@!6"l'"J@7@6&646&66@@!>#pvd<J@7@6G6U6G6X@@!F"r'
2J@7&@ 6d6r 6d6t@@!N!I@<D@@AXF@@!G@@Au@BCq@H@@A<C@@I@@ATE@@BCDxtI@  , !a 66 66@@Ap!_I@  , !f 66 66@@Au!dI@  , |!k #66
@@Ay!hI@  , t!o '66~@@A}!l#IA  , p!u -6d6w .6d6@AB!t+$"@@ABDH  , d! 86d6n@@A!}	HA  , `! >6G6[ ?6G6`@AB!<@3BDG  , T! H6G6Q@@A!GA  , P! N6&69 O6&6C@AB!LJ@@ABCF  , D! Y6&60@@A!	F  , !AA@!B  ,  ! b33< c33=@@6Stdlib__Map.Make.unionA!f@ m22 n22@@!k"s1J@3@ u22 v22@@!l"s2J@3@ }22 ~22@@!m!sJ@3@ 33) 33*@@!n!̰@#C@@D@@ABB@@A@@AC@C@@A1B@@D@@AB@0@@@AD@  , ! 5.5D 5.5R@@:AG"l16J@3@@ @4@ 3>3O 3>3Q@@"o"v1@@ @4@ 3>3U 3>3W@@"p"d1@ 3>3[ 3>3]@@"q"r1@@ @4@ 3>3a 3>3c@@"r"h1@@ @4(@ 3>3g 3>3i@@"(s"l2Q2@@ @4F@ 3l3} 3l3@@"3t"v2M@@ @4O@ 3l3 3l3@@"=u"d2D@ 3l3 3l3@@"Dv"r2HN@@ @4_@!3l3!3l3@@"Ow"h2D@@ @4h@!
3l3!3l3@@"Yx"l14J@5W@@ @5iL@5L@!44!44@@"g"d1@@ @5jL@5M@!(44!)44@@"t"r1 O@@ @5kL@5N@!544!644@@"!lL@5u@!=44!>44@@"!rL@5v@!E44!F45 @@""@>N@@A2PK@@`F@@AB@I@@ACQD@@$R@@AMQM@@BH@@#S@@A9OJ@@mE@@ABC@@AL@@G@@ABDES@  , "!p5S5!q5S5@J@5J@5.Cڠ"d1c@!|5S5f!}5S5h@@""ð7T63B1C/.EU@  , p"а!5S5l!5S5@@&A"T@  , \"հ!55 @@*A"FSA  , X"۰!45!45@A1C"ڰNBA?@=@AB96C4DER  , <"!44!44@J@4J@5lJ@5J@5FC"cW@U@AR@BNKC#IDE Q@  , ("!44,@@QA"
Q@  , # !44!44@@ @5QL@5h^B #@w@Au@B=tCr@n@Am@BgfC>dDE;5M@  , #!44G@@lA-#
M@  , #!4;4Q!4;4_@@qA7"l2J@@ @4L@4@!33!33@@#0y"d2sW@@ @4L@4@!33!33@@#=z"r2d@@ @4L@4@!33!33@@#J{!lqJ@4@"33"33@@#R|!ryJ@4@"34"34
@@#Z}#U@N@@A@3P@ABC@R@@A@BGQ@S@@A@3O@ABCDES@  , #s"+4`4",4`4@ʐC["d2@"44`4s"54`4u@@#~#{&@
T%@ABC#EU@  , #"A4`4y"B4`4@@A#T@  , x#"F4!4-@@Ar#6SA  , t#"L34"M34@ACx#>6@5@AB0CDER  , X#"Y33"Z34@C#L	B@B=CDEQ@  , D#"e33$@@A#	Q@  , (#"i33"j33@|@ @4L@4B#M@  , #"w336@@A#M@  ,  #ð"{33@@A#M@  , |#ǰ"23@@@#İ@@ABC@  , l#ΰ"22"22@,J@26Stdlib__Map.Make.mergeBC!fw@"01"01@@#X"s1LJ@1@"01
"01@@#Y"s2LJ@1@"01"01@@#Z#@C@@AB@@A@@AB@C@@AB@@D@@AB@@@@AC@  , T$5@/A-#C@  , D$"2n2"2n2@eJ@2J@2V8C>"l2=J@1#@@ @1@"22("22*@@$!c"v2;@@ @1@"22."220@@$+d"d2@"224"226@@$2e"r26@@ @1@"22:"22<@@$=f"l1@@ @2xL@2[@"2B2Q"2B2S@@$Jg"d1@@ @2yL@2\@#2B2U#2B2W@@$Wh"r12@@ @2zL@2]@#2B2Y#2B2[@@$di$_@
H@@A"J@@CE@@ABy@4K@@A^G@@BCI@@DD@@A@@XF@@ABCDzN@  , (${#32n2#42n2@J@2J@2Cv$~L@  , $#=2n2#>2n2@AA@$$@@  , $#B2n2#C2n2@J@2C$,K@  , $#J2n2x@@A$0K@  , $#N2B2_#O2B2j@_SG@ @2`L@2w͐B$@9@A@7@A3@BC2DG@  , $#b2B2L @@A$
G@  , $#f1/1I#g1/1N@@A$C@  , \$#k11#l11@C"l1*@@ @1A@#1O1`#1O1b@@$["v1@@ @1J@#1O1f#1O1h@@$\"d1<@#1O1l#1O1n@@$]"r1F@@ @1Z@#1O1r#1O1t@@$^"h1@@ @1c@#1O1x#1O1z@@$_"l2̠u@@ @1L@1@#11#11@@$`"d2A@@ @1L@1@#11#11@@%a"r2@@ @1L@1@#11#11@@%b%@
I@@AJF@@$K@@A-@BC<D@@gH@@8L@@ABNE@@!J@@AC6@5@dG@@ABDE60O@  , <%1#11#12@aC~%1M@  , (%8#11#11@AgA@%6%5@@  , %=#12#12@:J@2oC%?,L@  , %F#11	@@tA%C0L@  , %J$11$11@_SG@ @1L@1B%Q@<@Ae@B8@7@A4@Bg1CDd^H@  , %_$11"@@A%\H@  , %c$1O1$1O1@[@@K@1M@1A%hH@  , %o$'1O1@@A%lH@  , x%s$+11@@@%pC@  , \%w$/}//$0}//@@6Stdlib__Map.Make.splitA!xP@$7{//$8{//@@%K%~@A@@
B@@AB@B@@AC@@B@g@@@ABB  , T%$K00$L00@AA@%%@@  , L%$P00$Q00@ZJ@0#D+!lϠqJ@/@@ @/@$f~//$g~//@@%L!v@@ @/@$p~//$q~//@@%M!d@$w~//$x~//@@%N!rǠ@@ @/@$~//$~//@@%O!c$u@@ @0L@/@$//$//@@%P"lrL@0}@$00$00@@%T$presL@0~@$00$00@@%U"rrL@0@$00$00@@%V%@H@@A,G@@@D@@ABWF@@&K@@A{@ J@@ABC@C@@I@@AUE@@@ABD{M@  , &
w@Al&K@  , &$00$00@81*@ @0L@0Bw&@$@A"@B!@@AC@@A@BDG@  , &"$00@@A&G@  , &&$0Y0$0Y0@AA@&$&#@@  , &+$0Y0$0Y0@J@0oD"llJ@0<@$0Y0j$0Y0l@@&<Q$presJ@0=@$0Y0n$0Y0r@@&DR"rlJ@0>@% 0Y0t%0Y0v@@&LS&G@H@@AZ@Y@ABX@#K@@A@J@@ABCW@I@@AV@@ABDK@  , &_9@A.&ZK@  , &a%0Y0z%0Y0@3,%@ @0AL@0MB&hUG@  , p&o%'0Y0eI@@A&lYG@  , `&s%+0<0K@@A&p]G@  , X&w%/00-%000;@A A@&u&t@@  , L&|%4001%5007@AA@&z&y@@  , <&
@A&|iG@  , 0&%;00@@A&mGA  , ,&%A/0%B/0@AB&@@AtBsCF  , &%L//@@A&	F  , &AA @&B  , &%Ub,_,u%Vb,_,@@5Stdlib__Map.Make.joinA!l@%``,,,=%a`,,,>@@&/!vJ@+@%i`,,,?%j`,,,@@@&0!dJ@+@%q`,,,A%r`,,,B@@&1!rJ@+%@%y`,,,C%z`,,,D@@&2&@B@@&D@@ABA@@"C@@AC@JE@@ArD@@FC@@B@@ABC@+@@@AD@  , &ڰ%c,,%c,,@@=A<&D@  , x&߰%h--%h--@@BAK"ll0J@,=J@+7@@ @+]@%d,,%d,,@@&3"lv@@ @+f@%d,,%d,,@@'4"ld@%d,,%d,,@@'5"lr@@ @+v@%d,,%d,,@@'6"lh@@ @+@%d,,%d,,@@' 7"rlIUJ@+?@@ @+@%e,,%e,,@@'-8"rvG@@ @+@%e,,%e,,@@'79"rd@%e,- %e,-@@'>:"rrB@@ @+@%e,-%e,-@@'I;"rh>@@ @+@&e,-&e,-@@'S<'N@@A@VL@@ABEJ@@rN@@ATK@@gM@@ABC@.G@@AE@@HI@@AB+F@@?H@@A@BCDN@  , h'n&&g-T-v&'g-T-@J@,J@,RՐD'q#Q@  , 'x&0g-T-r&1g-T-@@A'v(N@  , '}&5g-T-^@@A'z,N@  , '&9f--?&:f--N@D'3N@  , '&@f--2@@A'7N@  , '&Df--@@A';N@  , '&Ha,G,M@@@'D@  , '&LY+[+l&MY+[+y@@	 Stdlib__Map.Make.add_max_bindingA!k@&UX+0+L&VX+0+M@@'(!xJ@*2@&^X+0+N&_X+0+O@@')'@C@@AA@@B@@AB@&C@@GB@@AB@1@@@ACB  , '&t[++&u[++@)C-!l-J@*=@@ @*S@&Z+z+&Z+z+@@'*!v@@ @*\@&Z+z+&Z+z+@@'+!d@&Z+z+&Z+z+@@',!r@@ @*l@&Z+z+&Z+z+@@'-'@E@@AE@/G@@ABF@D@@A'F@@H@ABCGCG@  , '&[++?@@fA<'GE  , ( cCAAj@f'WCI  , t(&T**&T**@@	 Stdlib__Map.Make.add_min_bindingAn!k@&S**&S**@@(!!xJ@)P@&S**&S**@@("(@C@@AWA@@B@@AB@C@@B@@AB@@@@ACB  , d(,&V++&V++(@)C-!l ^@@ @)q@&U**&U**@@(@#!v Z@@ @)z@&U**&U**@@(J$!d@'U**'U**@@(Q%!r U@@ @)@'U**'U*+ @@(\&(W@E@@AD@.G@@ABE@D@@A'F@@G@ABCFBJ@  , @(j'"V++
'#V++.@@fA<(hGE  , (pcAAj@(lWCI  , (t',H))'-H))@@7Stdlib__Map.Make.existsAܠ!pH@'4G(('5G((@@(({@B@@AA@@B@@[@@@ABB  , ('DI))A'EI))K@;B!l \J@(y@@ @(@'VI)))'WI))*@@(!v @@ @(@'`I)),'aI))-@@(!d@'gI))/'hI))0@@(!r @@ @(@'rI))2'sI))3@@((@D@@A/F@@B@ABA@C@@'E@@ABC@CF@  , (˰'I))8'I))=@XB?(F@  , (Ұ'I))Y@@]AC(FL  , (װ[AAa@;(XBP  , h(۰'D(('D((@@8Stdlib__Map.Make.for_allAB!p@'C(k('C(k(@@((@B@@A$A@@B@@@@@ABB  , D('E(('E((@B!l!%J@'@@ @'@'E(('E((@@)	!v!#@@ @'@'E(('E((@@)!d@'E(('E((@@)!r!@@ @'@'E(('E((@@)%) @D@@A/F@@B@ABA@C@@'E@@ABC@CF@  , ,)2'E(('E((@'XB?)2F@  ,  )9'E((@@]AC)6FL  , )>[AAa@):XBP  , )B'?(('?((!@@5Stdlib__Map.Make.foldA!f@(=''(=''@@)P
!mlJ@&@(
=''(=''@@)Y$accuJ@&@(=''(=''@@)a)\@A@@AC@@B@@AB@@@@@AC@  , )l($A(?(R(%A(?(i@+C/!l!@@ @&@(4@("(0(5@("(1@@)!v!@@ @'@(>@("(3(?@("(4@@)!d@(E@("(6(F@("(7@@)!r!@@ @'@(P@("(9(Q@("(:@@))@;@E@@AB<@0G@@A>@BD@@(F@@ACD@@G@  , )(bA(?(Y(cA(?(h@iC>)G@  , )(iA(?(IE@@nAB)G@  , t)(m>''I@@r@q)VC@  , \)(q6'+'5(r6'+':@@5Stdlib__Map.Make.mapiA!fy.@(y4&'
(z4&'@@))@B@@AA@@B@@A@@@ABB  , T)Ѱ(;''(;''@AA@))@@  , 8)ְ(;''@@A#!lz"	6@@ @%@(7';'I(7';'J@@)!v{"@@ @%@(7';'L(7';'M@@)!d|H@(7';'O(7';'P@@)!r}" R@@ @%@(7';'R(7';'S@@*!h~!@@ @%@(7';'U(7';'V@@*"l'aJ@&@(8'['i(8'['k@@*	"d'zJ@&@(9'z'(9'z'@@*!
"r'qJ@& @(:''(:''@@*)*$@9E@@AI@@h@AB*C@@UG@@A%H@@n@AB<D@@J@@AQF@@BCD@qJA  , 4*@(:''(:''@ABk*?@
@ACD@}I  , $*K):''z@@At*H	IA  ,  *Q)	9'z')
9'z'@AB{*P@,@A@B)D@H  , *\)9'z'@@A*Y	HA  , *b)8'['n)8'['v@AB*a8@7@A@B4$CD@G
  ,  *n)&8'['e@@A*k
G  , *sAA@*oB  , *w)/-&N&X)0-&N&]@@4Stdlib__Map.Make.mapA۠!fn@)7+& &0)8+& &1@@* *~@B@@AwA@@B@@(@@@ABB  , *)G2&&)H2&&@AA@**@@  , *)L2&&@@A#!lo"Ǡ(@@ @$@)].&^&l)^.&^&m@@* !vp"@@ @$@)g.&^&o)h.&^&p@@* !dq:@)n.&^&r)o.&^&s@@* !rr"D@@ @$@)y.&^&u)z.&^&v@@* !hs"@@ @$@).&^&x).&^&y@@* "l'tSJ@$@)/&~&)/&~&@@* "d'ujJ@$@)0&&)0&&@@* "r'vcJ@$@)1&&)1&&@@**@9E@@AI@@h@AB*C@@UG@@A%H@@n@AB<D@@J@@AQF@@BCD@qJA  , *)1&&)1&&@ABk*@
@ACD@}I  , t+	)1&&z@@At+	IA  , p+)0&&)0&&@AA{+@,@A@B)D@H  , h+)0&&@@A+	HA  , d+ )/&~&)/&~&@AB+8@7@A@B4$CD@G
  , X+,)/&~&@@A+)
G  , +1AA@+-B  , +5)'%%)'%%@@5Stdlib__Map.Make.iterA!fg	@)&%%)&%%@@+A +<@B@@A~lA@@B@@@@@ABB  , +M*)%&*)%&@B!lh#@@ @#@*(%%*(%%@@+a !vi#{@@ @$@*(%%* (%%@@+k !dj@*&(%%*'(%%@@+r !rk#v$@@ @$@*1(%%*2(%%@@+} +x@D@@A>@.F@@AB?@C@@'E@@ABC@AF@  , +*B)%&*C)%&
@7VB=+F@  , +*I)%&@@[AA+FJ  , +YAA_@+VBN  , +*R#^#r*S#^#w@@7Stdlib__Map.Make.updateA!xY@*[#	#*\#	#@@+ !fZJ@!/@*d#	#*e#	#@@+ +@\D@@AB@@B!m`A@@C@@AC@$B@@A#2C@@D@@AB@@@@AD@  , +ư*~#x#*#x#@A,A@++@@  , h+˰*#x#@@0A0$dataa@*#x#*#x#@@+ +а@%@AE@@%@AB$!CE@  , P+ݰ*#<#R*#<#X@DAD+ݰ@/@A.+B)#C@  , D+*#<#F*##@@MAL+CB  , $+*$%{%*$%{%@@TA[!l[$$J@#'J@!}@@ @!|M@!R@*##*##@@,	 !v\$%@@ @!M@![@*##*##@@, !d] 
J@!:@*##*##@@, !r^$#$J@!@@ @!M@!k@*##*##@@,+ !h_$"@@ @!M@!t@*##*##@@,7 $ 0J@!@@ @!@*##*##@@,A !cb*@@ @";L@"+@+##+##@@,M "rre /L@#G@+	#%V%f+
#%V%h@@,U ,P@I@@AGF@@B@3D@@gH@@ABC@FE@@J@@AB]G@@@ACDJ@  , ,i+!$%{%+"$%{%@@A{,gJ@  , ,n+&$%{%@@A,kJA  ,  ,t+,#%V%k+-#%V%w@AڐC,s#@@ABDI  , ,+7#%V%b@@A,|	I@  , ,+;!%%:+<!%%F@@A"lld iJ@"@+C $%+D $%@@, ,:@7@A5@J@@ABCDJ@  , ,+P!%%3+Q!%%4@@A,J@  , ,+U!%%#@@A,JA  , ,+[ $%+\ $%@A	C,/I  , ,+b $$'@@A,4I@  , t,+f$$@@A,8I@  , \,+j$R$h+k$R$q@@A,@bJ@@Ab@b@ABaCCDJ@  , T,+w$$+x$$@A%A@,,@@  , 0,İ+|$$@@)Aՠ$datac J@!@+$r$+$r$@@, ,ʰx@x@K@@ABCz\CDK@  ,  ,ذ+$$+$$@@>A,K@  , ,ݰ+$$@@BA,K@  , ,+$0$B+$0$L@ HA,nI@  , ,+$0$D@AMA@,,@@  , ,+$$*+$$@@RA,wI@  , ,+$$@@VA,{IA  , ,+##+#$@A]B,@@AICHDC=H  , -+##@@gA,	H  , -dAAk@e-&C  , l-+	!!+	!!@@7Stdlib__Map.Make.removeAl!xO!<@+!!+!!@@- -@!mTA@@B@@AB@%yB@@A$C@@^D@@AB@!V@@@ABB  , L-*+""+"#@@A%!lP%_!TJ@ J@@@ @M@@+
!!+
!!@@-E ܠ!vQ%a@@ @M@@,
!!,
!!@@-Q ݠ!dR!qJ@@,

!!,
!!@@-Y ޠ!rS%_%J@@@ @M@@,
!!,
!!@@-g M%>/J@@@ @@,%
!!,&
!"@@-q !cU,@@ @ L@ @,1"",2""@@-} "rrW!L@ @,9"",:""@@- -@G@@A;D@@BYF@@u@AC6C@@H@@ANE@@w@ABDvpH@  , @-,N"",O""@@Al-H@  , 0-,S""q@@Ap-HA  , ,-,Y"",Z""@ABw- @@A@BDG  , -,d""@@A-	G@  , 
-,h"k",i"k"@@A"llV!J@ ]@,p"k"{,q"k"}@@- -73@H@@A@BC4DH@  , 
-İ,|"k",}"k"@@A-H@  , 
-ɰ,"k"@@A-HA  , 
-ϰ,"k","k"@AĐB-.G  , 
-ְ,"k"w&@@A-3G@  , 
-ڰ,
"N"]@@A-7G@  , 
-ް,","D,","M@@A-<G@  , 
-,","6@@A-@GA  , 
-,"",""(@AސB-@f@AedBcJCF  , 
-,""@@A-	FР  , 
T-AA@V-BԠ  , 
,-,  I Z,  I z@@	#Stdlib__Map.Make.remove_min_bindingA[-@<EA@@A@%yB@@A@"U@@@AAC  , 
$.
,  { ,  { @@Ak!r@&"W@@ @"@,  { ,  { @@. .@!lAB@@A@C@@ABC  , 
.',   ,   @"g+A&W"t@@ @>@,   ,   @@.9 Ϡ!vB&S@@ @G@,   ,   @@.C Р!dC"@,   ,   @@.J Ѡ!rD&N"@@ @W@-	   -
   @@.U .P@D@@A;@BW@C@@%E@@ABCYWH@  , .`-   -   @@cA7.^EZ  , .f-   @@Ah@.cgA_  , .k-# -$ @@	 Stdlib__Map.Make.max_binding_optA.j@>A@@A@@"@@@AAC  , .y-1 -2 @AA@.w.v@@  , .~-6 @AA@.{.z@@  , .	@Aݠ!v;&@@ @@-B -C @@. ʠ!d<"@-I -J @@. .@@B@@A
C@@+@D@@ABC@+D)  , p.-Y  -Z  @@6A!r=&#@@ @B@-d  -e  @@. .@@AB@C@@AB@BC@  , D.-p @AL@.KAE  , @.-u $5-v $D@#exnG@@L@RL@V<Stdlib__Map.Make.max_bindingA#.ư@9A@@A@@#g@@@AA@  , 4.@
A+.AC  , ,.װ- Ee- Ek@AA@..@@  ,  .@A6!v6&@@ @@- ES- ET@@. Ơ!d7#u@- EV- EW@@. .@B@@A
C@@)@D@@ABC@)D%  ,  .- l- l@@5AW!r8'#@@ @=@- lz- l{@@/
 /@@A@@C@@AB@@C<  , /- @AK@l/IAA  , /- - @@	 Stdlib__Map.Make.min_binding_optAr/@V4A@@A@@#@@@AAC  , /%- - @AA@/#/"@@  , /*- @AA@/'/&@@  , /.	@A!v1'J@@ @!@- - @@/:  !d2#@- - @@/A /<@C@@A!l3B@@,@D@@ABC@,D*  , /N. . @@7A'y$@@ @>@. . @@/[ /V@@AA@B@?B=  , h/a. r@AI@/^HAB  , d/f. . '@@@L@NL@R<Stdlib__Map.Make.min_bindingA/l@/A@@A@@$W@@@AA@  , X/y@
A/tAC  , P/}.5 (H.6 (N@AA@/{/z@@  , D/@Aڠ!v,'@@ @@.B (?.C (@@@/ !d-$e@.I (B.J (C@@/ /@C@@A!l.B@@*@D@@ABC@*D&  ,  /.Z Oc.[ Op@@6A'͠$~@@ @9@.c O].d O^@@/ /@@A?@B@=B9  ,  /.m @AH@
/FA>  , 
/.r bl.s bq@@4Stdlib__Map.Make.memA!x%$@.z 4D.{ 4E@@/ /@*A@@
B@@AB@(&B@@A@$@@@ABB  , 
/԰. . @@A!l&($@@ @B@. r. r@@/ !v'( @@ @K@. r. r@@/ !r('$@@ @T@. r. r@@/ !c).@@ @vL@f@. . @@0 0@F@@A2E@@F@ABC@@,D@@AG@BCFDF@  , 
0. . @@ZA@0F@  , 
0. . @@_AE0FA  , 
0 . . @AfBL0@@A`@BC\ZE  , 
0+. @@pAU0(	E]  , 
p00nAAt@0,kBa  , 
X04. . @@9Stdlib__Map.Make.find_optA!x%[@. ]r. ]s@@0@ 0;@{#A@@
B@@AB@(B@@A@%p@@@ABB  , 
D0N/  0/  1@@A!l(%oJ@T@@ @j@/ / @@0b !v(|@@ @s@/  /! @@0l !d @/' /( @@0s !r!(w@@ @@/2 /3 @@0~ !c"/%@@ @L@@/> /? @@0 0@G@@A%D@@B<F@@Q@AC!C@@5E@@AR@BDQOG@  , 
80/Q  )/R  *@@eAK0G@  , 
(0/V  /W  2@@jAP0G@  , 
 0/[ /\ @AoA@00@@  , 
0@qAW0G@  , 
0/b @@uA[0"GA  , 
0/h /i @A|Bb0@(@A'&B%$CrpF  , 	0/s @@Ak0	Fs  , 	0!AA@0Bw  , 	0İ/| /} @@>Stdlib__Map.Make.find_last_optA!f&@/ / @@0 0˰@B@@A
A@@B@&nB@@A@&1@@@ABB  , 	0ް/ >J/ >[@@A!l)&*J@@@ @@/ / @@0 !v)@@ @@/ / @@0 !d@/ / @@1 !r)@@ @@/ / @@1 1	@D@@A@@0F@@ABA@C@@'E@@ABCCAF@  , 	x1/ 	/ 	.@@WA=1F@  , 	p1 /  / @&qJ@J@aAH1$F@  , 	h1+/ M@@fAL1(FS  , 	810dQAAj@1,aBW  , 	$14/ / @A	"Stdlib__Map.Make.find_last_opt_auxA@1312@@  , 	1:/ @AA@1716@@  , 	1>
@A"v0
&@/ / @@1H "d0&J@@0 0 @@1P !f&J@@0
 0 @@1Y 1T@C@@AB@@A@@"D@@ABC@@&@@@ADB  , 1i0! fr0" f@@5A2!l)' J@@@ @@01 02 
@@1} !v)@@ @@0; 0< @@1 !d@0B 0C @@1 !r)@@ @@0M 0N @@1 1@F@@AB@BA@2H@@AC@BE@@)G@@AD@BCD@CH@  , 10` 1=0a 1V@@tA?1H@  , 10e (0f +@',zAF1H@  , 10l %K@@AJ1HQ  , 1uOAA@1aDU  , |10u 0v $@ @@L@L@:Stdlib__Map.Make.find_lastA!f'@0 0 @@1 1˰@B@@A
A@@B@'B@@A@'@@@AB@  , p1@A1BB  , \10 0 @@A!l*'J@@@ @@0 %30 %4@@1 !v*@@ @@0 %60 %7@@1 !d	@0 %90 %:@@2 !r
*	@@ @@0 %<0 %=@@2 2@D@@AB@0F@@ABC@C@@'E@@ABCECF@  , <20 Xd0 Xy@@ZA=2F@  , 42"0 BO0 BR@'J@#J@dAH2&F@  , ,2-0 BLM@@iAL2*FS  , 22fQAAm@2.cBW  , 260 ;E0 ;M@A>Stdlib__Map.Make.find_last_auxA@2524@@  , 2<@A"v0 (4@0 0 @@2F "d0 (6J@@1 1 @@2O !f (9J@@1 1
 @@2X 2S@C@@AB@@A@@#D@@ABC@@(]@@@ADB  , 2h1  1! @@2A3!l *(bJ@@@ @@10 N\11 N]@@2| !v*@@ @#@1: N_1; N`@@2 !d@1A Nb1B Nc@@2 !r*@@ @3@1L Ne1M Nf@@2 2@F@@AB@BA@2H@@AC@BE@@)G@@AD@BCD@CH@  , 21_ 1` @@qA?2H@  , 21d kx1e k{@(wAF2H@  , 21k kuK@@|AJ2HQ  , X2vOAA@ 	2aDU  , @21t eo1u es@@?Stdlib__Map.Make.find_first_optA !f (@1| ,G1} ,H@@2 2ð@B@@A A@@B@):B@@A@(@@@ABB  , ,2ְ1 1 @@A!l +(J@@@ @3@1 t1 t@@2 !v +@@ @<@1 t1 t@@2 !d @1 t1 t@@2 !r *@@ @L@1 t1 t@@3 3@D@@A@@0F@@ABA@C@@'E@@ABCCAF@  , 31 1 @@WA=3F@  , 31 1 @)<J@fJ@baAH3F@  , 3#1 M@@fAL3 FS  , 3(dQAAj@ x3$aBW  , 3,1 1 @A	#Stdlib__Map.Make.find_first_opt_auxA@3+3*@@  , 321 @AA@3/3.@@  , 36
@A "v0 )@1 >]1 >_@@3@ "d0 )vJ@B@1 >`1 >b@@3H !f )J@I@2 >c2 >d@@3Q 3L@C@@AB@@ A@@"D@@ABC@@)@@@ADB  , 3a2 2 *@@5A2!l +)J@T@@ @j@2) 2* @@3u !v +@@ @s@23 24 @@3 !d @2: 2; @@3 !r +@@ @@2E 2F @@3 3@F@@AB@BA@2H@@AC@BE@@)G@@AD@BCD@CH@  , `32X 2Y @@tA?3H@  , X32] 2^ @)zAF3H@  , P32d K@@AJ3HQ  ,  3uOAA@! 3aDU  , 32m 2n @@@L@L@;Stdlib__Map.Make.find_firstA!!f *R@2| n2} n@@3 3ð@B@@A  A@@B@*B@@A@*g@@@AB@  , 3@A3BB  , 3ذ2 ".2 "<@@A!l ,*bJ@i@@ @@2 2 @@3 !v ,@@ @@2 2 @@3 !d @2 2 @@3 !r ,@@ @@2 2 @@4 4@D@@AB@0F@@ABC@C@@'E@@ABCECF@  , 42 2 @@ZA=4F@  , 42 2 @*J@J@dAH4F@  , 4%2 M@@iAL4"FS  , 4*fQAAm@!x4&cBW  , |4.2 2 @A?Stdlib__Map.Make.find_first_auxA@4-4,@@  , l44@A!"v0 +@2 2 @@4> y"d0 +J@@2 2 @@4G z!f +J@@3 3 @@4P {4K@C@@AB@@  A@@#D@@ABC@@+*@@@ADB  , L4`3 HT3 Hl@@2A3!l ,+/J@@@ @@3( 3) @@4t |!v ,@@ @@32 33 @@4~ }!d @39 3: @@4 ~!r ,@@ @@3D 3E @@4 4@F@@AB@BA@2H@@AC@BE@@)G@@AD@BCD@CH@  , ,43W "3X 8@@qA?4H@  , $43\  
3]  @+[wAF4H@  , 43c  
K@@|AJ4HQ  , 4vOAA@!4aDU  , 43l 3m @@@L@L@5Stdlib__Map.Make.findA"!x +@3{ 3| @@4 r4°@! A@@
B@@AB@-'B@@A@+@@@AB@  , 4@A4BB  , 4װ3 a3 a@@A !l -+J@@@ @@3 3 @@4 s!v -@@ @@3 3 @@4 t!d @3 3 @@4 u!r - @@ @@3 3 @@5 v!c 3@@ @L@@3 "03 "1@@5 w5@G@@A%D@@B<F@@S@AC!C@@5E@@AT@BDSQG@  , 5"3 a3 a@@hAK5 G@  , 5'3 ap3 a@@mAP5%G@  , 5,3 G_3 G`@@rAU5*G@  , 513 GQ
@@vAY5. GA  , 573 "43 "C@A}B`56@&@A%$B#"CrpF  , t5B3 ",@@Ai5?	Fq  , D5GAA@"5CBu  , 05K4 {4 {B@A4Stdlib__Map.Make.addA@5J5I@@  , 5Q4	 {@@A"!x ,e@4 y4 y@@5\ f$data ,eJ@
7@4 y4 y@@5d g5_@B@@A!m A@@C@@AB@-B@@A,C@@B@,@@@ACB  , 5w4/ 40 @@,A/!l -,J@J@
@@ @
M@
Z@4F |CQ4G |CR@@5 h!v -@@ @
M@
c@4R |CT4S |CU@@5 i!d ,J@
B@4Z |CW4[ |CX@@5 j!r -$J@
@@ @
M@
s@4h |CZ4i |C[@@5 k!h -@@ @
M@
|@4t |C]4u |C^@@5 lW-:J@
@@ @
@4~ |CK4 |Cd@@5 m!c 4q@@ @$L@@4 }hv4 }hw@@5 n"rr ,L@@4 fv4 fx@@5 p5ٰ@I@@AGF@@B~@3D@@gH@@ABC@FE@@J@@AB]G@@@ACDJ@  , 54 4 @@A{5J@  , 54 @@A5JA  , 54 f{4 f@AC5#@@ABDI  , 64 fr@@A6	I@  , 64 'J4 'V@@A"ll -J@@4 4 @@6 o6:@7@A5@J@@ABCDJ@  , 6!4 'C4 'D@@A6J@  , p6&4 '3@@A6#JA  , l6,4 4 #@AC6+/I  , P634 '@@A604I@  , @674 @@A648I@  , 86;4 4 @AA@6968@@  , 6@4 @@A6=AI@  ,  6D4 4 @@A6BFI@  , 6I5 @@A6FJI@  , 6M5 ~@@A6JNIA  , 6S5 }hz5 }h@AB6R@w@AvCXDH  , 6^5 }hr@@A6[	H  , 6cAA@#6_ C  , |6g6fA6cA@6b6a@@@         
   &./boot(./stdlib@ | 9C  3.  ۲    , 5+Stdlib__Set&_none_@@ AA"??A@@@@@@@@@@@  , 5|	AA@@@  , 5l
A"??Aô@*floatarrayQ  8 @@@A@@@@@/@@@5extension_constructorP  8 @@@A@@@@@3@@@#intA  8 @@@A@@@@@7@A@$charB  8 @@@A@@@@@;@A@&stringO  8 @@@A@@@@@?@@@%floatD  8 @@@A@@@@@C@@@$boolE  8 @@%false^@@M@$true_@@S@@@A@@@@@T@A@$unitF  8 @@"()`@@^@@@A@@@@@_@A@
#exnG  8 @@AA@@@@@c@@@%arrayH  8 @ @O@A@A@ @@@@@l@@@$listI  8 @ @P@A"[]a@@y@"::b@@ @Q@@@
@@A@Y@@@@@@@@&optionJ  8 @ @S@A$Nonec@@@$Somed@@@@@A@Y@@@@@@@@&lazy_tN  8 @ @U@A@A@Y@@@@@@@@)nativeintK  8 @@@A@@@@@@@@%int32L  8 @@@A@@@@@@@@%int64M  8 @@@A@@@@@@@@:Undefined_recursive_module]    Z@@@ @J@@ @@@ @V@@Aɠ=ocaml.warn_on_literal_pattern͐@@.Assert_failure\    @@ @X@@A٠@
0Division_by_zeroY    '@@@Aᠰ@+End_of_fileX    /@@@A頰 @)Sys_errorW    7@3@@A򠰠)(@.Sys_blocked_io[    @@@@A10@)Not_foundV    H@@@A98@'FailureU    P@L@@ABA@0Invalid_argumentT    Y@U@@AKJ@.Stack_overflowZ    b@@@ASR@-Out_of_memoryS    j@@@A$['Z'@-Match_failureR    r@qmn@ @c@@A2i5h5@
%bytesC  8 @@@A@@@@@9@@@&Stdlib+OrderedType SB!t QA  8 @@@A@@@@@&set.mlTvzTv@@@@M@A@'compare R@@@ @@@@ @,@@ @@ @@ @@UU@@fA@@@RVVV@jB!S E#elt TC  8 @@@A@@@@@,Z-Z@@@@xCA@!t UD  8 @@@A@@@@@5[6[@@@@DA@%empty V@@ @@B\C\@@E@(is_empty W@@@ @W@@ @@ @@U]V]@@F@#mem X@:@@ @@7@@ @p@@ @ @ @!@ @"@n^o^@@G@#add Y@S@@ @#@P@@ @$T@@ @%@ @&@ @'@_ $_ :@@H@)singleton Z@l@@ @(g@@ @)@ @*@`;?`;V@@I@&remove [@@@ @+@|@@ @,@@ @-@ @.@ @/@aW[aWt@@J@%union \@@@ @0@@@ @1@@ @2@ @3@ @4@buybu@@K@%inter ]@@@ @5@@@ @6@@ @7@ @8@ @9@cc@@1L@(disjoint ^@@@ @:@@@ @; @@ @<@ @=@ @>@dd@@JM@$diff _@@@ @?@@@ @@@@ @A@ @B@ @C@ee@@cN@'compare `@@@ @D@@@ @EB@@ @F@ @G@ @H@0f1f@@|O@%equal a@@@ @I@@@ @JK@@ @K@ @L@ @M@Ig	Jg"@@P@&subset b@%@@ @N@+@@ @Od@@ @P@ @Q@ @R@bh#'ch#A@@Q@$iter c@@I@@ @Sh@@ @T@ @U@J@@ @Vr@@ @W@ @X@ @Y@iBFiBj@@R@#map d@@h@@ @Zl@@ @[@ @\@i@@ @]m@@ @^@ @_@ @`@jkojk@@S@$fold e@@@@ @a@!a @jE@b@ @c@ @d@@@ @e@@ @f@ @g@ @h@kk@@
T@'for_all f@@@@ @k@@ @l@ @m@@@ @n@@ @o@ @p@ @q@ll@@,U@&exists g@@@@ @r@@ @s@ @t@@@ @u@@ @v@ @w@ @x@m m@@KV@&filter h@@@@ @y@@ @z@ @{@@@ @|@@ @}@ @~@ @@nn>@@jW@*filter_map i@@@@ @
@@ @@@ @@ @@@@ @@@ @@ @@ @@Bo?CCo?p@@X@)partition j@@)@@ @Y@@ @@ @@*@@ @1@@ @6@@ @@ @@ @@ @@ipqujpq@@Y@(cardinal k@E@@ @@@ @@ @@|q}q@@Z@(elements l@X@@ @hi@@ @@@ @@ @@rr@@[@'min_elt m@p@@ @}@@ @@ @@ss@@\@+min_elt_opt n@@@ @v@@ @@@ @@ @@tt@@]@'max_elt o@@@ @@@ @@ @@uu3@@^@+max_elt_opt p@@@ @@@ @@@ @@ @@v48v4X@@6_@&choose q@@@ @@@ @@ @@wY]wYq@@I`@*choose_opt r@@@ @̠@@ @@@ @@ @@xrvxr@@aa@%split s@@@ @@@@ @@@ @8@@ @@@ @@ @@ @@ @@;y<y@@b@$find t@ @@ @@@@ @*@@ @@ @@ @@TzUz@@c@(find_opt u@9@@ @@6@@ @)G@@ @@@ @@ @@ @@r{s{	@@d@*find_first v@@Y@@ @@@ @@ @@Z@@ @g@@ @@ @@ @@|			|		2@@e@.find_first_opt w@@x@@ @@@ @@ @@y@@ @l@@ @@@ @@ @@ @@}	3	7}	3	k@@f@)find_last x@@@@ @@@ @@ @@@@ @@@ @@ @@ @@~	l	p~	l	@@ g@-find_last_opt y@@@@ @@@ @@ @@@@ @@@ @@@ @@ @@ @@				@@Dh@'of_list z@@@ @@@ @@@ @@ @@ @		 @		@@\i@+to_seq_from @@@ @@@@ @6#Seq!t@@ @@@ @@ @@ @@1 A		2 A	
@@}j@&to_seq @
@@ @Q#Seq!t!@@ @@@ @@ @@L B

 M B

;@@k@*to_rev_seq @(@@ @l#Seq!t<@@ @@@ @@ @@g C
<
@h C
<
_@@l@'add_seq @#Seq!tS@@ @@@ @@Q@@ @U@@ @@ @@ @@ D
`
d D
`
@@m@&of_seq @#Seq!tt@@ @@@ @p@@ @@ @@ E

 E

@@n@@@X F

@o$MakeF@#Ord G#elt H  8 @@@A!t@@ @@@@@ J

 J

@@@@qA@!t I  8 @@%Empty @@ K

 K

@@s$Node !l @@@ @ K
	 K

@@.t!v @5@@ @ K
 K
@@:u!r @1@@ @ K
 K
@@Fv!h @@@ @° K
 K
@@Rw@@
 K

 K
 @@Vx@@A@@@@@ K

@@@@YrA@&height @W@@ @J@@@ @J@@ @J@@% P& P@@q~@&create @V@@ @xJ@@S@@ @J@
@P@@ @J@/@@ @gJ@@ @J@@ @J@@ @J@@N YO Y@@ @@#bal @@@ @	YJ@@|@@ @	`J@@y@@ @	iJ@X@@ @J@@ @J@@ @J@@ @J@@w cx c@@ H@#add @@@ @
J@	@@@ @
{J@	@@ @
J@	@ @	@ @	K@	@ " %@@ \@)singleton @@@ @3J@@@ @J@@ @J@@  @@ e@/add_min_element @@@ @J@O@@@ @J@Q@@ @J@P@ @R@ @SK@N@ 
 
(@@ g@/add_max_element @@@ @J@@@@ @CJ@@@ @/J@@ @@ @K@@  @@4 l@$join @@@ @
J@e@@@ @
J@f@@@ @
J@g,@@ @
J@h@ @i@ @j@ @kK@d@
  @@Y q@'min_elt @ @@ @XJ@T7@@ @J@S@ @UK@R@$ % %@@p }@+min_elt_opt @@@ @J@T@@ @J@
@@ @J@@ @K@@B C @@ @'max_elt @5@@ @hJ@dl@@ @J@c@ @eK@b@Y Z @@ @+max_elt_opt @L@@ @J@5@@ @#J@@@ @J@@ @K@@v w @@ @.remove_min_elt @i@@ @xJ@t@@ @J@s@ @uK@r@ >J >X@@ @%merge @@@ @J@-@	J@4J@5@ @6J@.@ @/J@,@ { {@@ @&concat @@@ @wJ@	@	J@J@@ @J@
@ @J@@  @@
 @%split@#@@ @9J@@@@ @J@@@ @J@@@ @J@@@ @"J@@ @@ @@ @K@@ r~ r@@= @%empty@@ @J@@ !!  !!@@K @(is_empty@@@ @J@,@@ @J@	@ @
J@@ !%!- !%!5@@b @#mem@U@@ @|J@7@N@@ @J@9$boolE@@ @J@8@ @:@ @;K@6@7 !]!i8 !]!l@@ @&remove@v@@ @7J@@o@@ @|J@\@@ @J@@ @@ @K@@U ""V ""@@ @%union$@n@@ @J@@J@J@@ @@ @K@
@l##m##@@ @%inter5@_@@ @0J@@f@@ @J@k@@ @_J@@ @@ @K@@%%%%@@ @)split_bis@J  8 @@%FoundA@@+''+''@@ Ҡ(NotFoundB@@ @@@@ @@@ @@ @@@,'','(@@ @@A@@@@@*''@@@@	 A@)split_bisC@@@ @K@@@@ @>K@C@@ @@K@@ @@ @L@@.((.((@@	  @(disjointP@@@@ @K@6@K@7@@ @K@8@ @9@ @:L@5@=**=**@@	< @$diffY@@@ @K@K@@@ @K@LK@M@ @N@ @OL@J@F+:+FF+:+J@@	W @+enumerationeK  8 @@#Endf@@Q,,Q,,@@	f $Morego@@ @d@@ @  @@ @@@2Q,,3Q,,@@	~ @@A@@@@@6Q,,@@@@	 A@)cons_enumh@(@@ @L@@=@@ @L@L@@ @@ @M@@QS,,RS,,@@	 @+compare_auxn@@@ @\L@?@@@ @L@@@@ @L@A@ @B@ @CM@>@oX-=-IpX-=-T@@	 @'comparex@b@@ @qL@C@k@@ @L@J	@@ @`L@K@ @LL@D@ @EL@B@c.{.c.{.@@	@%equal{@@@ @L@@@@ @L@{@@ @L@@ @L@@ @L@@f..f..@@		@&subset@@@ @L@@@@ @ L@@@ @!&L@@ @@ @M@@i./i./
@@
@$iter@@@@ @"L@"	@@ @"!L@"A @"L@!@@@ @"L@!	@@ @"L@!@ @!@ @!M@!@x00x00@@
E@$fold@@"@@ @"L@"@@ @"cL@"L@"A @"L@"A @"L@"L@*@@ @"L@"M@L@"NL@"O@ @"P@ @"Q@ @"RM@"K@	'|1D1P	(|1D1T@@
s@'for_all@@P@@ @#L@#@@ @#L@#A @#L@"@k@@ @#<L@"b@@ @#0L@"@ @"@ @"M@"@	Q11	R11@@
#@&exists@@z@@ @#L@#8@@ @#L@#A @#L@#m@@@ @#L@#oG@@ @#L@#n@ @#p@ @#qM@#l@	{252A	|252G@@
(@&filter@@@@ @$YL@$V
@@ @$jL@$WA @$XL@$@@@ @$QL@$@@ @$CL@$@ @$	@ @$
M@$@	22	22@@
-@)partition@@@@ @%DL@%A*@@ @%]L@%BA @%CL@$@@@ @%<L@$@@ @%"L@$@@ @%%L@$@ @$@ @$@ @$M@$@	34	34@@#6@(cardinal@@@ @%L@%#intA@@ @&L@%@ @%M@%@	5o5{	5o5@@=@@,elements_aux@
ݠ@@ @&L@&@@ @&L@&Q@@@ @&L@&SL@&R@ @&T@ @&UM@&P@
55
55@@_C@(elements@,@@ @&L@&'@@@ @&@@ @&L@&@ @&L@&@
.6X6`
/6X6h@@zH@&choose@@@ @&T@@ @&@ @&L@&@
A66
B66@@J@*choose_opt@2@@ @&j@@ @&@@ @&@ @&L@&@
X66
Y66@@K@$find@@@ @':L@&@@@ @'nL@&@@ @'SL@&@ @&@ @&M@&@
v66
w66@@L@.find_first_aux@@@ @'L@'@@@@ @'L@'@@ @'L@'ːA @'L@'@@@ @'L@'L@'@ @'@ @'@ @'M@'@
77
77@@R@*find_first@@@@ @(w$@@ @(vA @(uL@(@@@ @(L@(@@ @(sL@(@ @(@ @(M@(@
8T8`
8T8j@@X@2find_first_opt_aux@@@ @(L@(@@@@ @(L@(T@@ @(L@(쐐A @(L@(@@@ @(L@(#L@(@@ @(L@(@ @(@ @(@ @(M@(@
99*
99<@@F]@.find_first_opt@@!@@ @){@@ @)A @)L@)4@!@@ @)L@)67@@ @)L@)c@@ @)dL@)5@ @)7@ @)8M@)3@%9:&9:@@qc@-find_last_aux@J@@ @*L@)@@U@@ @)L@)@@ @* L@)A @)L@)@W@@ @*L@)L@)@ @)@ @)@ @)M@)@R::S::@@h@)find_last@@y@@ @*@@ @*A @*L@*D@@@ @*L@*F@@ @*L@*E@ @*G@ @*HM@*C@w;;x;;@@n@1find_last_opt_aux@@@ @+/L@*@@@@ @+L@+@@ @+!L@+A @+L@*@@@ @+0L@*l#L@+@@ @+L@*@ @*@ @*@ @*M@*@<T<`<T<q@@s@-find_last_opt@@@@ @+*@@ @+A @+L@+e@@@ @+L@+g@@ @+L@+@@ @+L@+f@ @+h@ @+iM@+d@=-=9=-=F@@
 y@(find_opt@@@ @,7L@+@@@ @,oL@+
@@ @,TL@, @@ @,!L@+@ @+@ @+M@+@=>=>	@@
D~@(try_join@)@@ @-L@,@&@@ @-L@,@;@@ @-L@,L@,@ @,L@,@ @,L@,@ @,L@,@>>>>@@
j@#map
@@G@@ @.L@.L@@ @.nL@.A @.L@-@a@@ @.L@-(@@ @.L@-@ @-@ @-M@-@G
@B@NH
@B@Q@@
@*try_concat@:@@ @/1L@.@	L@.L@.@ @.L@.@ @.L@.@aAoAwbAoA@@
@*filter_map@@@@ @/L@/A@@ @0ML@0@@ @0L@/A @/L@/@@@ @/L@/q@@ @/L@/@ @/@ @/M@/@BB BB*@@
@.of_sorted_list&@@@ @3@@ @3L@0@@ @3L@0@ @0L@0@,CC,CC@@
@'of_list@$listI@@ @8N@8@@ @8L@7,@@ @7L@7-@ @7.L@7+@AFFAFF@@@'add_seq@&Stdlib#Seq!t@@ @:YL@:'@@ @:6L@:@@@ @:XL@:L@:@ @:L@:@ @:L@:@KH/H7KH/H>@@A@&of_seq@*@@ @:@@ @:L@:/@@ @:L@:@ @:L@:@
NHsH{
NHsH@@\@,seq_of_enum_@@@ @;L@:@$unitF@@ @;VL@:V$node@@ @;(N@;S@@ @;UL@:@ @:@ @:M@:@
;PHH
<PHH@@@&to_seq@.@@ @;L@;w@+@@ @;$3@@ @;@@ @;@ @;L@;x@ @;yL@;v@
[TI'I/
\TI'I5@@@)snoc_enum@N@@ @;L@;@&@@ @;L@;L@;@ @;@ @;M@;@
vVIZIf
wVIZIo@@@0rev_seq_of_enum_@:@@ @<5L@<!@f@@ @<}L@<"ct@@ @<ON@<z@@ @<|L@<#@ @<$@ @<%M@< @
[II
[II@@@*to_rev_seq@@@ @<L@<@@@ @<@@ @<@@ @<@ @<L@<@ @<L@<@
_JjJr
_JjJ|@@@+to_seq_from@@@ @=L@<@@@ @=L@<@@@ @=@@ @=@@ @=@ @=L@<@ @<L@<@ @<L@<@
aJJ
aJJ@@1@@@
 H


lLL@50@	EA@@A@@A@  , 5h:
 H

	@A0Stdlib__Set.MakeA@87@@  , 5T?
 I

@AA@<;@@  , 3PCAA}	@	@C H

D H

@p					}	4	2		wuYW42~PNB@+)
mkQO64
sqHFjhPN., ywGEmkIG#!vtLJ1/@	B	A@@AF@@I@@ABH@@|@@A	E@@BCg@@+j@@k@@AB^@@]@@AQ@@-\@@ABCD	>D@@w[@@AZ@@Xi@@A{h@@}S@@ABC_@@!d@@Ae@@y@@Al@@BCDEn@@m@@Ap@@o@@AB/r@@_q@@At@@s@@u@@ABCDb@@fc@@A	C@@%X@@AT@@a@@ABCEFJ@@}w@@AZM@@BDN@@U@@AP@@BCK@@L@@A{@@}@@ABz@@f@@wV@@ABCD9O@@> A@@A~@@B	!G@@^ @@@AR@@Y@@ABC
`@@% B@@A@@ C@@AB~x@@v@@tW@@ABCDEG@@ C@  , 3LaJJkKLAA<Stdlib__Set.Make.to_seq_fromA@@@  , 34_JjJ}_JjJAA;Stdlib__Set.Make.to_rev_seqA@@@  , 2%TI'I6TI'IXAA7Stdlib__Set.Make.to_seqA@$#@@  , 2+NHsHNHsHAA7Stdlib__Set.Make.of_seqA@*)@@  , 21KH/H?LHEHqAA8Stdlib__Set.Make.add_seqA@0/@@  , 27AFFIGH-AA8Stdlib__Set.Make.of_listA@65@@  , 2l=,CC?FFAA?Stdlib__Set.Make.of_sorted_listA@<;@@  , 2@CAoAABAA;Stdlib__Set.Make.try_concatA@BA@@  , 2I>>@$@@AA9Stdlib__Set.Make.try_joinA@HG@@  , 1 O6X6i6m6AA9Stdlib__Set.Make.elementsA@NM@@  , 08U
f..g..AA6Stdlib__Set.Make.equalA@TS@@  , 0([c.{.d..AA8Stdlib__Set.Make.compareA@ZY@@  , /a !%!8 !%![@A9Stdlib__Set.Make.is_emptyA@`_@@  , .g   
GAA7Stdlib__Set.Make.concatA@fe@@  , .m% {& AA6Stdlib__Set.Make.mergeA@lk@@  , -s+ , AA:Stdlib__Set.Make.singletonA@rq@@  , -y1 c2 AA4Stdlib__Set.Make.balA@xw@@  , -7 Y8 \
_
AA7Stdlib__Set.Make.createA@~}@@  , -= P> R@A7Stdlib__Set.Make.heightA@@@  , -C QD Q@@A	
3H P@@%param A@@A@@AB  , -S R@@A!h 
W@@ @@\ R] R@@@B@@A@B@@B  , -p*A'@!A  , -hj \
_
i3@A2A@@@  , -Dn \
_
o \
_
@@7A:
Kx YA@!l 
K@F} Y@@ A!v 
H@ Y Y@@ B!r 
F@ Y Y@@ C"hl @@ @.K@@ Z Z@@ D"hr "@@ @SK@@@ [
%
/ [
%
1@@ F@D@@AE@@4C@@AB(A@@1B@@AC@@E@  , -0 \
_
 \
_
@@|AEE@  , -   \
_
e@@AIE@  , - [
%
J [
%
K@@AM@@A@BC@@D@  , -
 [
%
Z [
%
[@@AW!h 
@@ @L@ [
%
T [
%
U@@ G@E@@A.@,@AB+*C@@E@  , ,# [
%
+@@Ak D@  , ,' Z
 Z
@@Ao%@8@A76B@@C@  , ,/ Z
  Z
!@@Ax!h 
@@ @'@ Z
 Z
@@= E8@D@@AM@BLKC@@D@  , ,D Z@@@AC@  , ,H  @AA@ED@@  , ,L  @@A
 c@!l 
@ c@@^ I!v 
@ c c@@e J!r 
@  c! c@@l K"hl @@ @K@@, d- d@@x L"hr @@ @(K@@8 e9 e@@ N@D@@AE@@4C@@AB(A@@1B@@AC@C@@8B@@AB@E@  , ,xM N @@AIE@  , ,dR !@@ AME@  , ,HV t 3W t H@@%ARE@  , ,,[ z\ z$@@*AZ"rl @@ @@g uIZh uI\@@ V"rv @@ @@q uI`r uIb@@ W"rr @@ @@{ uIf| uIh@@ X°C=@$H@@AF@@BG@@B@ACDA@H@  , , Ұ |Rk |R{@@@M@M@N@aC;#rll @@ @@ {%< {%?@@ Y#rlv @@ @@ {%C {%F@@ Z#rlr @@ @@ {%J {%M@@ [|v@7@$K@@ABCI@@J@@A<@<;BCD{@M@  , ,  |R |R@@@M@M@	N@		C:K@  , + |Rd@@A>K@  , + x }@@A{ZH@  , +# w w@@@L@XL@yM@nC*hJ@  , +1 w w@@A/mH@  , +6 vm| vm@u@@K@+A9wI@  , +@ vm vm@M@9ʐABH@  , +xI vmy+@@AFH@  , +PM r ~@@AKE@  , +4R
 r@@AOE@  , +V h`s h`@@A
TE@  , *[ n6O n6d@@A"ll >@@ @p@ i  i@@k P"lv <@@ @t@) i* i@@u Q"lr :@@ @x@3 i4 i@@ Rz@B@%H@@AF@@G@@ABCD@H@  , *C pD p@m@@M@HM@kN@^C<#lrl w@@ @@X oe|Y oe@@ S#lrv u@@ @@b oec oe@@ T#lrr s@@ @@l oem oe@@ U:07C5@%K@@AI@@J@@AB:@76BCD4@M@  , *Ű} p~ p@@@M@FM@N@TC:K@  , *Ӱ p@@YA>K@  , *װ l q@@^A|[H@  , *ܰ k k@@@L@L@M@kCiH@  , *p k@@pAmH@  , *d j j@-@@K@yAwI@  , *X j j@M@AH@  , *P j*@@AH@  , *( f+E r@@AE@  , *
 f+1@@AE@  , * e e@@A@@A@BC@D@  , ) e& e'@@Aˠ!h @@ @!@ e  e!@@% O @E@@A@@ABC@E@  , )- e@@A*D@  , )1 d d@@A/@@AB@C@  , )9 d d@@A!h @@ @@ d d@@G MB@D@@A@BC@D@  , )N d@@@KC@  , )R
 @AA@ON@@  , )V @@@v @!x v@ @@c f^@	A@@A@@A@  , )|h  ! @@A( {@"t1 @- {@@x "t2 @3 {4 {@@ !t J@=@; < @@ @C@@AB@@A@@AB@B@@A7C@@D@@AB@C@  , )lN O @@)A.!t J@uJ@E@X Y @@ @C@@A@@AB@C@  , )Tc d  @
}@@L@BAG@+@A)@B(@C@  , )Hp K@
@@L@sL@M@RAWB@  , )8Ű} X@@WA[B@  , ) ɰ \@@[@_B@  , )Ͱ  @@fA\ސ n@"t1 @s @@ "t2 @  @@ !tJ@@  @@ @C@@AB@@A@@AB@B@@AC@@5D@@AB@C@  , (  @@A.!tJ@QJ@!@  @@	 @C@@A@@AB@C@  , ( 
' 
3@
@@L@bAG@+@A)@B(@C@  , ( 
4@
@@L@OL@zM@vAW#B@  , (* 
@@A['B@  , (. @@@_+B@  , (2 !%!J !%!N@@A萰 !%!)@4@A@@A@@AB  , (A !%!V@@A>
A  , (FA@A
A	  , (tId..d..@
@@M@bM@xN@pB"s1y
@c.{.@@]"s2z
@c.{.c.{.@@d_@B@@AA@@B@
C@@
B@@AB@C@  , (do'd..@
@@M@aM@N@B%uB@  , (T|4d..!@@ @)yB@  , (88g..9g..@@@L@/B#
Df..7@"s1}
@<If..@@
"s2~
@Of..Pf..@@@B@@AA@@B@
B@@A@B@  , (($N@@M@
B@  , (_6m6sX@@W@M	Id6X6\]@!s	I@bi6X6j@@I@	A@@A@	zB@@A@A@  , 's@$@7r@uL@-M@-N@-wBw>>@!l
@>>@@!v~@>>>>@@!r|@>>>>@@ڰ@C@@AA@@B@@AB@B@@A&C@@B
D@@
_F@@A
E@@OG@@ABC@C@  , '@$@/@@A2C@  , '
@@
@@#@@A7C@  , '	??	?@@@@N@-UBA &C@  , '	??
@@@P@-fAJ	/C@  , '????@@@N@,ːBT9C@  , 't????@@@P@-ՐA^CD@  , 'P$??@@@b!GC@  , '<(AAAA@@AAoAs@"t1@AoA@@8"t2@AoAAoA@@?!tL@.@AAAA@@GB@C@@AB@@A@@AB@
B@@A
C@@D@@AB@C@  , ',VAAAA@@A.!tL@/	L@.@AAAA@@d_@C@@A@@AB@C@  , 'k#AA$AA@=@@N@/,AGn@+@A)@B(@C@  , 'x0AA5@Y@@N@/
N@/4O@/0<AW~B@  , &=AAB@@AA[B@  , &AAAF@@E@_B@  , &E?FFP@L@3L@3@M@3M@7'M@3\BSY,CCd@!l(@i^,CC@@#sub)@
@@ @2M@0@
r@@ @3M@0@@ @0M@0@@ @3M@0ǠM@0@ @0@ @0@ @0N@0@-CC-CD@@Ͱ@2A@@.B@@AB@fB@@A@B@  , &۰?FF?FF@1@@N@3N@7#O@7AJC@  , &?FF@@ANB@  , &-CC@@@Q@@A@A@  , &:EE:EF
@<7@ @0M@1.M@3M@2M@2	#Stdlib__Set.Make.of_sorted_list.subBo!n*_@-CD-CD@@!l+^M@0@-CD-CD@@!n6qM@2M@0@6EE6EE@@&!l7o@6EE6EE@@-"nl8
@@ @2O@2@7EE7EE@@:$left9wM@2@8EE8EE@@B!l:yM@2@8EE8EE@@JE@'*match*F@@AG.CCA@@H@@AB=DOB@@0E@@AC@B@@A@@@@AH@  , &xcp@`A^^H@  , &pe=FTF`=FTFx@AeA@cb@@  , &hj"=FTFu@M@3lCo#mid;M@2@0;FF1;FF@@|!l<@@ @2@;;FF<;FF@@%right=M@2@C<F#F3D<F#F8@@!l>P@2@K<F#F:L<F#F;@@@MKP@AL%IQ@BK@1J@@AM@J@!M@@ABCDKIN@  , &PE@A:M@  , &<d<F#F>e<F#FP@+$@ @2P@2BEm@Bcc`BC^\J@  , &u<F#F/X@@AMJ@  , & y9EE\@@AyH@  , %Ű}8EE~8EE@@ @2O@2̐B˰@@A{xBvtE@  , %հ8EEp@@AE@  , %ٰ7EEt@@Aְ@@@ABD@  , %4E	E5EEE@AA@@@  , %4E	E5EEE@AA@@@  , %4E	E 4E	E=@AA@@@  , %t5EEE\5EEEy@AA@@@  , %T@A"x02>@3DD3DD@@"x13E@3DD3DD@@"x24L@3DD3DE @@
!l5V@@ @1@3DE3DE@@@DC@@AE@B@.H@@A(G@@#F@@ABCH@  , $+2DD2DD@A+A@)(@@  , $02DD2DD@A0A@.-@@  , $52DD2DD@A5A@32@@  , $:@7A3"x0/@1DzD1DzD@@D"x10@1DzD 1DzD@@K!l1̠@@ @0@
1DzD1DzD@@VQ@C@@AD@@A#F@@E@@ABCF@  , $dd0D<DT0D<Dy@AdA@ba@@  , $\i!0D<DY"0D<Dv@AiA@gf@@  , $@n
@kAf"x0-@+0D<DI,0D<DK@@w!l.@@ @0@60D<DO70D<DP@@}@C2@A-@D@@AB,*D@  , $C/D!D3D/D!D;@AA@@@  , $@A!l,~M@0@M/D!D.N/D!D/@@@CH@D@ABA?C@  , #X.D	D;@@@@OBGEB@  , #^CFF_CFF@@oA_	dAFFu@!l	@ziAFF@@@	A@@A@B@@AC@@E@@AB	F@@D@@AC@A@  , #ð{DFF|DFF@@A"x0	L@75@DFFDFF@@˰@B@@A@C@@AB @C@  , #ٰEFGEFG&@@@N@7N@7O@7A>"x0 @EFGEFG@@"x1'@EFG
EFG@@@D(@AE@F(@E@@ABCI@F@  , #EFG)@@AF@  , #tFG'GFFG'G]@@@N@7N@8O@7אBl"x0N@FG'G0FG'G2@@"x1U@FG'G4FG'G6@@#"x2\@FG'G8FG'G:@@*%@F8@Az@I^@AH7@G@@ABC@I@  , #h:FG'GNFG'G\@@@O@7O@8P@8A4AI@  , #\H FG'G?B@@A8E I@  , #@LGG^GGG^G@.@@N@8(N@8jO@8<B"x0@GG^GgGG^Gi@@c"x1@GG^GkGG^Gm@@j"x2@%GG^Go&GG^Gq@@q "x3@,GG^Gs-GG^Gu@@xs@.HR@A@%L@AB K@JP@I@@ABC@L@  , #4CGG^GDGG^G@m@@O@8=O@8hP@8Q\B?L@  , #(QGG^GRGG^G@{@@P@8RP@8fQ@8`jAM-L@  , #_GG^Gz[@@oAQ1L@  , "cHGGdHGG@@@N@8~N@8O@8|B"x0@wHGGxHGG@@Ġ"x1@~HGGHGG@@Š"x2@HGGHGG@@Ơ"x3
@HGGHGG@@Ǡ"x4@HGGHGG@@ڰ@Jj@A0@,N@AB'M@$L@AKi@O@@ABC<@O@  , "HGGHGG@@@O@8O@8P@8ƐBJ"O@  , "HGGHGG@@@P@8P@8Q@8ԐBX
0O@  , "HGGHGG@@@Q@8Q@8R@8Af>O@  , "HGGt@@AjBO@  , "#IGH@
@@L@8@@N@8N@9N@8B-S@`@AB7@ BC@J@  , "x9IGH 	@@	A6	J@  , !=BFF	@@	@:A@  , !ALHEHYLHEHm@A>Stdlib__Set.Make.add_seq.(fun)A@@?@@  , !GLHEHK	@@	@
2KH/H3	@!i2@	!
KH/H@@@Uʠ!m"@KH/HAKH/HB@@\W@B@@AA@@B@B@@A@B@  , !eLHEHeLHEHl@@$@!!s7L@:%@'LHEH^(LHEH_@@s̠!xJL@:A@0LHEH`1LHEHa@@|w@B@@AA@@B@B@@A@B@  , !|=NHsH	Z@@	Y@
?EBNHsHw	_@!iE@	dGNHsH@@@	A@@A@~C@@ZB@@AB@A@  , !pSTI'IG	v@@@M@;M@;N@;	}B
`aTI'I+	@!c@	fTI'I7@@@	A@@A@4B@@AZC@@B@A@  , !`rTI'I:	@@	@A@  , !Tv_JjJ	@2@@M@<M@<N@<	B

_JjJn	@!c
@	_JjJ~@@ϰ@	A@@A@C@@2B@@AB@A@  , !Dݰ_JjJ	@@	@A@  , !8kKK	@U@@M@=M@=N@=	ϐC

吰aJJ	@#low
@	aJJ@@!s
@aJJaJJ@@ #aux@@@ @=9M@<@@@ @=~M@<@@@ @=M@<M@<@ @<@ @<@ @<N@<@bJJbJJ@@ @$C@@A2B@@.A@@AB@1B@@AC@@B@C@  , !$-kKK
@@
AC*C@  , !1bJJ
@@
@F.@@A@B@B@  ,  8cJJcJJ@@	 Stdlib__Set.Make.to_seq_from.auxAS#low;@bJJbJJ@@F!s;M@<@bJJbJJ@@O!c=M@<@bJJbJJ@@WR@A@@AC@@B@@AB@gB@@A@b@@@AC@  ,  dfKMKbfKMKp@A,A@ba@@  ,  i@.A0!lI@@ @=@*dJK+dJK@@v!vG@@ @=@4dJK5dJK@@!rE@@ @=@>dJK?dJK@@@3@#F@@AB4@!nG@@AD@@B9@"E@@ACD:8G@  ,  RhKKShKK@AbA@@@  ,  WhKK@@fA8G@  ,  [gKqK\gKqK@@kA>J@@ @=E@cgKqKdgKqK@@%G@  ,  igKqKjgKqK@@yA*G@  ,  |neKK6oeKKG@\@@ @=8BU4e@-@Ae,BCdbF@  ,  lİ|eKK*}iKK@@A^	F@  ,  DɰbJJ@@@tC@  ,  ,Ͱ\JJ\JJ@@	!Stdlib__Set.Make.rev_seq_of_enum_A!c
@[II[II@@԰@B@@A
IA@@B@8B@@A@@@@AB@  ,  $]JJ7]JJh@AA@@@  ,  ]JJD]JJg@@@N@<w A#!x@@ @<:@]JJ(]JJ)@@ߠ!t@@ @<;@]JJ+]JJ,@@$rest@@ @<<@]JJ.]JJ2@@
97@C@@AD@@&E@@ABC;9E@  ,  ]JJU2@TQ@<oQB1E@  ,  $?@TA3E@  , &[IIA@@X@W#OB@  , *XIIXII@@:Stdlib__Set.Make.snoc_enumA!s@VIZIpVIZIq@@7ؠ!e~L@;@VIZIrVIZIs@@?:@A@@B@@AB@@@@@AB@  , H YIIYII@AA@FE@@  , MYII@@"A$!l/@@ @;@YIIYII@@\ڠ!v-@@ @;@YIIYII@@f۠!r+@@ @;@$YII%YII@@pk@2@#E@@ABC@@4@D@@ABC@5E@  , |{3WIvI|3@@P@Ox>B@  , d7QHH8QHH@@=Stdlib__Set.Make.seq_of_enum_A<!c
"@?PHH@PHH@@@B@@A
A@@B@B@@A@
7@@@AB@  , \ORHHPRHI%@AA@@@  , PTRHIURHI$@@
6
,@N@;P A#!x=@@ @;@dRHHeRHH@@Ҡ!tB@@ @;@nRHHoRHH@@Ӡ$restG@@ @;@xRHHyRHH@@97@C@@AD@@&E@@ABC;9E@  , HΰRHI2@
lQ@;HQB1E@  , <?@TA3E@  , ذPHHA@@X@WOB@  , ܰB8BIB8BN@@;Stdlib__Set.Make.filter_mapA!f.@BB+BB,@@@B@@A!t!A@@B@\C@@B@@AB@F@@@ABB  , )CC)CC@@A#!l@@ @/O@/@BOB\BOB]@@!v@@ @/O@/@BOB_BOB`@@!r @@ @/O@/@BOBbBOBc@@':@@ @/@BOBWBOBi@@/"l'"_L@/@!BB!BB@@7"v'#{L@/@"BB"BB@@?"r'$oL@/@#BB#BB@@GB@`@AIE@@F@@AB4C@@H@@Ag@BED@@G@@ACDgcH@  , X'CoC'CoC@@|A`"v'%@%C!C3%C!C5@@c^@I@ACDzvI@  , k#&C9Cm$&C9Cn@@AiI@  , p(&C9CG@@AmI@  , tt,$CC
-*CC@@A{r0HA  , p{3#BB4#BC @ABz83@@A0/BCG  , d>#BB@@A	GA  , `D"BBE"BB@AAID@@A@ABCF  , XO"BB#@@A	FA  , TU!BBV!BB@AB@@Z@ABWCE  , H`!BB4@@A	E  ,  8AA@
aB  , i@_@pj@_@u@@4Stdlib__Set.Make.mapA
g!fF@q
@B@Rr
@B@S@@@B@@A!tA@@B@B@@A@\@@@ABB  , ̰ANA\ANAm@@A!!l@@ @-O@-@@v@@v@@@!v@@ @-O@-@@v@@v@@@!r@@ @-O@-@@v@@v@@@8@@ @-@@v@~@v@@@"l'{L@.
@@@@@@@
"v'L@.@@@@@@@"r'L@.@A A
A A@@@^@AIE@@F@@AB4C@@H@@Ae@BED@@G@@ACDecH@  , +AALAAM@@zA_)H@  , 0AA&d@@~Ac-HA  , 6A AA A@ABj5 @}@ABCzxG  , AA A	u@@As>	GA  , G@@ @@@AAzF1,@@)@ABCF  , R
@@@@AO	FA  , X@@@@@ABW@@B@AB?CE  , c@@@@A`	E  , XhAA@dB  , @l$>>(%>>,@@9Stdlib__Set.Make.find_optA !xK@,=>
-=>@@xs@A@@
B@@AB@B@@A@`@@@ABB  , ,>>>?>>@@A!lj@@ @,@K>->:L>->;@@!vh@@ @,@U>->=V>->>@@!rf@@ @,@_>->@`>->A@@!cR@@ @,5N@,%@k >F>Tl >F>U@@@F@@A0E@@D@ABC@@+D@@AE@BCDBF@  ,  İ|>>}>>@@XA>F@  , ɰ>>>>@@]ACF@  , ΰ>k>>k>@AbA@@@  , @dAJF@  , հ>k>u@@hAN FA  , ۰ >F>X >F>g@AoBUڰ@'@Ai@B%$CecE  ,  >F>P@@yA^	Ef  , w!AA}@tBj  , =e=o=e=s@@>Stdlib__Set.Make.find_last_optA!f@=-=G=-=H@@z@B@@A
k A@@B@>B@@A@@@@ABB  , 	====@@A!l@@ @+@=t==t=@@{!v@@ @+@=t==t=@@#|!r@@ @+@=t==t=@@-}(@2@#E@@AB3@C@@D@@ABC53E@  , p8====@@IA/6E@  , h=====@@L@+L@+SA:AE@  , `H ==?@@XA>EEE  , 8MVCAA\@ISBI  , $Q	<<
<<@A	"Stdlib__Set.Make.find_last_opt_auxA@PO@@  , W@A"v0@<T<r<T<t@@`t!fL@*@<T<u<T<v@@iud@
B@@A
A@@C@@AB@@@@@ACB  ,  w/==0==+@@&A&!lZ@@ @+@;<<<<<@@v!vX@@ @+@E<<F<<@@w!rV@@ @+@O<<P<<@@x@2@#F@@AB3@D@@AE@@5@ABC@4F@  , _<<`<<@@VA0F@  , d<<e<<@\A7F@  , k<<<@@aA;FB  , \@AAe@fPCF  , t;;u;;@#exnG@@N@*zN@*~:Stdlib__Set.Make.find_lastAw!f'@;;;;@@oͰ@B@@ABA@@B@gB@@A@<@@@AB@  , "@ABB  , <9<E<9<R@@A!l@@ @*a@;;;;@@p!v@@ @*e@;;;;@@q!r@@ @*i@;;;;@@r@4@#E@@AB5@C@@D@@ABC75E@  , h<
<<
<)@@LA/E@  , `;<;<@pL@*L@*VA:E@  , X!;;?@@[A>EE  , 0&XCAA_@"UBI  , *; ;
; ;@@>Stdlib__Set.Make.find_last_auxA۠"v0@::::@@7i!fL@)@::::@@@j;@
B@@AA@@C@@AB@@@@@ACB  ,  N;k;w;k;@@$A&!l1@@ @)@;
;;
;@@^k!v/@@ @)@;
;;
;@@hl!r-@@ @)@&;
; ';
;!@@rmm@2@#F@@AB3@D@@AE@@5@ABC@4F@  , ~6;<;H7;<;[@@TA0|F@  , ;;&;3<;&;6@ZA7F@  , B;&;0<@@_A;FB  , \@AAc@;PCF  , K:3:=L:3:A@@?Stdlib__Set.Make.find_first_optAB!fL@S9:T9:@@d@B@@AA@@B@B@@A@a@@@ABB  , e::f::@@A!l@@ @)Q@q:B:Or:B:P@@e!v@@ @)U@{:B:R|:B:S@@f!r@@ @)Y@:B:U:B:V@@g̰@2@#E@@AB3@C@@D@@ABC53E@  , lܰ:q:}:q:@@IA/E@  , d:[:h:[:k@L@)nL@)jSA:E@  , \:[:e?@@XA>EE  , 4VCAA\@SBI  ,  9^9h9^9o@A	#Stdlib__Set.Make.find_first_opt_auxA@@@  , @A"v0@99=99?@@ ^!fL@(@99@99A@@ 
_ @
B@@A}A@@C@@AB@@@@@ACB  ,  9999@@&A&!l@@ @(@9p9}9p9~@@ +`!v@@ @(@9p99p9@@ 5a!r@@ @(@9p99p9@@ ?b :@2@#F@@AB3@D@@AE@@5@ABC@4F@  ,  K9999@@VA0 IF@  ,  P99	99@'\A7 PF@  ,  W99<@@aA; TFB  ,  \\@AAe@ XPCF  ,  `8888@@@N@(IN@(M;Stdlib__Set.Make.find_firstA!fw@'8T8k(8T8l@@ sY n@B@@AA@@B@B@@A@@@@AB@  ,  @A zBB  , | ;99<99@@A!lf@@ @(0@G88H88@@ Z!vd@@ @(4@Q88R88@@ [!rb@@ @(8@[88\88@@ \ @4@#E@@AB5@C@@D@@ABC75E@  , d j88k88@@LA/ E@  , \ o88p88@L@(WL@(SVA: E@  , T °z88?@@[A> EE  , , ǰXCAA_@p UBI  ,  ˰7777@@?Stdlib__Set.Make.find_first_auxAx"v0	@7777@@ S!f	L@'@7777@@ T ܰ@
B@@AQA@@C@@AB@@'@@@ACB  ,  818=818R@@$A&!l@@ @'@7777@@ U!v@@ @'@7777@@!	V!r@@ @'@7777@@!W!@2@#F@@AB3@D@@AE@@5@ABC@4F@  , !88
88!@@TA0!F@  , !$7777@MZA7!$F@  , !+77<@@_A;!(FB  , !0\@AAc@!,PCF  , !46667 @x@@N@' N@'$5Stdlib__Set.Make.findA!x@6666@@!GM!B@A@@
B@@AB@VB@@A@@@@AB@  , !S@A!NBB  , |!W 7Y7 7Y7@@A!l;@@ @'@ 77 77@@!hN!v9@@ @'@ &77 '77@@!rO!r7@@ @'@ 077 177@@!|P!c #@@ @'8N@'(@ <77( =77)@@!Q!@F@@A0E@@F@ABC@@+D@@AG@BCFDF@  , p! M7Y7~ N7Y7@@[A>!F@  , `! R7Y7h S7Y7@@`AC!F@  , T! W7?7W X7?7X@@eAH!F@  , H! \7?7I
@@iAL!FA  , D! b77, c77;@ApBS!@%@Ai@B#"CecE  , 4! m77$@@zA\!	Ed  , !wAA~@a!tBh  , ! v56 w56@@=Stdlib__Set.Make.elements_auxAe$accu@ ~55 55@@!D!Ű@B@@A:A@@B@@@@@ABB  , !ְ 66: 66T@AA@!!@@  , !۰ 66@ 66S@B!!l@@ @&n@ 66! 66"@@!E!v@@ @&r@ 66$ 66%@@!F!r@@ @&v@ 66' 66(@@"G!@7@#E@@AB8@C@@D@@ABC@:F@  , " 66- 66V@@NA/"
E=  , "LAAR@"IBA  , " 55 55@@9Stdlib__Set.Make.cardinalA"@A@@A@@@@@AAB  , x"$ 55 55@A̠!l@@ @%@ 55 55@@"5A!r@@ @%@ 55 55@@"?B":@C@@A'@B@@AB@'D@  , l"G 55! 55@L@&:L@&&5A&"JC@  , d"Q-	@@9A)"MC2  , D"U!
5o5@A>@"R=A7  , 4"Z!4"43!4"4A@@:Stdlib__Set.Make.partitionA!ph@!34!34@@"f7"a@B@@AA@@B@yC@@:B@@AB@@@@ABB  , ,"v!.5B5Q!/5B5m@AA@"t"s@@  , $"{!35B5R!45B5^@kL@%#B+!lf@@ @%
@!G4B4O!H4B4P@@"8!vd@@ @%@!Q4B4R!R4B4S@@"9!rb@@ @%@![4B4U!\4B4V@@":"ltL@%+@!c44!d44@@";"lfL@%,@!k44!l44@@"<"pvL@%?@!s44!t44@@"="rtL@%H@!{44!|44@@">"rfL@%I@!44!44@@"?"ʰ@JF@@APE@@-G@@A6H@@u@ABCt@*I@@AEC@@K@@A'L@@UD@@ABCD|xM@  , "!5B5`!5B5l@N@%Co"!L@  , "|@Aq"#L@  , "!55%!55A@AA@""@@  , "!55&!552@L@%vC~"0M@  , #!554!55@@L@%B#8L@  , #	@A#:L@  , #!55@@A#>L@  , #!44!45@VO@ @%LN@%XB#@H@AFEC@>@9@ABDI@  , #"!44@@A#
IA  , #(!44!44@AΐA#'@NBDH  , #2!44@@A#/H@  , x#6!44!44@@ @%/N@%;B#<@m@A@BCE@  , l#G!44@@A#DEנ  , D#LAA@#HB۠  , ,#P"22"	22@@7Stdlib__Set.Make.filterA!p@"22"22@@#\.#W@B@@A!tA@@B@pC@@1B@@AB@@@@ABB  , #m"%33"&33@@A#!lV@@ @$/O@$#@"722"822@@#/!vV@@ @$1O@$'@"C22"D22@@#0!rV@@ @$3O@$+@"O22"P22@@#1:8@@ @$9@"W22"X22@@#2"l'L@$G@"_3:3H"`3:3J@@#3"pvL@$T@"g3[3i"h3[3k@@#4"r'L@$\@"o3u3"p3u3@@#5#@IE@@AF@@c@G@@ABC6C@@H@@Ah@GD@@ABDgcH@  ,  #̰"33"33@@|A_#H@  , #Ѱ"33"33@@Ad#H@  , #ְ"33
@@Ah#H@  , #ڰ"33m@@Al#!HA  , #"3u3"3u3@ABs#߰)"@BDG  , #"3u3}@@A{#GA  , #"3[3n"3[3q@AA#97@@AB4CF  , #"3[3e@@A#	FA  , $"3:3M"3:3W@AB$ @J@A@BE#CE  , $"3:3D@@A$		E  , p$AA@$
B  , X$"2U2f"2U2k@@7Stdlib__Set.Make.existsA!pw@"252H"252I@@$!)$@B@@AA@@B@@@@@ABB  , 4$-"2l2"2l2@sB!l@@ @#@"2l2y"2l2z@@$?*!v@@ @#@"2l2|"2l2}@@$I+!r@@ @#@#2l2#2l2@@$S,$N@#E@@A4@B3@C@@D@@ABC@5E@  , $^#2l2#2l2@JA1$^E@  , $e#2l2@@OA5$bE>  , $jMAAS@	$fJBB  , $n#&11#'11@@8Stdlib__Set.Make.for_allA!p@#.11#/11@@$z$$u@B@@AA@@B@@
@@@ABB  , $#>12#?12$@B!lk@@ @"@#L12#M12@@$%!vi@@ @"@#V12	#W12
@@$&!rg@@ @"@#`12#a12
@@$'$@#E@@A4@B3@C@@D@@ABC@5E@  , $#o12#p12@6JA1$E@  , $#v123@@OA5$E>  , h$ðMAAS@a$JBB  , P$ǰ#~1s1#~1s1@@5Stdlib__Set.Make.foldAj!f@#|1D1U#|1D1V@@$!srL@"[@#|1D1W#|1D1X@@$$accuL@"b@#|1D1Y#|1D1]@@$$@A@@AC@@B@@AB@@@@@AC@  , <$#11#11@+B.!l@@ @"x@#11#11@@% !v@@ @"|@#11#11@@%
!!r@@ @"@#11#11@@%"%20@#F@@ABD@@2@E@@ABC@3F@  , 0%"#11#11@\C1%"F@  ,  %)#118@@aA5%&F@  , %-#}1`1f<@@e@d%*IC@  , %1#y01#y01@@5Stdlib__Set.Make.iterAѠ!f@#x00#x00@@%=%8@B@@AA@@B@@)@@@ABB  , %I$z115$z118@!A!l.@@ @!@$z11$z11 @@%[!v,@@ @!@$z11"$z11#@@%e!r*@@ @!@$#z11%$$z11&@@%o%j@2@#E@@AB3@C@@D@@ABC@5E@  , %z$2z11+$3z113@CJB1%zE@  , %$9z11B@@OA5%~E>  , %MAAS@"%JBB  , t%$Bl/D/N$Cl/D/R@@7Stdlib__Set.Make.subsetA*"s1@$Ki./$Li./@@%
"s2L@@$Ti./$Ui./@@%%@B@@AA@@B@B@@A@@@@AB@  , h%$cn/g/q$dn/g/v@@!A %B@  , D%$hv00$iv00@L@!uL@!'L@!hL@ .B6"l1@@ @ @$o/w/$o/w/@@%"v1@@ @ @$o/w/$o/w/@@%"r1@@ @ @$o/w/$o/w/@@%"l2@@ @ (O@ @$o/w/$o/w/@@%"v2@@ @ *O@  @$o/w/$o/w/@@%"r2@@ @ ,O@ $@$o/w/$o/w/@@&"t2@@ @ 2@$o/w/$o/w/@@&!c$@@ @ YN@ I@$p//$p//@@&&@J@@A_I@@BBF@@OG@@A.D@@@ABC@&C@@A_H@@AE@@ABDJ@  , <&1$v00$v00@AA@&/&.@@  , &6$v00@@A|&3J@  , &:$t0@0L$t0@0w@L@!L@ L@!L@ B&B+J@  , &I%t0@0Y%t0@0s@AA@&G&F@@  , &N%t0@0@@A&K4J@  , &R%
s0#02@@A&O8J@  , &V%r/0%r/0@I͐B&V?J@  , &]%r/0"@@A&ZCJ@  , &a%q//,@@A&^GJA  , |&g%p//% p//@AݐB&f@N@AMKBIHCGDI
  , l&s%+p//>@@A&p
I@  , &w%/j//B@@@&tB@  , &{%3Z-y-%4Z-y-@@<Stdlib__Set.Make.compare_auxA"e1o@%<X-=-U%=X-=-W@@& "e2pL@K@%EX-=-X%FX-=-Z@@& &@B@@AA@@B@ B@@AC@@B@@@@AB@  , &%V[--%W[--@@#A"&B@  , &%[\--%\\--@@(A'&B@  , &%`a.;.V%aa.;.g@O@0B7"v1qM@@ @v@%t]--%u]--@@& "r1rR@@ @w@%~]--%]--@@& "e1sW@@ @x@%]--%]--@@&"v2tk@@ @}@%]--%]--@@&"r2up@@ @~@%]--%]--@@&"e2vu@@ @@%]--%]--@@&!cw%@@ @N@@%^--%^--@@&&@I@@A;Fr@BCs@JG@@AC-D@@XH@@A;E@@BDyuJ@  , '%a.;.h%a.;.y@fBg'I@  , '%a.;.J@@Ak'I@  , '%`.*.9%`.*.:@@Ap'!I@  , '!%_.. @@At'%IA  , ''%^-.%^-.@AB{'&@+@A)'B%$CH  , '2%^--!@@A'/	H@  , 8'6%Y-]-e%@@@'3B@  ,  ':%U,-%U,-@@:Stdlib__Set.Make.cons_enumA֠!si@%S,,%S,,@@'G !ejL@@&S,,&S,,@@'O 'J@A@@B@@AB@@@@@AB@  , 'X&V--,&V--;@AA@'V'U@@  ,  ']&V-- @@"A$!lk!?@@ @@& V--&!V--@@'l !vl!=@@ @@&*V--&+V--@@'v !rm!;@@ @@&4V--&5V--@@' '{@2@#E@@ABC@@4@D@@ABC@5E@  , '&CT,,3@@P@O'>B@  , '&GH+m+&HH+m+@@5Stdlib__Set.Make.diffA)"s1ZS@&PF+:+K&QF+:+M@@' "s2[SK@W@&YF+:+N&ZF+:+P@@' '@B@@AA@@B@C@@A xB@@D@@AB@t@@@AB@  , '&lI++&mI++@@%A%"t1\vK@h@&tI++&uI++@@' '@C@@ABC@  , 'ư&~M,,&M,,*@y8B>"l1]!@@ @@&J++&J++@@' "v1^!@@ @@&J++&J++@@' "r1_!@@ @@&J++&J++@@' "t2`WK@K@K@o@&J++&J++@@' "l2a!@@ @@&L++&L++@@( "r2b!@@ @@&L+,&L+,@@( (
@H     \nF`2I],)bvwau'3"RbY>־؞KIɤl)^l$%Թ~R,K/Rus$(˽Y(E:n)U,_+IDdy*He(LBX"3E~iNěb
ֿ(Djan7[/gqMi+Z$Ns6BVŝUFY{C8e^(o<TK|;ßttBL#{	v]'=
׶k/^=̟"UY[y@/txЛYꮗ/D0Wԏmr^0ePP8^d֏2͐UF;:u"j/h{/	0XE	[iiql"#~i}zۛTdnls^*U*i/T.,Xyko)e+AXy7S8t* |<4;ZЉ2hkBW2\4`e%I	h6L{E!ħ
`b;i0$
	^j	{<&9=l[&R8ʃ/w+w"<R>#.vaOܛjk9!Q7p۬S&Ch@͍W9<б^jOHHߨ\fyMltH8]aH'R"tkW/NTEo2p'Ψſ:W0E*SmA"_W 2ҷSW^^@PiIgR2@vTks>_:`\I!1M2 cO9˴-UޭVBȼ0هcniOZ= QQSgxRe@7k<GPW9x{Q%Q<, M fDq;xQEmjt"A\ ޭDI!uUz)x@{E"?h(+ں*8 -Y7Qlι-0Q8L<{tzc`Phs
*-uD{DҘ4а;@HIw/:C 8la'8OrNK*^ 0صtBxy 
C߈T:.q1Dx6<0{
*@gp#q|F}-) ;<62ehp^zyQ&ApI0~#.qcCu#|U;BH>D*gx &O[AJ&G<6p&vфcG1 c<.VVw0!'0:TL\ pQbz/K(sTt{,&~ǜ7ikbLp4(û72YSrl۶cNl+osK)D<lk&\)A̳2KQt^
aD&0tqNaH2
k)a#6  _s0o =A=/OzC/=nxx^d^Yd];Ǭ<PG:s8!ͳCʳ?ayPmڮ55
bSG?hŷ_> FhƆm,l@uu&:UEY"Y	H?A{--c}NhAU
H@ݳ2
&v-e%X%_J4!$00"lQ#8iY樟X[X .LwFNs{TK+)׬GUqC@|H.0)p
$@ `q
KrC pY}/"CTA3Bn=/1'eU0IYNsNCo7z҈_B# -w޼N{NR;TbByTcCl(,Zږm{|*c2A:~rV*q)1_Y!a[e nB-J %Оx.?<؏>gWe߾~>}_|w>$!(H>GmBb3
m> (ȳQN
YM.S f+1im?9qjv|&tTЫK=0Q@g{_	|M]n|+mO}G<ѭ2Pra[EG{OmCn>A pbn|OāY ]P0+i$	HޯZ\!qgP8IpǸWOrڢJڑJA+'g.мsju+7
Գ`\QcƙM
ϵX?-Z?x^9=gBGE9ҨJ>S5]Yu۝ۗyxM@@%\!TxIJ<Ц%P\R:7VՎ.=fJw̄R0*uklmO{	f+pu 1sNnGMfuA?\>9`c)3e}{\K7z,>F 2<ٞ~0r9g*G06hD^Pfރ_~qTrH7 #)& a-L׀LXs^_)
(L6Kg Nd*C^:P K,Jq,JJ;\@>@3':a?r/z
4s ^sLax
 LpvvlK Ou~,gq]V̳_t]l4'WS䜟GU8*g6. "=G,aT:X\Cgzr(MuO?AݽӞ@`Jx[+G%|rE&E@$'q2#(DF1!(\B.ǯ+lԽƯ@"iO-7uaj\$|9Hʶ[Iن\lkRn40^oMwo*	K?rRs"_{_&uh^	R
!1_C  1,h1Ы^WQuf.=9'߉
KʃɠHڅpSV#?'q9MqYMсM>ی*_t(mٶMdwCu"X5ޜq34_x6#T%ػ_ZEY(_4j7[7y{خJYͷA |͋؅zPNՆ7~[}ͻigaVLr ԦѾhe7/rv	<~yΟhvq愡Uv?ΩĶ'vbd8ͳ93dEj1D3XoiS{];$y5Dʨ9
]*@Kb3N7Iu#fftֿ>=#4#{К'.N烄;k5HK#4FXm5ϗh
g{YM!b[J'Swisl'px<(k`.
iȹAw3|wӤ@I~ScJZhT_$YY+}0uـ#yZPߏþ[ŨS5O
ؚ`
xt~vnS4]DTB%݀Kf|o%+/+jInD8jkd^^+b
,U}.(ޚ⧵3Ϸ6 OJ?RӀUNM[kN]?yY @	ӷ1Q~Z2Ӡ<
M҆	Pz= &%tAOTMQB߬PHդ+^yrZ]_]Hٯ
Axµnԭp߂M׿+oؑx'g!Q;Nuտ_c\M/>NB,Ap_wyxt3ϫBdٶ4%25:w:/ZkHIg8?BDX=6WtT^ť$ch:/@ؕYhW[,EL&H}IW+^S{G5S%A]Ue v';AD4*]#1T7"U'k>!˰ƣ $q"C.E	J<$ߘ{v#	@h֍[E|=ߏPAvd)h<p+:vAǻγ6hCq YЛF_3A:8bp>g|(IE%mI~٢[{
&x#vKno`ƕM|^qT
6@$k`=dD%80GG]FÆh"R_X]@~5{ENꕹejBR]/ZcӋz&Մ "t4UwHӛ}Ok+te4{1C 4tčlۊב	6]`ÑGrqol\zJ`'tƶ2ȃXv0i˝Cp[c.
L?rJ=08weQ'tX_ Bӛv zQqp7EToqG sRCq6]aCiiu.WE2OgLs8=z\W$59?9a{u_g-( dH` BȍR_;aSUA_1(SC)d؃D<q#؜qaU/(t-mU~qݐg{z+3$v\P-GCYC~KFkؒ]_}OUC>b,u峳N;4su_,4dp;EVg%rGY!q~e
.ZckC+iAmJg$|tQ>KQ
%	V'
n]jn
$ܥ
jJA96Ŕt	R!5D&0w@pP1I*W,kcDd1lG9lfwIY|h fĚw6Fi6IޓICafҠGJz+IJEBp']޻vq$.&,\zr\&hv%
/?8^=(}.O[r Icߐ%VZ!CӂǗ$M#(	AN,p`աLQI?J9UfVR7D]KI|JrGxՒ&9yTwTʦ+~¯"FRY>5QG/"2BaZ62b'}qWyy/=Գ!L+H1
o< u32aM]c
?:!P7 
yr#TUA8Q}2qƓAoMJ׀JC܆7_-lh\YSAH,O9[OVJH9͂_&g Y_%r.PdPN)^x|r\F/}T1z/^1m{Fɰf8U4ǴKE@cВRc+nȲz
7Q%%L$Qw񱝞d 	H@)?oH299,[>A	||vh| +js5EP ?N$0r"ð
PbFF/"lco1̏nVw]"Z@C6/̲w~lFW199SzK)9ifuIOQuHrKKG$/c}<:xvH.E܃o,]PDZ+b:YX*IA+z`QE2tAzG7ls#z&FLq =-Ȃ"SEL~=&9<Oe]>dH2i..~D0J`N/sLɥ*$"Lo3>WG&|Q逘{- ΋&7wx
Q2|7֒DŸܝBHdxy8N/%TUmL"Rd;EBh yq0I{XO{`'X|E,8Tt&m}~'I4:q*53xF1~:nD= غtMO>ѿ)<V򔐉Ĺ=O\x9avKƛۼ_w<1|g(d8׍3[͆y^)Lv<ʋ-~|[%K[_Y;:CZT0ϽAӭ}F|HR_G)LryN܃I~#X"چ#vCHC@MXG&nCPs޵t>a^l"3
4g1^EѸx0FN#"uF 7 ֕s,	{|rqsK(+vPg8eeZ7k `3g@_ߐW6\$E4Fئ[[x>ashjgq\Ӳ0q;tyQnX3$e|uKrWbߪV݋H忶zL)
ya";wFē(q z`YhJdl/ϮRP?mҧhA=58]@+{WX0ŢR'%ýV=-i}1G3Mz"FHH!>|L`)|SthkbgՋ^ixrD'jN#@X
+=haÎg
u%`ivVQx#3NP1z;Y.6=Z6UM<2WWkVӄNo]79&:( #pK\$L~xz]oÇ@nS"y^p2GOՔjcS0IZ/
Okd'X݄Lǃ_"'Xy[p:/ uI	.{qR	ÛȁWjn^	Hb<:)@$ki@
C#><@_E 3eN*)mx/bx:!{YwTℝPE;Kn >fDL#UE5;bbpe[4bJabWY=~ǍGJl
eAe	go99v丿diL=Ema(I6^,M*NXHÍHŇG!'eaqc
PHV$E^~wKD#g8ԣ|-A4-BC3ѡΧ֖q~we ǴfEQbiR
[Tl3rৱuWEvXrv&oXIem6jw8xeaԪ
7Y\v>LC;9X MM[ඃrJEމ%}Ak2jxmAK_)n	.2=txMnQyk1.8'A+A(OfdHy^%Q;4%rF=9Rh2꼽"2
#lubGQ@->gNjm_kI1gĴ<Dte
m?È]Lw;X+0dʏUE7Gl2
G
&<'*ǁ/oƼbݫYa[zp>wf4x	rNHe내,oz:xUAuvJE5³%ӱL[=lH'@~@av))OzvIn%'&9qy\MjJ݈>TRŦF#|0ڏ$ b$B\0[ԏDn?)
D*I"4jA0ggevjچKЙ{w+I|ʋlmFOso0"	p1n~-_DZ-uU913ʭlp7F480)9yGh,AztT:
ʬ3Ed
LI$cPEx'=V~&0YaL;iZI@]' S7>~5UdǓxViBӟ[E3:m
ֺM	^|"<r~svys:F(W8c1>괉v%I D'}3%3+'pΰz԰ޖ&Q[yvn׭c 暮>ӿ5牡'fZj!_h䜣{̾%N.w8ق{-S\RDK Bh!ȚFSi;Lc!$|-(B=Xd
҉[n|K۠ktlCOI)"d\XEIX̓Y_o[3Gϰ`Jr1"c1E0^H='{n<\oUK(FF:G)lA$|
ӓg/{r:<a6كo:[kMm{Oѹ?EWxfZ?YcgƣV
՝aqRF0%JTl{#ny
8+n*>
V9cYd\\766,0H\ 8١V_sm`VǫtH3' GsFspyQ!^ޖ4ٻut;;V56E֫1Ӳ M#vS'|2hR"d>Lė,Fd֫jcOZ*[W1W2,y3g|\sEsŝȲ"0},IN^S6,
:쨒Pΰ.7')#
mZVL$wv'2L<Il҈ab+ϕіĔz˹Vlo~Mn2:(8oQIdєߠ;񊧤{b|REc|MW65I׈LI&?s`?G"DMz'ei3M
Ϳs]:<Giι|7uFһF_q+Ҟ)w8%qcg:_YaP[G|Ȫ$	k*Kv,pݓ7okB-cJ,clUh;W6/`1nvatj]H=ejO"R ;|!LEҏvnVqw/58Mlv/j
̀=n$HG@(
aj!=`4d~Ұ$&~3Y6(78A+p<@YydS݋7-bZP߿wXVM݂P)0556	Vit9)bP\Y;oXhwSyWhL	Sem$v^PŜyr%nB9xz)vKLgi(,($ӽPgRKYڸҔSK^>4[yl*c1xR6kyW^3wEk?1YH?
7&J՘	p[!|(	^R&%W@ۣmy
ʓx:mu5@Jy/C]-`SL6ULRhB/A
Cs$ʪu)tM7|Y9Ni5s&R`kBF8i#pۆk&2>@/WЮ\NЦcHQ
,(
6a(#r>o?YcP'X6]oO(=$-1L/ ֣Qb-XcPL~#5}{U>A*K!	B/`+
f:s+4{`А[zO^~%\ҡ;W:bFvlGt6t	3<l(=,4sSkdbC!=-q.%<Z@Vt9oE:-"9±ɤIb~@}g!U=m왶a1e|CTpQ@
EuѳŞ9E7rn^`]s wvD^C߃w(uT	\Kqqfcb@+2J`R*땄I$ʡ=&[)GꜮpL̸ycl{sۿ}Oc6 b.oD*ItbSsu>|Y*]Jטکش7qCC!)@fۆ-]bΡ&¯a [xP7Cк@ŝnԛĆs48jzAc=X1[h@e`h['
6lv?==5M<|| h!2s!Uilꍻ
IifR)duG!D
,HGyJ12aIOiI|'R%3JG '|;^Ҥ"ePHJYLW0{0bd"D>(F^b{dT7=MEƐrmD-dt"isSF-vOFw?UaE8rj8	T
Tlh,cmuYxTF9]H!	Ez9 6a!=DO4w*m,mAuRIeR!.z vsmݔ9gޕ(-[DO|ڝ9Ė iʏ&ra!h5ڪBl-tZ߬"zLLk0+FDt6Ih2e=~:` 4[pSQs=)S ,F)/; y(bA9ޡqݸoNxKq)#
ypM*;dtֹ
gA>0]TV&/5h{:nc^Gid?3u( s+cRů{[~R1py4`&+rF,%Qoh+4,ҡ m"paFgwI0EMT԰ل|Ma|Wx(@U`eFrm=X5)[.l䮒h1͋-l8=`(Iy0fiֹɓ|\Gن!LmN5˩9	KdF,^)b9@M&'#Ԉd0qzy=mq]URcmR.0xXi"{c5aꂓi Zf8V{hC$J9['6G82C0-{y2d$:ZR?~B2P)o}h5xiZЭW[; 6\h<:{3rvԋt|&~͖`LZdCcrp{Vd]kBO-qlVtLo:u}aQhi|iiz%Sfގ7lԁyex^#u`ºWxu+3
`%lQmUkW i7`2x,n
$pѴ7*zkф6cՑ.>7Ճ\ں9GqאdqȰ90Κ_I
)s1B$8ov"p<~?Ǵ@=-^z'$t+,I7VHv'Vq?ب~Hg&h\^CK(i?6K
5Q͒J/Dp>$~hO*N&h)7LSi@}Ă6#/ʚ:-C$,|ǻ
Me $TcĈVuc`RS{kb>NѴPUzyqڛR@$I"%0-M'^AsJfUwS!,Ԑs/8s;x-_MÔMhct
Wɚf69@:%	%
**k24zYQV#Ŵ,an`r4/NFJLPybRBH7'N]+KGIhtCRf+很Hi:[<V׹ lcaѺj?6L=0sg#:Z^QPQ1, (%LK՛Q]=.=݋-_P  PFU)[c2ﳸ0RѰݹ`TFѝqXF]$}L$ Фavoqb~	H^_^QkVve{`mrwg&^THD_:Mz8؀HR˾;	:1ktҽ(j7d'cW!'MdI~PiRxcCm^hSKv9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is the Debian package for libsemanage, and it is built from sources
obtained from: http://www.nsa.gov/selinux/code/download5.cfm.

libsemanage is Copyright © 2004-2007 Tresys Technology, LLC
               Copyright © 2005 Red Hat, Inc.

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1

On Debian GNU/Linux systems, the complete text of the Lesser GNU General
Public License can be found in `/usr/share/common-licenses/LGPL'.

This package is maintained by Manoj Srivastava <srivasta@debian.org>.

The Debian specific changes are © 2005-2009, Manoj Srivastava
<srivasta@debian.org>, and distributed under the terms of the GNU
General Public License, version 2.

On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.

    A copy of the GNU General Public License is also available at
    <URL:http://www.gnu.org/copyleft/gpl.html>.  You may also obtain
    it by writing to the Free Software Foundation, Inc., 51 Franklin
    St, Fifth Floor, Boston, MA 02110-1301, USA.

Manoj Srivastava <srivasta@debian.org>
arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Xmo_A.b%l.hd/A^[h
ED*!8HÙgޞX\	*iF+g"c.򹪃޽ÃѶ}󽇘8/+m<+WOTfbcRAMZ%֮a2+e0zfj__-oɊlUY~Co1{aJU֖*)uV5{q+V-(	TYЕzڭIOT[!"cr#ߺ֔6Hm|fT ޵3 gg7x%Xq5?fxa_HN5>Jv!
Vۍ!~_-hkJ 	UaϾ0ހQBFl?@~;$NTlyBl^^.zB\a;9S;W#ͅ'ǫ@d,ktPPG#SĸZ&݀-7;
j		ѷMZTC:lZWdHn1i.$0X\;wM~|BeݨQ"<$,;@T]x;B-YO!"J Z FrQ=ɪ6Ըx 8 N
,#r:N¥ʅR03 }6ݐ]Q5\aG"jH*T]ƹk=U?5CP=
;S7B_H4PmѸق/}E^j
^-K̾%>?7q@lNW6zR}\d!72?Eqq'֘|edYWe  =4*GXR1O$BE1!A5"]c&*QiUN4?yqSrrhzؓ 	"Pn	%!f(IO1mU4
RqF$v؁;?PBFQui<\.B\lPc^.YJ QaV R<D@śB*.cŀ]s:'e13eãjϐÁ
"
~ṯmPw.*𖣂wԠBA`Kr̅-H 'ƃlC1jL|cJHc]FPJF]Ρj*9mw#~?}0Q0$>8ñ䐰$
H/TtaܮVuKjUЭ㽢'9^#B||gp4U249{PW5A2O|)AQvʷġƌ7a 25u@NIFa׻D%ߥiaWݺGgqK.wZ\Xl)PI+CR
Ζpy+Q%z;:n8ȗm5qAa>٫ȢC+ْ#an&dcoJ`w.Rqwz8>GR }7\MrTu\%bvcf8е.U\T(#["Q|9>"Fm{Tv_pxy{婫僲u=["7<fB6뙨t	
/X W2u艻>]Çx;gVUt2f

:mL
wk=}xێ}	Go_AM[`-U:%n1(P
׆?ĭ#E4JaΝdVʶh9KhCهi}G~|GљrNp!H];~[*oJHŝQr*ݒ]	e(zP҈RX%'5gȥYچe}ۙXޞ}eq%p`{o	Iĕht( HZ@hW"_^m໩rcF2X\GkSȈ7}	.X]DiWZ7oa>]GפnhZm3n77=U	ڮ5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Z[o~l_$@d-
ҸAe@mK(Z"Wk+-I
*mqCQDiś?.w)q ׀,q/3\Qsv^wry&[Ɏ~S>w\<='/=9]9mk#=X,VLnyAȯ+Ltg<=X FC!|<=!po =yf-1	7OҮ]|f RS,J4~--e?xL;Q3eP@?ؓpoOQH"$N=?[sJ;JA35xYi&W$vyfE\5p
Om!*rx>ĥ)*[TMhF3\Kz
Q>ȮP*!R`91e̚&Ca/p+ppDN	%l0mRc&*b"##||;EA)$ȴwhcٟn>{#Yݘ*~c^ɭ,E-llV=_8LKd"nyD@VC/F >Pq 6 $mԴ9d
P::~r
)Rý>ښbgD|Ny.b$Ziy @~)m*,@
	xQFkcZ]Kf	}̃8r@w	F_}b6s[G&޷f-6|\sUjM!`n##$G%u(pd,T##b/]LmXĿl+ٶ˛%LPo\m<HEAtVUn>@e_({"YomyB6"LZ&y L5ahYd_e<!ECA@ $pR:#wpOJ{SK^Uz3eW]cj5r6⚉,Ky='q[_'lA)#;0zoz.?vvuT\uR?{XrY&z3Qj,	a!}LOXX\Ęu{ڪZζ^AN]i	EFa2WxniCH6g1.=ʹ	9ͪWO٥cq'nZMUƊ/M3C[8c1
72dy_BE閊}Z+^x ,!҄d`#b<I ~hQ['w۟~۰Sv߬9,TX
m|L(#ũf5ţJ=W%P*BCSn[-g?Rml`CN_fF4tY`?/!j#}
l`YK 6ֶSy(K޴+,0L$sT/T]*,gvċ1p(I΀c4]ؾ
1͡1ѯ*g *>ЎNM]	nMj(wiLlNBG
/I b"IӃ!6
"U9bF5h` )3Yۑ@O~rFO;d7U º2!,y#JxU/ؔ<4b08&831r!iL45O<u)S/mXL5Њ%? UX(О{4XOs5|MM_~j	2ǭ{|
én2Ӯˍ%"rǙ)mPUq4pUN	9V1'i1}`X'D',VjpbO
fcr@
-(ZAAdC*N>5R+O
MG_ *H= ɋ8ZوBfB*_w*n)V&jâL1 =&I"+ruEgr~#{HKP
øȴ[VVOX4 Zt(n
o@ުܫIs't4upCPLGcJ
wh5$.D}z.!iz̓xto3뼰
Ne`U?9X[܍̶yq3Zrjϝ1OqG4$qi
ZHsCs3FonjWJ: S:W
,>$'3<{(;]c]+2x\!F8|1{jHlRɾ9kCn0zJDEƇsޠWRn|W%<ʜA;e*;ԣV~PUj1fQ*_AJrE~OpBuѬ̈_Ps%)q*ԽXr2aԵ?4NWM!>)cDIHoKuZ/ƤZѳir
Ba$ƾ7cXdX]Li$@=zy]WKk"s{s*oO0&]:pRw|i
AcK>ߧ0V*40vɮ䋶>#ꋉo1lY۩'QqKX\;NA,uqApB=r+
>
: 6o<<ۂ)7(*%vlW흏qbh?`6&                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /.
/etc
/etc/selinux
/etc/selinux/semanage.conf
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libsemanage-common
/usr/share/doc/libsemanage-common/changelog.Debian.gz
/usr/share/doc/libsemanage-common/copyright
/usr/share/man
/usr/share/man/man5
/usr/share/man/man5/semanage.conf.5.gz
/usr/share/man/ru
/usr/share/man/ru/man5
/usr/share/man/ru/man5/semanage.conf.5.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #  .     ..  # package.json                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              t#  .     ..  # package.json                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              {Xlibsepol.so.2 libsepol2 #MINVER#
* Build-Depends-Package: libsepol-dev
 LIBSEPOL_1.0@LIBSEPOL_1.0 2.5
 LIBSEPOL_1.1@LIBSEPOL_1.1 2.5
 LIBSEPOL_3.0@LIBSEPOL_3.0 3.0
 LIBSEPOL_3.4@LIBSEPOL_3.4 3.4
 cil_add_file@LIBSEPOL_1.0 2.5
 cil_build_policydb@LIBSEPOL_1.1 2.5
 cil_compile@LIBSEPOL_1.1 2.5
 cil_db_destroy@LIBSEPOL_1.0 2.5
 cil_db_init@LIBSEPOL_1.0 2.5
 cil_filecons_to_string@LIBSEPOL_1.1 2.5
 cil_selinuxusers_to_string@LIBSEPOL_1.1 2.5
 cil_set_attrs_expand_generated@LIBSEPOL_1.1 2.7~rc2
 cil_set_attrs_expand_size@LIBSEPOL_1.1 2.7~rc2
 cil_set_disable_dontaudit@LIBSEPOL_1.0 2.5
 cil_set_disable_neverallow@LIBSEPOL_1.0 2.5
 cil_set_handle_unknown@LIBSEPOL_1.0 2.5
 cil_set_log_handler@LIBSEPOL_1.0 2.5
 cil_set_log_level@LIBSEPOL_1.0 2.5
 cil_set_mls@LIBSEPOL_1.1 2.5
 cil_set_multiple_decls@LIBSEPOL_1.1 2.8
 cil_set_policy_version@LIBSEPOL_1.1 2.5
 cil_set_preserve_tunables@LIBSEPOL_1.0 2.5
 cil_set_qualified_names@LIBSEPOL_3.0 3.3
 cil_set_target_platform@LIBSEPOL_1.1 2.5
 cil_userprefixes_to_string@LIBSEPOL_1.1 2.5
 cil_write_build_ast@LIBSEPOL_3.0 3.3
 cil_write_parse_ast@LIBSEPOL_3.0 3.3
 cil_write_policy_conf@LIBSEPOL_1.1 2.7~rc2
 cil_write_resolve_ast@LIBSEPOL_3.0 3.3
 expand_module_avrules@LIBSEPOL_1.0 2.5
 sepol_av_perm_to_string@LIBSEPOL_3.4 3.4
 sepol_bool_clone@LIBSEPOL_1.0 2.5
 sepol_bool_compare2@LIBSEPOL_1.0 2.5
 sepol_bool_compare@LIBSEPOL_1.0 2.5
 sepol_bool_count@LIBSEPOL_1.0 2.5
 sepol_bool_create@LIBSEPOL_1.0 2.5
 sepol_bool_exists@LIBSEPOL_1.0 2.5
 sepol_bool_free@LIBSEPOL_1.0 2.5
 sepol_bool_get_name@LIBSEPOL_1.0 2.5
 sepol_bool_get_value@LIBSEPOL_1.0 2.5
 sepol_bool_iterate@LIBSEPOL_1.0 2.5
 sepol_bool_key_create@LIBSEPOL_1.0 2.5
 sepol_bool_key_extract@LIBSEPOL_1.0 2.5
 sepol_bool_key_free@LIBSEPOL_1.0 2.5
 sepol_bool_key_unpack@LIBSEPOL_1.0 2.5
 sepol_bool_query@LIBSEPOL_1.0 2.5
 sepol_bool_set@LIBSEPOL_1.0 2.5
 sepol_bool_set_name@LIBSEPOL_1.0 2.5
 sepol_bool_set_value@LIBSEPOL_1.0 2.5
 sepol_change_sid@LIBSEPOL_3.4 3.4
 sepol_check_context@LIBSEPOL_1.0 2.5
 sepol_compute_av@LIBSEPOL_3.4 3.4
 sepol_compute_av_reason@LIBSEPOL_3.4 3.4
 sepol_compute_av_reason_buffer@LIBSEPOL_3.4 3.4
 sepol_context_check@LIBSEPOL_1.0 2.5
 sepol_context_clone@LIBSEPOL_1.0 2.5
 sepol_context_create@LIBSEPOL_1.0 2.5
 sepol_context_free@LIBSEPOL_1.0 2.5
 sepol_context_from_string@LIBSEPOL_1.0 2.5
 sepol_context_get_mls@LIBSEPOL_1.0 2.5
 sepol_context_get_role@LIBSEPOL_1.0 2.5
 sepol_context_get_type@LIBSEPOL_1.0 2.5
 sepol_context_get_user@LIBSEPOL_1.0 2.5
 sepol_context_set_mls@LIBSEPOL_1.0 2.5
 sepol_context_set_role@LIBSEPOL_1.0 2.5
 sepol_context_set_type@LIBSEPOL_1.0 2.5
 sepol_context_set_user@LIBSEPOL_1.0 2.5
 sepol_context_to_sid@LIBSEPOL_3.4 3.4
 sepol_context_to_string@LIBSEPOL_1.0 2.5
 sepol_debug@LIBSEPOL_1.0 2.5
 sepol_expand_module@LIBSEPOL_1.0 2.5
 sepol_get_disable_dontaudit@LIBSEPOL_1.0 2.5
 sepol_get_preserve_tunables@LIBSEPOL_1.0 2.5
 sepol_handle_create@LIBSEPOL_1.0 2.5
 sepol_handle_destroy@LIBSEPOL_1.0 2.5
 sepol_ibendport_alloc_ibdev_name@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_clone@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_compare2@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_compare@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_count@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_create@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_exists@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_free@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_get_con@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_get_ibdev_name@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_get_port@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_iterate@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_key_create@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_key_extract@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_key_free@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_key_unpack@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_modify@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_query@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_set_con@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_set_ibdev_name@LIBSEPOL_1.0 2.7~rc2
 sepol_ibendport_set_port@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_clone@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_compare2@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_compare@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_count@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_create@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_exists@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_free@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_get_con@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_get_high@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_get_low@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_get_subnet_prefix@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_get_subnet_prefix_bytes@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_iterate@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_key_create@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_key_extract@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_key_free@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_key_unpack@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_modify@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_query@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_set_con@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_set_pkey@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_set_range@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_set_subnet_prefix@LIBSEPOL_1.0 2.7~rc2
 sepol_ibpkey_set_subnet_prefix_bytes@LIBSEPOL_1.0 2.7~rc2
 sepol_iface_clone@LIBSEPOL_1.0 2.5
 sepol_iface_compare2@LIBSEPOL_1.0 2.5
 sepol_iface_compare@LIBSEPOL_1.0 2.5
 sepol_iface_count@LIBSEPOL_1.0 2.5
 sepol_iface_create@LIBSEPOL_1.0 2.5
 sepol_iface_exists@LIBSEPOL_1.0 2.5
 sepol_iface_free@LIBSEPOL_1.0 2.5
 sepol_iface_get_ifcon@LIBSEPOL_1.0 2.5
 sepol_iface_get_msgcon@LIBSEPOL_1.0 2.5
 sepol_iface_get_name@LIBSEPOL_1.0 2.5
 sepol_iface_iterate@LIBSEPOL_1.0 2.5
 sepol_iface_key_create@LIBSEPOL_1.0 2.5
 sepol_iface_key_extract@LIBSEPOL_1.0 2.5
 sepol_iface_key_free@LIBSEPOL_1.0 2.5
 sepol_iface_key_unpack@LIBSEPOL_1.0 2.5
 sepol_iface_modify@LIBSEPOL_1.0 2.5
 sepol_iface_query@LIBSEPOL_1.0 2.5
 sepol_iface_set_ifcon@LIBSEPOL_1.0 2.5
 sepol_iface_set_msgcon@LIBSEPOL_1.0 2.5
 sepol_iface_set_name@LIBSEPOL_1.0 2.5
 sepol_kernel_policydb_to_cil@LIBSEPOL_1.1 2.7~rc2
 sepol_kernel_policydb_to_conf@LIBSEPOL_1.1 2.7~rc2
 sepol_link_modules@LIBSEPOL_1.0 2.5
 sepol_link_packages@LIBSEPOL_1.0 2.5
 sepol_member_sid@LIBSEPOL_3.4 3.4
 sepol_mls_check@LIBSEPOL_1.0 2.5
 sepol_mls_contains@LIBSEPOL_1.0 2.5
 sepol_module_package_create@LIBSEPOL_1.0 2.5
 sepol_module_package_free@LIBSEPOL_1.0 2.5
 sepol_module_package_get_file_contexts@LIBSEPOL_1.0 2.5
 sepol_module_package_get_file_contexts_len@LIBSEPOL_1.0 2.5
 sepol_module_package_get_netfilter_contexts@LIBSEPOL_1.0 2.5
 sepol_module_package_get_netfilter_contexts_len@LIBSEPOL_1.0 2.5
 sepol_module_package_get_policy@LIBSEPOL_1.0 2.5
 sepol_module_package_get_seusers@LIBSEPOL_1.0 2.5
 sepol_module_package_get_seusers_len@LIBSEPOL_1.0 2.5
 sepol_module_package_get_user_extra@LIBSEPOL_1.0 2.5
 sepol_module_package_get_user_extra_len@LIBSEPOL_1.0 2.5
 sepol_module_package_info@LIBSEPOL_1.0 2.5
 sepol_module_package_read@LIBSEPOL_1.0 2.5
 sepol_module_package_set_file_contexts@LIBSEPOL_1.0 2.5
 sepol_module_package_set_netfilter_contexts@LIBSEPOL_1.0 2.5
 sepol_module_package_set_seusers@LIBSEPOL_1.0 2.5
 sepol_module_package_set_user_extra@LIBSEPOL_1.0 2.5
 sepol_module_package_to_cil@LIBSEPOL_1.1 2.5
 sepol_module_package_write@LIBSEPOL_1.0 2.5
 sepol_module_policydb_to_cil@LIBSEPOL_1.1 2.5
 sepol_msg_get_channel@LIBSEPOL_1.0 2.5
 sepol_msg_get_fname@LIBSEPOL_1.0 2.5
 sepol_msg_get_level@LIBSEPOL_1.0 2.5
 sepol_msg_set_callback@LIBSEPOL_1.0 2.5
 sepol_node_clone@LIBSEPOL_1.0 2.5
 sepol_node_compare2@LIBSEPOL_1.0 2.5
 sepol_node_compare@LIBSEPOL_1.0 2.5
 sepol_node_count@LIBSEPOL_1.0 2.5
 sepol_node_create@LIBSEPOL_1.0 2.5
 sepol_node_exists@LIBSEPOL_1.0 2.5
 sepol_node_free@LIBSEPOL_1.0 2.5
 sepol_node_get_addr@LIBSEPOL_1.0 2.5
 sepol_node_get_addr_bytes@LIBSEPOL_1.0 2.5
 sepol_node_get_con@LIBSEPOL_1.0 2.5
 sepol_node_get_mask@LIBSEPOL_1.0 2.5
 sepol_node_get_mask_bytes@LIBSEPOL_1.0 2.5
 sepol_node_get_proto@LIBSEPOL_1.0 2.5
 sepol_node_get_proto_str@LIBSEPOL_1.0 2.5
 sepol_node_iterate@LIBSEPOL_1.0 2.5
 sepol_node_key_create@LIBSEPOL_1.0 2.5
 sepol_node_key_extract@LIBSEPOL_1.0 2.5
 sepol_node_key_free@LIBSEPOL_1.0 2.5
 sepol_node_key_unpack@LIBSEPOL_1.0 2.5
 sepol_node_modify@LIBSEPOL_1.0 2.5
 sepol_node_query@LIBSEPOL_1.0 2.5
 sepol_node_set_addr@LIBSEPOL_1.0 2.5
 sepol_node_set_addr_bytes@LIBSEPOL_1.0 2.5
 sepol_node_set_con@LIBSEPOL_1.0 2.5
 sepol_node_set_mask@LIBSEPOL_1.0 2.5
 sepol_node_set_mask_bytes@LIBSEPOL_1.0 2.5
 sepol_node_set_proto@LIBSEPOL_1.0 2.5
 sepol_polcap_getname@LIBSEPOL_1.1 2.8
 sepol_polcap_getnum@LIBSEPOL_1.1 2.8
 sepol_policy_file_create@LIBSEPOL_1.0 2.5
 sepol_policy_file_free@LIBSEPOL_1.0 2.5
 sepol_policy_file_get_len@LIBSEPOL_1.0 2.5
 sepol_policy_file_set_fp@LIBSEPOL_1.0 2.5
 sepol_policy_file_set_handle@LIBSEPOL_1.0 2.5
 sepol_policy_file_set_mem@LIBSEPOL_1.0 2.5
 sepol_policy_kern_vers_max@LIBSEPOL_1.0 2.5
 sepol_policy_kern_vers_min@LIBSEPOL_1.0 2.5
 sepol_policydb_compat_net@LIBSEPOL_1.0 2.5
 sepol_policydb_create@LIBSEPOL_1.0 2.5
 sepol_policydb_free@LIBSEPOL_1.0 2.5
 sepol_policydb_from_image@LIBSEPOL_1.0 2.5
 sepol_policydb_mls_enabled@LIBSEPOL_1.0 2.5
 sepol_policydb_optimize@LIBSEPOL_3.0 3.0
 sepol_policydb_read@LIBSEPOL_1.0 2.5
 sepol_policydb_set_handle_unknown@LIBSEPOL_1.0 2.5
 sepol_policydb_set_target_platform@LIBSEPOL_1.0 2.5
 sepol_policydb_set_typevers@LIBSEPOL_1.0 2.5
 sepol_policydb_set_vers@LIBSEPOL_1.0 2.5
 sepol_policydb_to_image@LIBSEPOL_1.0 2.5
 sepol_policydb_write@LIBSEPOL_1.0 2.5
 sepol_port_clone@LIBSEPOL_1.0 2.5
 sepol_port_compare2@LIBSEPOL_1.0 2.5
 sepol_port_compare@LIBSEPOL_1.0 2.5
 sepol_port_count@LIBSEPOL_1.0 2.5
 sepol_port_create@LIBSEPOL_1.0 2.5
 sepol_port_exists@LIBSEPOL_1.0 2.5
 sepol_port_free@LIBSEPOL_1.0 2.5
 sepol_port_get_con@LIBSEPOL_1.0 2.5
 sepol_port_get_high@LIBSEPOL_1.0 2.5
 sepol_port_get_low@LIBSEPOL_1.0 2.5
 sepol_port_get_proto@LIBSEPOL_1.0 2.5
 sepol_port_get_proto_str@LIBSEPOL_1.0 2.5
 sepol_port_iterate@LIBSEPOL_1.0 2.5
 sepol_port_key_create@LIBSEPOL_1.0 2.5
 sepol_port_key_extract@LIBSEPOL_1.0 2.5
 sepol_port_key_free@LIBSEPOL_1.0 2.5
 sepol_port_key_unpack@LIBSEPOL_1.0 2.5
 sepol_port_modify@LIBSEPOL_1.0 2.5
 sepol_port_query@LIBSEPOL_1.0 2.5
 sepol_port_set_con@LIBSEPOL_1.0 2.5
 sepol_port_set_port@LIBSEPOL_1.0 2.5
 sepol_port_set_proto@LIBSEPOL_1.0 2.5
 sepol_port_set_range@LIBSEPOL_1.0 2.5
 sepol_ppfile_to_module_package@LIBSEPOL_1.1 2.5
 sepol_set_disable_dontaudit@LIBSEPOL_1.0 2.5
 sepol_set_expand_consume_base@LIBSEPOL_1.0 2.5
 sepol_set_policydb_from_file@LIBSEPOL_1.0 2.5
 sepol_set_preserve_tunables@LIBSEPOL_1.0 2.5
 sepol_sid_to_context@LIBSEPOL_3.4 3.4
 sepol_string_to_av_perm@LIBSEPOL_3.4 3.4
 sepol_string_to_security_class@LIBSEPOL_3.4 3.4
 sepol_user_add_role@LIBSEPOL_1.0 2.5
 sepol_user_clone@LIBSEPOL_1.0 2.5
 sepol_user_compare2@LIBSEPOL_1.0 2.5
 sepol_user_compare@LIBSEPOL_1.0 2.5
 sepol_user_count@LIBSEPOL_1.0 2.5
 sepol_user_create@LIBSEPOL_1.0 2.5
 sepol_user_del_role@LIBSEPOL_1.0 2.5
 sepol_user_exists@LIBSEPOL_1.0 2.5
 sepol_user_free@LIBSEPOL_1.0 2.5
 sepol_user_get_mlslevel@LIBSEPOL_1.0 2.5
 sepol_user_get_mlsrange@LIBSEPOL_1.0 2.5
 sepol_user_get_name@LIBSEPOL_1.0 2.5
 sepol_user_get_num_roles@LIBSEPOL_1.0 2.5
 sepol_user_get_roles@LIBSEPOL_1.0 2.5
 sepol_user_has_role@LIBSEPOL_1.0 2.5
 sepol_user_iterate@LIBSEPOL_1.0 2.5
 sepol_user_key_create@LIBSEPOL_1.0 2.5
 sepol_user_key_extract@LIBSEPOL_1.0 2.5
 sepol_user_key_free@LIBSEPOL_1.0 2.5
 sepol_user_key_unpack@LIBSEPOL_1.0 2.5
 sepol_user_modify@LIBSEPOL_1.0 2.5
 sepol_user_query@LIBSEPOL_1.0 2.5
 sepol_user_set_mlslevel@LIBSEPOL_1.0 2.5
 sepol_user_set_mlsrange@LIBSEPOL_1.0 2.5
 sepol_user_set_name@LIBSEPOL_1.0 2.5
 sepol_user_set_roles@LIBSEPOL_1.0 2.5
 sepol_validate_transition_reason_buffer@LIBSEPOL_3.4 3.4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               libsepol 2 libsepol2 (>= 3.4)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  # Triggers added by dh_makeshlibs/13.11.4
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            626d5fbd48db52e414a6cd91a4f795df  lib/x86_64-linux-gnu/libsepol.so.2
04bd38f6bb3233045c01ce88c31cfcf4  usr/share/doc/libsepol2/changelog.Debian.gz
568792a9303c6249aea01a640cd4d1bb  usr/share/doc/libsepol2/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #  .     ..  # package.json                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              #  .     ..  # package.json                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ަFt     Wr6}W$/vK2ɶ$XN<ɸ%yd\Q rǺ(ZVߦ3ٳgO
Jn~D{HcTOe|UajgUIb\ZC
M-+w+<{/Y7Y\K˹v'B4<$:I߇5;\ -@5',<S-!,M08wv aF~.\IP3hR`.np	*ƃ|V5_Pjdق[1E(LNYQZ8⥒.˩{-Fbو;uh~`e5U\S Z,J[Vrv7ZLTw]JdpT5[&Dm	 
vYɞ|dqP3A@EYgx~(㹋[
.(+&Mɢ<ؠp&Gp{0֧"?S୵֞3{pGz#	R=806C+dt&'x?yQr+yTȞmYGQԎXbv@Q2x;40Ml\օ&:t?k'&ٺ
\{OTLZͶ/PZP[jQf@>Ex)N/N]3%^ўXV6-BQEAL/88&,Ujq5iU[Ł]xQ݁vKg?Yr@	F^91tqk2/ΰ)yzEo K!M,=]]q3|>[~✼;}srՆQ'
9.̐:RTȃaaܕ&U"4@snPq5CW5Y)FY#=ZFe]I.cZJ/7(Cm7ӊi5b(vQzK$qPi0l3#jvJڱuTcZ851Q*R&(b	rysRY
B혵RQJ 5wNEA1;ЏV9DɬŹǳУP֢L"=YTagpi,z4*a
F>tV[obgō֖?̓ܮ	u
l{+h>-2}`҈k]#}DÜr[M;H徙L`|KeY{tIs gsMh4 ৈ]#d	؅kl\Wn,`?X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Comment:
 This is the Debian package for libsepol.
 .
 This package was debianized by Russell Coker <russell@coker.com.au> on
 Fri, 20 Aug 2004 17:26:18 +1000.
Source: https://github.com/SELinuxProject/selinux/wiki/Releases

Files: *
Copyright: libsepol is
 Copyright (C) 2003, 2004 Stephen Smalley <sds@epoch.ncsc.mil>
 Copyright (C) 2003-2007  Red Hat, Inc.
 Copyright (C) 2004, 2005 Trusted Computer Solutions, Inc.
 Copyright (C) 2003-2008, 2011 Tresys Technology, LLC
 Copyright (C) 2017 Mellanox Techonolgies Inc.
 Copyright (c) 2008 NEC Corporation
License: LGPL-2.1+
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.
 .
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 .
    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Comment:
 On Debian GNU/Linux systems, the complete text of the Lesser GNU General
 Public License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.

Files: cil/test/unit/CuTest.*
Copyright: (c) 2003 Asim Jalis
License: Zlib
 This software is provided 'as-is', without any express or implied
 warranty. In no event will the authors 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.

Files: debian/*
Copyright: © 2005-2008, Manoj Srivastava <srivasta@debian.org>
             2012-2022  Laurent Bigonville <bigon@debian.org>
             2011-2018  Russell Coker <russell@coker.com.au>
License: GPL-2
    The Debian specific changes are distributed under the terms of the
    GNU General Public License, version 2.
 .
    A copy of the GNU General Public License is also available at
    <URL:http://www.gnu.org/copyleft/gpl.html>.  You may also obtain
    it by writing to the Free Software Foundation, Inc., 51 Franklin
    St, Fifth Floor, Boston, MA 02110-1301 USA
Comment:
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.

Files: man/*man8/chkcon.8
       man/man8/genpolusers.8
Copyright: (c) 1997 Manoj Srivastava <srivasta@debian.org>
License: GPL-2+
    This is free documentation; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
    published by the Free Software Foundation; either version 2 of
    the License, or (at your option) any later version.
Comment:
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
                                                                                                                                                                                                                                                                                                                                                          /.
/lib
/lib/x86_64-linux-gnu
/lib/x86_64-linux-gnu/libsepol.so.2
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libsepol2
/usr/share/doc/libsepol2/changelog.Debian.gz
/usr/share/doc/libsepol2/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      =  .     ..  >  iterator.js    
observable.js   ;&  iterator.js.map & observable.js.map                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     úu?  .     ..  @  iterator.js    
observable.js   <&  iterator.js.map & observable.js.map                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     pٮDlibsemanage.so.2 libsemanage2 #MINVER#
* Build-Depends-Package: libsemanage-dev
 LIBSEMANAGE_1.0@LIBSEMANAGE_1.0 2.0.3
 LIBSEMANAGE_1.1@LIBSEMANAGE_1.1 2.4
 LIBSEMANAGE_3.4@LIBSEMANAGE_3.4 3.4
 semanage_access_check@LIBSEMANAGE_1.0 2.0.3
 semanage_begin_transaction@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_count@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_count_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_create@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_exists_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_free@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_get_name@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_get_value@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_iterate_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_list@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_list_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_query@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_query_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_set_active@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_set_name@LIBSEMANAGE_1.0 2.0.3
 semanage_bool_set_value@LIBSEMANAGE_1.0 2.0.3
 semanage_commit@LIBSEMANAGE_1.0 2.0.3
 semanage_connect@LIBSEMANAGE_1.0 2.0.3
 semanage_context_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_context_create@LIBSEMANAGE_1.0 2.0.3
 semanage_context_free@LIBSEMANAGE_1.0 2.0.3
 semanage_context_from_string@LIBSEMANAGE_1.0 2.0.3
 semanage_context_get_mls@LIBSEMANAGE_1.0 2.0.3
 semanage_context_get_role@LIBSEMANAGE_1.0 2.0.3
 semanage_context_get_type@LIBSEMANAGE_1.0 2.0.3
 semanage_context_get_user@LIBSEMANAGE_1.0 2.0.3
 semanage_context_set_mls@LIBSEMANAGE_1.0 2.0.3
 semanage_context_set_role@LIBSEMANAGE_1.0 2.0.3
 semanage_context_set_type@LIBSEMANAGE_1.0 2.0.3
 semanage_context_set_user@LIBSEMANAGE_1.0 2.0.3
 semanage_context_to_string@LIBSEMANAGE_1.0 2.0.3
 semanage_disconnect@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_count@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_create@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_free@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_get_con@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_get_expr@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_get_type@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_get_type_str@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_list@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_list_homedirs@LIBSEMANAGE_1.0 2.8
 semanage_fcontext_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_query@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_set_con@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_set_expr@LIBSEMANAGE_1.0 2.0.3
 semanage_fcontext_set_type@LIBSEMANAGE_1.0 2.0.3
 semanage_get_default_priority@LIBSEMANAGE_1.1 2.4
 semanage_get_disable_dontaudit@LIBSEMANAGE_1.0 2.0.33
 semanage_get_hll_compiler_path@LIBSEMANAGE_1.1 2.4
 semanage_get_ignore_module_cache@LIBSEMANAGE_1.1 2.4
 semanage_get_preserve_tunables@LIBSEMANAGE_1.0 2.1.6
 semanage_handle_create@LIBSEMANAGE_1.0 2.0.3
 semanage_handle_destroy@LIBSEMANAGE_1.0 2.0.3
 semanage_ibendport_clone@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_compare2@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_compare@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_count@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_count_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_create@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_del_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_exists@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_exists_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_free@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_get_con@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_get_ibdev_name@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_get_port@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_iterate@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_iterate_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_key_create@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_key_extract@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_key_free@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_list@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_list_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_modify_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_query@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_query_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_set_con@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_set_ibdev_name@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibendport_set_port@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_clone@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_compare2@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_compare@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_count@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_count_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_create@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_del_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_exists@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_exists_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_free@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_get_con@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_get_high@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_get_low@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_get_subnet_prefix@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_get_subnet_prefix_bytes@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_iterate@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_iterate_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_key_create@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_key_extract@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_key_free@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_list@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_list_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_modify_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_query@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_query_local@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_set_con@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_set_pkey@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_set_range@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_set_subnet_prefix@LIBSEMANAGE_1.0 2.7~rc2
 semanage_ibpkey_set_subnet_prefix_bytes@LIBSEMANAGE_1.0 2.7~rc2
 semanage_iface_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_count@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_create@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_free@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_get_ifcon@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_get_msgcon@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_get_name@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_list@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_query@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_set_ifcon@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_set_msgcon@LIBSEMANAGE_1.0 2.0.3
 semanage_iface_set_name@LIBSEMANAGE_1.0 2.0.3
 semanage_is_connected@LIBSEMANAGE_1.0 2.0.3
 semanage_is_managed@LIBSEMANAGE_1.0 2.0.3
 semanage_mls_enabled@LIBSEMANAGE_1.0 2.0.32
 semanage_module_compute_checksum@LIBSEMANAGE_3.4 3.4
 semanage_module_extract@LIBSEMANAGE_1.1 2.5
 semanage_module_get_enabled@LIBSEMANAGE_1.1 2.4
 semanage_module_get_module_info@LIBSEMANAGE_1.1 2.4
 semanage_module_get_name@LIBSEMANAGE_1.0 2.0.3
 semanage_module_get_version@LIBSEMANAGE_1.0 2.0.3
 semanage_module_info_create@LIBSEMANAGE_1.1 2.4
 semanage_module_info_datum_destroy@LIBSEMANAGE_1.0 2.0.3
 semanage_module_info_destroy@LIBSEMANAGE_1.1 2.4
 semanage_module_info_get_enabled@LIBSEMANAGE_1.1 2.4
 semanage_module_info_get_lang_ext@LIBSEMANAGE_1.1 2.4
 semanage_module_info_get_name@LIBSEMANAGE_1.1 2.4
 semanage_module_info_get_priority@LIBSEMANAGE_1.1 2.4
 semanage_module_info_set_enabled@LIBSEMANAGE_1.1 2.4
 semanage_module_info_set_lang_ext@LIBSEMANAGE_1.1 2.4
 semanage_module_info_set_name@LIBSEMANAGE_1.1 2.4
 semanage_module_info_set_priority@LIBSEMANAGE_1.1 2.4
 semanage_module_install@LIBSEMANAGE_1.1 2.4
 semanage_module_install_file@LIBSEMANAGE_1.0 2.0.32
 semanage_module_install_info@LIBSEMANAGE_1.1 2.4
 semanage_module_key_create@LIBSEMANAGE_1.1 2.4
 semanage_module_key_destroy@LIBSEMANAGE_1.1 2.4
 semanage_module_key_get_name@LIBSEMANAGE_1.1 2.4
 semanage_module_key_get_priority@LIBSEMANAGE_1.1 2.4
 semanage_module_key_set_name@LIBSEMANAGE_1.1 2.4
 semanage_module_key_set_priority@LIBSEMANAGE_1.1 2.4
 semanage_module_list@LIBSEMANAGE_1.0 2.0.3
 semanage_module_list_all@LIBSEMANAGE_1.1 2.4
 semanage_module_list_nth@LIBSEMANAGE_1.0 2.0.3
 semanage_module_remove@LIBSEMANAGE_1.0 2.0.3
 semanage_module_remove_key@LIBSEMANAGE_1.1 2.4
 semanage_module_set_enabled@LIBSEMANAGE_1.1 2.4
 semanage_module_upgrade_file@LIBSEMANAGE_1.0 2.0.32
 semanage_msg_get_channel@LIBSEMANAGE_1.0 2.0.3
 semanage_msg_get_fname@LIBSEMANAGE_1.0 2.0.3
 semanage_msg_get_level@LIBSEMANAGE_1.0 2.0.3
 semanage_msg_set_callback@LIBSEMANAGE_1.0 2.0.3
 semanage_node_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_node_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_node_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_node_count@LIBSEMANAGE_1.0 2.0.3
 semanage_node_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_create@LIBSEMANAGE_1.0 2.0.3
 semanage_node_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_node_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_free@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_addr@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_addr_bytes@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_con@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_mask@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_mask_bytes@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_proto@LIBSEMANAGE_1.0 2.0.3
 semanage_node_get_proto_str@LIBSEMANAGE_1.0 2.0.3
 semanage_node_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_node_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_node_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_node_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_node_list@LIBSEMANAGE_1.0 2.0.3
 semanage_node_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_query@LIBSEMANAGE_1.0 2.0.3
 semanage_node_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_addr@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_addr_bytes@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_con@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_mask@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_mask_bytes@LIBSEMANAGE_1.0 2.0.3
 semanage_node_set_proto@LIBSEMANAGE_1.0 2.0.3
 semanage_port_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_port_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_port_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_port_count@LIBSEMANAGE_1.0 2.0.3
 semanage_port_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_create@LIBSEMANAGE_1.0 2.0.3
 semanage_port_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_port_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_free@LIBSEMANAGE_1.0 2.0.3
 semanage_port_get_con@LIBSEMANAGE_1.0 2.0.3
 semanage_port_get_high@LIBSEMANAGE_1.0 2.0.3
 semanage_port_get_low@LIBSEMANAGE_1.0 2.0.3
 semanage_port_get_proto@LIBSEMANAGE_1.0 2.0.3
 semanage_port_get_proto_str@LIBSEMANAGE_1.0 2.0.3
 semanage_port_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_port_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_port_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_port_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_port_list@LIBSEMANAGE_1.0 2.0.3
 semanage_port_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_query@LIBSEMANAGE_1.0 2.0.3
 semanage_port_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_port_set_con@LIBSEMANAGE_1.0 2.0.3
 semanage_port_set_port@LIBSEMANAGE_1.0 2.0.3
 semanage_port_set_proto@LIBSEMANAGE_1.0 2.0.3
 semanage_port_set_range@LIBSEMANAGE_1.0 2.0.3
 semanage_reload_policy@LIBSEMANAGE_1.0 2.0.3
 semanage_root@LIBSEMANAGE_1.0 2.4
 semanage_select_store@LIBSEMANAGE_1.0 2.0.3
 semanage_set_check_contexts@LIBSEMANAGE_1.0 2.0.40
 semanage_set_check_ext_changes@LIBSEMANAGE_3.4 3.4
 semanage_set_create_store@LIBSEMANAGE_1.0 2.0.3
 semanage_set_default_priority@LIBSEMANAGE_1.1 2.4
 semanage_set_disable_dontaudit@LIBSEMANAGE_1.0 2.0.25
 semanage_set_ignore_module_cache@LIBSEMANAGE_1.1 2.4
 semanage_set_preserve_tunables@LIBSEMANAGE_1.0 2.1.6
 semanage_set_rebuild@LIBSEMANAGE_1.0 2.0.3
 semanage_set_reload@LIBSEMANAGE_1.0 2.0.3
 semanage_set_root@LIBSEMANAGE_1.0 2.1.6
 semanage_set_store_root@LIBSEMANAGE_1.1 2.4
 semanage_seuser_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_count@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_create@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_free@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_get_mlsrange@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_get_name@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_get_sename@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_list@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_query@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_set_mlsrange@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_set_name@LIBSEMANAGE_1.0 2.0.3
 semanage_seuser_set_sename@LIBSEMANAGE_1.0 2.0.3
 semanage_user_add_role@LIBSEMANAGE_1.0 2.0.3
 semanage_user_clone@LIBSEMANAGE_1.0 2.0.3
 semanage_user_compare2@LIBSEMANAGE_1.0 2.0.3
 semanage_user_compare@LIBSEMANAGE_1.0 2.0.3
 semanage_user_count@LIBSEMANAGE_1.0 2.0.3
 semanage_user_count_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_create@LIBSEMANAGE_1.0 2.0.3
 semanage_user_del_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_del_role@LIBSEMANAGE_1.0 2.0.3
 semanage_user_exists@LIBSEMANAGE_1.0 2.0.3
 semanage_user_exists_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_free@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_mlslevel@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_mlsrange@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_name@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_num_roles@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_prefix@LIBSEMANAGE_1.0 2.0.3
 semanage_user_get_roles@LIBSEMANAGE_1.0 2.0.3
 semanage_user_has_role@LIBSEMANAGE_1.0 2.0.3
 semanage_user_iterate@LIBSEMANAGE_1.0 2.0.3
 semanage_user_iterate_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_key_create@LIBSEMANAGE_1.0 2.0.3
 semanage_user_key_extract@LIBSEMANAGE_1.0 2.0.3
 semanage_user_key_free@LIBSEMANAGE_1.0 2.0.3
 semanage_user_list@LIBSEMANAGE_1.0 2.0.3
 semanage_user_list_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_modify_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_query@LIBSEMANAGE_1.0 2.0.3
 semanage_user_query_local@LIBSEMANAGE_1.0 2.0.3
 semanage_user_set_mlslevel@LIBSEMANAGE_1.0 2.0.3
 semanage_user_set_mlsrange@LIBSEMANAGE_1.0 2.0.3
 semanage_user_set_name@LIBSEMANAGE_1.0 2.0.3
 semanage_user_set_prefix@LIBSEMANAGE_1.0 2.0.3
 semanage_user_set_roles@LIBSEMANAGE_1.0 2.0.3
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         libsemanage 2 libsemanage2 (>= 3.4)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # Triggers added by dh_makeshlibs/13.11.4
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2ea362321307c0161f295ab61c0f63e2  usr/lib/x86_64-linux-gnu/libsemanage.so.2
fc63278a03d71f983754ed6b34acad87  usr/share/doc/libsemanage2/changelog.Debian.amd64.gz
585e743120f17cdc8dcf2269f51642f8  usr/share/doc/libsemanage2/changelog.Debian.gz
4cf7d892a26f8b8a190c4e10aebcc241  usr/share/doc/libsemanage2/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A  .     ..  B  iterator.js    
observable.js   =&  iterator.js.map & observable.js.map                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bܳm  .   #  ..  n  lines.js   position.js "  use-pagination.js   *  
lines.d.ts  H+  
position.d.ts    , puse-pagination.d.ts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           K     MAO@wlmBZcOnvMfR"=$s#$2V:-TkDkNCLgo[V(Lʋ$p;Brxu| ,N30.wGnv6
4kkUB3JDNe|.|ORõ%I}h9^IYu<TG]`͓ +                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WnF}WЗ$iXM
$(9^K]P,Kَ!3gfΜ*9tX
-Oq/JBC?@mǨŏ%. [A]9oQ`QpH/ "(p(ύ֨ek+('N#j
,ݢpT|E- 畱hl4ㆳgp
%`F'
((sQ[Td܀p%|5dIAz8HA'Yϓ}(J.'PJ\ƋyNJX.+l}m<AUܔiSTvw^B.Tэ^܏Sx
jKy#kn۸(SbEamՖ# &gT
soŶ
ZyMFUᶏbEX?Tl>sOޔnEP*m
yAzB(teT/|~&6ĉo*vqrO9].-n*	1$?.Fzo͔)?HA)H75<ZYyBZR%N3ZDkJHFցK?*p
oW`Us662JYxk%`;vʾ1Ver1SB3tam.[%m]THo<:⪁B_;.'Bƨ45Qe[ZtlC_Ӈ7BKolF@2#u@W**l`L"^^PIE+T̵qtJ5WeYlB-9qHkb&MF	y{l=\z
sVe]NJGB|Qx~a4ӅM~&s"ȉ2}wO]HQ177yE<9o<0U^a-]W00KkB)nIS	KP[fT7[RG<@_;1osgs.utc@߁.i^(vNpO^]=@J!#&Qt4QfDX+[DiÑVr2]4^N$#ďXthbX8HH[~
Z
@]W y|YF6фz|;K4$ZFtjOs{BقTdxX3rf{$ q;;X.epţxaR2^&G!v{IF݇xR-huN29WU᡹Z}M'MB:cttw=umƄqyn]{Ӱ0q&x:F9EFx)qE;uY6A;x
J_+aTR!"nŲV+S`1ڭ%m蓨ƣoO޿6ф                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the Debian package for libsemanage, and it is built from sources
obtained from: http://www.nsa.gov/selinux/code/download5.cfm.

libsemanage is Copyright © 2004-2007 Tresys Technology, LLC
               Copyright © 2005 Red Hat, Inc.

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1

On Debian GNU/Linux systems, the complete text of the Lesser GNU General
Public License can be found in `/usr/share/common-licenses/LGPL'.

This package is maintained by Manoj Srivastava <srivasta@debian.org>.

The Debian specific changes are © 2005-2009, Manoj Srivastava
<srivasta@debian.org>, and distributed under the terms of the GNU
General Public License, version 2.

On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.

    A copy of the GNU General Public License is also available at
    <URL:http://www.gnu.org/copyleft/gpl.html>.  You may also obtain
    it by writing to the Free Software Foundation, Inc., 51 Franklin
    St, Fifth Floor, Boston, MA 02110-1301, USA.

Manoj Srivastava <srivasta@debian.org>
arch-tag: d4250e44-a0e0-4ee0-adb9-2bd74f6eeb27
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libsemanage.so.2
/usr/share
/usr/share/doc
/usr/share/doc/libsemanage2
/usr/share/doc/libsemanage2/changelog.Debian.amd64.gz
/usr/share/doc/libsemanage2/changelog.Debian.gz
/usr/share/doc/libsemanage2/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        o  .   &  ..  p  lines.js   position.js "  use-pagination.js   *  
lines.d.ts  I+  
position.d.ts   !, puse-pagination.d.ts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }  .     ..   
make-error.js                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             >#!/bin/sh

set -e

case "$1" in
configure)
	if ! getent group shadow | grep -q '^shadow:[^:]*:42'
	then
		groupadd -g 42 shadow || (
    			cat <<EOF
Group ID 42 has been allocated for the shadow group.  You have either
used 42 yourself or created a shadow group with a different ID.
Please correct this problem and reconfigure with ``dpkg --configure passwd''.

Note that both user and group IDs in the range 0-99 are globally
allocated by the Debian project and must be the same on every Debian
system.
EOF
    			exit 1
		)
	fi
    ;;
esac

# Run shadowconfig only on new installs
[ -z "$2" ] && shadowconfig on

# Automatically added by dh_installtmpfiles/13.11.4
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -x "$(command -v systemd-tmpfiles)" ]; then
		systemd-tmpfiles ${DPKG_ROOT:+--root="$DPKG_ROOT"} --create passwd.conf >/dev/null || true
	fi
fi
# End automatically added section
# Automatically added by dh_installdeb/13.11.4
dpkg-maintscript-helper rm_conffile /etc/cron.daily/passwd 1:4.7-2\~ -- "$@"
# End automatically added section


exit 0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       /etc/default/useradd
/etc/pam.d/chfn
/etc/pam.d/chpasswd
/etc/pam.d/chsh
/etc/pam.d/newusers
/etc/pam.d/passwd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #!/bin/sh
set -e
# Automatically added by dh_installdeb/13.11.4
dpkg-maintscript-helper rm_conffile /etc/cron.daily/passwd 1:4.7-2\~ -- "$@"
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #!/bin/sh
set -e
# Automatically added by dh_installdeb/13.11.4
dpkg-maintscript-helper rm_conffile /etc/cron.daily/passwd 1:4.7-2\~ -- "$@"
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 #!/bin/sh
set -e
# Automatically added by dh_installdeb/13.11.4
dpkg-maintscript-helper rm_conffile /etc/cron.daily/passwd 1:4.7-2\~ -- "$@"
# End automatically added section
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 0f8be4e3d176984b35707535e5cacdeb  sbin/shadowconfig
45c3fad178ad6c8d7fe44d6c0b10fdb3  usr/bin/chage
52ae61fc4835381d4e40f09d76d94b6d  usr/bin/chfn
b6005495d0869a9d7f657772dd423334  usr/bin/chsh
f8ecdc36c441243e976e24797636b4a1  usr/bin/expiry
69c42898b2eddbd38afa049b29c9eb4b  usr/bin/gpasswd
694dc265cea92c194afe8cfdbfb7aa9a  usr/bin/passwd
fd813ae6329b77cb59bac8961e613bf0  usr/lib/tmpfiles.d/passwd.conf
4bf9ffe76167c364f3fcf87cae1a8db6  usr/sbin/chgpasswd
8d773e23b5043106060ef4d6f94d777e  usr/sbin/chpasswd
5eaa9efc3457c92f86fdb1737ffa6e88  usr/sbin/cppw
23bb3247a7e379546ae0ebb5c01ea964  usr/sbin/groupadd
1db6b6e68bbfccafd587ede0377b329b  usr/sbin/groupdel
417dcf00f0727864a53b0084be338b46  usr/sbin/groupmems
36a67443f32e80041b6a8ce986375ee3  usr/sbin/groupmod
56918c4bfd2dee67f7c1519782a630ed  usr/sbin/grpck
3c73b8f79bf649d8c3b3392d9b8add78  usr/sbin/grpconv
c03ba62db148801a0060e24806619497  usr/sbin/grpunconv
0270598c45cd88fe286b41912366956d  usr/sbin/newusers
d6703c738100576223282ad275e8e67b  usr/sbin/pwck
9818cf1f05e78e6b4e7c565ce8805bd9  usr/sbin/pwconv
30de4815b61fff1019b01c52d125e436  usr/sbin/pwunconv
38d2d7955b665e3edf321de7e263e97f  usr/sbin/useradd
f8484e2f914665839034e2e27d1f2037  usr/sbin/userdel
d1e114e572241108bb0f3cedafa0d801  usr/sbin/usermod
b3edfbf42d9dbb2bc79d7995fc99a0b2  usr/sbin/vipw
ac3f76f2fa4d5af0fd55c8a7fb4550c7  usr/share/doc/passwd/NEWS.Debian.gz
217e2a968603dbdd1bfe81051076f132  usr/share/doc/passwd/README.Debian
02916812cbd2183a26d75b8645bea7b7  usr/share/doc/passwd/TODO.Debian
7b74b869cf015f41fe67be35d032ca4b  usr/share/doc/passwd/changelog.Debian.gz
76acb0f2c68a79b867f2ae5f3d7aac1f  usr/share/doc/passwd/changelog.gz
b421f2c7316ef9958c2d87a76a434119  usr/share/doc/passwd/copyright
42b6b6d065ae2c959e885fcfa47a9887  usr/share/doc/passwd/examples/passwd.expire.cron
7941e9f86fe7a6bb1a88f1f3e7279d75  usr/share/lintian/overrides/passwd
32f282e077a7b6be3ae89e7de510e221  usr/share/man/cs/man1/expiry.1.gz
06dcfb2131a2bf6faaea7c3fa96c9686  usr/share/man/cs/man1/gpasswd.1.gz
af948c95629a44c155adf8b04206fb35  usr/share/man/cs/man5/gshadow.5.gz
7ddfd4899afd2ca81e849b7bd39947a6  usr/share/man/cs/man5/passwd.5.gz
bc5d5f7c82ec707c4d1fd4f4b07dfe7b  usr/share/man/cs/man5/shadow.5.gz
fc64fb093ab0ca6bb3cf0f757398bdf2  usr/share/man/cs/man8/groupadd.8.gz
eb7bf5ef0bfffa1c638509bc4702e1e2  usr/share/man/cs/man8/groupdel.8.gz
86e218f9995d85ab2679fb8ea0a7e71f  usr/share/man/cs/man8/groupmod.8.gz
622261037661c45f3b7ae00e7ee91d8e  usr/share/man/cs/man8/grpck.8.gz
b417d08e085b5f8976e8506d9f2b0a1f  usr/share/man/cs/man8/vipw.8.gz
a52f95657f2bbaa17aecad196413fdbb  usr/share/man/da/man1/chfn.1.gz
e2d815ff860a09b5335c46b5f57a868e  usr/share/man/da/man5/gshadow.5.gz
2681d10eb66bca4124b9d9c003b1b417  usr/share/man/da/man8/groupdel.8.gz
c6ef9e919656cbc759a85d7cea433a84  usr/share/man/da/man8/vipw.8.gz
ee8b6be606de41889965dffbec7bd6a9  usr/share/man/de/man1/chage.1.gz
fb1a18c564148e8f1a3d32443c2cbb54  usr/share/man/de/man1/chfn.1.gz
eab4edfc57a1edc086ff1d33dd8b8b99  usr/share/man/de/man1/chsh.1.gz
f4df40d038540914e035e91e9c5e89af  usr/share/man/de/man1/expiry.1.gz
0f8674aeab895d981ae2068035e89d77  usr/share/man/de/man1/gpasswd.1.gz
19a641206dcc12d481e5b88d1424ba92  usr/share/man/de/man1/passwd.1.gz
d739dfd15eb9b15b356728c5a5dfc498  usr/share/man/de/man5/gshadow.5.gz
26f7d9e4ab9c4ce14ee49ff9c847633e  usr/share/man/de/man5/passwd.5.gz
9bc660640c12fc17b3af93349284d26d  usr/share/man/de/man5/shadow.5.gz
23761a8f721adc0babf645e46f5ba5bd  usr/share/man/de/man8/chgpasswd.8.gz
44874f63bb56876dda7b86b0ea3a0838  usr/share/man/de/man8/chpasswd.8.gz
fba59139be6504589253f8f9025e895b  usr/share/man/de/man8/groupadd.8.gz
757104a1da19478b0d13f52798c5d164  usr/share/man/de/man8/groupdel.8.gz
96fadf840c8717abaeff889b2880f8af  usr/share/man/de/man8/groupmems.8.gz
d0853ca6316ea03d3a5987c47db74c65  usr/share/man/de/man8/groupmod.8.gz
2f8af236a630f1a9a4bfeee380dbc0b9  usr/share/man/de/man8/grpck.8.gz
980fc0ee8ea5e02c930754b155716dbe  usr/share/man/de/man8/newusers.8.gz
4b35463efcd813a88b6b032594a29a8d  usr/share/man/de/man8/pwck.8.gz
d613ff624941ca9aea39024eb8d2d006  usr/share/man/de/man8/pwconv.8.gz
6c6124f80c37069e746f13c3055da163  usr/share/man/de/man8/useradd.8.gz
1d7f6889f0828055e530392ccbee07e0  usr/share/man/de/man8/userdel.8.gz
df22b547dfedd4aba3215df11625a87a  usr/share/man/de/man8/usermod.8.gz
8befb9e40bbb26cccaab5a8746733231  usr/share/man/de/man8/vipw.8.gz
cdd7f1e7de0c99b3ab83c6eeb5141f7c  usr/share/man/fi/man1/chfn.1.gz
6d97c554084e4ece8ff23fcea2f8d9e3  usr/share/man/fi/man1/chsh.1.gz
5d4b9c2a28133081a0a4c0f60218a33a  usr/share/man/fr/man1/chage.1.gz
18b22974caa62ec038f69d129d8e32fc  usr/share/man/fr/man1/chfn.1.gz
aa05c796951fea4a3e10fc300d262974  usr/share/man/fr/man1/chsh.1.gz
79e8b8fd19b33386e73d009f92d81fbe  usr/share/man/fr/man1/expiry.1.gz
072623990b209c183e1d732529e1b8d1  usr/share/man/fr/man1/gpasswd.1.gz
64db52d01dfdd75c1d87c647f89f7595  usr/share/man/fr/man1/passwd.1.gz
297f3f2e5ade02b88a427ee3bf6e8021  usr/share/man/fr/man5/gshadow.5.gz
8ae0376a22eec7eed3b7038d6a6c574b  usr/share/man/fr/man5/passwd.5.gz
6468eac333442e54eec5659fb84be6ce  usr/share/man/fr/man5/shadow.5.gz
6fb361e7270cbcf4efb788c721fee408  usr/share/man/fr/man5/subgid.5.gz
620c70d6f1b9d2c9fa915bb0bbf28bf8  usr/share/man/fr/man5/subuid.5.gz
781a225b13e7973a3935384a313555f5  usr/share/man/fr/man8/chgpasswd.8.gz
4bf30bdf33281b366db7d38cb1fa158f  usr/share/man/fr/man8/chpasswd.8.gz
fdb4c09d71f69f3673acdb7b8c4a0c48  usr/share/man/fr/man8/groupadd.8.gz
1f66e5a3966ef440df4e20f63de97195  usr/share/man/fr/man8/groupdel.8.gz
82a83df09deebe3aee6052ae6033c075  usr/share/man/fr/man8/groupmems.8.gz
e3469e6b40918e33a7782fcbade1a9d4  usr/share/man/fr/man8/groupmod.8.gz
8823dce27672381dc59e30e4600432a3  usr/share/man/fr/man8/grpck.8.gz
7ad135f3d50b2fcbaf2e0a303d81164a  usr/share/man/fr/man8/newusers.8.gz
1a302daa8bd3e7ed0f7309be4ecb98d3  usr/share/man/fr/man8/pwck.8.gz
c5d7381f3578dd984720e377659bafcd  usr/share/man/fr/man8/pwconv.8.gz
7d90e947d6dc6a8ca0ef53902e1b4906  usr/share/man/fr/man8/useradd.8.gz
36e74bd2d68e5f7ff82089ea11896ff9  usr/share/man/fr/man8/userdel.8.gz
f0ba30aafa8fd8e908a25f99723a7065  usr/share/man/fr/man8/usermod.8.gz
7079e27e95faabbf288b26ac3a4008c6  usr/share/man/fr/man8/vipw.8.gz
cd9577f2fa319ef721658da34ca2229d  usr/share/man/hu/man1/chsh.1.gz
cc09760fcf15c4f9aa4d71ba271dd158  usr/share/man/hu/man1/gpasswd.1.gz
3659573dc5712e91b49d83dba10e828b  usr/share/man/hu/man1/passwd.1.gz
ef1cf0a6ce799417645ddbabb7b74801  usr/share/man/hu/man5/passwd.5.gz
130b2d425143d1cfd5f1a596812a26a0  usr/share/man/id/man1/chsh.1.gz
2d4ee7afb32b617247f1da0f57257f5c  usr/share/man/id/man8/useradd.8.gz
a1f093de4013c29f522f15a07b015998  usr/share/man/it/man1/chage.1.gz
70f9f504d6ac981962d57575e6d1d38c  usr/share/man/it/man1/chfn.1.gz
c0552f90c88df1b9b1eb39af28caf5b5  usr/share/man/it/man1/chsh.1.gz
8aed7b1d483acd80d7325b8e62d6ac29  usr/share/man/it/man1/expiry.1.gz
7f871e1053d20b3cd62a8471f8bfbadd  usr/share/man/it/man1/gpasswd.1.gz
acd1f26a1b25861fcd4e41841f1b672a  usr/share/man/it/man1/passwd.1.gz
9d24be9c8a0ee8ff8344b1387f59cde8  usr/share/man/it/man5/gshadow.5.gz
eba2266bc787521f5119c97471a70e7f  usr/share/man/it/man5/passwd.5.gz
ea0bab198022d130038405755ceb2930  usr/share/man/it/man5/shadow.5.gz
5f77408eaac07d8bd20e00da308fccfe  usr/share/man/it/man8/chgpasswd.8.gz
ded56e17f1a8e4118f05d1ac5845808c  usr/share/man/it/man8/chpasswd.8.gz
293d45ceef01df6e9e366d2090bf54e6  usr/share/man/it/man8/groupadd.8.gz
6611db3ef6d7810bb211517c793370c8  usr/share/man/it/man8/groupdel.8.gz
166c0d61ec31e36703a9d4f8cbe6e24b  usr/share/man/it/man8/groupmems.8.gz
413d90c367ef07debfd00e2c9c3e1207  usr/share/man/it/man8/groupmod.8.gz
e413108633c3dfa2d3c42cd8bf2cddab  usr/share/man/it/man8/grpck.8.gz
caff20a3c0ab81c167013c01dc738d68  usr/share/man/it/man8/newusers.8.gz
3325d9785254e4269c700ce127c3abfb  usr/share/man/it/man8/pwck.8.gz
8bbc5e73c565129e239cba198faa8b84  usr/share/man/it/man8/pwconv.8.gz
699aff459387056dd433effa096f51d4  usr/share/man/it/man8/useradd.8.gz
15906733db65a213cf6c0ad4f4daba9d  usr/share/man/it/man8/userdel.8.gz
fdbf5e33673d94b028b4979c433baf84  usr/share/man/it/man8/usermod.8.gz
bfdc6f05eee80269d531139b975ed80f  usr/share/man/it/man8/vipw.8.gz
45b880408d37fce5b19b037a961fc43b  usr/share/man/ja/man1/chage.1.gz
6acb65b591cdbbaebbd38adee6bfb094  usr/share/man/ja/man1/chfn.1.gz
837d25ecc72d24c6c873c9befd6e9a49  usr/share/man/ja/man1/chsh.1.gz
472359d8d14861e36962108d9bd8a09f  usr/share/man/ja/man1/expiry.1.gz
9d5900b4d7744acccd25f9236e13eb31  usr/share/man/ja/man1/gpasswd.1.gz
b710a8e94b39e14003c9136c1b17a764  usr/share/man/ja/man1/passwd.1.gz
1a66d6ec9256812d21b1516b16b52115  usr/share/man/ja/man5/passwd.5.gz
28e4a9b0f5dae166aa69485fee46687f  usr/share/man/ja/man5/shadow.5.gz
97bbd349c936092d3e258105d17fb488  usr/share/man/ja/man8/chpasswd.8.gz
828c0b21f9294e6d24149f4f2b7239af  usr/share/man/ja/man8/groupadd.8.gz
7cf8d0a53eabee05d0415d11cbf77b33  usr/share/man/ja/man8/groupdel.8.gz
714f84f5083bb5f336b3233e1b894117  usr/share/man/ja/man8/groupmod.8.gz
41b6d757bfa7da2df6857b14c2c1f9b4  usr/share/man/ja/man8/grpck.8.gz
2616c9ce3abc19050aee6239219e2f74  usr/share/man/ja/man8/newusers.8.gz
039e3645601e82d946efc039762ecb5f  usr/share/man/ja/man8/pwck.8.gz
f86dfb5e2e4e79511a13d58c1d3f15f6  usr/share/man/ja/man8/pwconv.8.gz
a8b5e68fa9ba2929d3c8f5343e5b44ae  usr/share/man/ja/man8/useradd.8.gz
a5db7e21ff97d5cfc2762aeefc06bfe8  usr/share/man/ja/man8/userdel.8.gz
6f59ac26225899fd9ca4048b300d8be7  usr/share/man/ja/man8/usermod.8.gz
d1cc08014e0a78d3eaca83a177d4b344  usr/share/man/ja/man8/vipw.8.gz
ba9e918a0d165cc3be4240be8feec4a1  usr/share/man/ko/man1/chfn.1.gz
e2397bd1fff79c64caa7ee856b3828ed  usr/share/man/ko/man1/chsh.1.gz
14ef2fe516039c1dd91dc214569e504a  usr/share/man/ko/man5/passwd.5.gz
a15eda23f100c2da01d29cd5319600f3  usr/share/man/ko/man8/vipw.8.gz
bd4db8d5ca14b58d647b4eeaf8a1d026  usr/share/man/man1/chage.1.gz
810c0374bf93513048312a0ba975380e  usr/share/man/man1/chfn.1.gz
ba9e12cded055865779a53ea098b3a1e  usr/share/man/man1/chsh.1.gz
d376ac21bcd9ce1fbd689052e6bb2c7b  usr/share/man/man1/expiry.1.gz
e184ef0f0e41dab1e27fc5cb169a84a7  usr/share/man/man1/gpasswd.1.gz
d9f7816ac7ca9cef9f31bb23acf91cc3  usr/share/man/man1/passwd.1.gz
bffdc5ce40127c17d12a18469148105e  usr/share/man/man5/gshadow.5.gz
742daac7b23f5c25e73c44f112617ca7  usr/share/man/man5/passwd.5.gz
b9bcb8f46d63686fd96f32ca3c4381f7  usr/share/man/man5/shadow.5.gz
d91532ea0ccab82659e064808bcd9e0c  usr/share/man/man5/subgid.5.gz
39e83d0e7b3bfe432aa26ea1d59aa53e  usr/share/man/man5/subuid.5.gz
cadbf09bd10489f05fd6e8a80051fc76  usr/share/man/man8/chgpasswd.8.gz
bd390d1f781e6c6dc5da14787f8069cd  usr/share/man/man8/chpasswd.8.gz
2add2075b2a5787359502639c5afeddf  usr/share/man/man8/cppw.8.gz
295b90591dc3969b41b6199be74a497e  usr/share/man/man8/groupadd.8.gz
b036b25a68c15f54388aab4e8352837f  usr/share/man/man8/groupdel.8.gz
25d1d2047ce93c14a1dbb083101de787  usr/share/man/man8/groupmems.8.gz
7d982d086ee6c50d612e951696a8cbcb  usr/share/man/man8/groupmod.8.gz
5b42667e5ee2e90731b004e1e6470300  usr/share/man/man8/grpck.8.gz
7523112a637b5a10a85593310dcdd6d7  usr/share/man/man8/newusers.8.gz
0061882ef497dd410f7cb2fc68ec536a  usr/share/man/man8/pwck.8.gz
102c6ea2375e5c4b615c417412f69045  usr/share/man/man8/pwconv.8.gz
a8309d42a4560b5a6d8825375302efa3  usr/share/man/man8/useradd.8.gz
f6741944ae86a732c1612b0a4e5d988b  usr/share/man/man8/userdel.8.gz
5c650f510f75635595248358fec78fa0  usr/share/man/man8/usermod.8.gz
99d293ebd28ea07d10d4fae9648b245d  usr/share/man/man8/vipw.8.gz
1b3c624d98ffba8eeec8126f402d17f4  usr/share/man/pl/man1/chage.1.gz
090a1e2e0d5b52592195529c7d1d648d  usr/share/man/pl/man1/chsh.1.gz
e9588bf72d0ca2d5db681b30612c4ee5  usr/share/man/pl/man1/expiry.1.gz
73835a4dd567fc905a722e5f0237eeef  usr/share/man/pl/man8/groupadd.8.gz
6a888038f4f9d80b1efe882cc7ff7270  usr/share/man/pl/man8/groupdel.8.gz
c722ad00834ea6e9d8f3a0a0e4efa4f4  usr/share/man/pl/man8/groupmems.8.gz
318fbef23b0e47126cc9121077f4d113  usr/share/man/pl/man8/groupmod.8.gz
a5f77aa39508bc2c68be9736803e23f4  usr/share/man/pl/man8/grpck.8.gz
e025db15d4bab05bf104f350d99e4004  usr/share/man/pl/man8/userdel.8.gz
aeadf29eed1bf05dca5748e3b3cdee87  usr/share/man/pl/man8/usermod.8.gz
fd645c3e24858bfedd827a5db94da981  usr/share/man/pl/man8/vipw.8.gz
a5fccd5124a7b11e036642e1c996c1f6  usr/share/man/pt_BR/man1/gpasswd.1.gz
ed2dbc12df8c8e24574b08e705ae38fb  usr/share/man/pt_BR/man5/passwd.5.gz
e7ac9ee5d0dabbd42f0f05a42fbeb864  usr/share/man/pt_BR/man5/shadow.5.gz
f0a0c618a38733263ab1ee62b8cf7b90  usr/share/man/pt_BR/man8/groupadd.8.gz
31d9d92e0fddbde0f4b8b4a4e3e36a0a  usr/share/man/pt_BR/man8/groupdel.8.gz
53d7820c9890a8d4df44b075428b16ce  usr/share/man/pt_BR/man8/groupmod.8.gz
2a8e35ef5afe9e6cb1a8b77adb0882db  usr/share/man/ru/man1/chage.1.gz
cc2506cd9f7e2c6b187a68b76adc330c  usr/share/man/ru/man1/chfn.1.gz
c8842e0c1e7f209b36628efd2e4719b3  usr/share/man/ru/man1/chsh.1.gz
5e57c72c4f222596057d273e3e3601fc  usr/share/man/ru/man1/expiry.1.gz
77f37dcd9aac9e8bcab69b3081e190a8  usr/share/man/ru/man1/gpasswd.1.gz
32d7734981cb020f0790c34e205c4b1e  usr/share/man/ru/man1/passwd.1.gz
fd9b2f9a37457ea06774e912190c6bfa  usr/share/man/ru/man5/gshadow.5.gz
af4e1f42cf97823ffaae7aac39c15c33  usr/share/man/ru/man5/passwd.5.gz
1e139808ffda00687e595effe2c55c6b  usr/share/man/ru/man5/shadow.5.gz
b2cb2e50977a711f3910bd42e8366109  usr/share/man/ru/man8/chgpasswd.8.gz
3c676878b1e089c9f95d252c9710d18d  usr/share/man/ru/man8/chpasswd.8.gz
e3a0c0423595d1f55c14a01054b4a9fe  usr/share/man/ru/man8/groupadd.8.gz
b473e6b4e6b4ecd39c3227b41b607459  usr/share/man/ru/man8/groupdel.8.gz
b404812aed16b320d4f51e1befa54a7d  usr/share/man/ru/man8/groupmems.8.gz
70977bad3a907e0664ffa07cbdc6d5be  usr/share/man/ru/man8/groupmod.8.gz
cbeb61433a88e534b0355d4ff79bf8c2  usr/share/man/ru/man8/grpck.8.gz
c69fa3c480dbdce7426883881e8cecad  usr/share/man/ru/man8/newusers.8.gz
a7f13fef2c719bc68243270c241ef3ea  usr/share/man/ru/man8/pwck.8.gz
1348061e305db0d03f1e5ffcbc9da013  usr/share/man/ru/man8/pwconv.8.gz
e837abdafbf444d8e85871b18e3bdb26  usr/share/man/ru/man8/useradd.8.gz
454e9252346f3b657e5545384d158806  usr/share/man/ru/man8/userdel.8.gz
3dccf3c17c33dbcedf2d523c3d9b5f38  usr/share/man/ru/man8/usermod.8.gz
44e27bfd37e763d64f56050605d4a127  usr/share/man/ru/man8/vipw.8.gz
a12e968702721a022569d02c088d939b  usr/share/man/sv/man1/chage.1.gz
59970a9e08154c14902aacbba3be32c1  usr/share/man/sv/man1/chsh.1.gz
2a6f081db6c3d081a4bd2e291ed4ecf4  usr/share/man/sv/man1/expiry.1.gz
b177182634e31b0dd0edb5dc289b1aa5  usr/share/man/sv/man1/passwd.1.gz
db76c983ee58f91924a98ef0c1afd2c2  usr/share/man/sv/man5/gshadow.5.gz
cb9631ca2db5c2dccbd7b3d59248a385  usr/share/man/sv/man5/passwd.5.gz
09fdc09e9fbb00c883026cecfd0bc27e  usr/share/man/sv/man8/groupadd.8.gz
165b55c6334abc54c6ee91f9fef2e2f5  usr/share/man/sv/man8/groupdel.8.gz
ee692270636b22c7e1eefc8b20e7991c  usr/share/man/sv/man8/groupmems.8.gz
f0d620b42c4e7dde581e84670c7a27f8  usr/share/man/sv/man8/groupmod.8.gz
ade20fafc91c6477ae4ae330b11699c7  usr/share/man/sv/man8/grpck.8.gz
36542a9b5a661e715a9c08997e1be85d  usr/share/man/sv/man8/pwck.8.gz
4fd8493447da69cdf886c3d88ca4f386  usr/share/man/sv/man8/userdel.8.gz
65e7ceedeec12b824b1606f7c76311b9  usr/share/man/sv/man8/vipw.8.gz
db5b0e9acd62b9867ab71abc240a671b  usr/share/man/tr/man1/chage.1.gz
092b6d994a843c2f53c5b416116c02d2  usr/share/man/tr/man1/chfn.1.gz
e8230102e7eadc46bd59683ecdfa4950  usr/share/man/tr/man1/passwd.1.gz
2428e897e4bbb8a248d4bccececd480f  usr/share/man/tr/man5/passwd.5.gz
8b0bf0ca13494b6a05fd818d7acb5a50  usr/share/man/tr/man5/shadow.5.gz
c1120d1e238cbe8af71454cad431abe2  usr/share/man/tr/man8/groupadd.8.gz
8971051cfe5cb3d5ae022466114974b3  usr/share/man/tr/man8/groupdel.8.gz
80130b9dab895851c19d8162dc11bbf7  usr/share/man/tr/man8/groupmod.8.gz
3ea0c9eff706063a3f56cf1184827e7a  usr/share/man/tr/man8/useradd.8.gz
3f007966653fde5e170135e8014f6218  usr/share/man/tr/man8/userdel.8.gz
cb51a6be272c85ea04a22300d86bc32a  usr/share/man/tr/man8/usermod.8.gz
0a6c4efc9856dbdc5b024d747bbdbc9c  usr/share/man/uk/man1/chage.1.gz
c17e65b583f728ba0b3637cf747d2f1f  usr/share/man/uk/man1/chfn.1.gz
1b7b2d7a9e5a9ee7315e72eeb361027e  usr/share/man/uk/man1/chsh.1.gz
cf77a7edca1d4bfb948d850e86b3202b  usr/share/man/uk/man1/expiry.1.gz
3b37cf149f96d6d314b550924d80064f  usr/share/man/uk/man1/gpasswd.1.gz
103b3c975483d98ded3c715e754d304e  usr/share/man/uk/man1/passwd.1.gz
d059bfcf10b26634f932b4cd6fc35106  usr/share/man/uk/man5/gshadow.5.gz
ee1a9ee965b96ddf83dbdf22d0691ac6  usr/share/man/uk/man5/passwd.5.gz
88a5243167ac544d597b1e690dd8923b  usr/share/man/uk/man5/shadow.5.gz
b65bef31c5c1041bf4d9e363c263659e  usr/share/man/uk/man8/chgpasswd.8.gz
0ee4ef6543895682b629e433a6892114  usr/share/man/uk/man8/chpasswd.8.gz
fd46028b6dbc7e8b26f523ccd0c81927  usr/share/man/uk/man8/groupadd.8.gz
4f08ce41144990269a2a3f1cc58c8691  usr/share/man/uk/man8/groupdel.8.gz
5f76a215c1112f82a3054fb1dd08d74a  usr/share/man/uk/man8/groupmems.8.gz
a5d199198cda6a344ca02962b1ece0e0  usr/share/man/uk/man8/groupmod.8.gz
9b4b41922a883fe88c62ad63ccd55f3a  usr/share/man/uk/man8/grpck.8.gz
38c2d9ee66f3986f2647f1c68df635bb  usr/share/man/uk/man8/newusers.8.gz
12e6bf9e45ab925d7225b88e35b7d955  usr/share/man/uk/man8/pwck.8.gz
f0d728edbc43af772424046b1cd5702e  usr/share/man/uk/man8/pwconv.8.gz
51b8a6c6d67b129c9a169b426ff3e059  usr/share/man/uk/man8/useradd.8.gz
3da3dd974351a8ffcb82a6002f7c6e5a  usr/share/man/uk/man8/userdel.8.gz
adef80f0210d3b2d39312287619064a4  usr/share/man/uk/man8/usermod.8.gz
8a2b7867f3292924d6f2b61fe1faf0ea  usr/share/man/uk/man8/vipw.8.gz
bb865938c102cbb3816db37589926195  usr/share/man/zh_CN/man1/chage.1.gz
add601f86a4e2019b3af033fc59343c3  usr/share/man/zh_CN/man1/chfn.1.gz
2d0b127054aae6ba33827fdfc7be6f80  usr/share/man/zh_CN/man1/chsh.1.gz
d3c37bbc0f2c3d3de55ffc80205420e2  usr/share/man/zh_CN/man1/expiry.1.gz
f597f353bcd99448f0d809020db85445  usr/share/man/zh_CN/man1/gpasswd.1.gz
b349bca3096abe9f8eaf4474e2e2120f  usr/share/man/zh_CN/man1/passwd.1.gz
75dfee108654ac4f14efcb8358ab0d58  usr/share/man/zh_CN/man5/gshadow.5.gz
1c0dbca93c014d080d53866f8289400a  usr/share/man/zh_CN/man5/passwd.5.gz
5f5aedd51c6479ed0ce64eecd843d732  usr/share/man/zh_CN/man5/shadow.5.gz
2663563c89083750b1a069e75c9e427f  usr/share/man/zh_CN/man8/chgpasswd.8.gz
e35223cf20fbfa738b5471f7282ba17b  usr/share/man/zh_CN/man8/chpasswd.8.gz
78106e80c52501d871f3c7f9cf67bf40  usr/share/man/zh_CN/man8/groupadd.8.gz
77e78c184bede9178a0fbcb94998d7b6  usr/share/man/zh_CN/man8/groupdel.8.gz
d6894ea353a6745a9e7c6c275b4e0348  usr/share/man/zh_CN/man8/groupmems.8.gz
a31da8572e805634fc79b2140d844bf6  usr/share/man/zh_CN/man8/groupmod.8.gz
f524ace2ed7866a7073cc5049d1c3ae1  usr/share/man/zh_CN/man8/grpck.8.gz
4510fcaba766d1985f500e60fa2512c3  usr/share/man/zh_CN/man8/newusers.8.gz
539eb07aeeb4149d800ae8c470cc8286  usr/share/man/zh_CN/man8/pwck.8.gz
2650b50eb345f2099446641b54c23b17  usr/share/man/zh_CN/man8/pwconv.8.gz
df567cbb2936e22fdb5ace27f9a4ca03  usr/share/man/zh_CN/man8/useradd.8.gz
8d94184ec2f54b321bb6a8830820b5df  usr/share/man/zh_CN/man8/userdel.8.gz
f57dc952f286279c1d7614fbbbf76d75  usr/share/man/zh_CN/man8/usermod.8.gz
d72bd1604532880bdff14616a525e9ee  usr/share/man/zh_CN/man8/vipw.8.gz
71d394a444e1bae52ccd1c792f8c2621  usr/share/man/zh_TW/man1/chfn.1.gz
f82136c3c46150671bec51ac9abc73cd  usr/share/man/zh_TW/man1/chsh.1.gz
9b60e3cfec664af17c84a480a69baea7  usr/share/man/zh_TW/man5/passwd.5.gz
319ba0e21723fe95449dc2438e3e99d4  usr/share/man/zh_TW/man8/chpasswd.8.gz
b46ea9382a5033d7df9455078d0a483a  usr/share/man/zh_TW/man8/groupadd.8.gz
0bd97c379d4d95974b2ad6345dca423b  usr/share/man/zh_TW/man8/groupdel.8.gz
a8395accf3ef680940c289e5b094f407  usr/share/man/zh_TW/man8/groupmod.8.gz
04517ca2cb6a5791b2fffeacbdaaff3a  usr/share/man/zh_TW/man8/useradd.8.gz
2efacf471eed788ce8e970a037824bde  usr/share/man/zh_TW/man8/userdel.8.gz
e2afaad95d754384a370c781e82493d7  usr/share/man/zh_TW/man8/usermod.8.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .   `  ..   
netmask.js                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                l   .     ..  m  path.js                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ާFormat: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ncurses
Upstream-Contact: bug-ncurses@gnu.org
                  Thomas Dickey <dickey@his.com>
Source: https://invisible-mirror.net/archives/ncurses/

Files: *
Copyright: 1998-2017,2018 Free Software Foundation, Inc.
           1996-2020,2021 Thomas E. Dickey
           2001 Pradeep Padala
License: MIT/X11

Files: install-sh
Copyright: 1994 X Consortium
License: X11

Files: progs/tset.c ncurses/tinfo/read_termcap.c
Copyright: 1980,1991,1992,1993 The Regents of the University of California
License: BSD-3-clause

License: MIT/X11
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, distribute with modifications, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
 THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 .
 Except as contained in this notice, the name(s) of the above copyright
 holders shall not be used in advertising or otherwise to promote the
 sale, use or other dealings in this Software without prior written
 authorization.

License: X11
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to
 deal in the Software without restriction, including without limitation the
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
 TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 .
 Except as contained in this notice, the name of the X Consortium shall not
 be used in advertising or otherwise to promote the sale, use or other deal-
 ings in this Software without prior written authorization from the X Consor-
 tium.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /.
/lib
/lib/x86_64-linux-gnu
/lib/x86_64-linux-gnu/libtinfo.so.6.4
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libtic.so.6.4
/usr/share
/usr/share/doc
/usr/share/doc/libtinfo6
/usr/share/doc/libtinfo6/changelog.Debian.gz
/usr/share/doc/libtinfo6/changelog.gz
/usr/share/doc/libtinfo6/copyright
/lib/x86_64-linux-gnu/libtinfo.so.6
/usr/lib/x86_64-linux-gnu/libtic.so.6
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #  .     ..  #  internal%  ajax%  fetch   %  index.d.ts.map  %  	operators   %  testing %  	webSocket   * `
index.d.ts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    v+#  .   #  ..  #  	scheduler   #  ajax$  
observable  $  AnyCatcher.d.ts.map $  utilQ$   AsyncSubject.d.ts.map   U$  	operators   ^$   BehaviorSubject.d.ts.map$  testing $  config.d.ts.map p%   firstValueFrom.d.ts.map 9&  symbol  G&   lastValueFrom.d.ts.map  &   Notification.d.ts.map   & ( NotificationFactories.d.ts.map  &  Observable.d.ts.map &  Operator.d.ts.map   3'   ReplaySubject.d.ts.map  W'  	scheduled   p'  Scheduler.d.ts.map  '  Subject.d.ts.map'  Subscriber.d.ts.map '   Subscription.d.ts.map   *(  types.d.ts.map  8)  AnyCatcher.d.ts W)  AsyncSubject.d.ts   b)  BehaviorSubject.d.ts)  config.d.ts *  firstValueFrom.d.ts *  lastValueFrom.d.ts  +  Notification.d.ts   + $ NotificationFactories.d.ts  +  Observable.d.ts )+  
Operator.d.ts   u+  ReplaySubject.d.ts  +  Scheduler.d.ts  +  Subject.d.ts+  Subscriber.d.ts +  Subscription.d.ts   , 
types.d.ts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    o8{libsmartcols.so.1 libsmartcols1 #MINVER#
* Build-Depends-Package: libsmartcols-dev
 SMARTCOLS_2.25@SMARTCOLS_2.25 2.25
 SMARTCOLS_2.27@SMARTCOLS_2.27 2.27~rc1
 SMARTCOLS_2.28@SMARTCOLS_2.28 2.28~rc1
 SMARTCOLS_2.29@SMARTCOLS_2.29 2.29~rc2
 SMARTCOLS_2.30@SMARTCOLS_2.30 2.30.2
 SMARTCOLS_2.31@SMARTCOLS_2.31 2.31.1
 SMARTCOLS_2.33@SMARTCOLS_2.33 2.33
 SMARTCOLS_2.34@SMARTCOLS_2.34 2.34
 SMARTCOLS_2.35@SMARTCOLS_2.35 2.35
 SMARTCOLS_2.38@SMARTCOLS_2.38 2.38
 scols_cell_copy_content@SMARTCOLS_2.25 2.25
 scols_cell_get_alignment@SMARTCOLS_2.30 2.30.2
 scols_cell_get_color@SMARTCOLS_2.25 2.25
 scols_cell_get_data@SMARTCOLS_2.25 2.25
 scols_cell_get_flags@SMARTCOLS_2.28 2.28~rc1
 scols_cell_get_userdata@SMARTCOLS_2.25 2.25
 scols_cell_refer_data@SMARTCOLS_2.25 2.25
 scols_cell_set_color@SMARTCOLS_2.25 2.25
 scols_cell_set_data@SMARTCOLS_2.25 2.25
 scols_cell_set_flags@SMARTCOLS_2.28 2.28~rc1
 scols_cell_set_userdata@SMARTCOLS_2.25 2.25
 scols_cmpstr_cells@SMARTCOLS_2.25 2.25
 scols_column_get_color@SMARTCOLS_2.25 2.25
 scols_column_get_flags@SMARTCOLS_2.25 2.25
 scols_column_get_header@SMARTCOLS_2.25 2.25
 scols_column_get_json_type@SMARTCOLS_2.33 2.33
 scols_column_get_name@SMARTCOLS_2.38 2.38
 scols_column_get_name_as_shellvar@SMARTCOLS_2.38 2.38
 scols_column_get_safechars@SMARTCOLS_2.29 2.29~rc2
 scols_column_get_table@SMARTCOLS_2.29 2.29~rc2
 scols_column_get_whint@SMARTCOLS_2.25 2.25
 scols_column_get_width@SMARTCOLS_2.29 2.29~rc2
 scols_column_is_customwrap@SMARTCOLS_2.29 2.29~rc2
 scols_column_is_hidden@SMARTCOLS_2.27 2.28~rc1
 scols_column_is_noextremes@SMARTCOLS_2.25 2.25
 scols_column_is_right@SMARTCOLS_2.25 2.25
 scols_column_is_strict_width@SMARTCOLS_2.25 2.25
 scols_column_is_tree@SMARTCOLS_2.25 2.25
 scols_column_is_trunc@SMARTCOLS_2.25 2.25
 scols_column_is_wrap@SMARTCOLS_2.28 2.28~rc1
 scols_column_set_cmpfunc@SMARTCOLS_2.25 2.25
 scols_column_set_color@SMARTCOLS_2.25 2.25
 scols_column_set_flags@SMARTCOLS_2.25 2.25
 scols_column_set_json_type@SMARTCOLS_2.33 2.33
 scols_column_set_name@SMARTCOLS_2.38 2.38
 scols_column_set_safechars@SMARTCOLS_2.29 2.29~rc2
 scols_column_set_whint@SMARTCOLS_2.25 2.25
 scols_column_set_wrapfunc@SMARTCOLS_2.29 2.29~rc2
 scols_copy_column@SMARTCOLS_2.25 2.25
 scols_copy_line@SMARTCOLS_2.25 2.25
 scols_copy_symbols@SMARTCOLS_2.25 2.25
 scols_copy_table@SMARTCOLS_2.25 2.25
 scols_free_iter@SMARTCOLS_2.25 2.25
 scols_get_library_version@SMARTCOLS_2.25 2.25
 scols_init_debug@SMARTCOLS_2.25 2.25
 scols_iter_get_direction@SMARTCOLS_2.25 2.25
 scols_line_add_child@SMARTCOLS_2.25 2.25
 scols_line_alloc_cells@SMARTCOLS_2.25 2.25
 scols_line_free_cells@SMARTCOLS_2.25 2.25
 scols_line_get_cell@SMARTCOLS_2.25 2.25
 scols_line_get_color@SMARTCOLS_2.25 2.25
 scols_line_get_column_cell@SMARTCOLS_2.25 2.25
 scols_line_get_column_data@SMARTCOLS_2.38 2.38
 scols_line_get_ncells@SMARTCOLS_2.25 2.25
 scols_line_get_parent@SMARTCOLS_2.25 2.25
 scols_line_get_userdata@SMARTCOLS_2.25 2.25
 scols_line_has_children@SMARTCOLS_2.25 2.25
 scols_line_is_ancestor@SMARTCOLS_2.30 2.30.2
 scols_line_link_group@SMARTCOLS_2.34 2.34
 scols_line_next_child@SMARTCOLS_2.25 2.25
 scols_line_refer_column_data@SMARTCOLS_2.28 2.28~rc1
 scols_line_refer_data@SMARTCOLS_2.25 2.25
 scols_line_remove_child@SMARTCOLS_2.25 2.25
 scols_line_set_color@SMARTCOLS_2.25 2.25
 scols_line_set_column_data@SMARTCOLS_2.28 2.28~rc1
 scols_line_set_data@SMARTCOLS_2.25 2.25
 scols_line_set_userdata@SMARTCOLS_2.25 2.25
 scols_new_column@SMARTCOLS_2.25 2.25
 scols_new_iter@SMARTCOLS_2.25 2.25
 scols_new_line@SMARTCOLS_2.25 2.25
 scols_new_symbols@SMARTCOLS_2.25 2.25
 scols_new_table@SMARTCOLS_2.25 2.25
 scols_parse_version_string@SMARTCOLS_2.25 2.25
 scols_print_table@SMARTCOLS_2.25 2.25
 scols_print_table_to_string@SMARTCOLS_2.25 2.25
 scols_ref_column@SMARTCOLS_2.25 2.25
 scols_ref_line@SMARTCOLS_2.25 2.25
 scols_ref_symbols@SMARTCOLS_2.25 2.25
 scols_ref_table@SMARTCOLS_2.25 2.25
 scols_reset_cell@SMARTCOLS_2.25 2.25
 scols_reset_iter@SMARTCOLS_2.25 2.25
 scols_sort_table@SMARTCOLS_2.25 2.25
 scols_sort_table_by_tree@SMARTCOLS_2.30 2.30.2
 scols_symbols_set_branch@SMARTCOLS_2.25 2.25
 scols_symbols_set_cell_padding@SMARTCOLS_2.29 2.29~rc2
 scols_symbols_set_group_first_member@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_horizontal@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_last_child@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_last_member@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_middle_child@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_middle_member@SMARTCOLS_2.34 2.34
 scols_symbols_set_group_vertical@SMARTCOLS_2.34 2.34
 scols_symbols_set_right@SMARTCOLS_2.25 2.25
 scols_symbols_set_title_padding@SMARTCOLS_2.28 2.28~rc1
 scols_symbols_set_vertical@SMARTCOLS_2.25 2.25
 scols_table_add_column@SMARTCOLS_2.25 2.25
 scols_table_add_line@SMARTCOLS_2.25 2.25
 scols_table_colors_wanted@SMARTCOLS_2.25 2.25
 scols_table_enable_ascii@SMARTCOLS_2.25 2.25
 scols_table_enable_colors@SMARTCOLS_2.25 2.25
 scols_table_enable_export@SMARTCOLS_2.25 2.25
 scols_table_enable_header_repeat@SMARTCOLS_2.31 2.31.1
 scols_table_enable_json@SMARTCOLS_2.27 2.27~rc1
 scols_table_enable_maxout@SMARTCOLS_2.25 2.25
 scols_table_enable_minout@SMARTCOLS_2.35 2.35.1
 scols_table_enable_noencoding@SMARTCOLS_2.31 2.31.1
 scols_table_enable_noheadings@SMARTCOLS_2.25 2.25
 scols_table_enable_nolinesep@SMARTCOLS_2.28 2.28~rc1
 scols_table_enable_nowrap@SMARTCOLS_2.28 2.28~rc1
 scols_table_enable_raw@SMARTCOLS_2.25 2.25
 scols_table_enable_shellvar@SMARTCOLS_2.38 2.38
 scols_table_get_column@SMARTCOLS_2.25 2.25
 scols_table_get_column_separator@SMARTCOLS_2.25 2.25
 scols_table_get_line@SMARTCOLS_2.25 2.25
 scols_table_get_line_separator@SMARTCOLS_2.25 2.25
 scols_table_get_name@SMARTCOLS_2.29 2.29~rc2
 scols_table_get_ncols@SMARTCOLS_2.25 2.25
 scols_table_get_nlines@SMARTCOLS_2.25 2.25
 scols_table_get_stream@SMARTCOLS_2.25 2.25
 scols_table_get_symbols@SMARTCOLS_2.29 2.29~rc2
 scols_table_get_termforce@SMARTCOLS_2.29 2.29~rc2
 scols_table_get_termheight@SMARTCOLS_2.31 2.31.1
 scols_table_get_termwidth@SMARTCOLS_2.29 2.29~rc2
 scols_table_get_title@SMARTCOLS_2.28 2.28~rc1
 scols_table_group_lines@SMARTCOLS_2.34 2.34
 scols_table_is_ascii@SMARTCOLS_2.25 2.25
 scols_table_is_empty@SMARTCOLS_2.25 2.25
 scols_table_is_export@SMARTCOLS_2.25 2.25
 scols_table_is_header_repeat@SMARTCOLS_2.31 2.31.1
 scols_table_is_json@SMARTCOLS_2.27 2.27~rc1
 scols_table_is_maxout@SMARTCOLS_2.25 2.25
 scols_table_is_minout@SMARTCOLS_2.35 2.35.1
 scols_table_is_noencoding@SMARTCOLS_2.31 2.31.1
 scols_table_is_noheadings@SMARTCOLS_2.25 2.25
 scols_table_is_nolinesep@SMARTCOLS_2.29 2.29~rc2
 scols_table_is_nowrap@SMARTCOLS_2.29 2.29~rc2
 scols_table_is_raw@SMARTCOLS_2.25 2.25
 scols_table_is_shellvar@SMARTCOLS_2.38 2.38
 scols_table_is_tree@SMARTCOLS_2.25 2.25
 scols_table_move_column@SMARTCOLS_2.30 2.30.2
 scols_table_new_column@SMARTCOLS_2.25 2.25
 scols_table_new_line@SMARTCOLS_2.25 2.25
 scols_table_next_column@SMARTCOLS_2.25 2.25
 scols_table_next_line@SMARTCOLS_2.25 2.25
 scols_table_print_range@SMARTCOLS_2.28 2.28~rc1
 scols_table_print_range_to_string@SMARTCOLS_2.28 2.28~rc1
 scols_table_reduce_termwidth@SMARTCOLS_2.25 2.25
 scols_table_remove_column@SMARTCOLS_2.25 2.25
 scols_table_remove_columns@SMARTCOLS_2.25 2.25
 scols_table_remove_line@SMARTCOLS_2.25 2.25
 scols_table_remove_lines@SMARTCOLS_2.25 2.25
 scols_table_set_column_separator@SMARTCOLS_2.25 2.25
 scols_table_set_columns_iter@SMARTCOLS_2.35 2.35.1
 scols_table_set_default_symbols@SMARTCOLS_2.29 2.29~rc2
 scols_table_set_line_separator@SMARTCOLS_2.25 2.25
 scols_table_set_name@SMARTCOLS_2.27 2.27~rc1
 scols_table_set_stream@SMARTCOLS_2.25 2.25
 scols_table_set_symbols@SMARTCOLS_2.25 2.25
 scols_table_set_termforce@SMARTCOLS_2.29 2.29~rc2
 scols_table_set_termheight@SMARTCOLS_2.31 2.31.1
 scols_table_set_termwidth@SMARTCOLS_2.29 2.29~rc2
 scols_unref_column@SMARTCOLS_2.25 2.25
 scols_unref_line@SMARTCOLS_2.25 2.25
 scols_unref_symbols@SMARTCOLS_2.25 2.25
 scols_unref_table@SMARTCOLS_2.25 2.25
 scols_wrapnl_chunksize@SMARTCOLS_2.29 2.29~rc2
 scols_wrapnl_nextchunk@SMARTCOLS_2.29 2.29~rc2
                                                            libsmartcols 1 libsmartcols1 (>= 2.33)
udeb: libsmartcols 1 libsmartcols1-udeb (>= 2.33)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       # Triggers added by dh_makeshlibs/13.11.4
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5041a7e2d80567c99cb7376e6f2d62e7  usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0
6676e0208f6a50459ccd29f8be462665  usr/share/doc/libsmartcols1/changelog.Debian.gz
0bb7fd1ae3732779966184f543b8a91e  usr/share/doc/libsmartcols1/changelog.gz
353888f385cfb82eb97a693e78f3cc9b  usr/share/doc/libsmartcols1/copyright
6f2f795133f87309546de75b09dcc32b  usr/share/lintian/overrides/libsmartcols1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              	!  .     ..  
!  Rx.global.js#  tsconfig.base.json  #  tsconfig.cjs.json   #   tsconfig.cjs.spec.json  #  tsconfig.esm.json   #  tsconfig.esm5.json  # $ tsconfig.esm5.rollup.json   #  tsconfig.types.json #   tsconfig.types.spec.json!)  internal*  ajax*  fetch   *  index.ts*  	operators   *  testing * x	webSocket                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I`!  .     ..  !  rxjs.umd.js 
!  rxjs.umd.min.js E'  rxjs.umd.js.map F' rxjs.umd.min.js.map                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ސy+     [rFX!  cȲl+mMNN*C!nE2	΋';_H[ul&su*8J/ĳ#۵߅jzuTLlyE]U0ox}sQeU(\VBbVdؙe&Lx%JxZRNXVr++Ke%تUj6^zaBE*DU\VQYVOx=9[XxU6ü*bBF2bM_w犷٭)w\9|M_|!!I {.JEYe'JhbB>
t[ݪT'ϺȊJ}><ۼ1zꚡNܵvHe"ZJ|Ȃ@U#EH*-C Cݍ.j_c "JP|:7>f"9?qEF'`4C(ܙ	`v3
e1#lY,68oda}wlTԩ^rkgsB%
S$-uaHcN&Ka	]BM$]ȇ'MRqRWe-R%~=8\ 
4(VyeV/yQo
ǽS=A/#V*	Vq(9xu<}w;GkR̖Qn{*^Ge%j U(QrU>aPhj8!㳼Z=Ȳ_
gYYjM,X%YflFVxW9#׺"Z]4ʰq_2UVg85h&U)-(YcQLKUth+JEČһȣ:FȊU?X(BYƩ^~hTy'?[z?z;竄xOŬPQ/ d"WBdDef<G b/DQ=?Hn")g@dBb-[qM2YoL|"TY4&/{0#D	S=Xp	k%a2o !HdUaF*fڷ#и:*bl秛WKgu89_>Ier>J9ZPe>3pYJS[@A!%ߛydW`yJh^V 
øB9bֽX=KAʎ3U՝Մ<a6mLvkMoF_J<7@7>_pfY\4Α<@
{X$E&Rb/_Xn&$6X`0<{s3rYpV<%gߞ{&YqY
YqͪnK-{R:
}ǫ7]|y1Q\Ji&NӚW㓨Hb*)s Z o
욥6 $'Y3Jc5dD{I+-#g EȎ@poxTfHT AkxJŮL4iC<D憆 UoH>7$I<ot~}&,>&h|V!`+h8~:<d";lgT ]"`TC'> 
 D8ݡupIu$"SmB#`ȶx,qSrM|(|:Ry9ahB|ʆt9&$.!JR|Fad,N-vީa.ϟKPxL%)q [}G
'wG>-*˗
#g``QKFt8'yǸ:+o5jNJqƎ?u臊bfv8;`x8+ʈlH#B"A8"T3YǕ C	pBiyaݛ!3D:9UnP;-!3f_BC,(9@FK*łX	~ '4![SqspRŋL2G 	'dɣp3wcZiJL2y+gzo>6pzɁ-x$~Bߨ;J##dD2ph%g<
4|&s;
tM$Z^@ZRR5D .Q"c69MTe8*w5v}]^>HDYN<~_\?{1ڶͮ=D )\Ȃr5cƞJPI
e8J5z
}o/kW`YXñvmFG
vZGjtHP{"
Epm2^ҰZ$B&u*)\୫H㍐8> ܠ䥪̺D ,X`ohe q͎XYg
)	8y$aBZC0vA W/m]So;̉ cGv0F@g
w"~qr)j~1mSuxp@gETzeȢoLQ0" #
.!i9x-26AmL(	ŭwD˕Hδ? :^s1OS&Ey=#=M4PsW 1[kk>;7öfVHuco<͙HT1L@̚z![qacjR e
*q=%RK§6BQr3C;#kAh:"wiC@:sIg=
Ϗ`39@vQd= _!Pq*"`:kV\]5mW:R8P-Nc#K@kae56BYש|,ayI	ƚj/^+G˂X5qoS.3*zAQ>M)v۟c4^.0#.ϰE|z?,5'8gtlrdGvI{yro/(F.:IB
w2 vנƒ.34, þzN9%ỈÊ RSKU7XBT=\Q}X#G;|M|73绽G`\!vm-]&*_I;GzM!Jڤ-!x|؆M-^uHpN6ܽι	,RJK㵱b<hf6
ќr9W&vS90jm.ş*HxCQ
ޚsG.l ݺCybemۧB`;!M2%7ݭT	tҤH4d\8$?sʮi-uLƖ(:~6/Λ\!m.EȖ:MQn#4u"O`	ʣFܮޖ>ng];@mh"d`0iyeAs+WG[4}B~9@/A^Q}/K0=oJ:17QzAaחdDQq_"h"6ozU6>O!I$V
`7(knWzK ~
q*igr͂/Qr۷Fqo]&/꘾ ʽ3X4%̞)_iş_w}UΖY\Z#3otp)ɪLE^GH#ڂ{ztKbځ.U
1EgwD{a50$aݺQZ@={`;ea+?͛Eh``i[?ݾn!2KNxjG`)ȇj)^js2W*-eYTz-^ҧT056L]|*Z޴c,h=-an	ú㋕*O9**]YT}}etÏٛ$(R+`}OפUkQj99Mȥ@} ?]kU϶jVw8pV2EרN.
l>Mcw|xhʏ6L"~dqB­"42OkɅBsjg<"IMX@stD68_|d=6@)%?sZoxܥ8>;lj<.\4OW̉TYLgJ'ۡM!YiU·pl8+D괳=vMky+!s=#B0h.>/miH{O9Eg4"yKAj&@B |c	"Ǡ̖I>8;Ex{$Iŋ&fYƇzC.;<^/pP>FeXz@JubQHu=n8%5ơz5cꮝuUyKO6>aӑ&m2}͗e
3$f!q _ۥnl*BuMb!T=gbEW9B7 -j.hϩp}AA*K5J6t=T ỹZ Y]-i.iuZd"["U}:g<Ñ+(	M*oaUC3`)$+:BZE{i\#^}b?lkZSVLY3jĔZpٸw6}uqn姫K 
Z"-,6bMz.y2DB8`as]8`wŉ>(`6!_Ӄ_>9&7ϯ_5/\^+o> :j%-]ظ;ac8=Ysh_&&~=io~G
s?M\&)kv++fz6ͺOS)WXD3oSp6׹7r=o	rp:o}oRm.#^'*o5tA
g{ݴufLf 0
:"
r}9Xz w07 #˖ؚtW$_pHtq]_rҽ]SU}V/d1Ygɾ`ZTh'7*C5h.SI:~	dlo۬ye?Ӣ{sAwq8v{1a8BN
c$*-YNWB$qrImKll}\XH.u/mr?1PWwHr{Bί7w-I;nLNLח>7ٸnj&]M:&t'tLKL~`uCa4;^ϔL/F_~RAZGW-hw.BºxQOC\5ܽTȯYn767rmi[A=B>ԞABG`4N'q4}pi1H\vCǺ#x!#v{ at
:sKPa|:ݧ/p߳a	CO~m%)h́AW;ۖt&l9|J7/ͬiWuYȦD
ݾ:?MػS@5g֯gT3\\Zl hfpbZe$$0e5FpUzI@L8v! 5i95Rɪ{lܥ)]d:l\(BqZZ5]a˲qkfFY"臡ޏL-} I'_1Nh:أQY^2	@|VRPOb2+9ҰV
_mbG3UwV9F8RVyy7%{ȥifo02Ûnt`;k3'"ϫB[uAF/ͼl45Af`@T@^qP>eP_йeh@ogzD*Fxbopel8.[&L(ЏE0hCJzZUTKGCdC.1WLq7s7ApϘ;}dQ1
WfPX$| s$oȘ+|+bnGd2Ƶ)A<;arXwО ")!;Hϙyʂ|tu}oExNƻnM҉)4IǮtHD'KӁ^ͥW]?*8ЫA=$=Y0<t/q"@>2 +[')Rg%}kmW+̬ y>~z倚y*d␦)R:g< &ל*%
Y=]tUm~N>	 N)5wrrq3?7.%E
.r`T~QO^Ib~E-)/#^kP	
V9v_Yݎ*|܉ic]%)o`ƟNy"w(N~DC&.˧U	K
Űw%ó62v KXĒ.>߿wkq%l'M\JS];dQUSj<*0ԲXN
9
MVaĵw>-粠u-*-T
'c+}w;duOpȶTq83?-s:|$vǵ,px>`=ݹW0n04Cah^`\9rSFc"U]6*_2%N#Y3/8 .Lfb.M[meMYq 
z#2NC}z*Qg	'X?LWSx&8hc"h>نHiY4]';figZ{&	1ʨ-(ꞕ|,^T#
Z[@
uevX۲9m7p{Vgs0#~zVz:	-o$-n6ZfqN{e]CpsjLthj2;@$eLܹf|Ϗa^su{t`#*e2wAC
G1/ǺU5h#G:,Aܐ>҂?_j'ooIօ(>8i7BTJDPH."
O\hٲ*|zf lA5=NXzi*A:kPhjЊ-	˵LPsڷ4{SFe{.]g5:틉Kw\H^	7(ecA?sI7:Th"zi*jjdL5h$7tZɐK*߷	6Č$1V9R;0S*|3n{Wr(G%9GP$.VsTR]b{ɿN_`NM>}.28VMt|x66fRlQK=Q[G3JOAVdL;]eeD \YCe˽F )
QIv~Na,22xG`D)'Эkdp~CM1 Ip.Vͮm%jTW/O+U;W!GY                                                                                                                                                                                                                                                                NMU(K-*SH+)Q,./())(O,N-K/J/(M/N/-)9yHL=t2#=c=C. `0k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: util-linux
Upstream-Contact: util-linux@vger.kernel.org
Source: https://www.kernel.org/pub/linux/utils/util-linux/

Files: *
Copyright:      Michal Luscon <mluscon@redhat.com>
           1986 Gary S. Brown
           1990 Gordon Irlam (gordoni@cs.ua.oz.au)
           1991, 1992 Linus Torvalds
           1991-2004 Miquel van Smoorenburg
           1992  A. V. Le Blanc (LeBlanc@mcc.ac.uk)
           1992-1997 Michael K. Johnson, johnsonm@redhat.com
           1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
                 2003, 2004, 2005, 2008 Theodore Ts'o <tytso@mit.edu>
           1994 Kevin E. Martin (martin@cs.unc.edu)
           1994 Salvatore Valente <svalente@mit.edu>
           1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
           1994-2005 Jeff Tranter (tranter@pobox.com)
           1995, 1999, 2000 Andries E. Brouwer <aeb@cwi.nl>
           1997-2005 Frodo Looijaard <frodo@frodo.looijaard.name>
           1998 Danek Duvall <duvall@alumni.princeton.edu>
           1999 Andreas Dilger
           1999-2002 Transmeta Corporation
           1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.
           2000 Werner Almesberger
           2004-2006 Michael Holzt, kju -at- fqdn.org
           2005 Adrian Bunk
           2007-2020 Karel Zak <kzak@redhat.com>
           2007, 2011, 2012, 2016 SuSE LINUX Products GmbH
           2008 Cai Qian <qcai@redhat.com>
           2008 Hayden A. James (hayden.james@gmail.com)
           2008 James Youngman <jay@gnu.org>
           2008 Roy Peled, the.roy.peled  -at-  gmail.com
           2009 Mikhail Gusarov <dottedmag@dottedmag.net>
           2010, 2011, 2012 Davidlohr Bueso <dave@gnu.org>
           2010 Jason Borden <jborden@bluehost.com>A
           2010 Hajime Taira <htaira@redhat.com>
           2010 Masatake Yamato <yamato@redhat.com>
           2011 IBM Corp.
           2012 Andy Lutomirski <luto@amacapital.net>
           2012 Lennart Poettering
           2012 Sami Kerola <kerolasa@iki.fi>
           2012 Cody Maloney <cmaloney@theoreticalchaos.com>
           2012 Werner Fink <werner@suse.de>
           2013,2014 Ondrej Oprala <ooprala@redhat.com>
License: GPL-2+

Files: schedutils/ionice.c
Copyright: 2005 Jens Axboe <jens@axboe.dk>
License: GPL-2

Files: schedutils/chrt.c
       schedutils/taskset.c
Copyright: 2004 Robert Love <rml@tech9.net>
           2010 Karel Zak <kzak@redhat.com>
License: GPL-2

Files: disk-utils/raw.c
Copyright: 1999, 2000, Red Hat Software
License: GPL-2

Files: sys-utils/hwclock-parse-date.y
Copyright: Steven M. Bellovin <smb@research.att.com>
           Unknown Authors on Usenet
           1990 Rich $alz <rsalz@bbn.com>
           1990 Jim Berets <jberets@bbn.com>
           1999, 2004 Paul Eggert <eggert@twinsun.com>
License: GPL-3+

Files: sys-utils/nsenter.c
Copyright: 2012-2013 Eric Biederman <ebiederm@xmission.com>
License: GPL-2

Files: disk-utils/mkfs.minix.c
       disk-utils/mkswap.c
Copyright: 1991, 1992 Linus Torvalds
License: GPL-2

Files: lib/blkdev.c
       lib/loopdev.c
       lib/sysfs.c
       lib/ttyutils.c
       misc-utils/mcookie.c
       sys-utils/setsid.c
       text-utils/line.c
Copyright: n/a
License: public-domain

Files: login-utils/vipw.c
       misc-utils/cal.c
       misc-utils/kill.c
       misc-utils/logger.c
       misc-utils/look.c
       misc-utils/whereis.c
       sys-utils/renice.c
       term-utils/mesg.c
       term-utils/script.c
       term-utils/ttymsg.c
       term-utils/wall.c
       term-utils/write.c
       text-utils/col.c
       text-utils/colcrt.c
       text-utils/colrm.c
       text-utils/column.c
       text-utils/hexdump.c
       text-utils/hexdump.h
       text-utils/hexdump-conv.c
       text-utils/hexdump-display.c
       text-utils/hexdump-parse.c
       text-utils/rev.c
       text-utils/ul.c
Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
                The Regents of the University of California
           2014 Sami Kerola <kerolasa@iki.fi>
           2014 Karel Zak <kzak@redhat.com>
License: BSD-4-clause

Files: sys-utils/flock.c
Copyright: 2003-2005 H. Peter Anvin
License: MIT

Files: text-utils/pg.c
Copyright: 2000-2001 Gunnar Ritter
License: BSD-3-clause

Files: login-utils/login.c
Copyright: 1980, 1987, 1988 The Regents of the University of California.
           2011 Karel Zak <kzak@redhat.com>
License: BSLA

Files: login-utils/logindefs.c
Copyright: 2003, 2004, 2005 Thorsten Kukuk
License: BSD-3-clause

Files: libuuid/*
       libuuid/src/*
       libuuid/man/*
Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.
           1999 Andreas Dilger (adilger@enel.ucalgary.ca)
License: BSD-3-clause

Files: lib/procutils.c
       include/xalloc.h
Copyright: 2010, 2011 Davidlohr Bueso <dave@gnu.org>
License: LGPL-2+

Files: */colors.*
Copyright: 2012 Ondrej Oprala <ooprala@redhat.com>
           2012-2014 Karel Zak <kzak@redhat.com>
License: LGPL-2+

Files: login-utils/setpwnam.h
       login-utils/setpwnam.c
Copyright: 1994 Martin Schulze <joey@infodrom.north.de>
           1994 Salvatore Valente <svalente@mit.edu>
License: LGPL-2+

Files: libfdisk/*
       libfdisk/src/*
Copyright: 2007-2013 Karel Zak <kzak@redhat.com>
           2012 Davidlohr Bueso <dave@gnu.org>
License: LGPL-2.1+

Files: lib/cpuset.c
       */match.*
       lib/canonicalize.c
Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: */mbsalign.*
Copyright: 2009-2010 Free Software Foundation, Inc.
           2010-2013 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: */timeutils.*
Copyright: 2010 Lennart Poettering
License: LGPL-2.1+

Files: include/list.h
Copyright: 2008 Karel Zak <kzak@redhat.com>
           1999-2008 by Theodore Ts'o
License: LGPL

Files: libblkid/*
       libblkid/src/*
       libblkid/samples/*
       libblkid/src/partitions/*
       libblkid/src/superblocks/*
       libblkid/src/topology/*
Copyright: 1999, 2001 Andries Brouwer
           1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004
               Theodore Ts'o.
           2001 Andreas Dilger (adilger@turbolinux.com)
           2004-2008 Kay Sievers <kay.sievers@vrfy.org>
           2008-2013 Karel Zak <kzak@redhat.com>
           2009 Bastian Friedrich <bastian.friedrich@collax.com>
           2009 Corentin Chary <corentincj@iksaif.net>
           2009 Mike Hommey <mh@glandium.org>
           2009 Red Hat, Inc.
           2009-2010 Andreas Dilger <adilger@sun.com>
           2010 Andrew Nayenko <resver@gmail.com>
           2010 Jeroen Oortwijn <oortwijn@gmail.com>
           2010 Jiro SEKIBA <jir@unicus.jp>
           2011 Philipp Marek <philipp.marek@linbit.com>
           2012 Milan Broz <mbroz@redhat.com>
           2013 Alejandro Martinez Ruiz <alex@nowcomputing.com>
           2013 Eric Sandeen <sandeen@redhat.com>
           2013 Rolf Fokkens <rolf@fokkens.nl>
           2013 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
License: LGPL-2.1+

Files: include/cpuset.h
       lib/randutils.c
Copyright: *unknown*
License: LGPL

Files: misc-utils/blkid.c
Copyright: 2001 Andreas Dilger
License: LGPL

Files: libmount/*
       libmount/src/*
Copyright: 2008-2012 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: libmount/python/*
Copyright: 2013, Red Hat, Inc.
License: LGPL-3+

Files: libsmartcols/*
Copyright:  2009-2014 Karel Zak <kzak@redhat.com>
            2014 Ondrej Oprala <ooprala@redhat.com>
License: LGPL-2.1+

Files: debian/*
Copyright:           Guy Maor <maor@debian.org>
                     Sean 'Shaleh' Perry <shaleh@debian.org>
                     Adrian Bunk <bunk@stusta.de>
                     LaMont Jones <lamont@debian.org>
           1996-2003 Martin Mitchell (martin@debian.org)
           2008-2012 Frank Lichtenheld (djpig@debian.org)
           2014      Andreas Henriksson <andreas@fatal.se>
           2017-2020 Michael Biebl <biebl@debian.org>
           2019      Petter Reinholdtsen <pere@debian.org>
           2017-2020 Chris Hofstaedtler <zeha@debian.org>
License: GPL-2+

Files: debian/po/*
Copyright:           Aiet Kolkhi <aietkolkhi@gmail.com>
                     Anton Gladky <gladky.anton@gmail.com>
                     Arief S F (arief@gurame.fisika.ui.ac.id>
                     Armin Beširović <armin@linux.org.ba>
                     astur <malditoastur@gmail.com>
                     Axel Bojer <axelb@skolelinux.no>
                     Bart Cornelis <cobaco@skolelinux.no>
                     Bartosz Fe�ski <fenio@o2.pl>
                     Basil Shubin <bashu@surgut.ru>
                     Baurzhan Muftakhidinov <baurthefirst@gmail.com>
                     Bjorn Steensrud <bjornst@powertech.no>
                     Claus Hindsgaul <claus_h@image.dk>
                     Clytie Siddall <clytie@riverland.net.au>
                     Dafydd Tomos <l10n@da.fydd.org>
                     Damyan Ivanov <dam@modsoftsys.com>
                     Daniel Franganillo <dfranganillo@gmail.com>
                     Daniel Nylander <po@danielnylander.se>
                     Danishka Navin <danishka@gmail.com>
                     Dauren Sarsenov <daur88@inbox.ru>
                     Dominik Zablotny <dominz@wp.pl>
                     Dr.T.Vasudevan <agnihot3@gmail.com>
                     Eddy Petrisor <eddy.petrisor@gmail.com>
                     Eder L. Marques <frolic@debian-ce.org>
                     Elian Myftiu <elian.myftiu@gmail.com>
                     Emmanuel Galatoulas <galas@tee.gr>
                     Esko Arajärvi <edu@iki.fi>
                     Frank Lichtenheld <djpig@debian.org>
                     Frédéric Bothamy <frederic.bothamy@free.fr>
                     Gabor Burjan <buga@buvoshetes.hu>
                     George Papamichelakis <george@step.gr>
                     Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
                     Håvard Korsvoll <korsvoll@gmail.com>
                     Hideki Yamane <henrich@samba.gr.jp>
                     Hleb Rubanau <g.rubanau@gmail.com>
                     I Gede Wijaya S <gwijayas@yahoo.com>
                     Ivan Masár <helix84@centrum.sk>
                     Jacobo Tarrio <jtarrio@debian.org>
                     Jamil Ahmed <jamil@ankur.org.bd>
                     Janos Guljas <janos@resenje.org>
                     Jordi Mallach <jordi@debian.org>
                     Josip Rodin <joy+ditrans@linux.hr>
                     Karolina Kalic <karolina@resenje.org>
                     Kartik Mistry <kartik.mistry@gmail.com>
                     Kęstutis Biliūnas <kebil@kaunas.init.lt>
                     Kevin Scannell <kscanne@gmail.com>
                     Khoem Sokhem <khoemsokhem@khmeros.info>
                     Klaus Ade Johnstad <klaus@skolelinux.no>
                     Knut Yrvin <knuty@skolelinux.no>
                     Konstantinos Margaritis <markos@debian.org>
                     Kostas Papadimas <pkst@gnome.org>
                     Kumar Appaiah <a.kumar@alumni.iitm.ac.in>
                     Lior Kaplan <kaplan@debian.org>
                     Luiz Portella <lfpor@lujz.org>
                     Mallikarjuna <Mallikarjunasj@gmail.com>
                     Mert Dirik <mertdirik@gmail.com>
                     Milo Casagrande <milo@ubuntu.com>
                     Ming Hua <minghua@ubuntu.com>
                     Miroslav Kure <kurem@debian.cz>
                     Mouhamadou Mamoune Mbacke <mouhamadoumamoune@gmail.com>
                     Nabin Gautam <nabin@mpp.org.np>
                     Ossama M. Khayat <okhayat@yahoo.com>
                     Ovidiu Damian <deelerious@gmail.com>
                     Parlin Imanuel Toh <parlin_i@yahoo.com>
                     Pavel Piatruk <berserker@neolocation.com>
                     Piarres Beobide <pi@beobide.net>
                     Praveen|പ്രവീണ്‍ A|എ <pravi.a@gmail.com>
                     Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
                     Sahran <Sahran.ug@gmail.com>
                     Sampada Nakhare <sampadanakhare@gmail.com>
                     Setyo Nugroho <setyo@gmx.net>
                     Simão Pedro Cardoso <pthell@gmail.com>
                     Stefano Melchior <stefano.melchior@openlabs.it>
                     Sunjae Park <darehanl@gmail.com>
                     Sveinn í Felli <sveinki@nett.is>
                     Tetralet <tetralet@gmail.com>
                     Theppitak Karoonboonyanan <thep@linux.thai.net>
                     Tshewang Norbu <bumthap2006@hotmail.com>
                     Vahid Ghaderi <vahid_male1384@yahoo.com>
                     Vanja Cvelbar <cvelbar@gmail.com>
                     Veeven <veeven@gmail.com>
                     Vikram Vincent <vincentvikram@gmail.com>
                     Yoppy Hidayanto <yoppy.hidayanto@gmail.com>
License: GPL-2+


License: public-domain
 The files tagged with this license contains the following paragraphs:
 .
 No copyright is claimed.  This code is in the public domain; do with
 it what you wish.
 .
 Written by Karel Zak <kzak@redhat.com>

License: GPL-2
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License, v2, as
 published by the Free Software Foundation
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-3+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 3 can be found in `/usr/share/common-licenses/GPL-3'.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
 1) Redistributions of source code must retain the above copyright notice,
 this list of conditions and the following disclaimer.
 .
 2) Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following disclaimer in the documentation
 and/or other materials provided with the distribution.
 .
 3) Neither the name of the ORGANIZATION nor the names of its contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.

License: BSD-4-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    This product includes software developed by the University of
    California, Berkeley and its contributors.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSLA
 Redistribution and use in source and binary forms are permitted
 provided that the above copyright notice and this paragraph are
 duplicated in all such forms and that any documentation,
 advertising materials, and other materials related to such
 distribution and use acknowledge that the software was developed
 by the University of California, Berkeley.  The name of the
 University may not be used to endorse or promote products derived
 from this software without specific prior written permission.
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

License: LGPL
 This file may be redistributed under the terms of the
 GNU Lesser General Public License.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License can be found in ‘/usr/share/common-licenses/LGPL’.

License: LGPL-2+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation, either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 The complete text of the GNU Lesser General Public License
 can be found in /usr/share/common-licenses/LGPL-2 file.

License: LGPL-2.1+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation; either version 2.1, or (at your option)
 any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public License along
 with this program; if not, write to the Free Software Foundation,
 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’.

License: LGPL-3+
 This package is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 3 of the License, or (at your option) any later version.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License can be found in "/usr/share/common-licenses/LGPL-3".

License: MIT
 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation files
 (the "Software"), to deal in the Software without restriction,
 including without limitation the rights to use, copy, modify, merge,
 publish, distribute, sublicense, and/or sell copies of the Software,
 and to permit persons to whom the Software is furnished to do so,
 subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           libsmartcols1: missing-depends-on-sensible-utils sensible-pager [usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0
/usr/share
/usr/share/doc
/usr/share/doc/libsmartcols1
/usr/share/doc/libsmartcols1/changelog.Debian.gz
/usr/share/doc/libsmartcols1/changelog.gz
/usr/share/doc/libsmartcols1/copyright
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/libsmartcols1
/usr/lib/x86_64-linux-gnu/libsmartcols.so.1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     !a @Q@@ @@@ @Ƞ Q@͠!b @Q@Π!c @Q@Ϡ!d @Q@Р!e @Q@Ѡ!f @Q@@@ @@DQ@+Q@'Q@#Q@Q@Q@@@ @u??w@@@@
 b+Caml_string fV!x @	Q@@	@@ @!a @	 Q@@ @@@ @&Q@	!b @	Q@	!c @	Q@	!d @	Q@	!e @	Q@	!f @	Q@	@@ @	@QDQ@	+Q@	'Q@	#Q@	Q@	Q@	 @@ @	'	x@@	zA3AW@@
s c#Int g	
@@ @	.!x @	5Q@	/!y @	7Q@	0@@ @	3UQ@	8@
W@@ @	9!a @	@Q@	:@ @	;@@ @	>Q@	B!b @	QQ@	C!c @	SQ@	D!d @	UQ@	E!e @	WQ@	F!f @	YQ@	G@@ @	N@ɠSQ@	Z+Q@	['Q@	\#Q@	]Q@	^Q@	_@@ @	f	{AXAZ	~BB/@@
 d%Int32 h	@@ @	m7!x @	tQ@	n!y @	vQ@	o@@ @	r͠Q@	w@
U@@ @	x!a @	Q@	y@ @	z@@ @	}Q@	!b @	Q@	!c @	Q@	!d @	Q@	!e @	Q@	!f @	Q@	@@ @	@ASQ@	+Q@	'Q@	#Q@	Q@	Q@	@@ @	

B0B2
BC
@@c e)Nativeint i	@@ @	!x @	Q@	!y @	Q@	@@ @	EQ@	@
@@ @	!a @	Q@	@ @	@@ @	Q@	!b @	Q@	!c @	Q@	 !d @	Q@	à!e @	Q@	Ġ!f @	Q@	@@ @	@SQ@	ؠ+Q@	٠'Q@	ڠ#Q@	۠Q@	ܠQ@	@@ @	
CC

CC@@ f%Int64 j
u@@ @		'!x @	Q@	!y @	Q@	@@ @	Q@	@A@@ @	!a @	Q@	@ @	@@ @	Q@	!b @
Q@
 !c @
Q@
!d @
Q@
!e @
Q@
!f @
Q@
@@ @
@1SQ@
+Q@
'Q@
#Q@
Q@
Q@
@@ @
#
CC
DD@@S g%Float k	@@ @
*	!x @
1Q@
+!y @
3Q@
,@@ @
/	5Q@
4@+@@ @
5!a @
<Q@
6@ @
7@@ @
:~Q@
>!b @
MQ@
?!c @
OQ@
@!d @
QQ@
A!e @
SQ@
B!f @
UQ@
C@@ @
J@SQ@
V+Q@
W'Q@
X#Q@
YQ@
ZQ@
[@@ @
brDDsE~E@@ h$Bool l
!x @
sQ@
i@@@ @
j!a @
qQ@
k@ @
l@@ @
oQ@
t!b @
Q@
u!c @
Q@
v!d @
Q@
w!e @
Q@
x!f @
Q@
y@@ @
@
DQ@
+Q@
'Q@
#Q@
Q@
Q@
@@ @
EEF-FQ@@
/ i%Flush m-!a @
Q@
!b @
Q@
!c @
Q@
!d @
Q@
!e @
Q@
!f @
Q@
@@ @
@\/Q@
+Q@
'Q@
#Q@
Q@
Q@
@@ @
İ%FRFT&FF@@
~ j.String_literal n
9@@ @
ˠ!a @
Q@
̠!b @
Q@
͠!c @
Q@
Π!d @
Q@
Ϡ!e @
Q@
Р!f @
Q@
@@ @
@/Q@
+Q@
'Q@
#Q@
Q@
Q@
@@ @
yFFzGZG~@@
 k,Char_literal o
@@ @
ՠ!a @Q@
!b @	Q@
!c @Q@
!d @
Q@
!e @Q@
!f @Q@
@@ @@	/Q@+Q@'Q@#Q@Q@Q@@@ @GGGH@@& l*Format_arg p@@ @%Ӡ!g @4Q@&!h @6Q@'!i @8Q@(!j @:Q@)!k @<Q@*!l @>Q@+@@ @2	X!a @MQ@?!b @OQ@@!c @QQ@A!d @SQ@B!e @UQ@C!f @WQ@D@@ @K@	@	dQ@X`Q@Y\Q@ZXQ@[TQ@\PQ@]@@ @dGQ@e@ @fCQ@g?Q@h;Q@i7Q@j3Q@k@@ @r
hHH
iHI@@ m,Format_subst q@@ @)fmtty_rel MO!g @Q@!h @Q@!i @Q@!j @Q@!k @Q@!l @Q@"g2 @Q@!b @Q@!c @Q@"j2 @Q@!d @Q@!a @Q@@@ @
Q@+Q@'Q@Q@!e @Q@!f @Q@@@ @@
>@
o~Q@ƠzQ@ǠvQ@ȠrQ@ɠnQ@ʠjQ@@@ @fQ@@ @ԠbQ@ՠ^Q@֠ZQ@נ7Q@ؠ3Q@@@ @II IJ@@x n%Alpha r
v!a @Q@!b @Q@!c @Q@!d @Q@!e @Q@!f @Q@@@ @@
@@,Q@@!x @Q@/Q@@ @	@ @
@
AQ@@ @@ @
1Q@-Q@)Q@@@ @|JOJQ}JJ@@ o%Theta s
Ӡ!a @.Q@ !b @0Q@!!c @2Q@"!d @4Q@#!e @6Q@$!f @8Q@%@@ @,@@@,Q@9'Q@:@ @;7Q@<@ @='Q@>#Q@?Q@@@@ @GJJKfK@@( p.Formatting_lit t@@ @N+!a @]Q@O!b @_Q@P!c @aQ@Q!d @cQ@R!e @eQ@S!f @gQ@T@@ @[@Z/Q@h+Q@i'Q@j#Q@kQ@lQ@m@@ @t#KK$L<L`@@| q.Formatting_gen u.formatting_gen KO"a1 @Q@{!b @Q@|!c @Q@}"d1 @Q@~"e1 @Q@"f1 @Q@@@ @Q@+Q@'Q@Q@"e2 @Q@"f2 @Q@@@ @@ʠNQ@JQ@FQ@BQ@Q@Q@@@ @LaLcLM)@@ r&Reader v!a @Q@!b @Q@!c @Q@!d @Q@!e @Q@!f @Q@@@ @@@!x @Q@7Q@@ @נ3Q@ؠ/Q@٠@@
@ @/Q@@ @ܠ+Q@ݠ'Q@@@ @MPMRMM@@G s-Scan_char_set w"@@ @@@ @O!a @Q@!b @
 Q@!c @
Q@!d @
Q@!e @
Q@!f @
Q@@@ @@~@A@@ @
	5Q@
@ @
1Q@
-Q@

)Q@
%Q@
!Q@
@@ @
MMMNN}N@@ t0Scan_get_counter x@@ @
!a @
-Q@
!b @
/Q@
 !c @
1Q@
!!d @
3Q@
"!e @
5Q@
#!f @
7Q@
$@@ @
+@ؠ@@@ @
85Q@
9@ @
:1Q@
;-Q@
<)Q@
=%Q@
>!Q@
?@@ @
FNNO'OR@@  u.Scan_next_char y!a @
[Q@
M!b @
]Q@
N!c @
_Q@
O!d @
aQ@
P!e @
cQ@
Q!f @
eQ@
R@@ @
Y@
-@@@ @
f5Q@
g@ @
h1Q@
i-Q@
j)Q@
k%Q@
l!Q@
m@@ @
tOSOUOO@@U v-Ignored_param z
&!a @
Q@
{!b @
Q@
|!c @
Q@
}!d @
Q@
~!y @
Q@
!x @
Q@
@@ @

Q@
+Q@
'Q@
Q@
!e @
Q@
!f @
Q@
@@ @
@
NQ@
JQ@
FQ@
BQ@
Q@
Q@
@@ @
jOOkPzP@@ w&Custom {!a @
Q@
!x @
Q@
!y @
Q@
@@ @
 @@@ @
Q@
@ @
ˠ
#Q@
͠!b @
Q@
Π!c @
Q@
Ϡ!d @
Q@
Р!e @
Q@
Ѡ!f @
Q@
@@ @
@@Q@
+Q@
'Q@
#Q@
Q@
Q@
@@ @
SSST@@1 x-End_of_format |@/!f @
Q@
!b @Q@
!c @Q@
!e @Q@
@@ @T0T2TDTh@@] y@@A@ OO OO@@@@@@@@@@n>>@@@@l K  8 "a1 @<"b1 @="c1 @>"d1 @?"e1 @@"f1 @A"a2 @B"b2 @C"c2 @D"d2 @E"e2 @F"f2 @G@L'Char_ty S"a1 @bQ@H"b1 @fQ@I"c1 @jQ@J"d1 @nQ@K"e1 @rQ@L"f1 @vQ@M"a2 @dQ@N"b2 @hQ@O"c2 @lQ@P"d2 @pQ@Q"e2 @tQ@R"f2 @xQ@S@@ @`@=@@@ @y_Q@z@ @{[Q@|WQ@}SQ@~OQ@KQ@@@@ @MQ@@ @IQ@EQ@AQ@=Q@9Q@@@ @,,--@@A P)String_ty T{"a1 @Q@"b1 @Q@"c1 @Q@"d1 @Q@"e1 @Q@"f1 @Q@"a2 @Q@"b2 @Q@"c2 @Q@"d2 @Q@"e2 @Q@"f2 @Q@@@ @@Ԡ@[@@ @_Q@@ @ՠ[Q@֠WQ@נSQ@ؠOQ@٠KQ@ڠ@s@@ @MQ@@ @ݠIQ@ޠEQ@ߠAQ@=Q@9Q@@@ @--..@@ Q&Int_ty U"a1 @Q@"b1 @Q@"c1 @Q@"d1 @"Q@"e1 @&Q@ "f1 @*Q@"a2 @Q@"b2 @Q@"c2 @ Q@"d2 @$Q@"e2 @(Q@"f2 @,Q@@@ @@k@@@ @-_Q@.@ @/[Q@0WQ@1SQ@2OQ@3KQ@4@@@ @5MQ@6@ @7IQ@8EQ@9AQ@:=Q@;9Q@<@@ @I..//@@o R(Int32_ty V"a1 @pQ@V"b1 @tQ@W"c1 @xQ@X"d1 @|Q@Y"e1 @Q@Z"f1 @Q@["a2 @rQ@\"b2 @vQ@]"c2 @zQ@^"d2 @~Q@_"e2 @Q@`"f2 @Q@a@@ @n@@@@ @_Q@@ @[Q@WQ@SQ@OQ@KQ@@/@@ @MQ@@ @IQ@EQ@AQ@=Q@9Q@@@ @//"00@@ S,Nativeint_ty W@"a1 @Q@"b1 @Q@"c1 @Q@"d1 @Q@"e1 @Q@"f1 @Q@"a2 @Q@"b2 @Q@"c2 @Q@"d2 @Q@"e2 @Q@"f2 @Q@@@ @@@@@ @_Q@@ @[Q@WQ@SQ@OQ@KQ@@@@ @MQ@@ @IQ@EQ@AQ@=Q@9Q@@@ @D#00E'11@@ T(Int64_ty Xנ"a1 @$Q@
"b1 @(Q@"c1 @,Q@"d1 @0Q@
"e1 @4Q@"f1 @8Q@"a2 @&Q@"b2 @*Q@"c2 @.Q@"d2 @2Q@"e2 @6Q@"f2 @:Q@@@ @"@0@A@@ @;_Q@<@ @=[Q@>WQ@?SQ@@OQ@AKQ@B@Y@@ @CMQ@D@ @EIQ@FEQ@GAQ@H=Q@I9Q@J@@ @W(11,22@@4 U(Float_ty Yn"a1 @~Q@d"b1 @Q@e"c1 @Q@f"d1 @Q@g"e1 @Q@h"f1 @Q@i"a2 @Q@j"b2 @Q@k"c2 @Q@l"d2 @Q@m"e2 @Q@n"f2 @Q@o@@ @|@Ǡ@J@@ @_Q@@ @[Q@WQ@SQ@OQ@KQ@@b@@ @MQ@@ @IQ@EQ@AQ@=Q@9Q@@@ @r-22s133@@ V'Bool_ty Z	"a1 @Q@"b1 @Q@"c1 @Q@"d1 @Q@"e1 @Q@ "f1 @Q@à"a2 @Q@Ġ"b2 @Q@Š"c2 @Q@Ơ"d2 @Q@Ǡ"e2 @Q@Ƞ"f2 @Q@@@ @@	^@@@ @_Q@@ @[Q@WQ@SQ@OQ@KQ@@@@ @MQ@@ @IQ@EQ@AQ@=Q@9Q@@@ @	233
644@@b W-Format_arg_ty [
!g @&Q@!h @(Q@!i @*Q@!j @,Q@!k @.Q@!l @0Q@@@ @$	ˠ"a1 @KQ@1"b1 @OQ@2"c1 @SQ@3"d1 @WQ@4"e1 @[Q@5"f1 @_Q@6"a2 @MQ@7"b2 @QQ@8"c2 @UQ@9"d2 @YQ@:"e2 @]Q@;"f2 @aQ@<@@ @I@
$@Q@bQ@cQ@dQ@e~Q@fzQ@g@@ @nqQ@o@ @pmQ@qiQ@reQ@saQ@t]Q@u@C*(&$" @@ @|eQ@}@ @~aQ@]Q@YQ@UQ@QQ@@@ @844>6P6d@@@ X/Format_subst_ty \
z!g @Q@!h @Q@!i @Q@!j @Q@!k @Q@!l @Q@"g1 @Q@"b1 @Q@"c1 @Q@"j1 @Q@"d1 @Q@"a1 @Q@@@ @
ӠYQ@ԠUQ@ՠQQ@֠MQ@נIQ@ؠEQ@٠"g2 @Q@ڠ"b2 @Q@۠"c2 @Q@ܠ"j2 @Q@ݠ"d2 @Q@ޠ"a2 @Q@@@ @MQ@lQ@ hQ@]Q@"e1 @!Q@"f1 @%Q@&Q@EQ@AQ@6Q@"e2 @#Q@	"f2 @'Q@
@@ @@M@BQ@(Q@)Q@*Q@+Q@,Q@-@@ @4Q@5@ @6Q@7Q@8Q@9QQ@:MQ@;@l*(&$" @@ @BQ@C@ @DQ@EQ@FQ@GUQ@HQQ@I@@ @V?6e6gH8:8N@@i Y(Alpha_ty ]"a1 @Q@i"b1 @Q@j"c1 @Q@k"d1 @Q@l"e1 @Q@m"f1 @Q@n"a2 @Q@o"b2 @Q@p"c2 @Q@q"d2 @Q@r"e2 @Q@s"f2 @Q@t@@ @@@@VQ@@!x @Q@YQ@@ @@ @@
kQ@@ @@ @[Q@WQ@SQ@@@LQ@@ IQ@@ @@ @@$[Q@@ @@ @KQ@GQ@CQ@@@ @K88O9a9@@
 Z(Theta_ty ^D"a1 @Q@ʠ"b1 @Q@ˠ"c1 @Q@̠"d1 @Q@͠"e1 @Q@Π"f1 @Q@Ϡ"a2 @Q@Р"b2 @Q@Ѡ"c2 @Q@Ҡ"d2 @Q@Ӡ"e2 @Q@Ԡ"f2 @Q@@@ @@@@VQ@QQ@@ @aQ@@ @QQ@ MQ@IQ@@@BQ@=Q@@ @MQ@@ @=Q@9Q@	5Q@
@@ @DP99ET::@@ [&Any_ty _נ"a1 @>Q@$"b1 @BQ@%"c1 @FQ@&"d1 @JQ@'"e1 @NQ@("f1 @RQ@)"a2 @@Q@*"b2 @DQ@+"c2 @HQ@,"d2 @LQ@-"e2 @PQ@."f2 @TQ@/@@ @<@
0@!x @~Q@UaQ@V@ @W]Q@XYQ@YUQ@ZQQ@[MQ@\@KQ@]@ @^GQ@_CQ@`?Q@a;Q@b7Q@c@@ @pU::Y;;@@2 \)Reader_ty `
l"a1 @Q@"b1 @Q@"c1 @Q@"d1 @Q@"e1 @Q@"f1 @Q@"a2 @Q@"b2 @Q@"c2 @Q@"d2 @Q@"e2 @Q@"f2 @Q@@@ @@
Š@!x @Q@aQ@@ @]Q@YQ@@@
@ @YQ@@ @UQ@QQ@@OQ@@ @KQ@GQ@@@
+@ @GQ@@ @CQ@?Q@@@ @ϰv\;;w`<=@@ ]1Ignored_reader_ty a	"a1 @Q@ޠ"b1 @Q@ߠ"c1 @ Q@"d1 @Q@"e1 @Q@"f1 @Q@"a2 @Q@"b2 @Q@"c2 @Q@"d2 @Q@"e2 @
Q@"f2 @Q@@@ @@bYQ@UQ@QQ@@@
!x @:Q@@ @WQ@@ @SQ@OQ@KQ@GQ@CQ@@@
@ @CQ@@ @?Q@;Q@@@ @,a==e=>@@h ^,End_of_fmtty b@"f1 @]Q@;"b1 @QQ@<"c1 @UQ@="d1 @YQ@>"f2 @_Q@?"b2 @SQ@@"c2 @WQ@A"d2 @[Q@B@@ @OYg>>Zi>Q>@@ _@@A@ OO OO OO OO@@@@@@@@@@@@@@@@u
,w,w@@@@ Jl  8 !a @!b @!c @!d @ !e @!!f @"@F@A!$Q@#"Q@$ Q@%Q@&Q@'Q@(
@@ @5 OO OO@@@@@@@@@@
,,,O,v@@@@ I
  8 !a @!b @!c @!d @ !e @à!f @@F(Open_tag Qb!a @Q@Š!b @Q@Ơ!c @Q@Ǡ!d @Q@Ƞ!e @Q@ɠ!f @Q@@@ @@
/Q@ޠ+Q@ߠ'Q@#Q@Q@Q@@@ @/**0++,@@ N(Open_box R!a @Q@!b @Q@!c @Q@!d @Q@!e @Q@!f @	Q@@@ @@;/Q@
+Q@'Q@#Q@
Q@Q@@@ @~+-+/+p+@@ O@@A@ OO OO@@@@@@@@@@ **@@@@ H)erase_rel @!a @H!b @I!c @J!d @K!e @L!f @M!g @N!h @O!i @P!j @Q!k @R!l @S@@ @V͠@<840,@@ @U@ @T@]b]j]b]s@@9 ,concat_fmttyD@r"g1 @9٠"b1 @9Π"c1 @9Ϡ"j1 @9ڠ"d1 @9Р"a1 @9͠"g2 @9۠"b2 @9Ԡ"c2 @9ՠ"j2 @9ܠ"d2 @9֠"a2 @9@@ @9@)>:1"e1 @9Ѡ"f1 @9Ҡ.*!"e2 @9נ"f2 @9@@ @9Ԡb^ZV JFB>@@ @9@ @9@ @9@[Cczc\Cczc@@*concat_fmt@!a @[!b @[!c @[!d @[!e @[!f @[@@ @[@ՠ !g @[!h @[@@ @[62.*@@ @[@ @[@ @[@siui}siui@@@MC@@AB@@A@@AB@@C@  , x mmmm@A	#CamlinternalFormatBasics.concat_fmtA@  @@  , h mmmm@
&*$Custom_'a>a@@a@ha@h]T@@a@h^V@@a@h_X@@a@hL^@@a@hM`@@a@h@@a@ha@h3B B R  8 @@@A@@@A@Uqq@@@@ Q0  8 @@@A@@@A@Y@@@@ T-  8 @@@A@@@A@\@@@@ W*  8 @@@A@@@A@_
@@@@ ZZ  8 @@@A@@@A@c@@@@ ^\  8 @@@A@@@A@g@@@@ b/  8 @@@A@@@A@j@@@@ e,  8 @@@A@@@A@m@@@@ h$fmt1c&@@ @\V@@ @\U@@ @\T@@ @\,@@ @\-@@ @\@@ @\@8wii9wij@@ $fmt2	=@@ @\@@ @\~@@ @\P@@ @\ |@@ @\à{@@ @\@@ @\@awijbwij@@   8 @@@A@@@A@ @@@ *$Custom_'x?a  8 @@@A@@@A@ @@@ %arity@
@@ @`@@ @``@@ @`@@ @`@~m{mm{m@@ S!fA@
@@ @`
@@ @`	@ @`@m{mm{m@@ T$restB
@@ @`|@@ @`
{@@ @`z@@ @`y@@ @`x@@ @`@@ @`@m{mm{m@@!U!@ME@@A7D@@B@@ABA@@-C@@AC@@a@@@AE@  , \!@A!E@  , 8!pppp@AA@!!@@  , ,!pppp@1$Ignored_param_'xka@@a@m+a@m@@a@m@@a@m1$Ignored_param_'yla@@a@m*a@m@@a@m!@@a@m"@@a@m$a@mH@B"  8 @@@A@@@A@!N@@@!P/  8 @@@A@@@A@!P@@@!R0#ignm@@ @b~@@ @b@@ @b@@ @b.@@ @bC@@ @b@@ @b}@ pp pp@@!th$restnQ@@ @b
@@ @b	@@ @bL@@ @b@@ @b@@ @b@@ @b@ =pp >pp@@!i!@@A@JD@@A)C@@BC@D@  ,  !@AU!	D@  , ! Lpnpr Mpnp@AA@!!@@  , 
! Qpnp@#$28ia@@aal@@a@l @@a@là@@a@lĠ@@a@lŠ@@a@l@@a@la@lB  8 @@@A@@@A@!@@@!-$restj̠'@@ @bGe@@ @bHd@@ @bIc@@ @bJb@@ @bKa@@ @bL@@ @bF@ pQpd pQpj@@!g@  8 @@@A@@@ @bEK@@ @bD@ @bC@@Aa!@@@!.@A!g@2C@@AB@C@  , 
"b@A9!C@  , 
" pp  ppP@A A@""@@  , 
" pp; ppO@`#$27fa@@aalZ@@a@l\@@a@l]@@a@l^@@a@l_@@a@l`@@a@lba@l|&B  8 @@@A@@@A@"4@@@"6+'counterg@@ @b
@ op
 op@@"@e$resth2@@ @b@@ @b@@ @b@@ @b@@ @b@@ @b@@ @b@!	op!
op@@"bf@  8 @@@A@@@ @bV@@ @b@ @b
@@Aa"l@@@"n,@A"i@=D@@Ad@Bc@5C@@AC@bD@  , 
"wq@nAG"s
D@  , 
"z!%oo!&oo@AtA@"x"w@@  , 
"!*oo!+oo@.#$26ba@@aakq@@a@ko@@a@km@@a@kk@@a@ki@@a@k@@a@ka@lBg  8 @@@A@@@A@"@@@"))width_optca@@ @a@!\oo!]oo@@"b(char_setdf@@ @a@!foo!goo@@"c$restek=@@ @aՠU@@ @a֠T@@ @aנS@@ @aؠR@@ @a٠Q@@ @a@@ @a@!oo!oo@@"d@q  8 @@@A@Z@@ @aa@@ @a@ @a@@Aa"@@@"*@A"@=D@@A@B@5C@@KE@@ABC@E@  , 
"~@AT"E@  , 
h"!mm!mm@AA@""@@  , 
`# !mm@#$10Da@@aai(@@aai)@@a@i*#$11Ea@@aai,@@a@i.@@a@i/@@a@i0a@iHB"$9Ca  8 @@@A@@@A@#.@@@#0%  8 @@@A@@@A@#0@@@#2  8 @@@A@@@A@#2@@@#4$restFE2@@ @`M@@ @`N@@ @`O/@@ @`P@@ @`Q@@ @`R@@ @`L@!mm!mm@@#VV@  8 @@@A@2@@ @`EW@@ @`D@ @`C@@Aa#a@@@#c@  8 @@@A@@@@ @`K@@ @`J@ @`IY@@ @`H@ @`G@@Aa#r@@@#t@AB#of@DC@@AB@eC@  , 
T#z@qAS%#vC@  , 
@#}"(qpqt")qpq@AwA@#{#z@@  , 
4#"-qpq".qpq@ՠ3$Formatting_gen_'f1ra@@a@ma@m֠v@@a@mt@@a@m3$Formatting_gen_'e1qa@@a@ma@mՠu@@a@ms@@a@m@@a@ma@nBp  8 @@@A@@@A@#@@@#1$  8 @@@A@@@A@#@@@#2*fmting_gens7M@@ @bL@@ @bK@@ @bJ@@ @b.@@ @bC@@ @b@@ @b@"qGq["qGqe@@#l$restt(Q@@ @bn@@ @bm@@ @bL@@ @bk@@ @bj@@ @b@@ @b@"qGqg"qGqk@@#m#d@ID@@A(C@@BC@D@  , 
($@AT#D@  , 
$"qq"qqF@AA@$$@@  , 
 $	"qq1"qqE@ܠ@@a@m@@a@m@@a@m@@a@m@@a@m@@a@m@@a@ma@m"B*fmting_lito@@ @b@"pp"pq@@$8j$restp@@ @b@@ @b@@ @b@@ @b@@ @b@@ @b@@ @b@#pq#pq@@$Zk$UL@1D@@A(C@@BC@MD@  , 	$b^@YA6$]D@  , 	$d#mZm^#mZmz@A^A@$b$a@@  , 	$i#mZmd@"$8<a@@aahH"$6:a@@aahK"$7;a@@aahJ\@@a@hLZ@@a@hMX@@a@hN@@a@hOa@hgBV  8 @@@A@@@A@$@@@$
  8 @@@A@@@A@$@@@$(  8 @@@A@@@A@$@@@$$rest=Ơ3@@ @_̠0@@ @_͠-@@ @_Π2@@ @_Ϡ1@@ @_Р0@@ @_@@ @_@#gmHmR#hmHmV@@$R@P  8 @@@A@@O@@ @_K@@ @_@ @_\@@ @_@ @_@@Aa$@@@$
@X  8 @@@A`@@ @_@@Aa$@@@$@X  8 @@@Ab@@ @_@@Aa$@@@$@ABC$ڰI@EC@@AB@C@  , 	$@AR&$C@  , 	$#m'm+#m'mG@AA@$$@@  , 	$#m'm1@t"$58a@@aagڠ"$25a@@aagޠ"$47a@@aagݠ@@a@gߠ@@a@g@@a@g@@a@ga@g
B  8 @@@A@@@A@%@@@%"$36a  8 @@@A@@@A@%!@@@%#  8 @@@A@@@A@%#@@@%%-  8 @@@A@@@A@%%@@@%'$rest98@@ @_5@@ @_2@@ @_@@ @_@@ @_@@ @_@@ @_@#mm#mm#@@%IQ@  8 @@@A@@T@@ @_@9@@ @_V@@ @_@ @_@ @_@	i@@ @_@ @_@ @_@@Aa%`@@@%b@e  8 @@@A@@ @_@@Aa%g@@@%i@e  8 @@@A@@ @_@@Aa%n@@@%p	@ABC%kb@MC@@AB@aC@  , 	%v@mA_.%rC@  , 	%y$$oPoT$%oPo@AsA@%w%v@@  , 	x%~$)oPon$*oPo@]0$Format_subst_'aVa@@a@ka@kKr@@a@kkp@@a@kl0$Format_subst_'dWa@@a@ka@kJq@@a@kno@@a@ko@@a@kra@kBu+  8 @@@A@@@A@%@@@%  8 @@@A@@@A@%@@@% #$19Xa  8 @@@A@@@A@%@@@%!#$20Ya  8 @@@A@@@A@%@@@%"#$21Za  8 @@@A@@@A@%@@@%##$22[a  8 @@@A@@@A@%@@@%$#$23\a  8 @@@A@@@A@%@@@%%#$24]a  8 @@@A@@@A@%@@@%&#$25^a  8 @@@A@@@A@%@@@%'#pad_@@ @a@$o)o;$o)o>@@%_%fmtty`/@@ @a0@@ @a1@@ @a2@@ @a3@@ @a4@@ @a5@@ @a@@ @a@@ @a@@ @a|@@ @a@@ @a@@ @a@$o)o@$o)oE@@&"`$resta@@ @a@@ @a@@ @a@@ @a@@ @a@@ @a@@ @a@$o)oG$o)oK@@&Da@  8 @@@A@e@@ @ad@@ @ac@@ @ab@@ @aa@@ @a`@@ @a@@ @a_@@ @a@ @a@@Aa&f@@@&h(@A&cZ@D@@AE@@NC@@ABC@]E@  , 	l&r@iA/&nE@  , 	H&u% nn%!no(@AoA@&s&r@@  , 	8&z%%no%&no'@ #$18Ra@@aajl@@a@jj@@a@jh@@a@jf@@a@jd@@a@j@@a@ja@kBh#$12La  8 @@@A@@@A@&@@@&#$13Ma  8 @@@A@@@A@&@@@&#$14Na  8 @@@A@@@A@&@@@&#$15Oa  8 @@@A@@@A@&@@@&#$16Pa  8 @@@A@@@A@&@@@&#$17Qa  8 @@@A@@@A@&@@@&<  8 @@@A@@@A@&@@@&#padS@@ @a2@%unn%vnn@@&\%fmttyT-@@ @a4.@@ @a5/@@ @a60@@ @a71@@ @a82@@ @a9@@ @a3@%nn%nn@@&]$restUy@@ @a;@@ @a<@@ @a=@@ @a>@@ @a?@@ @a@@@ @a:@%nn%nn@@'^@  8 @@@A@L@@ @a,K@@ @a-J@@ @a.I@@ @a/H@@ @a0G@@ @a1@@ @a+@@ @a*@ @a)@@Aa':@@@'<@A'7.@sD@@A~E@@NC@@ABC@1E@  , 	,'F@=A/'BE@  , 	'I%nn%nn@ACA@'G'F@@  , 'N%nn%nn@wE@@a@j:=@@a@j;;@@a@j<9@@a@j=7@@a@j>5@@a@j?@@a@jAa@j[fB0#chrJ@@ @`@&#nn&$nn@@'|Z$restK@@ @`@@ @`@@ @`@@ @`@@ @`@@ @`@@ @`@&Enn&Fnn@@'['@1D@@A@B@)C@@AC@D@  , '^@A7'	D@  , '&TnQnU&UnQn@AA@''@@  , '&YnQnj&ZnQn~@+@@a@iݠ@@a@iޠ@@a@iߠ@@a@i@@a@i@@a@i@@a@ia@iƐB#strHQ@@ @`@&n/nC&n/nF@@'X$restIVs@@ @`r@@ @`q@@ @`p@@ @`o@@ @`n@@ @`@@ @`@&n/nH&n/nL@@'Y'h@&C@@2D@@ABC@D@  , (]@A6(D@  , (&n
n&n
n-@AA@((@@  , (
&n
n@ݠ@@a@i@@a@i@@a@i@@a@i@@a@i@@a@i@@a@ia@i$B$restG@@ @`@@ @`@@ @`@@ @`@@ @`@@ @`@@ @`~@&mn&mn	@@(QW(LC@&C@@AB@BC@  , (WO@NA)(RC@  , x(Y'll'lm@ASA@(W(V@@  , l(^'	ll'
lm@z($Bool_'a2a@@a@gka@gRR@@a@g_P@@a@g`N@@a@gaL@@a@gbJ@@a@gc@@a@gga@g{BF  8 @@@A@@@A@(@@@(#pad3!@@ @_D@@@ @_G0@@ @_F@ @_E@@ @_C@'Hll'Ill@@(O$rest4>@@ @_I7@@ @_J6@@ @_K5@@ @_L4@@ @_M3@@ @_N@@ @_H@'jll'kll@@(P(-@>D@@A(C@@BC@D@  , `(r@AF(D@  , D(Ͱ'xl6l:'yl6lh@AA@((@@  , ,(Ұ'}l6lS'~l6lg@R)$Float_'a)a@@a@f>a@f@@a@f%@@a@f&@@a@f'@@a@f(@@a@f)@@a@f/a@fZB)$Float_'y(a  8 @@@A@@@A@)@@@)#  8 @@@A@@@A@)@@@)%fconv*@@ @^@'ll'll @@)I#pad+@@ @^@@ @^@@ @^@'ll"'ll%@@)"J$prec,@@ @^@@@ @^T@@ @^@ @^@@ @^@'ll''ll+@@)9K$rest-b@@ @^@@ @^@@ @^@@ @^@@ @^@@ @^@@ @^@(ll-(ll1@@)[L)V@[F@@AQ@BP@TE@@ABD@@-C@@ABC@SF@  ,  )h@	_Ao)c
F@  , )j(kk(kl@A	dA@)h)g@@  , )o(kk(kl@g)$Int64_'a#a@@a@ea@e	c@@a@e	a@@a@e	_@@a@e	]@@a@e	[@@a@e@@a@ea@e	B	Z)$Int64_'y"a  8 @@@A@@@A@)@@@)#  8 @@@A@@@A@)@@@)%iconv$@@ @^O@(Skk(Tkk@@)E#pad%ɠ	C@@ @^Q@@ @^R@@ @^P@(fkk(gkk@@)F$prec&ɠ@@ @^T@@@ @^WT@@ @^V@ @^U@@ @^S@(}kk(~kk@@)G$rest'ˠb@@ @^Y	l@@ @^Z	k@@ @^[	j@@ @^\	i@@ @^]	h@@ @^^@@ @^X@(kk(kk@@)H)c@[F@@ABRE@@AD@@,C@@ABC@F@  , *@	An)F@  , *(kk(kk@A
 A@**@@  , *(kk(kk@{-$Nativeint_'aa@@a@eTa@e2	@@a@e?	@@a@e@	@@a@eA	@@a@eB	@@a@eC@@a@eIa@ep
(B	-$Nativeint_'ya  8 @@@A@@@A@*:@@@*<#  8 @@@A@@@A@*<@@@*>%iconv@@ @^@(kVke(kVkj@@*HA#padݠ	@@ @^
@@ @^@@ @^@)kVkl)kVko@@*[B$prec ݠ@@ @^@@@ @^T@@ @^@ @^@@ @^@)kVkq)kVku@@*rC$rest!ߠb@@ @^
@@ @^
@@ @^
@@ @^
@@ @^
@@ @^@@ @^@);kVkw)<kVk{@@*D*	@[F@@ABRE@@AD@@,C@@ABC@	F@  , *@
An*F@  , T*)Mk#k')Nk#kU@A
A@**@@  , <*)Rk#k@)Sk#kT@)$Int32_'aa@@a@da@d
@@a@d̠
@@a@d͠
@@a@dΠ
@@a@dϠ
@@a@d@@a@da@d
ĐB
)$Int32_'ya  8 @@@A@@@A@*@@@*#  8 @@@A@@@A@*@@@*%iconv@@ @]@)jk)jk
@@*=#pad
{@@ @]ɠ@@ @]@@ @]@)jk)jk@@*>$prec@@ @]̠@@@ @]T@@ @]@ @]@@ @]@)jk)jk@@+?$restb@@ @]Ѡ
@@ @]Ҡ
@@ @]Ӡ
@@ @]Ԡ
@@ @]ՠ
@@ @]@@ @]@)jk)jk@@+0@++	
#@[F@@ABRE@@AD@@,C@@ABC@
'F@  , 0+<@3An+7F@  , +>)~jj)~jj@A8A@+<+;@@  , +C)~jj)~jj@ '$Int_'aa@@a@dna@dL7@@a@dY5@@a@dZ3@@a@d[1@@a@d\/@@a@d]@@a@dca@d`B.'$Int_'ya  8 @@@A@@@A@+r@@@+t#  8 @@@A@@@A@+t@@@+v%iconv! @@ @]@*'}jj*(}jj@@+9#pad!@@ @]@@ @]@@ @]@*:}jj*;}jj@@+:$prec!@@ @]@!@@ @]T@@ @]@ @]@@ @]@*Q}jj*R}jj@@+;$rest!b@@ @]@@@ @]?@@ @]>@@ @]=@@ @]<@@ @]@@ @]@*s}jj*t}jj@@+<+ǰ
7
@[F@@ABRE@@AD@@,C@@ABC@
F@  , +@An+F@  , +ڰ*{j{j*{j{j@AA@++@@  , +߰*{j{j*{j{j@!/$Caml_string_'a
a@@a@ca@c@@a@c@@a@c@@a@c@@a@c@@a@c@@a@ca@dB  8 @@@A@@@A@,	@@@,#pad!@@ @]D@!@@ @]G0@@ @]F@ @]E@@ @]C@*zj\jm*zj\jp@@,"7$rest!>@@ @]I@@ @]J@@ @]K@@ @]L@@ @]M@@ @]N@@ @]H@*zj\jr*zj\jv@@,D8,?
6@>D@@A(C@@BC@7D@  , ,Lr@CAF,GD@  , ,N*yj5j9*yj5j[@AHA@,L,K@@  , t,S*yj5jF*yj5jZ@"*$String_'a
a@@a@ca@cyG@@a@cE@@a@cC@@a@cA@@a@c?@@a@c@@a@ca@cpB;  8 @@@A@@@A@,}@@@,#pad"Ѡ@@ @]@"@@ @]0@@ @]
@ @]	@@ @]@+=xjj'+>xjj*@@,5$rest"Ϡ>@@ @]
,@@ @]+@@ @]*@@ @])@@ @](@@ @]@@ @]@+_xjj,+`xjj0@@,6,"@>D@@A(C@@BC@D@  , h,r@AF,D@  , L,°+mll+nll@AA@,,@@  , D,ǰ+rll@#p"$10a@@aag @@a@g@@a@g@@a@g@@a@g@@a@g@@a@ga@gB  8 @@@A@@@A@,@@@, $rest1#'@@ @_
@@ @_@@ @_@@ @_@@ @_@@ @_@@ @_@+ll+ll@@-N@  8 @@@A@#@@ @_K@@ @_
@ @_	@@Aa-@@@-@A-@2C@@AB@C@  , 8-$b@
A9- C@  , $-'+l}l+l}l@A
!A@-%-$@@  , -,+l}l@$*"$0.a@@aaf
@@a@f
@@a@f
@@a@f
@@a@f
@@a@f@@a@fa@f
FB
  8 @@@A@@@A@-S@@@-U$rest/$Q'@@ @^ՠ@@ @^֠@@ @^נ@@ @^ؠ@@ @^٠@@ @^@@ @^@,ljls,ljly@@-wM@
  8 @@@A@$@@@ @^K@@ @^@ @^@@Aa-@@@-@A-~u@2C@@AB@tC@  , -b@
A9-C@  , -,7qq
?@@
A
M@
  8 @@@A
@@ @c%@@Aa-@@@-3@

  8 @@@A
*@@ @c&@@Aa-@@@-4@AB-@B@B@  , -,Lwij
T@@
@
a-B@  , p-,Phgg,Qhgg@A	%CamlinternalFormatBasics.concat_fmttyA@--@@  , h-,Vhgg@۠rQj@@q@K.sFT@@qqK/tGV@@q@K0#$38q@@qqK2EIZ@@q@K4FJ\@@q@K5ySn@@q@K6zL`@@qqK7{Mb@@q@K8#$39q@@qqK:\Of@@q@K<]Ph@@q@K=@@q@K>q@K^UB.
ER  8 @@@A@@@A@g,mhh@@@@.^  8 @@@A@@@A@k@@@@.[  8 @@@A@@@A@n@@@@. HX  8 @@@A@@@A@r@@@@.$U  8 @@@A@@@A@u@@@@.'R  8 @@@A@@@A@x@@@@.*K^  8 @@@A@@@A@|@@@@..M  8 @@@A@@@A@@@@@.1J  8 @@@A@@@A@@@@@.4Nd  8 @@@A@@@A@@@@@.8D  8 @@@A@@@A@"@@@@.;A  8 @@@A@@@A@%@@@@.>  8 @@@A@@@A@(@@@@.AñRl  8 @@@A@@@A@,@@@@.Ej  8 @@@A@@@A@/@@@@.HűTp  8 @@@A@@@A@3@@@@.LƠ&fmtty1U@@ @;C@@ @;D@@ @;E#@@ @;FI@@ @;GY@@ @;H@@ @;I@@ @;J@@ @;K9@@ @;LR@@ @;Ma@@ @;N@@ @;B@-8Ndd-9Ndd@@.Ǡ&fmtty2VȠ@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@@ @;@-Ndd-Ndd@@.ȱ#$37q  8 @@@A@@@A@.@@@.  8 @@@A@@@A@.@@@.  8 @@@A@@@A@.@@@.$rest@@ @AC1@@ @AD@@ @AE-@@ @AF@@ @AG@@ @AH@@ @AI$@@ @AJ@@ @AK @@ @AL@@ @AM@@ @AN@@ @AB@-ggg-ggg@@/=@  8 @@@A@@h@@ @A;O@@ @A:@ @A9c@@ @A8@ @A7@@Aq/*@@@/,@  8 @@@A@@U@@ @AA@@ @A@@ @A?O@@ @A>@ @A=@@Aq/;@@@/=@AB/8@B@@AA@@dC@@AB@@
@@@AC@  , \/H@AJ//DC@  , H/K-fgg-fgg@AA@/I/H@@  , @/P-fgg@#$33q@@qqJ@@qqJ@@q@J#$34q@@qqJ@@q@J@@q@J#$35q@@qqJ@@qqJ@@q@J#$36q@@qqJ@@q@J@@q@J@@q@Jq@JB#$32q  8 @@@A@@@A@/@@@/E  8 @@@A@@@A@/@@@/8  8 @@@A@@@A@/@@@/
+  8 @@@A@@@A@/@@@/  8 @@@A@@@A@/@@@/$restsV@@ @@ՠ@@ @@֠Z@@ @@נS@@ @@ؠX@@ @@٠W@@ @@ڠP@@ @@۠@@ @@ܠU@@ @@ݠM@@ @@ޠS@@ @@ߠR@@ @@@@ @@@.egrg.egrg@@/<@  8 @@@A@O@@ @@@@ @@@ @@@@Aq/@@@/	@A  8 @@@A@@=@@ @@@@ @@@ @@@@ @@@ @@@@Aq/@@@0 @  8 @@@A@@@ @@@@ @@@ @@@@Aq0
@@@0
@  8 @@@A@@5@@ @@.@@ @@@ @@@@ @@@ @@@@Aq0@@@0@ABC0@yC@@AB@C@  , 40#@{AB0C@  ,  0&.dgLgP.dgLgq@AA@0$0#@@  , 0+.dgLgW@#$30q@@qqIϠ@@q@IР@@q@IѠ@@q@IҠ|@@q@IӠz@@q@IԠ#$31q@@qqI֠y@@q@Iנx@@q@Iؠ@@q@I٠t@@q@Iڠr@@q@I@@q@Iq@IŐBp#$29~q  8 @@@A@@@A@0u@@@0wA  8 @@@A@@@A@0w@@@0y&  8 @@@A@@@A@0y@@@0{$rest۠N@@ @@]@@ @@^-@@ @@_,@@ @@`+@@ @@a*@@ @@bI@@ @@c@@ @@d(@@ @@e'@@ @@f&@@ @@g%@@ @@h@@ @@\@/\cg9gD/]cg9gH@@0;@a  8 @@@A@J@@ @@W@@ @@V@ @@U@@Aq0@@@0@Q  8 @@@A@
@@ @@[z@@ @@Z@ @@Y@@Aq0@@@0@AB0ɰ@WC@@AB@C@  , 0@,Af 0C@  , 0װ/bgg/bgg8@A2A@00@@  , 0ܰ/bgg@Ѡ#$25yq@@qqI%#$23wq@@qqI(#$24xq@@qqI'@@q@I)1@@q@I*/@@q@I+#$28|q@@qqI-#$26zq@@qqI0#$27{q@@qqI/@@q@I1-@@q@I2+@@q@I3@@q@I4q@IT~B,A  8 @@@A@@@A@1/@@@11<  8 @@@A@@@A@11@@@13L  8 @@@A@@@A@13@@@15&  8 @@@A@@@A@15@@@17!  8 @@@A@@@A@17@@@191  8 @@@A@@@A@19@@@1;$rest}.]@@ @?Z@@ @?W@@ @?@@ @?@@ @?@@ @?T@@ @?Q@@ @?N@@ @?@@ @?@@ @?@@ @@ @@ @?@0afg	0afg
@@1u:@"  8 @@@A@@@@ @?@@ @?@ @?@@ @?@ @?@@Aq1@@@1@  8 @@@A@@@@ @?~@@ @?@ @?@@ @?@ @?@@Aq1@@@1@AB  8 @@@A@@ @?@@Aq1@@@1@  8 @@@AE@@ @?@@Aq1@@@1@  8 @@@A@@ @?@@Aq1@@@1 @  8 @@@A6@@ @?@@Aq1@@@1@ABCD1vt@|C@@AB@sC@  , 1@AE1C@  , 10g`ff0h`ff@AA@11@@  , 10l`ff@W#$19rq@@qqHi#$16oq@@qqHm#$18qq@@qqHl@@q@Hn@@q@Ho@@q@Hp#$22uq@@qqHs#$20sq@@qqHw#$21tq@@qqHv@@q@Hx@@q@Hy@@q@Hz@@q@H{q@HcBB  8 @@@A@@@A@2@@@2#$17pq  8 @@@A@@@A@2@@@2A  8 @@@A@@@A@2@@@2Q  8 @@@A@@@A@2@@@2+  8 @@@A@@@A@2@@@2!&  8 @@@A@@@A@2!@@@2#6  8 @@@A@@@A@2#@@@2%$restvb@@ @?_@@ @?\@@ @?@@ @?@@ @?@@ @?Y@@ @?V@@ @?S@@ @?@@ @?@@ @?@@ @?@@ @?@1_ff1_ff@@2_9@  8 @@@A@@@@ @?p@X@@ @?l@@ @?o@ @?n@ @?m@	@@ @?k@ @?j@ @?i@@Aq2w@@@2y@  8 @@@A@@@@ @?}@@@ @?y@@ @?|@ @?{@ @?z@@@ @?x@ @?w@ @?v@@Aq2@@@2@AB  8 @@@A@@ @?q@@Aq2@@@2@  8 @@@A>@@ @?r@@Aq2@@@2@  8 @@@A@@ @?~@@Aq2@@@2@  8 @@@A/@@ @?@@Aq2@@@2@ABCD2om@C@@AB@lC@  , 2@
AT2C@  , 21`lhyh}1alhyh@AA@22@@  , 21elhyh1flhyh@4$Format_subst_ty_'a1q@@q@Mq@L@@q@L@@q@L4$Format_subst_ty_'d1q@@q@Mq@L@@q@L@@q@L4$Format_subst_ty_'a2q@@q@Mq@L@@q@L@@q@L4$Format_subst_ty_'d2q@@q@Mq@L@@q@L@@q@L@@q@Lq@MH_BP  8 @@@A@@@A@3@@@3A  8 @@@A@@@A@3@@@3 2  8 @@@A@@@A@3@@@3!#  8 @@@A@@@A@3@@@3 "#$48q  8 @@@A@@@A@3"@@@3$##$49q  8 @@@A@@@A@3&@@@3($#$50q  8 @@@A@@@A@3*@@@3,%#$51q  8 @@@A@@@A@3.@@@30&#$52q  8 @@@A@@@A@32@@@34'#$53q  8 @@@A@@@A@36@@@38(#$54q  8 @@@A@@@A@3:@@@3<)#$55q  8 @@@A@@@A@3>@@@3@+#ty1)@@ @BU*@@ @BV+@@ @BW,@@ @BX-@@ @BY.@@ @BZ/@@ @B[@@ @B\@@ @B]@@ @B^@@ @B_@@ @B`@@ @BT@2(khQhf2)khQhi@@3@#ty2A@@ @Bb@@@ @Bc?@@ @Bd>@@ @Be=@@ @Bf<@@ @Bgf@@ @Bh@@ @Bi/@@ @Bj.@@ @Bk@@ @Bl@@ @Bm@@ @Ba@2ckhQhk2dkhQhn@@3A$restߠ@@ @Bo
@@ @Bpn@@ @Bq@@ @Brl@@ @Bsk@@ @Bt@@ @Bu @@ @Bvi@@ @Bw@@ @Bxg@@ @Byf@@ @Bz@@ @Bn@2khQhp2khQht@@3B@  8 @@@A@ܠ@@ @BD@@ @BE@@ @BF@@ @BG@@ @BH@@ @BI@@ @BC@@ @BB@ @BA@@Aq4@@@4*@  8 @@@A@֠@@ @BN@@ @BO@@ @BP@@ @BQ@@ @BR@@ @BS@@ @BM@@ @BL@ @BK@@Aq4<@@@4>,@AB49@C@@AE@@D@@ABC@E@  , 4H@A@S4DE@  , h4K2jh h$2jh hP@AA@4I4H@@  , \4P2jh h72jh hO@#$46q@@qqK&@@q@K@@q@K%@@q@K@@q@K@@q@K#$47q@@qqK$@@q@K@@q@K#@@q@K@@q@K@@q@K@@q@Kq@LSB#$40q  8 @@@A@@@A@4@@@4#$41q  8 @@@A@@@A@4@@@4#$42q  8 @@@A@@@A@4@@@4#$43q  8 @@@A@@@A@4@@@4#$44q  8 @@@A@@@A@4@@@4#$45q  8 @@@A@@@A@4@@@4W  8 @@@A@@@A@4@@@4>  8 @@@A@@@A@4@@@4"tyR%@@ @AĠ&@@ @AŠ'@@ @AƠ(@@ @AǠ)@@ @AȠ*@@ @A@@ @A@3ih h3ih h@@4>$restK@@ @Aˠ0@@ @A̠@@ @A͠@@ @AΠ@@ @AϠ@@ @AР@@ @AѠ#@@ @AҠ@@ @AӠ@@ @AԠ@@ @Aՠ@@ @A@@ @A@3ih h3ih h@@5?@  8 @@@A@(d@@ @Ac@@ @Ab@@ @Aa@@ @A`@@ @A_@@ @A@@ @A@@ @A@ @A@@Aq5;@@@5=@  8 @@@A@"@@ @A@@ @A@@ @A@@ @A@@ @A@@ @A@@ @A@@ @A@ @A@@Aq5_@@@5a@AB5\$"@C@@D@@ABC@#D@  , P5i@AQ5e	D@  , 45l4^ff4^ff@AA@5j5i@@  , ,5q4^ff@#$14lq@@qqGF@@q@G@@q@GE@@q@G@@q@G@@q@G#$15mq@@qqGD@@q@G@@q@GC@@q@G@@q@G@@q@G@@q@Gq@GB8  8 @@@A@@@A@5@@@5  8 @@@A@@@A@5@@@5$restnE@@ @?	@@ @?j@@ @?i@@ @?h@@ @?g@@ @?B@@ @?@@ @?e@@ @?	d@@ @?
c@@ @?b@@ @?@@ @? @4]ff4]ff@@58@  8 @@@A@@@ @>@@ @>@ @>@@Aq5@@@5@  8 @@@A@@@ @>r@@ @>@ @>@@Aq6@@@6
@AB6@VC@@AB@C@  ,  6@hA`6C@  , 64\f\f`4\f\f@AnA@66@@  , 64\f\fi@#$12iq@@qqG@@q@Gl@@q@G@@q@Gg@@q@Ge@@q@G	#$13jq@@qqG@@q@G
b@@q@G@@q@G]@@q@G[@@q@G@@q@Gq@G2BX8  8 @@@A@@@A@6[@@@6]  8 @@@A@@@A@6]@@@6_$restk(E@@ @>@@ @>@@ @>@@ @>@@ @>@@ @>B@@ @>@@ @>@@ @>@@ @>
@@ @>	@@ @>@@ @>@5@[fGfT5A[fGfX@@67@E  8 @@@A@@@ @>@@ @>@ @>@@Aq6@@@6@4  8 @@@A@@@ @>r@@ @>@ @>@@Aq6@@@6@AB6tr@VC@@AB@qC@  , 6@	A`6C@  , 65eZff#5fZffF@A	A@66@@  , 65jZff,@ !#$10fq@@qqF^@@q@F`	@@q@Fa@@q@Fb	@@q@Fc	@@q@Fd#$11gq@@qqFf@@q@Fh		@@q@Fi@@q@Fj	@@q@Fk	@@q@Fl@@q@Fmq@F	UB8  8 @@@A@@@A@7@@@7  8 @@@A@@@A@7@@@7ߠ$resth fE@@ @>1	W@@ @>2@@ @>3@@ @>4@@ @>5@@ @>6B@@ @>7	J@@ @>8@@ @>9@@ @>:@@ @>;@@ @><@@ @>0@5Yf
f5Yf
f@@7@6@  8 @@@A@ C@@ @>+@@ @>*@ @>)@@Aq7J@@@7L@  8 @@@A@ 7@@ @>/r@@ @>.@ @>-@@Aq7V@@@7X@AB7S@VC@@AB@C@  , 7^@	A`7ZC@  , 7a6Xee6
Xef	@A	A@7_7^@@  , 7f6Xee@!_"$8cq@@qqE;@@q@E	@@q@E:@@q@E	@@q@E	@@q@E"$9dq@@qqE9@@q@Eà	@@q@EĠ8@@q@EŠ	@@q@EƠ	@@q@E@@q@Eq@E	B	8  8 @@@A@@@A@7@@@7  8 @@@A@@@A@7@@@7۠$reste!E@@ @=ɠ	@@ @=ʠ	_@@ @=ˠ	^@@ @=̠	]@@ @=͠	\@@ @=ΠB@@ @=Ϡ	@@ @=Р	Z@@ @=Ѡ	Y@@ @=Ҡ	X@@ @=Ӡ	W@@ @=@@ @=@6Wee6Wee@@75@	  8 @@@A@!@@ @=@@ @=@ @=@@Aq7@@@7@	  8 @@@A@!u@@ @=r@@ @=@ @=@@Aq7@@@7@AB7@VC@@AB@C@  , 8@
]A`8C@  , 86Vee6Vee@A
cA@88@@  , 8
6Vee@""$6`q@@qqE@@q@E
a@@q@E@@q@E
\@@q@E
Z@@q@E"$7aq@@qqE@@q@E
W@@q@E@@q@E 
R@@q@E!
P@@q@E"@@q@E#q@EC
B
M8  8 @@@A@@@A@8P@@@8R  8 @@@A@@@A@8R@@@8Tנ$restb"E@@ @=a
@@ @=b
@@ @=c
@@ @=d
@@ @=e
@@ @=fB@@ @=g
@@ @=h
@@ @=i
 @@ @=j	@@ @=k	@@ @=l@@ @=`@75Uee76Uee@@84@
:  8 @@@A@"@@ @=[@@ @=Z@ @=Y@@Aq8@@@8@
)  8 @@@A@"@@ @=_r@@ @=^@ @=]@@Aq8@@@8@AB8	i	g@VC@@AB@	fC@  , 8@A`8C@  , l87ZTebef7[Tebe@A
A@88@@  , d87_Tebem@#۠"$4]q@@qqDo@@q@Dq@@q@Dr@@q@Ds@@q@Dt@@q@Du"$5^q@@qqDw@@q@Dy
@@q@Dz@@q@D{
@@q@D|
@@q@D}@@q@D~q@DJB
8  8 @@@A@@@A@8@@@8  8 @@@A@@@A@8@@@8Ӡ$rest_$ E@@ @<L@@ @<
@@ @<
@@ @<
@@ @<
@@ @<B@@ @<?@@ @= 
@@ @=
@@ @=
@@ @=
@@ @=@@ @<@7SeOeZ7SeOe^@@953@
  8 @@@A@#@@ @<@@ @<@ @<@@Aq9?@@@9A@
  8 @@@A@#@@ @<r@@ @<@ @<@@Aq9K@@@9M@AB9H

@VC@@AB@

C@  , X9S@A`9OC@  , D9V8Re&e*8Re&eN@AA@9T9S@@  , <9[8Re&e4@%"$2Zq@@qqCʠ	0@@q@C̠@@q@C͠	/@@q@CΠ@@q@CϠ@@q@CР"$3[q@@qqCҠ	.@@q@CԠ@@q@Cՠ	-@@q@C֠@@q@Cנ@@q@C@@q@Cq@CB8  8 @@@A@@@A@9@@@9  8 @@@A@@@A@9@@@9Ϡ$rest\%^E@@ @<@@ @<T@@ @<S@@ @<R@@ @<Q@@ @<B@@ @<@@ @<O@@ @<N@@ @<M@@ @<L@@ @<@@ @<@8Qee8Qee"@@92@  8 @@@A@%;@@ @<@@ @<@ @<@@Aq9@@@9@w  8 @@@A@%/@@ @<r@@ @<@ @<@@Aq9@@@9@AB9

@VC@@AB@
C@  , 09@RA`9C@  , 98Pdd8Pde@AXA@99@@  , :8Pdd@&W"$0Wq@@qqC%	@@q@C'V@@q@C(	@@q@C)Q@@q@C*O@@q@C+"$1Xq@@qqC-	@@q@C/L@@q@C0	@@q@C1G@@q@C2E@@q@C3@@q@C4q@CTBB8  8 @@@A@@@A@:E@@@:G  8 @@@A@@@A@:G@@@:Iˠ$restY&E@@ @<)@@ @<*@@ @<+@@ @<,@@ @<-@@ @<.B@@ @</@@ @<0@@ @<1@@ @<2@@ @<3@@ @<4@@ @<(@9*Odd9+Odd@@:1@/  8 @@@A@&y@@ @<#@@ @<"@ @<!@@Aq:@@@:@  8 @@@A@&m@@ @<'r@@ @<&@ @<%@@Aq:@@@:@AB:^\@VC@@AB@[C@  , :@A`:C@  , :9Omhh@@A@T  8 @@@A@@@ @B@@Aq:@@@:.@AL  8 @@@AK@@ @B@@Aq:@@@:-@E  8 @@@A1@@ @B@@Aq:@@@:0@A=  8 @@@A<@@ @B@@Aq:@@@:/@BC:@B@B@  , :ǰ9rNdd@@
!@:B@  , :˰9v1aa9w1aa7@A	"CamlinternalFormatBasics.erase_relA@::@@  , :Ѱ9|1aa'@ R@@i@,4i@, T@@ii,5i@, V@@i@,6i@,	#$54 i@@ii,7i@,
 Z@@i@,8i@, \@@i@,9i@,@@i@,):A;>  8 @@@A@@@A@92a8aX@@@@; :  8 @@@A@@@A@@@@@;! 5  8 @@@A@@@A@@@@@;$ $ X  8 @@@A@@@A@@@@@;( +  8 @@@A@@@A@@@@@;+ &  8 @@@A@@@A@@@@@;.  ^  8 @@@A@@@A@@@@@;2  `  8 @@@A@@@A@@@@@;6  b  8 @@@A@@@A@@@@@;:  d  8 @@@A@@@A@!@@@@;>  f  8 @@@A@@@A@%@@@@;B  h  8 @@@A@@@A@)@@@@;F #$53 i  8 @@@A@@@A@;H@@@;J V  8 @@@A@@@A@;J@@@;L #$55 i  8 @@@A@@@A@;N@@@;P $rest ~}@@ @!y@@ @!u@@ @!q@@ @!l@@ @!h@@ @!C@@ @!D@@ @!E@@ @!4@@ @!G@@ @!H@@ @!@@ @!@:70`a	:80`a
@@;@n  8 @@@A@@@@ @!X@@ @!@ @!@@ @!@ @!@@Ai;@@@; @k  8 @@@A@@8@@ @!@@ @!@ @!4@@ @!@ @!@@Ai;@@@; @AB;@%paramCA@@lB@@AB@@@@@AB@  , ;@A1;BP  , l;Ű:p/``:q/``@AA@;;@@  , d;ʰ:u/``@#$49 i@@ii+i@+b@@ii+i@+c@@i@+i@+d#$50 i@@ii+i@+e@@i@+i@+f@@i@+i@+g@@i@+,A#$48 i  8 @@@A@@@A@<@@@< 1  8 @@@A@@@A@<@@@<   8 @@@A@@@A@<@@@<
 #$51 i  8 @@@A@@@A@<@@@< #$52 i  8 @@@A@@@A@<@@@< $rest ݠF@@ @!A;@@ @!B7@@ @!C=@@ @!D.@@ @!E*@@ @!F)@@ @!G@@ @!H@@ @!I2@@ @!J@@ @!K@@ @!L@@ @!@@:.``:.``@@<N@u  8 @@@A@U@@ @!/@@ @!.@ @!-@@Ai<Z@@@<\ @A  8 @@@A@@@@ @!5@@ @!4@ @!3@@ @!2@ @!1@@Ai<j@@@<l @  8 @@@A@@@ @!9D@@ @!8@ @!7@@Ai<v@@@<x @  8 @@@A@@@@ @!?.@@ @!>@ @!=H@@ @!<@ @!;@@Ai<@@@< @ABC<@@{B@@AB@B@  , \<@AB<BϠ  , H<;>-``;?-``@AA@<<@@  , @<;C-``@p#$46 i@@ii*i@*@@i@*i@*@@i@*i@*&@@i@*i@*@@i@*i@*@@i@*i@*@@i@*A#$45 i  8 @@@A@@@A@<@@@< ,  8 @@@A@@@A@<@@@< #$47 i  8 @@@A@@@A@<@@@< $rest !5;@@ @ ɠ@@ @ ʠ@@ @ ˠX@@ @ ̠@@ @ ͠@@ @ Π%@@ @ Ϡ@@ @ Р@@ @ Ѡ^@@ @ Ҡ@@ @ Ӡ@@ @ @@ @ @;,``;,``@@=@6  8 @@@A@M@@ @ y@@ @ @ @ @@Ai=@@@= @  8 @@@A@
@@ @ 2@@ @ @ @ @@Ai='@@@=) @AB=$@t@XB@@AB@qB@  , 8=/@aAi =+Bo  , $=3;+`q`u;+`q`@AhA@=1=0@@  , =8;+`q`~@#$41 i@@ii*Ci@*#$39 i@@ii*Di@*#$40 i@@ii*Ei@*@@i@*Fi@*g@@i@*Gi@*e@@i@*Hi@*@@i@*8Af(  8 @@@A@@@A@=t@@@=v !  8 @@@A@@@A@=v@@@=x 5  8 @@@A@@@A@=x@@@=z ߱#$42 i  8 @@@A@@@A@=|@@@=~ #$43 i  8 @@@A@@@A@=@@@= #$44 i  8 @@@A@@@A@=@@@= $rest "yL@@ @ aG@@ @ bB@@ @ c	@@ @ d@@ @ e@@ @ f%@@ @ g2@@ @ h3@@ @ i@@ @ j5@@ @ k4@@ @ l@@ @ `@<j*`\`i<k*`\`m@@=@  8 @@@A@@@@ @ S|@@ @ R@ @ Q@@ @ P@ @ O@@Ai=@@@= @f  8 @@@A@@3@@ @ ]1@@ @ \@ @ [>@@ @ Z@ @ Y@@Ai=@@@= @AB  8 @@@A@@ @ T@@Ai=@@@= @  8 @@@A@@ @ U@@Ai=@@@= @I  8 @@@A@@ @ ^@@Ai=@@@= @K  8 @@@A@@ @ _@@Ai=@@@> @ABCD=@L@B@@AB@IB@  , >@9AE>BG  ,  ><)`>`B<)`>`[@A@A@>	>@@  , ><)`>`K@#$35 i@@ii)i@)n#$32 i@@ii)i@)o#$34 i@@ii)i@)p@@i@)i@)q?@@i@)i@)r=@@i@)i@)s@@i@)uA?)  8 @@@A@@@A@>M@@@>O б#$33 i  8 @@@A@@@A@>Q@@@>S &  8 @@@A@@@A@>S@@@>U :  8 @@@A@@@A@>U@@@>W ӱ#$36 i  8 @@@A@@@A@>Y@@@>[ ױ#$37 i  8 @@@A@@@A@>]@@@>_ ر#$38 i  8 @@@A@@@A@>a@@@>c ٠$rest #Q@@ @L@@ @G@@ @@@ @@@ @{@@ @%@@ @2@@ @3@@ @@@ @@@ @@@ @@@ @@=G(`)`6=H(`)`:@@>
@  8 @@@A@@@@ @@a@@ @@@ @@ @@ @@	@@ @@ @@ @@@Ai>@@@> @K  8 @@@A@@;@@ @@@@ @>@@ @@ @@ @@M@@ @@ @@ @@@Ai>@@@> @AB  8 @@@A@@ @@@Ai>@@@> @  8 @@@A@@ @@@Ai>@@@> @X  8 @@@Ao@@ @@@Ai>@@@> @Z  8 @@@Aq@@ @@@Ai>@@@> @ABCD>@8@B@@AB@5B@  , >@%AT>B3  , >='__='_`(@A,A@>>@@  , >='_`='_`'@ՠ4$Format_subst_ty_'a1 i@@i@(i@(-@@i@(i@(+@@i@(i@(4$Format_subst_ty_'d1 i@@i@(i@()@@i@(i@('@@i@(i@(@@i@(_A06  8 @@@A@@@A@?>@@@?@ #  8 @@@A@@@A@?@@@@?B ñ4$Format_subst_ty_'a2 i  8 @@@A@@@A@?D@@@?F ı4$Format_subst_ty_'d2 i  8 @@@A@@@A@?H@@@?J ű#$24 i  8 @@@A@@@A@?L@@@?N Ʊ#$25 i  8 @@@A@@@A@?P@@@?R Ǳ#$26 i  8 @@@A@@@A@?T@@@?V ȱ#$27 i  8 @@@A@@@A@?X@@@?Z ɱ#$28 i  8 @@@A@@@A@?\@@@?^ ʱ#$29 i  8 @@@A@@@A@?`@@@?b ˱#$30 i  8 @@@A@@@A@?d@@@?f ̱#$31 i  8 @@@A@@@A@?h@@@?j Π#ty1 &')@@ @S*@@ @T+@@ @U,@@ @V-@@ @W.@@ @X/@@ @Y@@ @Z@@ @[@@ @\@@ @]@@ @^@@ @R@>R&__>S&__@@?
$_ty2 &A@@ @`@@@ @a?@@ @b>@@ @c=@@ @d<@@ @ef@@ @f[@@ @gZ@@ @h4@@ @i@@ @j@@ @k@@ @_@>&__>&__@@?$rest &@@ @m@@ @n
@@ @o@@ @p@@ @q @@ @r'@@ @s@@ @t@@ @u8@@ @v@@ @w@@ @x@@ @l@>&__>&__@@@"@H  8 @@@A@&@@ @B@@ @C@@ @D@@ @E@@ @F@@ @G@@ @A@@ @@@ @?@@Ai@D@@@@F @  8 @@@A@&@@ @L@@ @M@@ @N@@ @O@@ @P@@ @Q@@ @K@@ @J@ @I@@Ai@h@@@@j @AB@e@@AB@@C@@AB@C@  , @r{@ADQ@n	C  , @v?!%__?"%__@AA@@t@s@@  , @{?&%__?'%__@!T#$22 i@@ii'i@'̠@@i@'i@'͠@@i@'i@'Π
@@i@'i@'Ϡ@@i@'i@'Р@@i@'i@'@@i@'ېA#$16 i  8 @@@A@@@A@@@@@@ #$17 i  8 @@@A@@@A@@@@@@ #$18 i  8 @@@A@@@A@@@@@@ #$19 i  8 @@@A@@@A@@@@@@ #$20 i  8 @@@A@@@A@@@@@@ #$21 i  8 @@@A@@@A@@@@@@ F  8 @@@A@@@A@@@@@@ #$23 i  8 @@@A@@@A@@@@@@ "ty (n'@@ @ (@@ @à)@@ @Ġ*@@ @Š+@@ @Ơ,@@ @@@ @@?$__?$__@@@$rest (g}@@ @ɠ$@@ @ʠ @@ @ˠ~@@ @̠@@ @͠@@ @ΠM@@ @Ϡ@@ @Р@@ @Ѡ@@ @Ҡ@@ @Ӡ@@ @@@ @@?$__?$__@@A6	@\  8 @@@A@(Ee@@ @d@@ @c@@ @b@@ @a@@ @`@@ @@@ @@@ @@ @@@AiAX@@@AZ @  8 @@@A@(?@@ @@@ @@@ @@@ @@@ @@@ @@@ @a@@ @@ @@@AiA|@@@A~ @ABAy@@AB@@C@@AB@C@  , A@AQA	CƠ  , xA@5#_m_q@6#_m_@AA@AA@@  , pA@:#_m_y@"g#$14 i@@ii'
i@&@@i@'i@&@@i@'i@&@@i@'i@&@@i@'i@&@@i@'i@&@@i@'A'  8 @@@A@@@A@A@@@A #$15 i  8 @@@A@@@A@A@@@A $rest )6@@ @A@@ @B@@ @CJ@@ @D@@ @E@@ @F%@@ @Gw@@ @Hv@@ @IP@@ @Jt@@ @Ks@@ @L@@ @@@@"_Y_e@"_Y_i@@B@(  8 @@@A@)@@ @;s@@ @:@ @9@@AiB@@@B @  8 @@@A@)@@ @?1@@ @>@ @=@@AiB@@@B @ABB@e@WB@@AB@bB@  , hB @RAcBB`  , TB$@!_;_?@!_;_X@AYA@B"B!@@  , LB)@!_;_H@##$12 i@@ii&ki@&>Y@@i@&li@&?W@@i@&mi@&@@@i@&ni@&AR@@i@&oi@&BP@@i@&pi@&C@@i@&`AM'  8 @@@A@@@A@B[@@@B] #$13 i  8 @@@A@@@A@B_@@@Ba $rest +*6@@ @٠@@ @ڠ@@ @۠@@ @ܠ}@@ @ݠy@@ @ޠ%@@ @ߠ@@ @@@ @@@ @@@ @
@@ @@@ @@AC _&_3AD _&_7@@B@  8 @@@A@+@@ @s@@ @@ @@@AiB@@@B @9  8 @@@A@*@@ @1@@ @@ @@@AiB@@@B @ABB@@WB@@AB@B@  , DB@AcBB  , 0BAi^^Aj^^@AA@BB@@  , (BðAn^^@#"$8 i@@ii%'i@$@@i@%(i@$@@i@%)i@$Q@@i@%*i@$@@i@%+i@$@@i@%,i@$@@i@%"A'  8 @@@A@@@A@B@@@B "$9 i  8 @@@A@@@A@B@@@B $rest ,[6@@ @	$@@ @
 @@ @~@@ @@@ @
@@ @%@@ @@@ @@@ @@@ @@@ @@@ @@@ @@A^^A^^@@C6@\  8 @@@A@,9@@ @s@@ @@ @@@AiC@@@@CB @  8 @@@A@,-@@ @1@@ @@ @@@AiCL@@@CN @ABCI@@WB@@AB@B@  ,  CT@AcCPB  , CXB__B__%@AA@CVCU@@  , C]B__@$5#$10 i@@ii%i@%@@i@%i@%@@i@%i@%@@i@%i@%@@i@%i@%@@i@%i@%@@i@%A'  8 @@@A@@@A@C@@@C #$11 i  8 @@@A@@@A@C@@@C $rest -6@@ @q@@ @r@@ @s@@ @t@@ @u@@ @v%@@ @wE@@ @xD@@ @y@@ @zB@@ @{A@@ @|@@ @p@Bw^^Bx^_ @@C@  8 @@@A@-j@@ @ks@@ @j@ @i@@AiC@@@C @m  8 @@@A@-^@@ @o1@@ @n@ @m@@AiC@@@C @ABC@3@WB@@AB@0B@  ,  C@	 AcCB.  ,  CB^^B^^@A	'A@CC@@  ,  CB^^@$Ϡ"$6 i@@ii$i@$X	'@@i@$i@$Y	%@@i@$i@$Z@@i@$i@$[	 @@i@$i@$\	@@i@$i@$]@@i@$z	VA	'  8 @@@A@@@A@D)@@@D+ "$7 i  8 @@@A@@@A@D-@@@D/ $rest .6@@ @	X@@ @	T@@ @@@ @	K@@ @	G@@ @%@@ @@@ @@@ @@@ @@@ @@@ @@@ @@C^^C^^@@Dj@	  8 @@@A@.@@ @s@@ @@ @@@AiDt@@@Dv @	  8 @@@A@.@@ @1@@ @@ @@@AiD@@@D @ABD}@@WB@@AB@B@  ,  D@	AcDBȠ  ,  DC7^i^mC8^i^@A	A@DD@@  ,  DC<^i^t@%i"$4 i@@ii#i@#	@@i@#i@#	@@i@#i@#	@@i@#i@#	@@i@#i@#	@@i@#i@#@@i@#	A	'  8 @@@A@@@A@D@@@D "$5 i  8 @@@A@@@A@D@@@D $rest /6@@ @9	@@ @:	@@ @;	L@@ @<	@@ @=	@@ @>%@@ @?	y@@ @@	x@@ @A	R@@ @B	v@@ @C	u@@ @D@@ @8@C^V^aC^V^e@@E@
*  8 @@@A@/@@ @3s@@ @2@ @1@@AiE@@@E @	  8 @@@A@/@@ @71@@ @6@ @5@@AiE@@@E @ABE@	g@WB@@AB@	dB@  ,  E"@
TAcEB	b  ,  E&C^7^;C^7^U@A
[A@E$E#@@  ,  E+C^7^E@&"$2 i@@ii#Ai@#
[@@i@#Bi@#
Y@@i@#Ci@#	@@i@#Di@#
T@@i@#Ei@#
R@@i@#Fi@#@@i@#6
A
O'  8 @@@A@@@A@E]@@@E_ "$3 i  8 @@@A@@@A@Ea@@@Ec $rest 16@@ @Ѡ
@@ @Ҡ
@@ @Ӡ	@@ @Ԡ
@@ @ՠ
{@@ @֠%@@ @נ
@@ @ؠ
@@ @٠	@@ @ڠ
@@ @۠
@@ @@@ @@DE^!^/DF^!^3@@E@
  8 @@@A@0@@ @s@@ @@ @@@AiE@@@E @
;  8 @@@A@0@@ @1@@ @@ @@@AiE@@@E @ABE@
@WB@@AB@	B@  ,  E@
AcEB	  ,  |EDk^^Dl^^ @A
A@EE@@  ,  tEŰDp^^@&"$0 i@@ii"i@"r
@@i@"i@"s
@@i@"i@"t
S@@i@"i@"u
@@i@"i@"v
@@i@"i@"w@@i@"$A
'  8 @@@A@@@A@E@@@E "$1 i  8 @@@A@@@A@E@@@E $rest 2P6@@ @i&@@ @j"@@ @k
@@ @l@@ @m@@ @n%@@ @o
@@ @p
@@ @q
@@ @r
@@ @s
@@ @t@@ @h@D]]D]^ @@F8 @^  8 @@@A@2.@@ @cs@@ @b@ @a@@AiFB@@@FD @
  8 @@@A@2"@@ @g1@@ @f@ @e@@AiFN@@@FP @ABFK@
@WB@@AB@
B@  ,  lFV@AcFRB
  ,  TFZE2a8aL@@@AO@c  8 @@@A
@@ @"@@AiFc@@@Fe @Aa  8 @@@A@@ @"@@AiFi@@@Fk @
  8 @@@A
@@ @"@@AiFp@@@Fr @
  8 @@@A@@ @"@@AiFw@@@Fy @ABCFt@
@A@
A
  , HF~cA@pFyA
@         
   &./boot(./stdlib@CODE (xDLPT    DLLS    PRIM  DATA {QSYMB  pCRCS  DBUG
|   Caml1999X030                                                                                                                                                                                                                                                                                                                                                                                     n,  .     ..  o,  
upload-ova  { web                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ޱ0q_o,  .   n,  ..  p,  node_modules!f  distOs  package.jsont  	README.md   t "xen-orchestra-upload-ova-0.1.6.tgz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "noa  .   a  ..  a  LICENSE 6d  lib r  package.json\t 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ڲa  .   a  ..  a  node_modulesp  through2.js r  package.jsons  
LICENSE.md  ^t 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 a  .   a  ..  a readable-stream                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
Va  .   a  ..  a  LICENSE 8d  lib g  errors-browser.js   g  	errors.js   h   experimentalWarning.js  n  readable-browser.js n  readable.js r  package.jsons  CONTRIBUTING.md s  
GOVERNANCE.md   ]t 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }w,  .   p,  ..  x,  
.npmignore  b  License b  Makefileg  lib r  package.jsonyt 	Readme.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ީOy,  .   p,  ..  z,  
.npmignore  b  Makefile}k  index.jsp  test.js Gr  component.json   s  package.jsont  	README.md   { X.travis.yml                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           z#6{,  .   p,  ..  |,  
.npmignore  6b  LICENSE 4e  test~k  index.js4m  mode.js q  
windows.js  s  package.jsont d	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         fϕIlibuuid.so.1 libuuid1 #MINVER#
* Build-Depends-Package: uuid-dev
 UUIDD_PRIVATE@UUIDD_PRIVATE 2.20.1
 UUID_1.0@UUID_1.0 2.16
 UUID_2.20@UUID_2.20 2.20.1
 UUID_2.31@UUID_2.31 2.31.1
 UUID_2.36@UUID_2.36 2.36
 __uuid_generate_random@UUIDD_PRIVATE 2.20.1
 __uuid_generate_time@UUIDD_PRIVATE 2.20.1
 __uuid_generate_time_cont@UUIDD_PRIVATE 2.38.1-2~
 uuid_clear@UUID_1.0 2.16
 uuid_compare@UUID_1.0 2.16
 uuid_copy@UUID_1.0 2.16
 uuid_generate@UUID_1.0 2.16
 uuid_generate_md5@UUID_2.31 2.31.1
 uuid_generate_random@UUID_1.0 2.16
 uuid_generate_sha1@UUID_2.31 2.31.1
 uuid_generate_time@UUID_1.0 2.16
 uuid_generate_time_safe@UUID_2.20 2.20.1
 uuid_get_template@UUID_2.31 2.31.1
 uuid_is_null@UUID_1.0 2.16
 uuid_parse@UUID_1.0 2.16
 uuid_parse_range@UUID_2.36 2.36
 uuid_time@UUID_1.0 2.16
 uuid_type@UUID_1.0 2.16
 uuid_unparse@UUID_1.0 2.16
 uuid_unparse_lower@UUID_1.0 2.16
 uuid_unparse_upper@UUID_1.0 2.16
 uuid_variant@UUID_1.0 2.16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        libuuid 1 libuuid1 (>= 2.31)
udeb: libuuid 1 libuuid1-udeb (>= 2.31)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           # Triggers added by dh_makeshlibs/13.11.4
activate-noawait ldconfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0b0293d85de9f5e52978ddc083705714  usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
331b8831ee6659604485ba7740c31ea5  usr/share/doc/libuuid1/changelog.Debian.gz
0bb7fd1ae3732779966184f543b8a91e  usr/share/doc/libuuid1/changelog.gz
353888f385cfb82eb97a693e78f3cc9b  usr/share/doc/libuuid1/copyright
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              },  .   p,  ..  ~,  
.npmignore  cb  LICENSE i  testk  index.jss  package.jsont 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ax,  .   p,  ..  ,  
.npmignore  qb  LICENSE k  index.jsp  test.js )s  package.jsont  	README.md   { p.travis.yml                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }
ELF          >            @       8          @ 8 
 @                                                                                  @      @                    p       p       p                               |                                           0|      0      0                                 p      p      p      $       $                    |                         Z              Ptd   q      q      q      t      t             Qtd                                                  Rtd   |                                              GNU o_@G/*9       -         	  C% A Tt $
 0 @@0 -   0       1       2   4   7   :   <   =   >   ?   @   C   E   F   ))k[t&ŵ)qJtp++]
e(da 
1KI=	tpR*1)&/@P HvG@+	                                                                                                                                                           
                                                                                                          t                                                                 J                                                                                                           E                     m                                            |                                                                                                            N                                                                                                                                                                                                 =                                                                ,                                            F   "                                                                                                      
 3      @          
 p5      C       T   
 1                                ]   
 9      W          
 4                                S   
 P9      B       U    
 #                
  2                
 p8      	          
 3             )   
 8      	          
  6            I   
 8             <   
 8             *   
  2             %                   (   
 -                
 7      <       j   
  :             `    
 #             n   
 2                 
 p$                
 P3      W        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize uuid_clear uuid_compare memcmp __stack_chk_fail uuid_copy __tls_get_addr rewind flock __errno_location fclose umask fdopen __isoc99_fscanf gettimeofday __fprintf_chk fflush ftruncate fwrite socket ioctl strncpy __uuid_generate_time connect read nanosleep __uuid_generate_time_cont uuid_generate_time_safe __uuid_generate_random uuid_generate uuid_generate_md5 uuid_generate_sha1 uuid_is_null uuid_parse_range __ctype_b_loc strtoul uuid_parse strlen uuid_unparse_lower uuid_unparse_upper uuid_unparse uuid_time uuid_type uuid_variant uuid_get_template strcmp getpid getuid srandom getppid fcntl getrandom syscall jrand48 dcgettext memcpy libc.so.6 ld-linux-x86-64.so.2 libuuid.so.1 UUID_1.0 UUID_2.20 UUID_2.31 UUID_2.36 UUIDD_PRIVATE GLIBC_2.3 GLIBC_2.25 GLIBC_2.3.4 GLIBC_2.14 GLIBC_2.4 GLIBC_2.7 GLIBC_2.2.5               	          
                   
                                   Z                 '	                 +
   $                   +
   $                   +
   $                   ,       %                 ii
  
 3                 ii
   3       
 =     ti	   H        T     ii
  	 _     ii
   i     ui	   s                    #      (             p#                           ȏ                     ؏                                                 (                    *           h                    p                    x                                                                                                             	                    
                                                            
           Ȏ         ?           Ў                    ؎                                                                     <                                                                                                                                     (         A           0                    8                    @                    H                    P                    X                    `                    h         8           p                     x         !                    "                    #                    $                    %                    &                    '                    )                    +                    ,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   HHo  HtH         52n  %4n  @ %2n  h    %*n  h   %"n  h   %n  h   %n  h   %
n  h   %n  h   %m  h   p%m  h   `%m  h	   P%m  h
   @%m  h   0%m  h    %m  h
   %m  h    %m  h   %m  h   %m  h   %m  h   %m  h   %m  h   %m  h   %m  h   %zm  h   p%rm  h   `%jm  h   P%bm  h   @%Zm  h   0%Rm  h    %Jm  h   %Bm  h    %:m  h   %2m  h    %*m  h!   %"m  h"   %m  h#   %m  h$   %
m  h%   %m  h&   %l  h'   p%l  h(   `%l  h)   P%l  h*   @%l  h+   0%l  f        H=m  Hl  H9tHl  Ht	        H=l  H5l  H)HH?HHHtHl  HtfD      =l   u+UH=jl   HtH=nl  Ydel  ]     w    f     SHH0dH%(   HD$(1H  Ht$H  D$9$uD$f9D$tHT$(dH+%(   u7H0[ D$f9D$uD$f9D$uHt$H|$
   $mf.      1fD  HHufD  AWIAVIAUIATIUSHXdH%(   HD$H1H=k             H=j  H0   H   f        T    ttH=j  OH0   HP   ǃ    D$K   1HN  B  H=mJ  D$1|$ŉ   !tH5`J  ^H0   Hǃ    a  LL$$HL$(HT$ LL$Hl$0HL$HT$H=i  qLL$HL$IHT$H5 J  H0   H1  ,   f  H=_i  "D$    H@   HH   HH  1HH\$0H="i  HL$8H@   H;@       HL$H=h  foL$011HL$ǀP       )@   Hiۀ HH @HFHHMt}A$~tlH=h  XHcHigfffH"H)HcHH   )ЉP   H4ׂCHHH?HH)H@   Hi@B H)HH   H=%h     Ią   HH AE AH=g  ,   fAHD$HdH+%(     D$HX[]A\A]A^A_ H=g  |D$    f)@   f     H=g  T   HH,     f,   ?tH@   1H@   f.     H9J   :P   	P   HcKH0   DHA$P   A$,   M$H   M$@   HxG     I$0   P1I$0   A$   HcZY   H=f  ^H0   H      cf.     HL$H=\f     foT$0,   )@   ǀP       QHL$f?D1f,   1G@ D$    H=f  Hl$0H@   HH   Hf     D$ ~D$(T$$f%?D$0f,   P   )@   8I$0         H=E  aI$0   H=pe  31Hl$0|$H@   HH   H	Mff.     fAU1Ҿ      ATUSHX  dH%(   H$H  1  HT$@1   HHT$  HH$   X   D$$E   E1H\$    HIcHt$#1Hھ'  x^D$"
D$#
D$$
D$%
D$&
D$'tCD$"d  D$&fd     H$H  dH+%(   uEHX  []A\A]A(E9k1     f     @ AWAVIAUATUSHH8$d  dH%(   HD$(1,     L=c  Mc&IM.  1Hi퀖 LHD$HHi$ HPHH)I9s
Hc  IMH
I9  L%c   1Ld$H @LA @D|$H (Ld$HT$HLLT$ŋ$f fD$HLf%fT$fD$c  D$c  fD$  HD$(dH+%(      H8[]A\A]A^A_f.     K~gb          1LHD$HHi$ L<PL=b  1Ld$HT$LfD$LLfD     H=\b    
Pb  |ff.      1f     AWAVAUATUHSH   dH%(   H$   1H=a  mD(   Eu  H=a  Q    ?B    H=pa  31Ҿ      D$    (   IaÅ^  st  fo
B     fT$BHt$0n   fD$0D$D D$2  A$(      Ƅ$   $   H$   HHD$H  D$    E1E1A   Ll$LLFHx1  III)   E1    ۉ     t	   A   fo	A  H|$ 1A)D$ t|    1H>HH   HH9j   H   ufB  H=_  AHH   D(     H$   dH+%(     H   1[]A\A]A^A_ M   |$   fL|$E1E1)$   A   Ǆ$       LLHx   III)   E1 tuAtyfo?  H|$ 1A)D$ <f.     yH=^  ǀ(       H$   dH+%(      H   H1[]A\A]A^A_MtkH=^  Ofo$   M Iċ(   $   Ix1zI$   HI$   B  A$(   n@ H=!^  fo$   E (   $   fD  fBf     ff.     ff.     ff.     AWAVAUATUSHH8dH%(   HD$(1HtD6E   A   1E1Ll$I    L	  LLEAB  fnD$HLfn
>  fn
>  Hfff~D$  E9HD$(dH+%(   u&H8[]A\A]A^A_f         ~\ff.     @ HdH%(   HD$1Ht$D$   HD$dH+%(   uHSHHdH%(   HD$1Ht$D$   uHD$dH+%(   uH[@ HP)f     AVIAUIATUHSHH   dH%(   H$   1Ld$L
     LL  LL  H|$pLHh  foT$pH$   H)$     fnD$HHfn
f<  ffn
b<  ff~D$[  H$   dH+%(   uHĠ   []A\A]A^C AVIAUIATUHSHH   dH%(   H$   1Ld$L(     LL%(  LL(  H$   LH)  H|$pHfo$   )T$p  fnD$HHfn
;  ffn
;  ff~D${   H$   dH+%(   uHĠ   []A\A]A^c H(fdH%(   HD$1HG)$HHT$dH+%(   uH(f.      ȉGffFGffFGffFG
F
GfF    AWH)AVAUATUSH8dH%(   HD$(1H$uCII1A ! "f     H DhtHH$t?II,s@-tHT$(dH+%(     H8[]A\A]A^A_fD  1   L     H3D$uI|$	   1fD$u   I|$1tfD$oI|$   1TfD$OL|$D$& ILt$L<$Hl$$A$    1H   IfD$$AG
IM9uH<$LD$?D$AUHSHHH$uHHs$HH[]@ H[]@ ȉGffFGffFGffFG
F
GfF    S1AP      IIs-ID1HIpLIB
<
fAHuA@ [ff.     @ HY8      H98      H98  t@ SHH dH%(   HD$1HL$D$  	$H H	H ~-MHHBzՔHHHHt"Hi HH)HHHHSHD$dH+%(   u	H H[ff.     H(dH%(   HD$1HdD$fHT$dH+%(   uH(>ff.      H(dH%(   HD$1HT$1fy   @t1 HT$dH+%(   uH(f     USHH   ? H   H56  H-7  rthH56  HH-6  XtNH56  HH-6  >t4H56  HH-6  $tH5j6  H    HEHH[]@ 1HH[]f.     fAT1USH dH%(   HD$1HHK|$3$11<H=T  yf3$LT   fT   RHT$1H1H3$HfAD$fAT$H\$3$t
uHD$dH+%(   u	H []A\H     US)H_KHHcH[HD ]f     S   H=s5  1lÃtEy[     1   rx݃߾   1[[f  H=!5  1
f     AWIAVAUATUHSH(dH%(   HD$1IMtkLI    HAE     IH)t_E1AE        HLAE At-u(fo
4  H1A)$6빋 I1D  &   E1HAM  IHHH0CI9uH=R  _   LT   T   A]D$1f\$h1fA]H\$@ HHH0EI9uH=AR  T$T   HD$dH+%(      H(D[]A\A]A^A_@ Aƅ!E1H   HLDH~IH)   E1A	u]E1HADHMH=Q  ^   HT   T   ]D$1f\$h1f]fo3  H1A)$ZE1D@    H52  1
f.      fo2  HG    ff.     AWIHAVAUATUSDD6A3xAxjD!A3x^APApDXDh\$DD13Vp!A3PAX$AHt$G;νD\$p $D\$1A1҉!D1DDPDT$!11DE:|h
!1DD*ƇG1!A1DDHDL$E	F01A1!1DE5FDD` Dd$!1DE<ؘi
1!1DDDʋX(1D`8\$!1DD[X01!1DDH,EE1\1D\$!1DD;"k
1!1DDH4Eq1!1DECy1!1DDP<A2!I1!1ƋD$
΍8b%1!1|$@@1!1AQZ^&	1!1A6Ƕ1!1]/։1!1|$SD1!1A
؉	1!1|$э71!1|$΍!1!1A7É1!1|$	
1!1|$э7ZE1!1A㩉1!1t$1!A
og1	1!;L*1AΉ1!ǍB91DD\$1D$q11D$0"am1A<81Ɖ11|$	D꾤11|$K1A5`K1׉11t$p11A	~(	1A>'1A01111׋T$211֋T$	
9ى11ʉ11A:|11ǋD$0eVĉ11AD")Dt$		1A
*CA<#	1
	19Ή	1Y[e\$	1AD\$	щ13}Ƌ\$
	1|$΍]	1AO~oAAD	1A
,DT$	A1AA6CDt$
AN	1A~SDAA	1A5:D	1Љ3*\$	1ʉ;ӆ[
]A\A]A^	1A fn	1A4A_AHAPfnfnfnfbfbflA    AWAVIAUAATUHoSH1HGO@ƉWDW?tS@   A)HA90  Aԃ\    t3@1%  HLGl/LuA?s  EeAAII     oHLH@E oKMoSU o[]0I9uA?Ar_I$HuHIFDITHTH)AD- I)r1҉уI<H<9rH[]A\A]A^A_f.     A  EtA$AFAtDATfTfA   A   EtAtDTfTD  H3HyIHH1Jt#Jt!H)I)Ƀ1ɉ΃M1L79rvfD  IHHqHHDHTHTH)AD
 H)˃1҉уH<H<9rA$AFDATTBT#BT!DTTBT#fBT!fAT?   LfUHSFH?)LHr   t1 9rLHfCID$0    AD$AD$ HCHLHCPoH{1HM H    HCP    H)KXH[]A\D  7   1)rBHB    H	HD    HH)r1ƃH<29ri u#YB L1fD@fB    D    *f.     fAWAVAUATUSHH   SD{dH%(   H$   DsH\$Ho~D|$@o^DF Dt$8of D[)T$Pon0)\$`AD1D\$DAAŉD!D1)d$pAyZEA)$   ƋD$TAD$   DAAD1DT$!ȉDt$41T$<AyZD|$dDL$DED$XAAωȉDD1ЍyZ!D1؉Љl$\D1FyZ!D11GyZAÉ!D1A7yZAD\$hDAAD\$A1A!A1AyZD\$xAAD\$DAA1A!A1AʉDDT$lAEAA1Dt$ AyZEA!AA1A1AyZA҉A!A1DADDD$tAEAA1A:yZDT$$A!A1A3yZD$   AADAA1A!A1ADDD$|AEAA1A
yZDT$D$   A!A1AyZAD$   AȉADAA1A!A1AyZAЉDAA1A!A1A:yZAA1DAA1A!A1A1yZADAA1A!A1ADEE1E1AEAA1A
yZD,$Dl$$A!A1AȉDDD$A1E1E1AEAA1AyZDl$Dl$A!A1AЉDAE1E1E1ADAA1yZ\$A!A1ADAl$E1A1,$A11AA8yZ!1|$AD1Dd$D1Dd$D1AAA1D㍴7n1At$ ED1D|$AD1D1A1AnD|$1A̋L$D1D1D1Ή1ƉDt$nt$ D1AAϋL$$A1ΉD11D1DnD1؉ADËD$D1D1D4$D1Dt$D1AE1(nADAt$A1D͋L$D11͋L$1ŉt$1F)nL$ L$DEAAl$111ՉD1F&nD1t$,DEAAAl$D1E1D11ŉD1F9nL$$L$ D1AADDD|$E1A1A1ADEE1nL$L$E1ADAADD|$E1A1DD1AADG3nD4$A1t$0EAAED|$$E1A1ʋL$E1AA1ɋL$EEA1A1EG/nEA1AEEDl$E1AEAA1EG&nD$$E1AA1EEA1AA1Et$ AEAE1A-nE1ADEADDd$E11A1E1ADEE1ԍnt$t$,E1ADAADAA1E1ADEE1FnL$(A1l$EAA4$A1l$$EAE1A1A1E1ADGnEEADd$EDT$D1DT$D1D1At$1ACnE1E1ADADDL$0D1A1΋L$E1A4$E1AA1D1A2nD1AADΉL$Eٍn\$ E1A11DAD1AD1DADA1DL$Gn1D\$,AщD1D1DD1$	AA!!D	D$GܼDL$ADA؋\$$A1E1DL$E1ADD$AA	EAA!A!E	DL$A9ܼDL$(DAAADD\$D1D1DL$D1ǉ|$	AA!!D	DL$A1ܼD$Dދ\$011D1Ɖt$D	ADAA!!D	DL$A	ܼDD\$D1D1D1AˉD	AAɉAܼD\$A!D!AD	ʉE1E1DD\$D1D1D\$ӉE1	ܼ\$AщE!!D	At$ЉA1D$D	!A1ǉAD!	CܼAADAȋL$t$AA1A1D	ƉAD!D!	A>ܼ<$΋L$(A1͉A1!A1	AD!	C
ܼAωA	A!DD\$1D1D\$D1!D	FܼAɉ\$$DAAA|$(D1D1D1A	D1A!!ܼD	Dl$1DD1	AADA!A!AܼD	D	DL$E1AǋD$A!A1ċD$$A1ĉAD!D	A4ܼADd$(Ɖt$A	A1t$E!A1A1!DD	D$ō
ܼ΋L$D1D1D1Aʉ	GܼDT$ DT$AɉA!!D	AAȉA	A!DDD$E1E1E1AAA!EEE	AܼDL$DT$AЉDT$DD$E1AE1A	A1A!EAAA!E	A<ܼADDD$E1DT$$DL$ E1E1AD$AA	EAA!A!E	D$AܼDL$ADDD$E1DL$A1E1ADD$AA	EAA!A!E	DL$A1ܼDL$ADDD$E1E1E1ADD$AA	EAA!A!E	DL$A	ܼDL$(AȉDDD$E1E1D$E1AAA1A1DD$EbʉEDL$DDD$E1A1E1AEAA1A9bDL$DL$A1DAAADD|$ D1A1D1D|$D1A1AbD|$E1DDDT$D1D1D1AA1E1D0bʉAEADEDl$E1E1E1E1EA1AE
bʉED$DED|$E1EE1A1EA1AEbDt$Dt$(EDT$DEA1ىE11A1AډAA1GbEADED\$Dl$$A1D|$E1E1AAA1AA1A8bEDADl$ADDt$ A1A1D1D1D|$D1Ǎ7bDEAAD1l$1D11D1AbDAl$ADD11D1AΉD1AbDt$DD1,$AADADD11ED1D1A1AD1b͋L$A݋\$D1AD1Dd$$D1E1AFbAl$ED$A1A1ˋL$A1DD1AÉDGbD1A͋L$DDT$AA1ʉE1EA1E1AE1AG:bEAϋL$EDL$A1E1EA1E1AD1G1bDt$ADA؋\$A1DDt$1DD11AE1B+bEADAD1Dl$$AˋL$A1E1D1A1DAD1AGbD\$D1DA1AD1D\$DDE1E11Dt$4H\$HE1AAbDt$8FbEDD|$@DAA1ADD1AAAfnAD$<fAnfbfnA?fnCfbΉCflH$   dH+%(   uHĨ   []A\A]A^A_ff.     @ fo  H  G    HGfAWAVI1AUATAUHSHGO@ƉWD?AǃWC<?wHH| DL[]A\A]A^A_q@   HD)A݃sm   tA   HuH%   D)D9r    AK4.H؃@D9rA)I޸   e@ IHpMHHKT.JT(H)I)؃r1҉уI<H<9rif.     MGd'   ACT.BT(9CT.fBT((f     AUATUHSHH(dH%(   HD$1Ld$ 1҉ыTAHHuD$Ll$fD  D$    LHC%  =  uܺ   LH1f.     ыT HHuH{H    1HHCT    H)K\HHD$dH+%(   uH([]A\A]If     AUATIUSHHxdH%(   HD$h1IL#t H@ H޺   LH$H9uLLAD$ HD$hdH+%(   uHx[]A\A]  HH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /var/lib/libuuid/clock.txt r+e                    
     clock: %04x tv: %lu %lu adj: %d
        clock: %04x tv: %016ld %08ld adj: %08d
                     /run/uuidd/reque? @  0  P 0123456789ABCDEF0123456789abcdefdns url oid x500 x.500          kр O0kр O0kр O0kр O0/dev/urandom /dev/random getrandom() function           @Ys    #EgܺvT2    ;t  -     X  (  8  ز  (    H  H  X$  X  h  x    x  0  T      (   h  d  8  x          ,  H  hh  (    (     l    8  (  $  8X  H  h  	  D	             zR x  $         FJw ?;*3$"       D                 \   P           $   t   H    AG@S
AD                      \      Ȱ   BEE E(D0A8DP
8A0A(B BBBDvgA  8     hL   BNA A(G	
(A ABBAH   P  |   BBE B(A0C8Gp3
8C0A(B BBBK     0       d     ,   BBB B(A0D8G$
8C0A(B BBBD
8F0A(B BBBF       ļ          ,            @         H   T      BBB B(A0A8Gp
8C0A(B BBBJ      \@    D v
A        W    AG z
AE  @         BEE A(D0J
0A(A BBBAD   $  X    BEE A(D0J
0A(A BBBA       l  C    D0y
A            9           H     H   BEB B(A0A8Dpv
8A0A(B BBBG 0     <    ADG O
KAIDFA    $  9              <  Q    AO     X  	          l   	                             AG0
DA      B    D0x
A       W    D0M
A     4         AAD 
DAEFDA    0   ,      BCA D@
 AABA $   `  '    ACH LFH       $w    Af
Im
C  H     L   BEB B(A0D8D`Z
8D0A(B BBBE                        @         BHB B(A0A8}0F(B DBd H   d  H   BBE H(A0E8I@+
8A0A(B BBBK0     D   BJD 
ABF       L        BBB B(A0A8J
8A0A(B BBBA      4         H   H  w   BBG B(G0D8D@y
8L0A(B BBBF  8        BBA D(GP
(A ABBA 8         BBD C(Gd
(A ABBA                                                                                                                                                                                                                                                                   #      p#                                                            
       `                                         (                    o                 8
             x      
                                  P                                         h                                 	              o    H      o                         o           o          o           o    
      o                                                                                           0                      6       F       V       f       v                                                               !      !      &!      6!      F!      V!      f!      v!      !      !      !      !      !      !      !      !      "      "      &"      6"      F"      V"      f"      v"      "      "      "      "      "      "      "                                                                     fbf612bab7ff5fb2fd40479ec22f122af9ba39.debug    V) .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_d .gnu.version_r .rela.dyn .rela.plt .init .plt.got .text .fini .rodata .eh_frame_hdr .eh_frame .tdata .tbss .init_array .fini_array .dynamic .data .bss .gnu_debuglink                                                                                p      p      $                                 o                                                (             x      x                                0             8
      8
                                   8   o       
      
                                  E   o       H      H                                  T   o                                               c                                                     m      B       h      h                                 w                                                           r                                                         }             "      "                                                 #       #      =                                          `      `      	                                            p       p                                                q      q      t                                          s      s                                                     |                                                       |      J                                                   |                                                (      (|                                                0      0|                                               P      P~                                                                                                                                                                               4                                                    <                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 [rFX!  cȲl+mMNN*C!nE2	΋';_H[ul&su*8J/ĳ#۵߅jzuTLlyE]U0ox}sQeU(\VBbVdؙe&Lx%JxZRNXVr++Ke%تUj6^zaBE*DU\VQYVOx=9[XxU6ü*bBF2bM_w犷٭)w\9|M_|!!I {.JEYe'JhbB>
t[ݪT'ϺȊJ}><ۼ1zꚡNܵvHe"ZJ|Ȃ@U#EH*-C Cݍ.j_c "JP|:7>f"9?qEF'`4C(ܙ	`v3
e1#lY,68oda}wlTԩ^rkgsB%
S$-uaHcN&Ka	]BM$]ȇ'MRqRWe-R%~=8\ 
4(VyeV/yQo
ǽS=A/#V*	Vq(9xu<}w;GkR̖Qn{*^Ge%j U(QrU>aPhj8!㳼Z=Ȳ_
gYYjM,X%YflFVxW9#׺"Z]4ʰq_2UVg85h&U)-(YcQLKUth+JEČһȣ:FȊU?X(BYƩ^~hTy'?[z?z;竄xOŬPQ/ d"WBdDef<G b/DQ=?Hn")g@dBb-[qM2YoL|"TY4&/{0#D	S=Xp	k%a2o !HdUaF*fڷ#и:*bl秛WKgu89_>Ier>J9ZPe>3pYJS[@A!%ߛydW`yJh^V 
øB9bֽX=KAʎ3U՝Մ<a6mLvkMoF_J<7@7>_pfY\4Α<@
{X$E&Rb/_Xn&$6X`0<{s3rYpV<%gߞ{&YqY
YqͪnK-{R:
}ǫ7]|y1Q\Ji&NӚW㓨Hb*)s Z o
욥6 $'Y3Jc5dD{I+-#g EȎ@poxTfHT AkxJŮL4iC<D憆 UoH>7$I<ot~}&,>&h|V!`+h8~:<d";lgT ]"`TC'> 
 D8ݡupIu$"SmB#`ȶx,qSrM|(|:Ry9ahB|ʆt9&$.!JR|Fad,N-vީa.ϟKPxL%)q [}G
'wG>-*˗
#g``QKFt8'yǸ:+o5jNJqƎ?u臊bfv8;`x8+ʈlH#B"A8"T3YǕ C	pBiyaݛ!3D:9UnP;-!3f_BC,(9@FK*łX	~ '4![SqspRŋL2G 	'dɣp3wcZiJL2y+gzo>6pzɁ-x$~Bߨ;J##dD2ph%g<
4|&s;
tM$Z^@ZRR5D .Q"c69MTe8*w5v}]^>HDYN<~_\?{1ڶͮ=D )\Ȃr5cƞJPI
e8J5z
}o/kW`YXñvmFG
vZGjtHP{"
Epm2^ҰZ$B&u*)\୫H㍐8> ܠ䥪̺D ,X`ohe q͎XYg
)	8y$aBZC0vA W/m]So;̉ cGv0F@g
w"~qr)j~1mSuxp@gETzeȢoLQ0" #
.!i9x-26AmL(	ŭwD˕Hδ? :^s1OS&Ey=#=M4PsW 1[kk>;7öfVHuco<͙HT1L@̚z![qacjR e
*q=%RK§6BQr3C;#kAh:"wiC@:sIg=
Ϗ`39@vQd= _!Pq*"`:kV\]5mW:R8P-Nc#K@kae56BYש|,ayI	ƚj/^+G˂X5qoS.3*zAQ>M)v۟c4^.0#.ϰE|z?,5'8gtlrdGvI{yro/(F.:IB
w2 vנƒ.34, þzN9%ỈÊ RSKU7XBT=\Q}X#G;|M|73绽G`\!vm-]&*_I;GzM!Jڤ-!x|؆M-^uHpN6ܽι	,RJK㵱b<hf6
ќr9W&vS90jm.ş*HxCQ
ޚsG.l ݺCybemۧB`;!M2%7ݭT	tҤH4d\8$?sʮi-uLƖ(:~6/Λ\!m.EȖ:MQn#4u"O`	ʣFܮޖ>ng];@mh"d`0iyeAs+WG[4}B~9@/A^Q}/K0=oJ:17QzAaחdDQq_"h"6ozU6>O!I$V
`7(knWzK ~
q*igr͂/Qr۷Fqo]&/꘾ ʽ3X4%̞)_iş_w}UΖY\Z#3otp)ɪLE^GH#ڂ{ztKbځ.U
1EgwD{a50$aݺQZ@={`;ea+?͛Eh``i[?ݾn!2KNxjG`)ȇj)^js2W*-eYTz-^ҧT056L]|*Z޴c,h=-an	ú㋕*O9**]YT}}etÏٛ$(R+`}OפUkQj99Mȥ@} ?]kU϶jVw8pV2EרN.
l>Mcw|xhʏ6L"~dqB­"42OkɅBsjg<"IMX@stD68_|d=6@)%?sZoxܥ8>;lj<.\4OW̉TYLgJ'ۡM!YiU·pl8+D괳=vMky+!s=#B0h.>/miH{O9Eg4"yKAj&@B |c	"Ǡ̖I>8;Ex{$Iŋ&fYƇzC.;<^/pP>FeXz@JubQHu=n8%5ơz5cꮝuUyKO6>aӑ&m2}͗e
3$f!q _ۥnl*BuMb!T=gbEW9B7 -j.hϩp}AA*K5J6t=T ỹZ Y]-i.iuZd"["U}:g<Ñ+(	M*oaUC3`)$+:BZE{i\#^}b?lkZSVLY3jĔZpٸw6}uqn姫K 
Z"-,6bMz.y2DB8`as]8`wŉ>(`6!_Ӄ_>9&7ϯ_5/\^+o> :j%-]ظ;ac8=Ysh_&&~=io~G
s?M\&)kv++fz6ͺOS)WXD3oSp6׹7r=o	rp:o}oRm.#^'*o5tA
g{ݴufLf 0
:"
r}9Xz w07 #˖ؚtW$_pHtq]_rҽ]SU}V/d1Ygɾ`ZTh'7*C5h.SI:~	dlo۬ye?Ӣ{sAwq8v{1a8BN
c$*-YNWB$qrImKll}\XH.u/mr?1PWwHr{Bί7w-I;nLNLח>7ٸnj&]M:&t'tLKL~`uCa4;^ϔL/F_~RAZGW-hw.BºxQOC\5ܽTȯYn767rmi[A=B>ԞABG`4N'q4}pi1H\vCǺ#x!#v{ at
:sKPa|:ݧ/p߳a	CO~m%)h́AW;ۖt&l9|J7/ͬiWuYȦD
ݾ:?MػS@5g֯gT3\\Zl hfpbZe$$0e5FpUzI@L8v! 5i95Rɪ{lܥ)]d:l\(BqZZ5]a˲qkfFY"臡ޏL-} I'_1Nh:أQY^2	@|VRPOb2+9ҰV
_mbG3UwV9F8RVyy7%{ȥifo02Ûnt`;k3'"ϫB[uAF/ͼl45Af`@T@^qP>eP_йeh@ogzD*Fxbopel8.[&L(ЏE0hCJzZUTKGCdC.1WLq7s7ApϘ;}dQ1
WfPX$| s$oȘ+|+bnGd2Ƶ)A<;arXwО ")!;Hϙyʂ|tu}oExNƻnM҉)4IǮtHD'KӁ^ͥW]?*8ЫA=$=Y0<t/q"@>2 +[')Rg%}kmW+̬ y>~z倚y*d␦)R:g< &ל*%
Y=]tUm~N>	 N)5wrrq3?7.%E
.r`T~QO^Ib~E-)/#^kP	
V9v_Yݎ*|܉ic]%)o`ƟNy"w(N~DC&.˧U	K
Űw%ó62v KXĒ.>߿wkq%l'M\JS];dQUSj<*0ԲXN
9
MVaĵw>-粠u-*-T
'c+}w;duOpȶTq83?-s:|$vǵ,px>`=ݹW0n04Cah^`\9rSFc"U]6*_2%N#Y3/8 .Lfb.M[meMYq 
z#2NC}z*Qg	'X?LWSx&8hc"h>نHiY4]';figZ{&	1ʨ-(ꞕ|,^T#
Z[@
uevX۲9m7p{Vgs0#~zVz:	-o$-n6ZfqN{e]CpsjLthj2;@$eLܹf|Ϗa^su{t`#*e2wAC
G1/ǺU5h#G:,Aܐ>҂?_j'ooIօ(>8i7BTJDPH."
O\hٲ*|zf lA5=NXzi*A:kPhjЊ-	˵LPsڷ4{SFe{.]g5:틉Kw\H^	7(ecA?sI7:Th"zi*jjdL5h$7tZɐK*߷	6Č$1V9R;0S*|3n{Wr(G%9GP$.VsTR]b{ɿN_`NM>}.28VMt|x66fRlQK=Q[G3JOAVdL;]eeD \YCe˽F )
QIv~Na,22xG`D)'Эkdp~CM1 Ip.Vͮm%jTW/O+uQ_LBY                                                                                                                                                                                                                                                               NMU(K-*SH+)Q,./())(O,N-K/J/(M/N/-)9yHL=t2#=c=C. `0k                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: util-linux
Upstream-Contact: util-linux@vger.kernel.org
Source: https://www.kernel.org/pub/linux/utils/util-linux/

Files: *
Copyright:      Michal Luscon <mluscon@redhat.com>
           1986 Gary S. Brown
           1990 Gordon Irlam (gordoni@cs.ua.oz.au)
           1991, 1992 Linus Torvalds
           1991-2004 Miquel van Smoorenburg
           1992  A. V. Le Blanc (LeBlanc@mcc.ac.uk)
           1992-1997 Michael K. Johnson, johnsonm@redhat.com
           1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
                 2003, 2004, 2005, 2008 Theodore Ts'o <tytso@mit.edu>
           1994 Kevin E. Martin (martin@cs.unc.edu)
           1994 Salvatore Valente <svalente@mit.edu>
           1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
           1994-2005 Jeff Tranter (tranter@pobox.com)
           1995, 1999, 2000 Andries E. Brouwer <aeb@cwi.nl>
           1997-2005 Frodo Looijaard <frodo@frodo.looijaard.name>
           1998 Danek Duvall <duvall@alumni.princeton.edu>
           1999 Andreas Dilger
           1999-2002 Transmeta Corporation
           1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.
           2000 Werner Almesberger
           2004-2006 Michael Holzt, kju -at- fqdn.org
           2005 Adrian Bunk
           2007-2020 Karel Zak <kzak@redhat.com>
           2007, 2011, 2012, 2016 SuSE LINUX Products GmbH
           2008 Cai Qian <qcai@redhat.com>
           2008 Hayden A. James (hayden.james@gmail.com)
           2008 James Youngman <jay@gnu.org>
           2008 Roy Peled, the.roy.peled  -at-  gmail.com
           2009 Mikhail Gusarov <dottedmag@dottedmag.net>
           2010, 2011, 2012 Davidlohr Bueso <dave@gnu.org>
           2010 Jason Borden <jborden@bluehost.com>A
           2010 Hajime Taira <htaira@redhat.com>
           2010 Masatake Yamato <yamato@redhat.com>
           2011 IBM Corp.
           2012 Andy Lutomirski <luto@amacapital.net>
           2012 Lennart Poettering
           2012 Sami Kerola <kerolasa@iki.fi>
           2012 Cody Maloney <cmaloney@theoreticalchaos.com>
           2012 Werner Fink <werner@suse.de>
           2013,2014 Ondrej Oprala <ooprala@redhat.com>
License: GPL-2+

Files: schedutils/ionice.c
Copyright: 2005 Jens Axboe <jens@axboe.dk>
License: GPL-2

Files: schedutils/chrt.c
       schedutils/taskset.c
Copyright: 2004 Robert Love <rml@tech9.net>
           2010 Karel Zak <kzak@redhat.com>
License: GPL-2

Files: disk-utils/raw.c
Copyright: 1999, 2000, Red Hat Software
License: GPL-2

Files: sys-utils/hwclock-parse-date.y
Copyright: Steven M. Bellovin <smb@research.att.com>
           Unknown Authors on Usenet
           1990 Rich $alz <rsalz@bbn.com>
           1990 Jim Berets <jberets@bbn.com>
           1999, 2004 Paul Eggert <eggert@twinsun.com>
License: GPL-3+

Files: sys-utils/nsenter.c
Copyright: 2012-2013 Eric Biederman <ebiederm@xmission.com>
License: GPL-2

Files: disk-utils/mkfs.minix.c
       disk-utils/mkswap.c
Copyright: 1991, 1992 Linus Torvalds
License: GPL-2

Files: lib/blkdev.c
       lib/loopdev.c
       lib/sysfs.c
       lib/ttyutils.c
       misc-utils/mcookie.c
       sys-utils/setsid.c
       text-utils/line.c
Copyright: n/a
License: public-domain

Files: login-utils/vipw.c
       misc-utils/cal.c
       misc-utils/kill.c
       misc-utils/logger.c
       misc-utils/look.c
       misc-utils/whereis.c
       sys-utils/renice.c
       term-utils/mesg.c
       term-utils/script.c
       term-utils/ttymsg.c
       term-utils/wall.c
       term-utils/write.c
       text-utils/col.c
       text-utils/colcrt.c
       text-utils/colrm.c
       text-utils/column.c
       text-utils/hexdump.c
       text-utils/hexdump.h
       text-utils/hexdump-conv.c
       text-utils/hexdump-display.c
       text-utils/hexdump-parse.c
       text-utils/rev.c
       text-utils/ul.c
Copyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
                The Regents of the University of California
           2014 Sami Kerola <kerolasa@iki.fi>
           2014 Karel Zak <kzak@redhat.com>
License: BSD-4-clause

Files: sys-utils/flock.c
Copyright: 2003-2005 H. Peter Anvin
License: MIT

Files: text-utils/pg.c
Copyright: 2000-2001 Gunnar Ritter
License: BSD-3-clause

Files: login-utils/login.c
Copyright: 1980, 1987, 1988 The Regents of the University of California.
           2011 Karel Zak <kzak@redhat.com>
License: BSLA

Files: login-utils/logindefs.c
Copyright: 2003, 2004, 2005 Thorsten Kukuk
License: BSD-3-clause

Files: libuuid/*
       libuuid/src/*
       libuuid/man/*
Copyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.
           1999 Andreas Dilger (adilger@enel.ucalgary.ca)
License: BSD-3-clause

Files: lib/procutils.c
       include/xalloc.h
Copyright: 2010, 2011 Davidlohr Bueso <dave@gnu.org>
License: LGPL-2+

Files: */colors.*
Copyright: 2012 Ondrej Oprala <ooprala@redhat.com>
           2012-2014 Karel Zak <kzak@redhat.com>
License: LGPL-2+

Files: login-utils/setpwnam.h
       login-utils/setpwnam.c
Copyright: 1994 Martin Schulze <joey@infodrom.north.de>
           1994 Salvatore Valente <svalente@mit.edu>
License: LGPL-2+

Files: libfdisk/*
       libfdisk/src/*
Copyright: 2007-2013 Karel Zak <kzak@redhat.com>
           2012 Davidlohr Bueso <dave@gnu.org>
License: LGPL-2.1+

Files: lib/cpuset.c
       */match.*
       lib/canonicalize.c
Copyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: */mbsalign.*
Copyright: 2009-2010 Free Software Foundation, Inc.
           2010-2013 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: */timeutils.*
Copyright: 2010 Lennart Poettering
License: LGPL-2.1+

Files: include/list.h
Copyright: 2008 Karel Zak <kzak@redhat.com>
           1999-2008 by Theodore Ts'o
License: LGPL

Files: libblkid/*
       libblkid/src/*
       libblkid/samples/*
       libblkid/src/partitions/*
       libblkid/src/superblocks/*
       libblkid/src/topology/*
Copyright: 1999, 2001 Andries Brouwer
           1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004
               Theodore Ts'o.
           2001 Andreas Dilger (adilger@turbolinux.com)
           2004-2008 Kay Sievers <kay.sievers@vrfy.org>
           2008-2013 Karel Zak <kzak@redhat.com>
           2009 Bastian Friedrich <bastian.friedrich@collax.com>
           2009 Corentin Chary <corentincj@iksaif.net>
           2009 Mike Hommey <mh@glandium.org>
           2009 Red Hat, Inc.
           2009-2010 Andreas Dilger <adilger@sun.com>
           2010 Andrew Nayenko <resver@gmail.com>
           2010 Jeroen Oortwijn <oortwijn@gmail.com>
           2010 Jiro SEKIBA <jir@unicus.jp>
           2011 Philipp Marek <philipp.marek@linbit.com>
           2012 Milan Broz <mbroz@redhat.com>
           2013 Alejandro Martinez Ruiz <alex@nowcomputing.com>
           2013 Eric Sandeen <sandeen@redhat.com>
           2013 Rolf Fokkens <rolf@fokkens.nl>
           2013 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
License: LGPL-2.1+

Files: include/cpuset.h
       lib/randutils.c
Copyright: *unknown*
License: LGPL

Files: misc-utils/blkid.c
Copyright: 2001 Andreas Dilger
License: LGPL

Files: libmount/*
       libmount/src/*
Copyright: 2008-2012 Karel Zak <kzak@redhat.com>
License: LGPL-2.1+

Files: libmount/python/*
Copyright: 2013, Red Hat, Inc.
License: LGPL-3+

Files: libsmartcols/*
Copyright:  2009-2014 Karel Zak <kzak@redhat.com>
            2014 Ondrej Oprala <ooprala@redhat.com>
License: LGPL-2.1+

Files: debian/*
Copyright:           Guy Maor <maor@debian.org>
                     Sean 'Shaleh' Perry <shaleh@debian.org>
                     Adrian Bunk <bunk@stusta.de>
                     LaMont Jones <lamont@debian.org>
           1996-2003 Martin Mitchell (martin@debian.org)
           2008-2012 Frank Lichtenheld (djpig@debian.org)
           2014      Andreas Henriksson <andreas@fatal.se>
           2017-2020 Michael Biebl <biebl@debian.org>
           2019      Petter Reinholdtsen <pere@debian.org>
           2017-2020 Chris Hofstaedtler <zeha@debian.org>
License: GPL-2+

Files: debian/po/*
Copyright:           Aiet Kolkhi <aietkolkhi@gmail.com>
                     Anton Gladky <gladky.anton@gmail.com>
                     Arief S F (arief@gurame.fisika.ui.ac.id>
                     Armin Beširović <armin@linux.org.ba>
                     astur <malditoastur@gmail.com>
                     Axel Bojer <axelb@skolelinux.no>
                     Bart Cornelis <cobaco@skolelinux.no>
                     Bartosz Fe�ski <fenio@o2.pl>
                     Basil Shubin <bashu@surgut.ru>
                     Baurzhan Muftakhidinov <baurthefirst@gmail.com>
                     Bjorn Steensrud <bjornst@powertech.no>
                     Claus Hindsgaul <claus_h@image.dk>
                     Clytie Siddall <clytie@riverland.net.au>
                     Dafydd Tomos <l10n@da.fydd.org>
                     Damyan Ivanov <dam@modsoftsys.com>
                     Daniel Franganillo <dfranganillo@gmail.com>
                     Daniel Nylander <po@danielnylander.se>
                     Danishka Navin <danishka@gmail.com>
                     Dauren Sarsenov <daur88@inbox.ru>
                     Dominik Zablotny <dominz@wp.pl>
                     Dr.T.Vasudevan <agnihot3@gmail.com>
                     Eddy Petrisor <eddy.petrisor@gmail.com>
                     Eder L. Marques <frolic@debian-ce.org>
                     Elian Myftiu <elian.myftiu@gmail.com>
                     Emmanuel Galatoulas <galas@tee.gr>
                     Esko Arajärvi <edu@iki.fi>
                     Frank Lichtenheld <djpig@debian.org>
                     Frédéric Bothamy <frederic.bothamy@free.fr>
                     Gabor Burjan <buga@buvoshetes.hu>
                     George Papamichelakis <george@step.gr>
                     Hans Fredrik Nordhaug <hans@nordhaug.priv.no>
                     Håvard Korsvoll <korsvoll@gmail.com>
                     Hideki Yamane <henrich@samba.gr.jp>
                     Hleb Rubanau <g.rubanau@gmail.com>
                     I Gede Wijaya S <gwijayas@yahoo.com>
                     Ivan Masár <helix84@centrum.sk>
                     Jacobo Tarrio <jtarrio@debian.org>
                     Jamil Ahmed <jamil@ankur.org.bd>
                     Janos Guljas <janos@resenje.org>
                     Jordi Mallach <jordi@debian.org>
                     Josip Rodin <joy+ditrans@linux.hr>
                     Karolina Kalic <karolina@resenje.org>
                     Kartik Mistry <kartik.mistry@gmail.com>
                     Kęstutis Biliūnas <kebil@kaunas.init.lt>
                     Kevin Scannell <kscanne@gmail.com>
                     Khoem Sokhem <khoemsokhem@khmeros.info>
                     Klaus Ade Johnstad <klaus@skolelinux.no>
                     Knut Yrvin <knuty@skolelinux.no>
                     Konstantinos Margaritis <markos@debian.org>
                     Kostas Papadimas <pkst@gnome.org>
                     Kumar Appaiah <a.kumar@alumni.iitm.ac.in>
                     Lior Kaplan <kaplan@debian.org>
                     Luiz Portella <lfpor@lujz.org>
                     Mallikarjuna <Mallikarjunasj@gmail.com>
                     Mert Dirik <mertdirik@gmail.com>
                     Milo Casagrande <milo@ubuntu.com>
                     Ming Hua <minghua@ubuntu.com>
                     Miroslav Kure <kurem@debian.cz>
                     Mouhamadou Mamoune Mbacke <mouhamadoumamoune@gmail.com>
                     Nabin Gautam <nabin@mpp.org.np>
                     Ossama M. Khayat <okhayat@yahoo.com>
                     Ovidiu Damian <deelerious@gmail.com>
                     Parlin Imanuel Toh <parlin_i@yahoo.com>
                     Pavel Piatruk <berserker@neolocation.com>
                     Piarres Beobide <pi@beobide.net>
                     Praveen|പ്രവീണ്‍ A|എ <pravi.a@gmail.com>
                     Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
                     Sahran <Sahran.ug@gmail.com>
                     Sampada Nakhare <sampadanakhare@gmail.com>
                     Setyo Nugroho <setyo@gmx.net>
                     Simão Pedro Cardoso <pthell@gmail.com>
                     Stefano Melchior <stefano.melchior@openlabs.it>
                     Sunjae Park <darehanl@gmail.com>
                     Sveinn í Felli <sveinki@nett.is>
                     Tetralet <tetralet@gmail.com>
                     Theppitak Karoonboonyanan <thep@linux.thai.net>
                     Tshewang Norbu <bumthap2006@hotmail.com>
                     Vahid Ghaderi <vahid_male1384@yahoo.com>
                     Vanja Cvelbar <cvelbar@gmail.com>
                     Veeven <veeven@gmail.com>
                     Vikram Vincent <vincentvikram@gmail.com>
                     Yoppy Hidayanto <yoppy.hidayanto@gmail.com>
License: GPL-2+


License: public-domain
 The files tagged with this license contains the following paragraphs:
 .
 No copyright is claimed.  This code is in the public domain; do with
 it what you wish.
 .
 Written by Karel Zak <kzak@redhat.com>

License: GPL-2
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License, v2, as
 published by the Free Software Foundation
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in `/usr/share/common-licenses/GPL-2'.

License: GPL-3+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 3 can be found in `/usr/share/common-licenses/GPL-3'.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
 1) Redistributions of source code must retain the above copyright notice,
 this list of conditions and the following disclaimer.
 .
 2) Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following disclaimer in the documentation
 and/or other materials provided with the distribution.
 .
 3) Neither the name of the ORGANIZATION nor the names of its contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.

License: BSD-4-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    This product includes software developed by the University of
    California, Berkeley and its contributors.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSLA
 Redistribution and use in source and binary forms are permitted
 provided that the above copyright notice and this paragraph are
 duplicated in all such forms and that any documentation,
 advertising materials, and other materials related to such
 distribution and use acknowledge that the software was developed
 by the University of California, Berkeley.  The name of the
 University may not be used to endorse or promote products derived
 from this software without specific prior written permission.
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

License: LGPL
 This file may be redistributed under the terms of the
 GNU Lesser General Public License.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License can be found in ‘/usr/share/common-licenses/LGPL’.

License: LGPL-2+
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation, either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 The complete text of the GNU Lesser General Public License
 can be found in /usr/share/common-licenses/LGPL-2 file.

License: LGPL-2.1+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation; either version 2.1, or (at your option)
 any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public License along
 with this program; if not, write to the Free Software Foundation,
 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’.

License: LGPL-3+
 This package is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 3 of the License, or (at your option) any later version.
 .
 This package is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License can be found in "/usr/share/common-licenses/LGPL-3".

License: MIT
 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation files
 (the "Software"), to deal in the Software without restriction,
 including without limitation the rights to use, copy, modify, merge,
 publish, distribute, sublicense, and/or sell copies of the Software,
 and to permit persons to whom the Software is furnished to do so,
 subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           /.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
/usr/share
/usr/share/doc
/usr/share/doc/libuuid1
/usr/share/doc/libuuid1/changelog.Debian.gz
/usr/share/doc/libuuid1/changelog.gz
/usr/share/doc/libuuid1/copyright
/usr/lib/x86_64-linux-gnu/libuuid.so.1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              a  .   p,  ..  a  LICENSE d  distRe  
browser.js  !n  polyfill.js r  package.jsonat  	README.md   t  browser.mjs t \polyfill.mjs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ~#'a  .   p,  ..  a  license Gk  index.jsr  package.jsonbt 	readme.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dv}a  .   p,  ..  a  license Hk  index.jsr  package.jsonct  	readme.md   y 
index.d.ts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6a  .   p,  ..  a  LICENSE a  node_modulesIk  distr  package.jsonet 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ކ_,  .   ,  ..  ,  LICENSE b  node_modulesf  build   Vr  package.jsonTs  
tsconfig.json   s  CHANGELOG.mds  	README.md   u Tsrc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               hmupdate-alternatives 2025-12-19 16:16:05: run with --install /usr/bin/awk awk /usr/bin/mawk 5 --slave /usr/share/man/man1/awk.1.gz awk.1.gz /usr/share/man/man1/mawk.1.gz --slave /usr/bin/nawk nawk /usr/bin/mawk --slave /usr/share/man/man1/nawk.1.gz nawk.1.gz /usr/share/man/man1/mawk.1.gz
update-alternatives 2025-12-19 16:16:05: link group awk updated to point to /usr/bin/mawk
update-alternatives 2025-12-19 16:16:47: run with --install /usr/bin/which which /usr/bin/which.debianutils 0 --slave /usr/share/man/man1/which.1.gz which.1.gz /usr/share/man/man1/which.debianutils.1.gz --slave /usr/share/man/de/man1/which.1.gz which.de1.gz /usr/share/man/de/man1/which.debianutils.1.gz --slave /usr/share/man/es/man1/which.1.gz which.es1.gz /usr/share/man/es/man1/which.debianutils.1.gz --slave /usr/share/man/fr/man1/which.1.gz which.fr1.gz /usr/share/man/fr/man1/which.debianutils.1.gz --slave /usr/share/man/it/man1/which.1.gz which.it1.gz /usr/share/man/it/man1/which.debianutils.1.gz --slave /usr/share/man/ja/man1/which.1.gz which.ja1.gz /usr/share/man/ja/man1/which.debianutils.1.gz --slave /usr/share/man/pl/man1/which.1.gz which.pl1.gz /usr/share/man/pl/man1/which.debianutils.1.gz --slave /usr/share/man/sl/man1/which.1.gz which.sl1.gz /usr/share/man/sl/man1/which.debianutils.1.gz
update-alternatives 2025-12-19 16:16:47: link group which updated to point to /usr/bin/which.debianutils
update-alternatives 2025-12-19 16:16:47: run with --install /usr/bin/awk awk /usr/bin/mawk 5 --slave /usr/share/man/man1/awk.1.gz awk.1.gz /usr/share/man/man1/mawk.1.gz --slave /usr/bin/nawk nawk /usr/bin/mawk --slave /usr/share/man/man1/nawk.1.gz nawk.1.gz /usr/share/man/man1/mawk.1.gz
update-alternatives 2025-12-19 16:16:48: run with --install /usr/share/man/man7/builtins.7.gz builtins.7.gz /usr/share/man/man7/bash-builtins.7.gz 10
update-alternatives 2025-12-19 16:16:48: link group builtins.7.gz updated to point to /usr/share/man/man7/bash-builtins.7.gz
update-alternatives 2025-12-19 16:16:52: run with --install /usr/sbin/rmt rmt /usr/sbin/rmt-tar 50 --slave /usr/share/man/man8/rmt.8.gz rmt.8.gz /usr/share/man/man8/rmt-tar.8.gz
update-alternatives 2025-12-19 16:16:52: link group rmt updated to point to /usr/sbin/rmt-tar
update-alternatives 2025-12-19 16:16:52: run with --install /usr/bin/pager pager /bin/more 50 --slave /usr/share/man/man1/pager.1.gz pager.1.gz /usr/share/man/man1/more.1.gz
update-alternatives 2025-12-19 16:16:52: link group pager updated to point to /bin/more
update-alternatives 2025-12-19 16:17:22: run with --install /bin/mt mt /bin/mt-gnu 10 --slave /usr/share/man/man1/mt.1.gz mt.1.gz /usr/share/man/man1/mt-gnu.1.gz
update-alternatives 2025-12-19 16:17:22: link group mt updated to point to /bin/mt-gnu
update-alternatives 2025-12-19 16:17:22: run with --quiet --install /usr/bin/pager pager /usr/bin/less 77 --slave /usr/share/man/man1/pager.1.gz pager.1.gz /usr/share/man/man1/less.1.gz
update-alternatives 2025-12-19 16:17:22: link group pager updated to point to /usr/bin/less
update-alternatives 2025-12-19 16:17:25: run with --install /usr/bin/editor editor /bin/nano 40 --slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/nano.1.gz
update-alternatives 2025-12-19 16:17:25: link group editor updated to point to /bin/nano
update-alternatives 2025-12-19 16:17:25: run with --install /usr/bin/pico pico /bin/nano 10 --slave /usr/share/man/man1/pico.1.gz pico.1.gz /usr/share/man/man1/nano.1.gz
update-alternatives 2025-12-19 16:17:25: link group pico updated to point to /bin/nano
update-alternatives 2025-12-19 16:17:27: run with --install /usr/bin/editor editor /usr/bin/vim.tiny 15 --slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/vim.1.gz --slave /usr/share/man/da/man1/editor.1.gz editor.da.1.gz /usr/share/man/da/man1/vim.1.gz --slave /usr/share/man/de/man1/editor.1.gz editor.de.1.gz /usr/share/man/de/man1/vim.1.gz --slave /usr/share/man/fr/man1/editor.1.gz editor.fr.1.gz /usr/share/man/fr/man1/vim.1.gz --slave /usr/share/man/it/man1/editor.1.gz editor.it.1.gz /usr/share/man/it/man1/vim.1.gz --slave /u     }rHo)*x&R/^t${MKV DظHby_2$I6*\(ږ<;13IPNguVg_:~DS?_OƶϿܸ4#knn|.GwSN+|A|/4`X1Zʉ<<v>Hy.=1q9Wi/[S׷R?;R8konFi;^Kx$amϿkӄCZG	Աz;O!sSOM 	:frgN4U1˘k/B{9M7p&JӥIHu_{Ϝ Nhpq}ERi{Ν ̗Oԧ}qPGwI{)'U|NONڐeW8\nn\2 Jd)Vq$CѤE@<B<QW#lzHF
RuGcQ~[h.UGJ>NTAT3~K廳Ĥ۴ENFi褳m0<aFN(2hͨIqhdZ,Q=ΧMi{=tjDTIS?$x(NG'Û㿌//ޞp==l`;rj;~q"'%iτTڦGiW=3@u^['ȣ!#J2ʜ˝>d,'>7]N+PM>4{ZLY񁦕1UkrHl=caN3Ͻ%	A_4Q̏OB`Pb0-=I{Dm\X,x$(IsN.f1΃7XDq4	DpۡC?ߍ7g8=kDVOď\?~onw[Y0'ٰHkE{$Wd$#~aJOzdt޿]
ZJ>|8?<1#o~`t5>+L/sB^m/ϗXO2SLa0e+Ax.z<aGKߪ7}f9IfI@J1Sb<"}I9gHoH [Hg*
At߂f$ulCtGyS,{GcWfLDbY3_ٶ@Lsh_vrXÑ@Vs<PcE6sIp6꧒AD!C"y)oöy:Y6[ohz&QF4	%B;zFglW:*i\($cS7Uؠ
,0wG9:Q΃KnS"\K>.| }&KdjYH
΢VD_|bj9{2#
<2(=N:84>K%0PyeU Eϕf0⦔'X$J%A[>>Q͂;`Rpqm,{^Y8AX
?hL0,fb*8{q%̧81I6]਻]g;t댽]';/+'`:Pk7s7tl˿+q!.;^ p"}cS;X9S J'{gr4Bf$f.8q>ɑ@"Ξ`iHڝLyRw$S(ù]cr4
IyDPM o*/e3kkmp8iM8^h=UҥYq~]PjKhN;IWlb1NZjDsM2°64"2@/!Y,Ў!UAQggGNdv!M8(kO8QSPH3;0'4{Ƌ?<{NO~ օ?i:<^]4	\B		"Ix>a$ CP(,! 3H

dr!9"ħ.zd
X**%!eAA*$] bc@a
z{O;ku1n˶(d"ڙWZ4s_xzߞGgFnÀ5}ŊK@y_s8GlxW隖cEM^)gaW'n[o[ZHZCcxLnN{kdEhɏZN)+wǪ+%0	c88lm!񧄀h@Snh.Zfl|^ڟ^hD,xU<u	;Mp|	Q͏a
:u$¨6$JtteHxdUȒ,\&Vthǀ\ٶ{hY#8ao3dGWD
Pۏ|:2tf|i4͗HmÚVm	՛$R,4MxьV>}qscViWF:ރФ0g cK}GD9LGۭ$\mm-L^[8FT&}6_IѠaUCd#2d	LR+#,z !	Gh([$i0x8\Z4
6J
1k#~Q"h].01Ev䤣\LZFq݉1IE1J
s2L8+!6@UR'
\65O#b<"AFfq@^G)`SA1","

?9mݚh
	"c||4m} ퟞib.
SaMԨ$ca67 OzYeNڥtQZQ rxc3h{x58\GiK\ʧR[(ݐUTRce'l5	xΐX4q|yŻV	~⺖OK	@ WPLS 2;	G͙^ػS Cdv%#DlusaY)2fH7	D
qok*컵QCl2eppƗwt}'$BRqLY5IB6A!Pu)Iy%
g
n '$HY	$HbE>ӒF-P0EuN
0ٸgy(f9[!H?3nŴM4FQ4ѤB6X, Ø,yǕ~x 鏹Ӄ?ڌJV{c[.>f%BX鯴DIon+6\(ͧ8 LiN;#sډ:tiߦG:.ɠSA^
Tߥ>`2\	}R0xiK!,b4YgL89".s5$b0C
KsB.:kPd
T㑋QuA>#Of0% ](,yy$ "iBvI|C`ʰ\f&0"t̖p$a;j*YcGfF88iJ:{A)#?D;8?\2H1'ZWq"5\
R@vH!yM&شE/za)<Vl V'֑^^{S}#`N_2 ~&:'l75(k%^pwGOshuq Y#XcVC#\jhl9<ē]ć'KiOmQ1m <GY |YB# GǮ6ž9&!`
4!EmZtưď
5cj6ƀ:zBzIQaaCY&2ě8@
Y#ڶ]#5)pO`#.: 8Ok/`߫f'y{z6h"1}|2vPTh[fT@ <-_@_'qfX:r<aLvD/<!NV(I$}懛zwSyPMYP|&S
i
$!L0	y2q̏< l^ëDabf=i'.1WY`gǃ!m7K|ln7ŢKc0sܜ}0͜L
?ڢ^|5Ʒ]eHN'~ͯ6+UMsO]J׎Wr"/C%@
{MZsHiK1xX0u:&67rVFQ2N8F'i4nt?5R+UBLrrb'!jִԞլCsšO_Y`kU/+ҿ 5 v}sB}$-l[+Lq@)[y5Z-^>_dF~3Jg(JY) [tKTs,ԕCO{!_N	k+{Ѳ0e4T{J@끖~JRuOgDɰn\D]#* 08O̐[x=jkmnh5AEk_ŏc/^]Ag %L0uf;f}tH@,IY>~9~?v53w`|8DHTS^T-?`' U,cգyI7%?"MK
5+If4&E)^IæJ@5Џ<1qc~c
sh.|7:>
oNA_莳;\8pDNΆ{&W7dy
0Ȗ#ZeV!8/.S?1O۪$DI\SVXLi첯dr]ϞTL9H~2$4h),S.K@/Nx5g:Vg:gZ(U-~:?Ţ$	"XNÂ@'hK b<L^';&fyu+ZdXQ!2i^ln +LL!q%1ެ^ghӔ#%J$[e)$j,ږ<rz_4I[ythKh+C,oX8M;?V食x:F|SWOh1;:j? 4m8Gj܆ikK H2U3p_AuS88Ւ)*aAg6p?yFL}XSW0=>xc}#r*C:wN9BqOlU;ctw&h.o`KZm[!dcL#wg7Ȑ>ߐ;y!Nqҿ>dʼ&Ntk9x{1v{atp:b\"ooN9n}5;Vg竪,e	(ɮ;]{SV&ػ	u:#xFq iCeFANE#k<(*OsEtv_t
V@x8f1	OzNs߽N/ZCi>Fo"
쳽qѧEԑAN$d$*t|pэ68Mfwya|V3A"#H7\$KAZDUՠfи,!!$?b!FX"qB[TP$9_CU'CdreƵeY"ٙ{-DXK`PS/C4ApRiPP$MWiNz
 
p'H^εD*?U3"B7pQJs^cI^	5\`A |}%4Hf\dq-:xD|gw$&B:(J79^yxX{<:k~7-t=&?.50!*a䉠83c3ӗIDw4.:y3<uGt`UUGc:4ji*_}dgn3=I3gL?313.7Yf摳"?ؙs
$AHg
cNDI뤜 M3l_K <)ܮT{ .`[µO\ؼndELz 17	[VeBM+O	?\':"&LÕ#ztg3 У9>E>+9++dCݟY|eyq^Dv
YkG;H-AP@*'5sS|Z7l4$		\<'d@ZZ^HǊo=wN7%,?ߍ4n:[CBc]T(Ti#	8IN(U4DRIvKW:d4-E!vdVAnW3d 5fwS}ᶿJnaR~֤se '!Sc5JI&I68xsHw,0$x̱9@둜/	5Uz4(OG{N2,ӟ|b)duVGk밑km+: [ZQz#<a4q$Xbxص
_aG-
8D+~:Ab]Y6*$HɏGt$4.kҤ(l1ϓ"n^toHY#)S^5
΂@"0M3x2=*kT,|O^u{W;	WףlລX'xXru!`yٹJ9S2[RHb9Lx>(
[jscËl?)=|
	
VwKwtJl= u>qu#'G	
9qB,SR]%_m_5fΚeֳE@H.82 EhJ4
LsFQJ7yI־ HY7E\Hj$g>Ǒ-NJsDEaL:I>JZ@U]P1'ْeH1L%c%k2YrqNe#{;G\9o z]@VޏYuJMѢAc(Iou3F k,]j
$n:cQXڗ²r,r=+H[R[4E~4	sD_y-Ì>ZQ`*u.~/XFXMH4N,o 'x&ë~Fʠ4CJ
cKb<')	Y2E2pIauAOڿznL&p0^dQǦmU2'tM~eQIoq4qW)dKW2{]kˤfUr-iaC׃9@s?Tmn<8<wt~ӪT	KjUފV+!Nuab	~v9IO;i;sPS#ڸai QOI\51ۤ@=htd嵁ڭ/i
MY؀
!6wv!+$WBGSY䛭mտ:M[Ad&X*(AsA-<!KS'O{e>/@zTZϤw+NWaX$0dBO.@+l-	@[_M
tU$\K[ϋXqdG[zY NG?|^s+1en<
^ZaQ]rjvfŻ4L[Ak0E
$m;LDr6EΎ4Q7'\BT޾=vdw`<9;CgwٛL;;{b` mN343kd+MjYdp+$T:<QRj{!
&բ=. $Y\3n-4`iS@\EpgO8'"+O5R5=G')FqsbjHm9ۭ\8WTh2ѝkse8*T+wO̜,|bpO,PMIp33M`oL+,'7qH(X}q>X-oBh46)G+2++6k'GB<:g}RxӠ:mѐus0T' Pgz-|%E4K\g}2-X=Ȯlݞ]5AUxϵ	Nߌ..GmuŴ-H
Ǡ[fеZQMuw`t]k={zuFw /d}K{*-#B܁Q܃KgR~ڐ=s(yԻ?\iS^|ȸ8C]jj\6u;b>M%5?u#/HFHת'#1/z֋>=?۾C.	[3M!F@hX0[
]սjQWҫi_QձnZ۶?/X>gD%#O$FQa pE}"zTD9֧SN x儬Hh9^f=-N%n.p7(vJv\r`5IГDdJG,?sp$]G?Rv
j4g}Zn36څeW(Z=^yM9HNt'!YaB⏱;܆ݾI"--dҦ9I0'Ai|mv%_~뵰p<_&$ɓoj\%a<AW[o
vaC
+m2n&5Ow7r"/B~vzCpyw9GG̢Ge. ךzAZx9³fn\o^F%%<QE!&k⚒R!x 19>"
޹qizd9I.gI%<'KDa@6$H$Hfz1+Wqg!oNNh`r^;0:J\F"vݹ$*k}E]/~teujy6jm˪L~+%kTw*
bXmqc`)`RYj}]")Ռ/V6	dSDXl݁nkgHr<I~k4fYd v\1ka@H_xaYڇJFelsJyagz|֢ S붢$ӀCݢ3}Ske.*SBDf qkQMO]pm0>+eShYКXtVmE+IROiW./?R|
B0祇1hDgS0v؅Թsz_~5lZ8OV9/	{2uŃfM
bOJ|jfyHg9:/"x$$f<ؑ%(wDd3d.>YeOOOeM[43JMoo+:Lk-/yq|!!	􋔌FAf򓗺`H=Y?Wz$[lՄ6$!'TJ2VSEZ4{@fNbzWC,H`vNzP eJRpuӶ&4CVT;`D	WzC؋S$|^Rj(n>r-0Ogl>
Ulڧg]6&ґ|*cY(֔F(_D2ĩg4-keެ:Hr>[.'N)H; Kz3R)E/jI "B4$-W[e^sƅqd/L1+KdG sw,J#01p-uI$>𡜛ע q38kQ$QU܊xFʈ&:ñgN/6JiyFZm Nv%]mzz^SNz@\Ϗ.4'^\}9?ÛӋ8Ufp}qd>_/N
xkNnqO_H0ujv+[VײVQLqpqb]<>%U_zz{zgeԝ?v;gL	;/0دH?۠|ivOm@W>y[E]NAC#9z,8DKt9XULiR/	տ8ے.J0dWP=j6e^9[Wl%%io.venEI^Bǀ;#',Kjt T".Py4rT_hOFF00۠&Z@{"PUz2HRj=fq6ƾ#YxF:1T4
뎐#u2xBWg'ME$fh
Sĸ\d%Gp\W/_E啅>S嶁!g㒁U|ْ4b,jzf׳Y
NJ="]
7IH$~è8BNZrmnS."[~8sk@Z4Ȕ+P7ayac}`Oʻ6T?~I,m!d?
+r`2q BwpDIRBsYqbz:lMskiƪ=o~N~m}=+xJw\~+t=VI}XP\s
[nV|tqձy+*%c_'Lct#BLH~[NґVPB㐥~O	@ܑNNhd_cѷԼ`:ڏ⑤<W)Bf,E(,aY[%GE9N L9rO	&%MtA-zk!KA1L^&ZV{wi]*z>-6H#mO=~RFa&!&'o=f_}YB׷c
1sdv8"lnL'oOb*]Y_ѦNiTci1毃d >9GSx%>st-y
.ӋC
Zw-M)<mlr\ϹB	3[oW5%Gn4.hD˚Y"6$]q?ܼE\c;+\:]wC!׻iq%~hʤ_d!_
RҸ"%rKtcX-y
v9A BVOYlg%jC8;ū@gݚ73y<]<.ɮ&	}E}λ=i"[HLhVHn	Iu%VI{ҪC>nj.'6\lЫP
"xa<XiOq.L褿*`m('ѫi`nMJPejD竤,[PR{(%^J}O;.21WGmW3[̵Z|_X$=@_SyFʔk4݃У$[͈h?/TmT2`M>Ul0FJL!BwB#Cvm X-y)aU<H??{vgmKęG섁5izW=lVQ?/(:|ux5K֮+Gۚ.#8%8>~P%Q/Ne8[4r!lVЅ_.,:Hsm#5qu|>LbbhbY ǘkR?><z{-w;C<tۀnEQJ۰&U76S%UtJS\E[΍l+^Vo A/CXòl*J.cƣУ_N_뉇+pJj	|TY<"1+*H6@Pxya#J95]+_Mh2g3tǢGn]8mSԁzDD7EjHv) E,܌xww8/6"". ARj3mK[d\y% A1mDګ]DerЕ Qa,(L`c;9b w
%.A,MuNiIgh蹔ģalGd˝n!BOfPZk*q8Zl*<!B.Yk9-6Kx{"wsj"϶-z3"n_fVdlȵG&UA빤)'4Up*Uv:Xyr7`.-@RvO;~a$c͎&Gbv<U/#?0kzM
2 :Bg>gօ?eTߺ0+F"h8Qd{Jրdm!a/A/&iS(yz!7'u8Q %/?X9IsėCc8{nwZXkåHiTR-x-d.n?I~"U% ^hQ=s3#l6T6>w3(ʨJyf b#)#[7Gڰ 14b\to/H!VAK3/}-2Ж%]~Ɩ{5Wn:aT$}<sy|sL^d=>;ivUItU4y'`cZsi}Q-2=_Y@!ג`/BCX5jҦIfۚe_f/Ƴ;4
*+.ՒR!ĥkwzZpٜ-V_ݸ?+nϠDgxIGsC1p;%(Oes/Gl"@dMR%}^NMbyY)L˂)ЛuI$\bJ;#B&g,#[q;?}ݘ؂nۓ3WטbQj /c?s:Hl 画.Z#ntvT>K%qj%/%FXmI?ֱKnyI)~2
SKkzѩ]{Qyoߊ&<ݹ
(ޛu+sңq|_}}y}*FfqHa
G?>TJ4"B#Mx1gpqK㨁ѠX/4wx]'LUVr1GƳFcQ_7^ǄuJG%t˒g<[Lݵշ Uw^\1uWO[[kwzvos,~^ڜʋM,NbHh4gWz{圷wwӑxw_X.:J,t:cƺ3\®g
Ë=_c<ʱa̏+T`lDYiWսw۞91bkcfnEͭYoon2s  yJy}΋VqCRv{sċ3GW8xvs Gӿ}ȺT
SΕ^8(ׄ8*uQ?x&αq@)Ê&	tm0U͢!(EHMCީ(:A`~</Ǘ }.Ud@=4lDYρ.YȘLG9p 3Eqn#	;xH*{%5Z19@4VA>_&MhڊB|ZREFa&9 Ir<xBZJ2gMT  Zg)TJyPW啡HO2*UI9P	ȅָL͓e^{ԝ謙yaxQ&*2c=晌ƀ-	+!lFCOd'@H79c^*͕&ZG&^hɣb	Ff-jO'RUqCAQEZ_FՑO_M_]ϗW_*4^De/
Ia,>72C&4cfY7@v
y{>O`Ii5O<B ]-6VKɊkHKOzW~G&N!&06h*'/6$43V^(vpu`H`c^Hĵ1LGX%	DD{[I=z_
#/ʤujodh UŔTHYOY>S*"a@,TT k<d8B$ƒ"+f.`z5ѥ@|[A]
N~vDʆ˚!uQ:4_^s^*FT븨@"%T=L@j:g/؂$	pFU#"?_B7hpv4H8 +&֕ni:=-=8t)BEOlYIa~]q>AEO^c?`>'.ī| h	MZ,:nʍ7qM9uaHy//\`X.eKTYs&p]^ܩ#$R𼷴]aB+M[z7{[ b.DbwGZB`\`@'7aH_K3bs͊0j.rS(04l9eQ~AͺRFP[xrO#`jO3R&
KSQ"2ð&ۚ5
Pهy9gY
,po9ov+o[`ޜw[~[Y[36Ѿ2NQ\ұlqgI)Cmda#5Y;FOpkZҽ59, ! ޥ/L1+ 31bUşV=',AȀg`Y''aܚZBJt^oS
m\}e#ډ"Xv9?@%e@QZ49'B14C/Nt$^4B="Bj I1tbi`4w-h
IY$nt {>S9ZwY 	4F|eA8^+	/HK|X1%9	1&6>Z%j9p\L>3d 	7w"4i*#.` ON%,s 0_y99<~=pDQ0ǋ
PYL}GG*O*t`PW'-l`X0Vc͘KeUot!~1ө#ٲLf&|	ncڰ.NuKDtĭ(N2]y+t0k:4bl̆0m{Ws5P+MUgGO$BwXRnHDQE3:Jym	(G$>_;,8WΊZw~B4t)G>-־p)-(]2.\ʹyTDf[m J##^zo d Z$AQN5:߿Ɠw&HD;4ucF'h!c&#5>3gQJR _d\ewWgsR7VW_:?Ryg[1դCP_SyTR	tRԸVì`{}TvSgczKm^> ki[a#֩SZs)NzntRAc1oy"g*m7.( 	>ĝo!4bm$0CS+ntzأjA/}eGWrTЁƝ`&^UX)lia!^mf}EEBJiS./lyX(s\^I{M eONz'2 F2FZ}ލpeu@k|sE%g|ƘVs{xkiՈdh
ѬRE<Z.P	z~on,9QA Ë
Vq'e͸;rvll#>6lk8]^_aCp;wX3W? }٢ܾ>@}aBf$vNz}[9׽[C6P@5\(0өH%@~_`nb?rC;EqrgxfutƆkZZ,62fMP& 8a:DΠ"Y`Pd`y
K#_K%AQw*ʄF=mo>$;=u\CK
٬&M.gO;y_5Or_mLːk翼]0ǚE_wY#PͳĲw}2Ǐ23bx\
e
UH})2L6m_v!im$kM
 xhH++5NAWCB߇L2l`z)CZc: `<	{^ܫ˅Hkw6;#tc)m~{ z'ItF|%eX+g)5OkfoϥqFBw1>B7!9
Jk<>	,/h?5i/)vW3yv>~QeXZ3f%֩AfX^i4<+>3* mAP-U=7ts9ަm>s\_)@r*p, 'Ī;+ؐ9c
iOF68@luGH`{LѠX:G 2gkY(0wj:4ay$
6|هPybO;pW^.fH`#͍)b}imhZ51::H~,-(ġwYo.g7"WkCF֡l-^!;PPexn"A\5ѯo>v]Di:iAC,Bl2y$ڈّ731 %tMU)F+̨l2!qbpU#zV}ڲQ2xtbMB:v}?.őxVWV5PYj[Cެ,zR %bU㏖ȟ=AggnSgq"XK!J."'T#ĪX8lp=NK__Vs~Ye3j[/rleɕx?t+-V_Gtuep`;`&*bċG^wAcI4{Lֲ"ᑂ10QpSZD=QR1<
#1`GBohD>x* q<Հp@[r A;F#Bi|{||zVO8Gm]DYӘ.9fA2Et_PI\\YٛaǓ^$mKeQ1<坩PdqK6v`{7%Q&CXB2]cF鏗a(&(PkK4EVӅ
jؾ3|Qƞe83RQ>mف{߿90;a?dUe:[Ě`b!?ˉuA5Rt^?,(H8!f޺ѯ?~nM/%
#?7Osg>d% sqazexij
VtHe[{$_~
%d:Cfד.3%=llh73esZ3˼=V'tuM֊T.Y:	GG#> j|%<.:5p,fvp	hEbRF,npI,GE&ƷKɬHZu_кq_x>`:ڵLE3{.L.ɫNL]E-
B
By`]*iJ6vvt
l.| W:6`{U;&[RYU4MGBL>D76PvU_ۃ;xm:rpzx}\mĲnC/,>mʬ'mHJo<sh8k>Dɝ#C*?bXjXK8/fh0/I#9PRȿh%(Ba;5R_s41:%pq
И|A|Z;`38Ih Qi[)Ə}EiMo3N]v.]c`JR:euEv=Is2fKBd/n6kYqXT]Rb,w*F -۵Fvpw0J_M98}1J`?
Y[%mV_܌s&F#c4>_`uV]3ZUڬfֵ6YuϬk{N0m):\KYh(u;sWnG6 neZf ǣ3Aq@\2WO0]"q.U)[AJ^M'Jęp譊!m!G""5G{~{+4Aȵg#Um}!O1>F+]ddhnWKBXmfdg`R*X}Zuk9c3E"'.A{*Y^L?I|3P8.B)
;RKisZ~JQ.D(L2v:~s[0[h
rs6~,ۃ1;EKC*<шI;K3['ǷhןHr#^>6]ilou-5mQMkThp)3lr>:Zn@MW*шdFjRDӬO5v;I'2ȜkA:iAO1ʈm{Ԑfy7[hM
г"+l1!j<yBIB"S}{yZȳ4
'Fߝ}7)jv-\W,hN!{ꚟ-8oBҥmeQhmGOLQvU/|*3wRr(彠P~.O&ZlXȷJ0dڧ	!&~փ/?b"FHo"-JgSgcm$1GDOza"Z7h}֞*n-(Do>UDZ]PDh b7:W$'z>Wnsŗ.MT0Q{mKi}BbETE¹
ڝˆ_&$#	FJ|KHL0p׳̿;a%tK3xM[+6Xګǔ2b(ї\=^DZADd)-EdP/'\C\N8x|<ho)@pt#_ϴWO8ZlpȷJP8h	'榆l+$S蛊ȢxO빑I3(ƶ2|a$`>^.~6 R~O2ZlhȷJH8k:?ah_)7O@̷Czٟ " -^i"2TD*B=EH~ޖk
H\Aԑi>9E)-eHPho	 9^Yi2TJ*"x	GQ		;'~6K~O8ZlpȷJ"Ծ>-gm9F!)6*$EYH$eXbO2E؄|&3DxOq]s9zZ^Ko1g*ԂY@<̰)V5z9s~_ָȷ5
^I~V͓\Q|S}Q$P$;_i"'ԷU"bqn)Ka	G՞""1R2%ʔ2SZTJqH;u+|ϻj^3\j,	t?Ϸ)8
92j0ZZ G	|Sp8a< s
|TߤsY8۳!8z8!:iRb<[[qMs.fTQ0cLfx/0b;OXH*+I~t9SBr(f	v8<.)17K
SS󾂃&T-ܼ/}'PӾxM&Wxq;I*w4˥IJteR*iz$	MsRtNZͦfc<s}`[ㄌ8Ƨ;LiyFdו]b(ʒkyF2NIa(Gpk?Q
^LUؾ48Mh5EڍuDCӓӼmHd/
"gz2f!?i#!u%Anh(-~"oNPEUҿ\klI
^c6 9\4rHF[G?}?:[^D'Tʍxi]rU}X༲Sp0B{C{,n@R>o US"G
WrCjά3qڨƄhēV g,A+9/\G$wיh*,2qaSy_B1OؐYbRM&KЭ"{,O`I/AgI΃)ƹ)Ϲ%]j<[T7jޤ)]
'o:w,Ba+C<돂aL
͇2Kga'"5LhEײe0]D
3(2zhí(JQ_a|sdB
(^0k+:Q^,f;3;e2oQjK8"13B*f2me;ܺz0I7xgq;
Fc\]|ڳ<P\/&Mm^ e#ͱ=_$؁d)e8L2_$YzFV|.{qZ &/ a4/ouP
؃:kb1
c Q̴%6tH^:nZf Na]]\ɡ=k|!MC+h`ܕUBhwτ`J|'IS|ǽJB8.[f f0E{8fW>'80$XAlA/d035oT?{fox-L(_R%OCTRtڑjfjP.KCxG3{~Y_I@;bY	Ӌю.1ޏ}PEJAF`fG(NXxk]҉BbK&m{~O#nvQ:轹3uӅ)&!]>RM>` Ds̈́jAF>免/r5Y1Kt`Yn}l'WފMP:!T4X@UhM*־^ѴW!>@
1@:dF?3X}m8:|܄R	:FJݐuceecC`5_%0ok/Ge-}J^@i)ǇH( XSqlΊEO؝Qn@\f˅r)fB*:b&FQb f٨\?".ZHVgV8wlfci lZu5Cj]"sLN؅HK]}P*b\>,٭nooȎ1´v,6Ye̩֫ߴ$FOm_-1Z!c~s)P;u3I`,#Hᶰ+1r9glȑC#n0#{^/˜ݞ)͕jMs?^8XQ6@+,/:gf#惙`[*cc*e׈7,	P{<"ElԔq1v(8L<6j2H``4^ԛ/[/Í`ee+CqBCdj^R2:'T^tb'<adL//ٶ£k>Ԏ MEs!wbxyVHzrjNmԽu(Eg=>h&_,3Gأ3}+T[H)>Eq Axx78*YF4lв/X㰇` NWkcm_)ӥSD!NaoW`[,UZRE==q؍y䝡x	,=V'
c`=^=7Ä°LS,o#E2>(pCƗ=x,*dW]ot]=>dtBRe"_ȈK,3~RߍujWl@Ҿ^XOR;5a؆UPsiӶm!WyRl'E k\Zo<Ӳ0@7/ݾsǴbbڣ~r7vXYd<!e+wѐIݘv s$\GArs!,  eCȺM{+#%f:tL8i+c+{Hh nIW-Zi);4tTZrGG6F&Ăw\vjz)
@pYAHSQU*p:Eζsa<9DbM hvֆ7(WY7(MZj8r
woo6hQl>CbruzxZz5zNOo?8V@Gbƽ%_+ e2;Қ߄)d_ֿ\d(<h7`A?y8V1Is
:}MޜEru#&ťKJ`/
&4cO]&ƽZe3rbH1^C:4ۡL֚FU5D'gphZ0s<kFZw[gt@Cv"pF4\	?P:bͲuMB7Q{F=0D߿;	܈٢ZJ?wb>Wl{1aV"
8
J oojXcԵ~d7KՎFm>b1i}ͺc83s̗2Jo;kzq14a4ŹPg?=Ȯ:#aӏgTPV*`|	HTe2KgPR8 KH/w35=YWhؓޞ\ѫqe+j(SCv=u@|3fz`9Ё\O*-"&Irkui{uZG=	
m/CgQ}vPGNYWa+Ay*W8GF|6`8uQ'FE.QP"Tz
1aD<TwYﯗk^y4bd5?xA}X_&ŉ/@JWAKzN28c80W4i{|d_PʧmduUh`5\\#!>C۲٬Hu5Besu7=hOw(aN7Y{G{ǻhW'L85
4p+P/=kyZh3R4{s?VA
%=/&ӝ#e0p]2oeVn`ј ʍ{WF2pkuNːnQ'K#Zs&J<j`[檈qED^LtEtAh Zk*
/JN̨g1-"
eY[%̩gR6|(ۉ.mA;.C>i;_v
؍/A(V%-1hG9Fb]0\a'I/ى(
z(f".&݂6p0ҬFMne}3t^4;X:^oc#T78YrHMlPh^Q}ǏzA#m>גa%&=yNICёߥfPaKMub*(p:Ad"Ęb̺Gy	0	^vլOڍBfD@奲Y:aR!Hif Z k+5lyh=vlsSGϦ!ݎùGhxb^휶>}R$RuG"[
m-~	->50<gv$;͇_TAH80慊)y<!UvIDHWJ9GC@:L߷w~sT9Vt|5h _G7l(7ڣ5qݲIDТID(R0 -p<,Ƨ^pzSФCG)*"$\x0x.5E={gl˽"eqӵԆShi>kRtHfVJR^ن-!j6bG]5ýڇQSbOYϏݣH]CgK锸*w}	FKn҈5'ݝSRcOGǭoKq
5	]t
/"zWlk#J^DAAJ{ީ
D'cG{J)nw^)Μ3Nd
Z&!rDc˾`Zv:OoO~hhmpʛ<ME}tN/<ĂS/i$IF+WIX]YY֠YZ%6Lixh/xŦ gl/JŐ|y)_x`9CJtȴzMp'Giar8*i?~֓S=/!3Kg\H#ͣ,XIdi~w&7Wó˙-ds$&J"}f=Uռxh-SuXs͢Kݜ	*i=RqF$ߟٕk61o{y_YC_bXn6@i^{H}I׹$З霎.7R!}N뚗Jl3HpToU!7󯁘.*?tV+ߧeB%&~\$Ѱ;.鿽`02tG0}ս:=}
Qzu3q_V`3K
&F	*U@z>"l.3pDQ}[TgwqI6x<K
Ʈ._m6W%?׋n&M)M5r&I9<F\^2/9bRF2
G!-ՁN>uW@Q9]:7WkRc#ׂ:S$Kr;eO-Y۲:p8Qdp2YYx	AkЍUm2ad)oa֖V[J3Vo=;MYjR,8j^y.dbK&Yfr3hѳ5Z
$@nD
D@p:*'U"K,cFͨ1xXVij/"MO%r
RbLF98HBuGZ:](!1АFpl3o
C~~ؾlwf#A뾵sC^ `ďҟ'Nc1gͅFϝ|r\#FI`,"+iew@04x7L2=͇!iH/6fu6W5@W3ьlʦod7%Chmc-V;$)Mrkvj@xLֈeS|^c$%v$oem:m:&QKYǝ'Ӂ(X_q\/
	W')]0wA`jH:@4J0\{iiǭuG8;	9[σ8k{\iΘ+ݷ	cI㠛9h넃EޡOZWEȨ|Ɔtdv{zi.j7_iNv4!	nLq15˖L޶I/V(zK&ޠ۹Ό:لl|d)E]\Jp2w״{JJ
AYQH1@@Lyp	aS
PpJ4݆1+pۆDxh`_zp_4W"&$ƗK9s{:Lk"%{#3kc,^X|9
b̠l޽
Gh33<n	ZaORM4xas[$=Ii`hNL-Tjk֝(pH6cM$G9FwuMTˣd\-S<p	&k)YsCiyu19.S|k5*'TW5Cdʪ]/PVQz48P0$߰ `>y/}B{ĳ+WyO󃷭wNZwޟ:Ve32&MRthbW*TA CyX&:"R}UW>i(m4 J@/:Cf5_;-AsY]D m̆틏p 	\iVIeǺ}6-t0 KMCMxXv+t[k/$M$2s .4/&)4q;k,Ny[j}DsV.Ek^G;{{M浽OG{G('
c5q0CXI.ʫzij	Ām;0z,-&E"eAEfu܈6 xklMS)^o*.Zhlx_Jo|&Bg:5kD%kv:ax^	+HY_9(&,*6YUbzmf4q
 ;*ĳ"}g2sr'}n8n
ioad[21%Rsx:eTFi@Δ%eݓ>'*jG/
&-bV.hg _[<BADIG$/N2,Kɐ7˩wV04q,&%8$|r*B|Ā% zf9y_6.;=:4"WƻFa
Ҩ?O,"btqz^ANhk(
kV_P|q:9+'$`ŗ5ZVYn_}uAnHj|ͫ(6jཻ歾ns҅Ц_49|l 6>~JWi\r56sXneٽSɾi	9*Ub7 
~=73	1!61%f{IeO_}y
5&p\+//̼/jqBbB*DŰyI<q $?Y3 gv)>ƽ?˞㺬4݃0E+aǡ U硕o6%QUU~
.Rp>_)t%]ꟍWȢү;lOԥi1oj+&}|iW\O@x&!c2-c42MY
[8e/o'jp`tfc7Z.[(( K-c$Eߞ.%U$V&qs_@ؒ[Xq3R :ai\S(>jgR&J̖X{tlJ"x0Qrr
v"B\^],ŶgFOȏSEDm]H;eˉ8TIDԆ/1e
$o$88f3'stlM]F<߃߇	!Mk>_b~&	N@i$
%L$E((5{I?Y<Ło$7+Wԅ,1	Fۛ`d(U&Q<µދԥҫL
C
c]Wͨ+ۼqbrw[N!|;z5p}gG.c"⣌%T_~?Vŗh
|j+"ه?$Iz6L;&cQC>i_xVh5*lwz1]ObxF\30ʱJgfO(oS%wNoxYvk0^]PѰ׊-Mo9HVދ^u/f뱐`M|xFK5W|E tR%,!E`ǢBfR2p.eB+jqwt|ptz)pY=ON#a*4
3>`835y.]̌G3┌5-	P([)OgOI7d
XTbgcC{x}X=ޏ7
҂`Rs4g7P8ICU@3Ʌj\Fvc'mN%E0&Fx!-%uZpT+/9=-Eias)?v?ӇcR
v.4+Jkܤ蓼D>,*W_HIjE0SCFe=c<s_齵G1x[z[\K!?4g2s}t0-~J+Vx[bMX V͎FR)%9*),yI79(cyܳ!Nkg;GUS]X5`A~`-\
Ɣ|l[HA\ *E0͈T:Roq8^	dts&bu#QQ
¿İn>?l8]x?`^^cwO&wø]Kp%؇ՊYɟJ
p;	oqYc,G1_Հbq+bl_ ^g.bӨ	>+=0p4Pk奝gONk:-jM؎awrF
>ɮ%StIB)s~0_0&ҳ+>;K8m{8w^xSz3(Zɽ7k/:[]{_n/^l%S'7 'WQ1QNUT8 wӯ;kX#f2J ]Mt}8T/'}ٛ$myhrl Mi!<$ܽra590UYJ |DU =h<pG<Ԇ@4KlIQ
'~@NgR/="Ƒ`Ol[<}\3ő3"I,A)]KkG|TzH|ohr̈́6;YecaD*#{򬢀"UؐV)SFщ0~Ͽ,$J?
E$@=8J(Q{HjlSq6B5X?a]&<(SǁVvښ&GU$3-&RsҏM6	D`w0dd9 Yx<6E%b#ڬ'Ybi#D'Xp};8;lb]Ԟ@B2|Gas3WKL'Xm!$Q9Ei5ɤqOkY;TH-^\h	Na?Է"ڎ<o& 2Q}B!#/C/rO? IyG8j$v|oĦ*G-؟r;
2ǇRH
$Ckg?rܖ]R3 *y<N%Ԋ/Nj㠼2i.CmO
X*?PZ%d2	2Z\MQb]taPM{=W!TZj<Ī!b1f[i y+
K7@+W<ZRR+ ؓgΆCKsVOGjULj*@.0(
u!{1wj/ 	jm^JM5΋_P1v9byĴ2c66ug{<A:)osS=S!fLf@3r

aiiҢ}Iˀ4!n-_㇬LHi*41#O82vnNb1偻%l%F?q?SJHAۘSoPh]NIj]#5ZicuY2F	&͵YKt/$("`3pP͸ A:쨳DlGc,gB,ŰH\09.Ӂڲ1-+:LL2He(C@1PN;_Pɴ( G+ MNlbfw	E$9xB Z-䮴OU˖l"zsN/7t[@E-N:xr-`:+599To$̎@^*# )LosXR>TIzwg;Y_;o4OVO}%ɲQ9'2QuGF6פ~33؂9]8h}>>{ofLa}BfĝAӊucrYބ4ɜ$1rK! E()*Z5c Tk`FqG3F)_^z01k9X @kefY_BQVsy;`^]av|&]-{(7sH&N^(	[6	őTFN9Avd8@"`1z[!dlKB1Zj*y1C$)4mpL~-?d+6F.76%ڄ=
l>vnPw=`cȔn]0YK&[gRv-n4ʅO!ybuu6"wC!3"l$; daORۣ`~'\fsbv_]oŴoVSG12ERO &nɺq	2V_p"0CHT/ $E4 NrM
ZŖ'Ny&'~Ӕ%VC{SѯA+.&F6Dݢs~ңO'ÛN{ʃ	1k*^I!%=lXh?0	+8
0{MﵜR9Y6kj!/tbɦwh}+g)'Y+~"WClA#}͊\ڂǜ䟫)p
	DD{^iO
	u7"mNęr07ǂq`"Ɇnqc`cSi`n7g'<1fpk:sf`{ܧ[ B2
`|
\띢2SǆSv.#hlb@z>fLbm+c5;=;Ձ/ׁudgꉕӳ?>"֊㣽㣝ΘԚG8U'RTG7<HKT&֋TIܹlbǚ@G_d67vw59yql39[.CZrj:K\Uzjw#MN
a՗zV.,@n3RdRIEy9e3M@bNgNGx1(I%bd@>7T2ax7!,
hߵ1@$q/_01pxW!|Y@ؠA,Ɇ
(ۏMȀ={H7擫h'Qs:=Ls^^eK|0<Y-\T^MHO'Ov>oVY2hɍ8͊K2%v~ٛI;%m@}oviFCzɀEks_8l7뿒/"Y,b/<l^90
cGv`%e*!tD輑Mp;t3LN	4)WI|8`
эph9lnkkE[ZsS,E~ |׬qm[?cC^{ǣp<_ %Di5qՓcX2ګ$ƌj/LDC@WW~)>iCޝa@8h}n&J3Kc۠9P3'}-@:k dmǽpP*fy4L9;rw%kdY/x?y(aN,. 5Jê6A$Ү1y
FXu3](HA'gAgfOF, -٧"FNHfi㨼=9?I\@lrpa礖B/c;4 Z[FK22/3h^/?.Z#&\5<Tq=OEs}UZd7stQU8e'gQ,|:g6{1ֳd}g\Ё26)8OP,#hr(ʴa;oE(DNI]$=2viG˩\w81e::W CK<&R9)YU߭{jHtI@c|OywGWj;8cfE`9yC-KHG;t{߯!N/wXYtQhK좕jV<9t }Noۍ}=~Ӹ@4}
Bl͝Yd66?m4.192y>Ƕ֦>]>)y?a#a>=;806ΧSbdbO$Zr޾
G_;=SCo?AGCv[)+mO!\5|H&AC_pP 4A[<o hޜJL}ę\YQf	ƣP8.=Q
iWe;ozP#Z+矽w~*T*z"4$#Rɟ#4DYaw޾q3qZ929@xsv`9ZC0HFHӸW8yOd*Uz'ÌW?ՒHMfc\F\4=9c>fu5=xQ$2rl	uaŇ-ƥFQ-nPN FIЁhbBcy5u*C;	.ޚ{Я|}5m[5ܧOn'e/^9hvfћ%VUXLf]u:dLa G/i-V83{7rZ~u/52t+Tx^7"U^5#Gϐ$oD.].0G&/6ȼ	L?_垣so7QW⅜{|x=t
1	՚W{^D*6B
&ftأ?E<XbD0Hr$FFx]'RӤ_̟Wk}<3IWEQ@P1ŋ) K?~!]P_aP@oB9[aEY(+p8o6-%RIZȔosD6)29rRb8RHpv"us&QrWyʔ$&)T27ނz̵n?Z''g?bOm6D&{cG6!Mj>eX7%'GΘɰqLM蚓$^˛D}aJB9j4yyG k8ӢOٲRǧ|A}!&{߅8V3"]Czi;Q80?a	"%I8׭{[GIF P"}af$M҈_prUtv;85PDBS4G^NU>'峋ULt$cZ$ti,VQ9<пveN
R}ؽٗ\?'H&(
嗗y)ں2:緛jq3-ON~o|o XGoޮĢ/+ɆҢLƼuV7Uފ.i\--C¿쬬"ٴ|)&tBL_"Ȣ {4]vCAB ^tϹӨ8ܣrUJVY9Yqb'KC
i/`su%z#NE2X#Yk0ȏGGC"s(aKjn0͝d{ƽo{7f^LԄ-Z.3hG<x~JWȜ|i> rل]֒ZlAQ|R3\HA

pҳk8Mi,yCT]T[$qfkéRYB_-^
fL ۖz
=8pk
kđYCM`_yXAl4>	 p;8ʥEs3XK.&
l	"8o4I楀Zn'7a8Py@Q(2Kuߚ6a^:gm u7\.`%2]*Kg)ǝI$2j(Rqf X@f\M5dkUf{ x.r*d%1fe$ɛsǢޔSCлЁ#?%_48j]tqt&X1)D=A^b+
7jF9o~Φ r8N!E@X˦ђMA=Un-թvx풽\%h]t9dE3%4B&EM3\ƽBjMz2>"].Zx8y q\&R0\4OoShy@OV8fO2mEɽ;JجبJ2Mrys`vܺ+R ,"+=z{/ PԄ7꫺n
5+i5V N	
?iLrZݗL
xUY3@-Eip
Ii-O	ZcgvMw3i݉a>.{}_ Qmwp1`^]zG訶0,_nH./1@}><Ӂy/\aә\Br'{$
hUmQ2~t52&uA)C'F/!IgxSbeF0ύP0i-k0,ADkYu?AΛ=ȧAOm}7"ԙ\m2Ldn0$ $k̾7FۆMUQ^Fe@fCP"
aW7BHVRfK҆W\i#ŉw&N[+틺/7̼\PU3dJ7	psOռ9H᷉x..ϏӺzqP][ep"Y4ޅa2#GY5;F*tL(3.W5c!
mHK{f9ϢzXGۗЫ7:>ojX`,^h"zg8:)g̨ort$
Hx}8$}H+JC=	;cMM"ʸc+H(Y/:wg$*ׁ\`s
`ΨTdJb4eV܁zz ;]HH0YgVgU 4w,3vV2wlksoƌUȹEУڎ_X],?9j:x|6VQt\y @O
q_J`GҤS[u[~axfH=!}ZKˀQu)XY/d/8>
ⱞm$zU4\iPE~<{7dE
/.6w%ǋ
6&13vg:_@n=D~Z p8.K#^4ɰ%ΑɍKl&ȭb ̏5OP@6/4c涡0O
;*N	=TnHCVRn'UXv߫<+lq5jpξ3|wW^<N^0bo/'DZ>yXePTK{vJZi6v$jnݩ-/:2*x@ani9gW_8||`z"&ϊXo2Qk>4|?pS(&JdO Ll ?P{(W$_nqAAڼeF5zͥUӘ6|7xj-v>_wCfs
I-SkT~;i>e1ƌ'$=!/[+
fP`-NT1cozbfi:*idE4[#G
Ø^ .V"%,!|йe00#);g0%aέE01sܧf]l3k<Ȭąc˗j}޷ N" G=ung G޷>Nja
5Ի@Mj[Yw];SbN= U+sHO,ՒZ,ȷ|][p܊@#9]7](8D2ڟG
]s0d!΀!7/Ю
 i*0j`Wk+GO}d
HN1VfY7r(J։
#mX?ӠgϧvO1jV	azn֜uJ8r9| ێ5I୿Gk5ux}<
0bsԏdKPptbYNw`XH7!֦d1ApDiF	Dܷ_ָk܁C	˩kǍ~A/V-y|D`h2M򟉑ڞ>ou eXji(h<NzyJ$WPXܗYp{YJ[3zg}慬(>}
Q]zօ=M]00! 4l"vQHYaĖh-_&m5kEcZ
qU!5Y`CF]}mv'GxGڑ=mJA
.xq_x-tynt-)J]bA ;F/@`TL ;-:>S@3:	)s֓{Hҝ1̖hz\MKOJo??̘I8e{(Kڿܦtuʷ|iwN
c|YxDJQȫ~'7|y^IrvR?͇m;4x!I'#5ez|ȠzjK_mɫJm70h~lvn8, r ϫX:NN"3<iYt/w\nK%)͆~>8<sطN-b($JpBôӢÛ)+)8S=8JO
h?óTi"©Ԟ*2ZRvJ<0&0.K
`d&XO?45
cĜ51]Q62lm<-sY6eSІoDޮk)#51KDC ʛ*V;WSӳzn䮆LA3'o+٬K`w.Sf
x`=yr-"=xK?W偟>I{{IˉWI='֔r+?U3QPC% %qT;+*/ivNJlԗ*g_-rd(&kV
[vt \ͻa95޻Ѥ%Ȝ`Dn x*>h &ky&Ȗ"%$,^qCPy-U}i1ghAՕ<1I;^Va'$Eu1k`mSç+7h2f*.;z5w1q
t7HM,]
.'
JƔ픻$ey|W_ YP̎%NKTFK2ZV"7LqsD`xwsp|=i"Mc}eJK2o뜳;]j:;Oy7}=ёn7gы(B(6DZ+ciGF3m4?QсŞ:d":@h`LynMJ<5c`QG ~NsmxOC"14+D
׃"ya|Ɍ)1{RΚ@T%$X/q~6Fi>iy7s׊>PJߤ8jG	 lP&TkV:[dU*Dc. Mհgt?Y Rl;g͆Vpt%r˗vWhG昤$FqȎj+*-"Su"$Opw!S1a8yfɎ޳`(&3tA]Ob9bKX-EҸ@x("mVjz
tr5ROv|W6en:ani8
=iZfŠ<6G "~؍BoWI(שM9	W̤1)Bl<pҘɴטfn'DbƋd,v}!)m+
!hw6asmXأ%?&խy8ycJBj+*ullrѹB<dJ6BRc`U)+qHP9ɭmТԴJդ'6HWY-x]n^Q	T3M;NhTËRc7emac
	?.Wp;yjrc%
P	ɑy?K?qVTHGMy
&W'~Lo$X0*Zkkz8ի\DYb{Lu]v:ty QO̅T)ˑ8KE%a:NL.0K#㘄k*ostӝz9;;9xOs+%ybпr2uj"@k%-{8{pzBMhk\i7bB3Ӫu4m%!"ih6:D#H3gl;vT|WŴMLK	Zstz@S'96_.l5.@"%r55n4LQ[KD~Ž4qFC]IE.ŉ|d5q]Sdq]e?D{*Twʐ{ Gj&)jqS8C6m<79.|f%J.X|怸ڤi$#Wx8.EN#1އxBد4y2e9UZLԬؽtZjrI}NRPm>JB6-޵|9Ϡ,3$'HxD9&ÃƋ@nC7(.16[ҝg[|Mry{[7n٠a**AMqZy_0pLo/5ؑ&h:i{"Zgp&Jr^Y߻-qzҘǧgjwFnnmeSI_a <ho*I2܎yEVfjfjf}n5ZJBx{j2jIn1FhIp_[W,IALkMs*G4;Tc{;ٶh@vboyQ?Ί˙2?/@u,|C~o<ǟqp>TdEL&It8	[<_iRdeI@sQp<F~r\
nͫ5hdVX]`'ZuOpKjniv-Q[󵚚Vh9g;cAMc
I7Wwc<46MEȂMp&ip|ս̝kF!Pi_Wv3b0vj^.#5~0l
S^񾊳up:.?H~;z%s@q<ٽ5RA\;5Wk&aӜ7VS>lhNRm_i[Rdܑ(n6cHDQ~_Hńeض@%ݥJ%HA{y"X 8^4-{&R2ƖƢt*b oNC/B{QL~О^7WYϚsy6gsm~:/f?ښex:	aI8iē'8,|
dQflj0kI@7v%'\w,k(mCTG\^m_w8E?U{K*Oq*y3>
]'r%Zs{phInxlEL}x	snl8Ks?<,*.u7WwqA=J5}^fL*PJm.Rju>X"^)nasW
n^[fBW,ۑeƯ>LjAp
?kG',]˭kg9FH(NK@	13s'u:"Ijȩ}UC-m1^?>yMapۘ}	ۙ15jˋ(s5EV!'u\-(s+vbdNqdX9=$"ݛ[[tHWѹE	εH
H:?17*ٺDR|!
wll.Sv>'r a!Dt2Ӹ0EK	gy>Oy	4߯gS
=@/q<'Dqc3 9-3=ɕ3j獦7Mp эdxyɛ5\F4b/1:&GBߣ*Kꗿ7gHj:;8>JFzk#zgё:,?$Y~ΌmcK5k(:&lW鰙,T
Y9ِYKMIyv
|+xұٚv%80ZvlמK޳X!Q!sz_(K$
AHO7ޝ՗uFZ/c }w	^[(:RЙ 5AOpWK}$MCҕz^L30Pg4pL8i5 UD|mF{7|!!1rSyasQ#U-j =j|⑐t]YtE&mqq ᐢpHT]zrGvlU+n718Vs&I9w04o%YGq:ڶa-HULS|ilHw> k_>֟Ur?F٨F                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: GNU sed
Source: ftp://ftp.gnu.org/gnu/sed/
Comment: This is the Debian GNU/Linux prepackaged version of sed.
 It is currently maintained by Clint Adams <clint@debian.org>.

Files: *
       doc/local.mk
Copyright: 1989-2020 Free Software Foundation, Inc.
License: GPL-3+

License: GPL-3+
 GNU sed is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 3, or (at your option) any later
 version.
 .
 On Debian GNU/Linux systems you can find a copy of the GPL in
 /usr/share/common-licenses/GPL-3

Files: build-aux/install-sh
Copyright: 1994 X Consortium
License: X11
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to
 deal in the Software without restriction, including without limitation the
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
 TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 .
 Except as contained in this notice, the name of the X Consortium shall not
 be used in advertising or otherwise to promote the sale, use or other deal-
 ings in this Software without prior written authorization from the X Consor-
 tium.
Comment: FSF changes to this file are in the public domain.

Files: doc/*
Copyright: 1998-2020 Free Software Foundation, Inc.
License: GFDL-NIV-1.3+
 Permission is granted to copy, distribute and/or modify this
 document under the terms of the GNU Free Documentation License,
 Version 1.3 or any later version published by the Free Software
 Foundation; with no Invariant Sections, no Front-Cover Texts, and
 no Back-Cover Texts.  A copy of the license is included in the
 section entitled "GNU Free Documentation License".
 .
 On Debian GNU/Linux systems you can find a copy of the GFDL in
 /usr/share/common-licenses/GFDL-1.3

Files: gnulib-tests/inet_pton.c
Copyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.
           (c) 1996,1999 by Internet Software Consortium.
License: GPL-3+ and ISC

License: ISC
 Permission to use, copy, modify, and distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
 ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
 CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 SOFTWARE.

Files: testsuite/bsd.sh
Copyright: (c) 1992 Diomidis Spinellis.
           (c) 1992, 1993 The Regents of the University of California.  All rights reserved.
License: BSD-4-clause-UC
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. <deleted>
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

Files: testsuite/BOOST.tests
Copyright: 2004 John Maddock
Comment: Tests taken from BOOST testsuite and adapted to glibc regex.
License: BSL-1
 Boost Software License - Version 1.0 - August 17th, 2003
 .
 Permission is hereby granted, free of charge, to any person or organization
 obtaining a copy of the software and accompanying documentation covered by
 this license (the "Software") to use, reproduce, display, distribute,
 execute, and transmit the Software, and to prepare derivative works of the
 Software, and to permit third-parties to whom the Software is furnished to
 do so, all subject to the following:
 .
 The copyright notices in the Software and this entire statement, including
 the above license grant, this restriction and the following disclaimer,
 must be included in all copies of the Software, in whole or in part, and
 all derivative works of the Software, unless such copies or derivative
 works are solely in the form of machine-executable object code generated by
 a source language processor.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.

Files: testsuite/PCRE.tests
Copyright: 1997-2003 University of Cambridge
License: pcre
 Permission is granted to anyone to use this software for any purpose on any
 computer system, and to redistribute it freely, subject to the following
 restrictions:
 .
 1. This software is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 .
 2. The origin of this software must not be misrepresented, either by
    explicit claim or by omission. In practice, this means that if you use
    PCRE in software that you distribute to others, commercially or
    otherwise, you must put a sentence like this
 .
      Regular expression support is provided by the PCRE library package,
      which is open source software, written by Philip Hazel, and copyright
      by the University of Cambridge, England.
 .
    somewhere reasonably visible in your documentation and in any relevant
    files or online help data or similar. A reference to the ftp site for
    the source, that is, to
 .
      ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
 .
    should also be given in the documentation. However, this condition is not
    intended to apply to whole chains of software. If package A includes PCRE,
    it must acknowledge it, but if package B is software that includes package
    A, the condition is not imposed on package B (unless it uses PCRE
    independently).
 .
 3. Altered versions must be plainly marked as such, and must not be
    misrepresented as being the original software.
 .
 4. If PCRE is embedded in any software that is released under the GNU
    General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),
    then the terms of that licence shall supersede any condition above with
    which it is incompatible.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      #!/bin/sed -nf
#  dc.sed - an arbitrary precision RPN calculator
#  Created by Greg Ubben <gsu@romulus.ncsc.mil> early 1995, late 1996
#
#  Dedicated to MAC's memory of the IBM 1620 ("CADET") computer.
#  @(#)GSU dc.sed 1.1 06-Mar-1999 [non-explanatory]
#
#  Examples:
#	sqrt(2) to 10 digits:	echo "10k 2vp" | dc.sed
#	20 factorial:		echo "[d1-d1<!*]s! 20l!xp" | dc.sed
#	sin(ln(7)):		echo "s(l(7))" | bc -c /usr/lib/lib.b | dc.sed
#	hex to base 60:		echo "60o16i 6B407.CAFE p" | dc.sed
#	tests most of dc.sed:	echo 16oAk2vp | dc.sed
#
#  To debug or analyze, give the dc Y command as input or add it to
#  embedded dc routines, or add the sed p command to the beginning of
#  the main loop or at various points in the low-level sed routines.
#  If you need to allow [|~] characters in the input, filter this
#  script through "tr '|~' '\36\37'" first (or use dc.pl).
#
#  Not implemented:	! \
#  But implemented:	K Y t # !< !> != fractional-bases
#  SunOS limits:	199/199 commands (though could pack in 10-20 more)
#  Limitations:		scale <= 999; |obase| >= 1; input digits in [0..F]
#  Completed:		1am Feb 4, 1997

s/^/|P|K0|I10|O10|?~/

: next
s/|?./|?/
s/|?#[	 -}]*/|?/
/|?!*[lLsS;:<>=]\{0,1\}$/N
/|?!*[-+*/%^<>=]/b binop
/^|.*|?[dpPfQXZvxkiosStT;:]/b binop
/|?[_0-9A-F.]/b number
/|?\[/b string
/|?l/b load
/|?L/b Load
/|?[sS]/b save
/|?c/ s/[^|]*//
/|?d/ s/[^~]*~/&&/
/|?f/ s//&[pSbz0<aLb]dSaxsaLa/
/|?x/ s/\([^~]*~\)\(.*|?x\)~*/\2\1/
/|?[KIO]/ s/.*|\([KIO]\)\([^|]*\).*|?\1/\2~&/
/|?T/ s/\.*0*~/~/
#  a slow, non-stackable array implementation in dc, just for completeness
#  A fast, stackable, associative array implementation could be done in sed
#  (format: {key}value{key}value...), but would be longer, like load & save.
/|?;/ s/|?;\([^{}]\)/|?~[s}s{L{s}q]S}[S}l\1L}1-d0>}s\1L\1l{xS\1]dS{xL}/
/|?:/ s/|?:\([^{}]\)/|?~[s}L{s}L{s}L}s\1q]S}S}S{[L}1-d0>}S}l\1s\1L\1l{xS\1]dS{x/
/|?[ ~	cdfxKIOT]/b next
/|?\n/b next
/|?[pP]/b print
/|?k/ s/^\([0-9]\{1,3\}\)\([.~].*|K\)[^|]*/\2\1/
/|?i/ s/^\(-\{0,1\}[0-9]*\.\{0,1\}[0-9]\{1,\}\)\(~.*|I\)[^|]*/\2\1/
/|?o/ s/^\(-\{0,1\}[1-9][0-9]*\.\{0,1\}[0-9]*\)\(~.*|O\)[^|]*/\2\1/
/|?[kio]/b pop
/|?t/b trunc
/|??/b input
/|?Q/b break
/|?q/b quit
h
/|?[XZz]/b count
/|?v/b sqrt
s/.*|?\([^Y]\).*/\1 is unimplemented/
s/\n/\\n/g
l
g
b next

: print
/^-\{0,1\}[0-9]*\.\{0,1\}[0-9]\{1,\}~.*|?p/!b Print
/|O10|/b Print

#  Print a number in a non-decimal output base.  Uses registers a,b,c,d.
#  Handles fractional output bases (O<-1 or O>=1), unlike other dc's.
#  Converts the fraction correctly on negative output bases, unlike
#  UNIX dc.  Also scales the fraction more accurately than UNIX dc.
#
s,|?p,&KSa0kd[[-]Psa0la-]Sad0>a[0P]sad0=a[A*2+]saOtd0>a1-ZSd[[[[ ]P]sclb1\
!=cSbLdlbtZ[[[-]P0lb-sb]sclb0>c1+]sclb0!<c[0P1+dld>c]scdld>cscSdLbP]q]Sb\
[t[1P1-d0<c]scd0<c]ScO_1>bO1!<cO[16]<bOX0<b[[q]sc[dSbdA>c[A]sbdA=c[B]sbd\
B=c[C]sbdC=c[D]sbdD=c[E]sbdE=c[F]sb]xscLbP]~Sd[dtdZOZ+k1O/Tdsb[.5]*[.1]O\
X^*dZkdXK-1+ktsc0kdSb-[Lbdlb*lc+tdSbO*-lb0!=aldx]dsaxLbsb]sad1!>a[[.]POX\
+sb1[SbO*dtdldx-LbO*dZlb!<a]dsax]sadXd0<asbsasaLasbLbscLcsdLdsdLdLak[]pP,
b next

: Print
/|?p/s/[^~]*/&\
~&/
s/\(.*|P\)\([^|]*\)/\
\2\1/
s/\([^~]*\)\n\([^~]*\)\(.*|P\)/\1\3\2/
h
s/~.*//
/./{ s/.//; p; }
#  Just s/.//p would work if we knew we were running under the -n option.
#  Using l vs p would kind of do \ continuations, but would break strings.
g

: pop
s/[^~]*~//
b next

: load
s/\(.*|?.\)\(.\)/\20~\1/
s/^\(.\)0\(.*|r\1\([^~|]*\)~\)/\1\3\2/
s/.//
b next

: Load
s/\(.*|?.\)\(.\)/\2\1/
s/^\(.\)\(.*|r\1\)\([^~|]*~\)/|\3\2/
/^|/!i\
register empty
s/.//
b next

: save
s/\(.*|?.\)\(.\)/\2\1/
/^\(.\).*|r\1/ !s/\(.\).*|/&r\1|/
/|?S/ s/\(.\).*|r\1/&~/
s/\(.\)\([^~]*~\)\(.*|r\1\)[^~|]*~\{0,1\}/\3\2/
b next

: quit
t quit
s/|?[^~]*~[^~]*~/|?q/
t next
#  Really should be using the -n option to avoid printing a final newline.
s/.*|P\([^|]*\).*/\1/
q

: break
s/[0-9]*/&;987654321009;/
: break1
s/^\([^;]*\)\([1-9]\)\(0*\)\([^1]*\2\(.\)[^;]*\3\(9*\).*|?.\)[^~]*~/\1\5\6\4/
t break1
b pop

: input
N
s/|??\(.*\)\(\n.*\)/|?\2~\1/
b next

: count
/|?Z/ s/~.*//
/^-\{0,1\}[0-9]*\.\{0,1\}[0-9]\{1,\}$/ s/[-.0]*\([^.]*\)\.*/\1/
/|?X/ s/-*[0-9A-F]*\.*\([0-9A-F]*\).*/\1/
s/|.*//
/~/ s/[^~]//g

s/./a/g
: count1
	s/a\{10\}/b/g
	s/b*a*/&a9876543210;/
	s/a.\{9\}\(.\).*;/\1/
	y/b/a/
/a/b count1
G
/|?z/ s/\n/&~/
s/\n[^~]*//
b next

: trunc
#  for efficiency, doesn't pad with 0s, so 10k 2 5/ returns just .40
#  The X* here and in a couple other places works around a SunOS 4.x sed bug.
s/\([^.~]*\.*\)\(.*|K\([^|]*\)\)/\3;9876543210009909:\1,\2/
: trunc1
	s/^\([^;]*\)\([1-9]\)\(0*\)\([^1]*\2\(.\)[^:]*X*\3\(9*\)[^,]*\),\([0-9]\)/\1\5\6\4\7,/
t trunc1
s/[^:]*:\([^,]*\)[^~]*/\1/
b normal

: number
s/\(.*|?\)\(_\{0,1\}[0-9A-F]*\.\{0,1\}[0-9A-F]*\)/\2~\1~/
s/^_/-/
/^[^A-F~]*~.*|I10|/b normal
/^[-0.]*~/b normal
s:\([^.~]*\)\.*\([^~]*\):[Ilb^lbk/,\1\2~0A1B2C3D4E5F1=11223344556677889900;.\2:
: digit
    s/^\([^,]*\),\(-*\)\([0-F]\)\([^;]*\(.\)\3[^1;]*\(1*\)\)/I*+\1\2\6\5~,\2\4/
t digit
s:...\([^/]*.\)\([^,]*\)[^.]*\(.*|?.\):\2\3KSb[99]k\1]SaSaXSbLalb0<aLakLbktLbk:
b next

: string
/|?[^]]*$/N
s/\(|?[^]]*\)\[\([^]]*\)]/\1|{\2|}/
/|?\[/b string
s/\(.*|?\)|{\(.*\)|}/\2~\1[/
s/|{/[/g
s/|}/]/g
b next

: binop
/^[^~|]*~[^|]/ !i\
stack empty
//!b next
/^-\{0,1\}[0-9]*\.\{0,1\}[0-9]\{1,\}~/ !s/[^~]*\(.*|?!*[^!=<>]\)/0\1/
/^[^~]*~-\{0,1\}[0-9]*\.\{0,1\}[0-9]\{1,\}~/ !s/~[^~]*\(.*|?!*[^!=<>]\)/~0\1/
h
/|?\*/b mul
/|?\//b div
/|?%/b rem
/|?^/b exp

/|?[+-]/ s/^\(-*\)\([^~]*~\)\(-*\)\([^~]*~\).*|?\(-\{0,1\}\).*/\2\4s\3o\1\3\5/
s/\([^.~]*\)\([^~]*~[^.~]*\)\(.*\)/<\1,\2,\3|=-~.0,123456789<></
/^<\([^,]*,[^~]*\)\.*0*~\1\.*0*~/ s/</=/
: cmp1
	s/^\(<[^,]*\)\([0-9]\),\([^,]*\)\([0-9]\),/\1,\2\3,\4/
t cmp1
/^<\([^~]*\)\([^~]\)[^~]*~\1\(.\).*|=.*\3.*\2/ s/</>/
/|?/{
	s/^\([<>]\)\(-[^~]*~-.*\1\)\(.\)/\3\2/
	s/^\(.\)\(.*|?!*\)\1/\2!\1/
	s/|?![^!]\(.\)/&l\1x/
	s/[^~]*~[^~]*~\(.*|?\)!*.\(.*\)|=.*/\1\2/
	b next
}
s/\(-*\)\1|=.*/;9876543210;9876543210/
/o-/ s/;9876543210/;0123456789/
s/^>\([^~]*~\)\([^~]*~\)s\(-*\)\(-*o\3\(-*\)\)/>\2\1s\5\4/

s/,\([0-9]*\)\.*\([^,]*\),\([0-9]*\)\.*\([0-9]*\)/\1,\2\3.,\4;0/
: right1
	s/,\([0-9]\)\([^,]*\),;*\([0-9]\)\([0-9]*\);*0*/\1,\2\3,\4;0/
t right1
s/.\([^,]*\),~\(.*\);0~s\(-*\)o-*/\1~\30\2~/

: addsub1
	s/\(.\{0,1\}\)\(~[^,]*\)\([0-9]\)\(\.*\),\([^;]*\)\(;\([^;]*\(\3[^;]*\)\).*X*\1\(.*\)\)/\2,\4\5\9\8\7\6/
	s/,\([^~]*~\).\{10\}\(.\)[^;]\{0,9\}\([^;]\{0,1\}\)[^;]*/,\2\1\3/
#	  could be done in one s/// if we could have >9 back-refs...
/^~.*~;/!b addsub1

: endbin
s/.\([^,]*\),\([0-9.]*\).*/\1\2/
G
s/\n[^~]*~[^~]*//

: normal
s/^\(-*\)0*\([0-9.]*[0-9]\)[^~]*/\1\2/
s/^[^1-9~]*~/0~/
b next

: mul
s/\(-*\)\([0-9]*\)\.*\([0-9]*\)~\(-*\)\([0-9]*\)\.*\([0-9]*\).*|K\([^|]*\).*/\1\4\2\5.!\3\6,|\2<\3~\5>\6:\7;9876543210009909/

: mul1
    s/![0-9]\([^<]*\)<\([0-9]\{0,1\}\)\([^>]*\)>\([0-9]\{0,1\}\)/0!\1\2<\3\4>/
    /![0-9]/ s/\(:[^;]*\)\([1-9]\)\(0*\)\([^0]*\2\(.\).*X*\3\(9*\)\)/\1\5\6\4/
/<~[^>]*>:0*;/!t mul1

s/\(-*\)\1\([^>]*\).*/;\2^>:9876543210aaaaaaaaa/

: mul2
    s/\([0-9]~*\)^/^\1/
    s/<\([0-9]*\)\(.*[~^]\)\([0-9]*\)>/\1<\2>\3/

    : mul3
	s/>\([0-9]\)\(.*\1.\{9\}\(a*\)\)/\1>\2;9\38\37\36\35\34\33\32\31\30/
	s/\(;[^<]*\)\([0-9]\)<\([^;]*\).*\2[0-9]*\(.*\)/\4\1<\2\3/
	s/a[0-9]/a/g
	s/a\{10\}/b/g
	s/b\{10\}/c/g
    /|0*[1-9][^>]*>0*[1-9]/b mul3

    s/;/a9876543210;/
    s/a.\{9\}\(.\)[^;]*\([^,]*\)[0-9]\([.!]*\),/\2,\1\3/
    y/cb/ba/
/|<^/!b mul2
b endbin

: div
#  CDDET
/^[-.0]*[1-9]/ !i\
divide by 0
//!b pop
s/\(-*\)\([0-9]*\)\.*\([^~]*~-*\)\([0-9]*\)\.*\([^~]*\)/\2.\3\1;0\4.\5;0/
: div1
	s/^\.0\([^.]*\)\.;*\([0-9]\)\([0-9]*\);*0*/.\1\2.\3;0/
	s/^\([^.]*\)\([0-9]\)\.\([^;]*;\)0*\([0-9]*\)\([0-9]\)\./\1.\2\30\4.\5/
t div1
s/~\(-*\)\1\(-*\);0*\([^;]*[0-9]\)[^~]*/~123456789743222111~\2\3/
s/\(.\(.\)[^~]*\)[^9]*\2.\{8\}\(.\)[^~]*/\3~\1/
s,|?.,&SaSadSaKdlaZ+LaX-1+[sb1]Sbd1>bkLatsbLa[dSa2lbla*-*dLa!=a]dSaxsakLasbLb*t,
b next

: rem
s,|?%,&Sadla/LaKSa[999]k*Lak-,
b next

: exp
#  This decimal method is just a little faster than the binary method done
#  totally in dc:  1LaKLb [kdSb*LbK]Sb [[.5]*d0ktdSa<bkd*KLad1<a]Sa d1<a kk*
/^[^~]*\./i\
fraction in exponent ignored
s,[^-0-9].*,;9d**dd*8*d*d7dd**d*6d**d5d*d*4*d3d*2lbd**1lb*0,
: exp1
	s/\([0-9]\);\(.*\1\([d*]*\)[^l]*\([^*]*\)\(\**\)\)/;dd*d**d*\4\3\5\2/
t exp1
G
s,-*.\{9\}\([^9]*\)[^0]*0.\(.*|?.\),\2~saSaKdsaLb0kLbkK*+k1\1LaktsbkLax,
s,|?.,&SadSbdXSaZla-SbKLaLadSb[0Lb-d1lb-*d+K+0kkSb[1Lb/]q]Sa0>a[dk]sadK<a[Lb],
b next

: sqrt
#  first square root using sed:  8k2v at 1:30am Dec 17, 1996
/^-/i\
square root of negative number
/^[-0]/b next
s/~.*//
/^\./ s/0\([0-9]\)/\1/g
/^\./ !s/[0-9][0-9]/7/g
G
s/\n/~/
s,|?.,&K1+k KSbSb[dk]SadXdK<asadlb/lb+[.5]*[sbdlb/lb+[.5]*dlb>a]dsaxsasaLbsaLatLbk K1-kt,
b next

#  END OF GSU dc.sed
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #!/bin/sh
# See init-d-script(5) for instructions on how to use this library.
#=============================================================================

# Shift arguments early to fix #826214
__init_d_script_name="$1"
shift

# Define LSB log_* functions.
# Depend on sysvinit-utils (>= 3.05-1) to ensure that this file is present
# and status_of_proc is working.
. /lib/lsb/init-functions

# PATH should only include /usr/* if it runs after the mountnfs.sh
# script.  Scripts running before mountnfs.sh should remove the /usr/*
# entries.
PATH=/usr/sbin:/usr/bin:/sbin:/bin
export PATH

is_call_implemented() {
	PATH= command -V $1 >/dev/null 2>&1
}

do_usage() {
	if is_call_implemented do_reload ; then
		echo "Usage: $SCRIPTNAME {start|stop|status|reload|restart|try-restart|force-reload}" >&2
	else
		echo "Usage: $SCRIPTNAME {start|stop|status|restart|try-restart|force-reload}" >&2
	fi
}

call() {
	cmd="$1"
	shift
	if is_call_implemented ${cmd}_override ; then
	    ${cmd}_override "$@"
	else
            ${cmd} "$@"
        fi
}

#
# Function that starts the daemon/service
#

do_start_cmd() {
	start-stop-daemon --start --quiet \
	    ${PIDFILE:+--pidfile "$PIDFILE"} \
	    ${COMMAND_NAME:+--name "$COMMAND_NAME"} \
	    ${DAEMON:+--exec "$DAEMON"} $START_ARGS -- $DAEMON_ARGS
}

do_start()
{
	if is_call_implemented do_start_prepare ; then
		call do_start_prepare
	fi
	log_daemon_msg "Starting $DESC" "$NAME"
	call do_start_cmd
	retval=$?
	if [ "$retval" = 1 ] && [ no != "$VERBOSE" ] ; then
		log_progress_msg "is already running"
	fi
	retval=$(( $retval > 1 ))
	vlog_end_msg $retval
	if is_call_implemented do_start_cleanup ; then
		call do_start_cleanup
	fi
	return $retval
}

#
# Function that stops the daemon/service
#

do_stop_cmd() {
	start-stop-daemon --stop --quiet \
	    --retry=TERM/0/CONT/30/KILL/5 \
	    ${PIDFILE:+--pidfile "$PIDFILE"} \
	    ${COMMAND_NAME:+--name "$COMMAND_NAME"} \
	    ${DAEMON:+--exec "$DAEMON"} $STOP_ARGS
	RETVAL="$?"
	[ "$RETVAL" = 2 ] && return 2
	# Wait for children to finish too if this is a daemon that forks
	# and if the daemon is only ever run from this initscript.
	# If the above conditions are not satisfied then add some other code
	# that waits for the process to drop all resources that could be
	# needed by services started subsequently.  A last resort is to
	# sleep for some time.
	if [ -n "$DAEMON" ] ; then
		start-stop-daemon --stop --quiet --oknodo \
		    --retry=0/30/KILL/5 --exec "$DAEMON" $STOP_ARGS
		[ "$?" = 2 ] && return 2
	fi
	# Many daemons don't delete their pidfiles when they exit.
	rm -f $PIDFILE
	return $RETVAL
}

do_stop()
{
	if is_call_implemented do_stop_prepare ; then
		call do_stop_prepare
	fi
	vlog_daemon_msg "Stopping $DESC" "$NAME"
	call do_stop_cmd
	retval=$?
	if [ "$retval" = 1 ] && [ no != "$VERBOSE" ] ; then
		log_progress_msg "is not running"
	fi
	retval=$(( $retval > 1 ))
	vlog_end_msg $retval
	if is_call_implemented do_stop_cleanup ; then
		call do_stop_cleanup
	fi
	return $retval
}

do_restart() {
	if is_call_implemented do_restart_prepare ; then
		call do_restart_prepare
	fi
	vlog_daemon_msg "Restarting $DESC" "$NAME"
	call do_stop_cmd
	retval=$(( $? > 1 ))
	if [ $retval -eq 0 ] ; then
		call do_start_cmd
		retval=$(( $? > 1 ))
	fi
	vlog_end_msg $retval
	if is_call_implemented do_restart_cleanup ; then
		call do_restart_cleanup
	fi
	return $retval
}

# Wrapper for do_reload_cmd
do_reload_wrapper() {
	if is_call_implemented do_reload_prepare ; then
		call do_reload_prepare
	fi
	vlog_daemon_msg "Reloading $DESC configuration files" "$NAME"
	call do_reload_cmd
	retval=$(( $? != 0 ))
	vlog_end_msg $retval
	if is_call_implemented do_reload_cleanup ; then
		call do_reload_cleanup
	fi
	return $retval
}

# To enable this function, RELOAD_SIGNAL should be set to the kill signal
do_reload_signal() {
	start-stop-daemon --stop --signal $RELOAD_SIGNAL --quiet \
	    ${PIDFILE:+--pidfile "$PIDFILE"} \
	    ${COMMAND_NAME:+--name "$COMMAND_NAME"} \
	    ${DAEMON:+--exec "$DAEMON"} $RELOAD_ARGS
}

# Deprecated: use RELOAD_SIGNAL instead for newer scripts
# Enable this using
# alias do_reload=do_reload_sigusr1
do_reload_sigusr1() {
	RELOAD_SIGNAL=1
	do_reload_cmd() { do_reload_signal; }
	do_reload_wrapper
}

do_status() {
	status_of_proc ${PIDFILE:+-p "$PIDFILE"} "${DAEMON:-none}" "$NAME"
}

if [ "$DEBUG" = "true" ] ; then
    set -x
fi

# Unset configuration variables to make sure that if variable is not assigned a
# value in init script, it does not use one from environment. See #822918.
unset DAEMON DAEMON_ARGS DESC NAME COMMAND_NAME PIDFILE \
    RELOAD_ARGS RELOAD_SIGNAL START_ARGS STOP_ARGS

SCRIPTNAME="$__init_d_script_name"
scriptbasename=${__init_d_script_name##*/}
if [ "$scriptbasename" != "init-d-script" ] ; then
    . "$__init_d_script_name"
else
    exit 0
fi

: ${NAME:=${DAEMON##*/}}
: ${DESC:=$NAME}
: ${COMMAND_NAME:=${NAME}}

# Do not use pid file if $PIDFILE is 'none'.  Otherwise, generate from
# $NAME or use the value provided by the init.d script.
if [ none = "$PIDFILE" ] ; then
    PIDFILE=
elif [ -z "$PIDFILE" ] ; then
    PIDFILE=/var/run/$NAME.pid
fi

# Read configuration variable file if it is present
[ -r "/etc/default/${NAME}" ] && . "/etc/default/${NAME}"

# Exit if the package is not installed
if [ none != "$DAEMON" ] && [ ! -x "$DAEMON" ] ; then
	exit 0
fi

# Do not use DAEMON or COMMAND_NAME if they are set to 'none'.
[ none = "$DAEMON" ] && DAEMON=
[ none = "$COMMAND_NAME" ] && COMMAND_NAME=

# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh
if [ -t 0 ] ; then # Be verbose when called from a terminal
    VERBOSE=yes
fi

# Setup do_reload if not already defined
if ! is_call_implemented do_reload ; then
	if ! is_call_implemented do_reload_cmd && [ -n "$RELOAD_SIGNAL" ]
	then
		do_reload_cmd() { do_reload_signal; }
	fi
	if is_call_implemented do_reload_cmd ; then
		alias do_reload=do_reload_wrapper
	fi
fi

case "$1" in
  start)
	call do_start
	;;
  stop)
	call do_stop
	;;
  status)
	call do_status
	;;
  reload)
	if is_call_implemented do_reload ; then
		do_reload
	else
		call do_usage
		exit 3
	fi
	;;
  force-reload)
	if is_call_implemented do_force_reload ; then
		call do_force_reload
	elif is_call_implemented do_reload ; then
		do_reload
	else
		call do_restart
	fi
	;;
  restart)
	call do_restart
	;;
  try-restart)
	vlog_daemon_msg "Trying to restart $DESC" "$NAME"
	if (call do_status) >/dev/null ; then
		(call do_restart) >/dev/null
	else
		[ no != "$VERBOSE" ] && log_progress_msg "is not running"
		true
    	fi
	vlog_end_msg $?
	;;
  '')
	call do_usage
	exit 3
	;;
  *)
	if is_call_implemented do_unknown ; then
	    call do_unknown "$1"
	    exit 3
	else
	    call do_usage
	    exit 3
	fi
	;;
esac
exit $? # See https://bugs.debian.org/822753#53
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          #
# Set rcS vars
#

# Because /etc/default/rcS isn't a conffile, it's never updated
# automatically.  So that an empty or outdated file missing newer
# options works correctly, set the default values here.
TMPTIME=0
SULOGIN=no
DELAYLOGIN=no
UTC=yes
VERBOSE=no
FSCKFIX=no

# Source conffile
if [ -f /etc/default/rcS ]; then
    . /etc/default/rcS
fi

# Unset old unused options
unset EDITMOTD
unset RAMRUN
unset RAMLOCK
# Don't unset RAMSHM and RAMTMP for now.

# Parse kernel command line
if [ -r /proc/cmdline ]; then
    for ARG in $(cat /proc/cmdline); do
        case $ARG in

            # check for bootoption 'noswap' and do not activate swap
            # partitions/files when it is set.
            noswap)
		NOSWAP=yes
		;;

            # Accept the same 'quiet' option as the kernel, but only
            # during boot and shutdown.  Only use this rule when the
            # variables set by init.d/rc is present.
            quiet)
		if [ "$RUNLEVEL" ] && [ "$PREVLEVEL" ] ; then
		    VERBOSE="no"
		fi
		;;
	esac
    done
fi

# But allow both rcS and the kernel options 'quiet' to be overrided
# when INIT_VERBOSE=yes is used as well.
if [ "$INIT_VERBOSE" ] ; then
    VERBOSE="$INIT_VERBOSE"
fi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    # /lib/lsb/init-functions for Debian -*- shell-script -*-
#
#Copyright (c) 2002-08 Chris Lawrence
#All rights reserved.
#
#Redistribution and use in source and binary forms, with or without
#modification, are permitted provided that the following conditions
#are met:
#1. Redistributions of source code must retain the above copyright
#   notice, this list of conditions and the following disclaimer.
#2. Redistributions in binary form must reproduce the above copyright
#   notice, this list of conditions and the following disclaimer in the
#   documentation and/or other materials provided with the distribution.
#3. Neither the name of the author nor the names of other contributors
#   may be used to endorse or promote products derived from this software
#   without specific prior written permission.
#
#THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
#IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
#WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
#ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
#LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
#CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
#SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
#BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
#OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
#EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

start_daemon () {
    local force nice pidfile exec args OPTIND
    force=""
    nice=0
    pidfile=/dev/null

    OPTIND=1
    while getopts fn:p: opt ; do
        case "$opt" in
            f)  force="force";;
            n)  nice="$OPTARG";;
            p)  pidfile="$OPTARG";;
        esac
    done
    
    shift $(($OPTIND - 1))
    if [ "$1" = '--' ]; then
        shift
    fi

    exec="$1"; shift

    args="--start --nicelevel $nice --quiet --oknodo"
    if [ "$force" ]; then
        /sbin/start-stop-daemon $args \
	    --chdir "$PWD" --startas $exec --pidfile /dev/null -- "$@"
    elif [ $pidfile ]; then
        /sbin/start-stop-daemon $args \
	    --chdir "$PWD" --exec $exec --oknodo --pidfile "$pidfile" -- "$@"
    else
        /sbin/start-stop-daemon $args --chdir "$PWD" --exec $exec -- "$@"
    fi
}

pidofproc () {
    local pidfile base status specified pid OPTIND
    pidfile=
    specified=
    
    OPTIND=1
    while getopts p: opt ; do
        case "$opt" in
            p)  pidfile="$OPTARG"
                specified="specified"
		;;
        esac
    done
    shift $(($OPTIND - 1))
    if [ $# -ne 1 ]; then
        echo "$0: invalid arguments" >&2
        return 4
    fi

    base=${1##*/}
    if [ ! "$specified" ]; then
        pidfile="/var/run/$base.pid"
    fi

    if [ -n "${pidfile:-}" ]; then
     if [ -e "$pidfile" ]; then
      if [ -r "$pidfile" ]; then
        read pid < "$pidfile"
        if [ -n "${pid:-}" ]; then
            if $(kill -0 "${pid:-}" 2> /dev/null); then
                echo "$pid" || true
                return 0
            elif ps "${pid:-}" >/dev/null 2>&1; then
                echo "$pid" || true
                return 0 # program is running, but not owned by this user
            else
                return 1 # program is dead and /var/run pid file exists
            fi
        fi
      else
        return 4 # pid file not readable, hence status is unknown.
      fi
     else
       # pid file doesn't exist, try to find the pid nevertheless
       if [ -x /bin/pidof ] && [ ! "$specified" ]; then
         status="0"
         /bin/pidof -c -o %PPID -x $1 || status="$?"
         if [ "$status" = 1 ]; then
             return 3 # program is not running
         fi
         return 0
       fi
       return 3 # specified pid file doesn't exist, program probably stopped
     fi
    fi
    if [ "$specified" ]; then
        return 3 # almost certain it's not running
    fi
    return 4 # Unable to determine status
}

# start-stop-daemon uses the same algorithm as "pidofproc" above.
killproc () {
    local pidfile sig status base name_param is_term_sig OPTIND
    pidfile=
    name_param=
    is_term_sig=

    OPTIND=1
    while getopts p: opt ; do
        case "$opt" in
            p)  pidfile="$OPTARG";;
        esac
    done
    shift $(($OPTIND - 1))

    base=${1##*/}
    if [ ! $pidfile ]; then
        name_param="--name $base --pidfile /var/run/$base.pid"
    else
        name_param="--name $base --pidfile $pidfile"
    fi

    sig=${2:-} sig=${sig#-} sig=${sig#SIG}
    if [ "$sig" = 15 ] || [ "$sig" = TERM ]; then
        is_term_sig="terminate_signal"
    fi
    status=0
    if [ ! "$is_term_sig" ]; then
        if [ -n "$sig" ]; then
            /sbin/start-stop-daemon --stop --signal "$sig" \
		--quiet $name_param || status="$?"
        else
            /sbin/start-stop-daemon --stop \
		--retry 5 \
		--quiet $name_param || status="$?"
        fi
    else
        /sbin/start-stop-daemon --stop --quiet \
	    --oknodo $name_param || status="$?"
    fi
    if [ "$status" = 1 ]; then
        if [ -z "$sig" ]; then
            return 0
        fi
        return 3 # program is not running
    fi

    if [ "$status" = 0 ] && [ "$is_term_sig" ] && [ "$pidfile" ]; then
        pidofproc -p "$pidfile" "$1" >/dev/null || rm -f "$pidfile"
    fi
    return 0
}

# Return LSB status
status_of_proc () {
    local pidfile daemon name status OPTIND

    pidfile=
    OPTIND=1
    while getopts p: opt ; do
        case "$opt" in
            p)  pidfile="$OPTARG";;
        esac
    done
    shift $(($OPTIND - 1))

    if [ -n "$pidfile" ]; then
        pidfile="-p $pidfile"
    fi
    daemon="$1"
    name="$2"

    status="0"
    pidofproc $pidfile $daemon >/dev/null || status="$?"
    if [ "$status" = 0 ]; then
        log_success_msg "$name is running"
        return 0
    elif [ "$status" = 4 ]; then
        log_failure_msg "could not access PID file for $name"
        return $status
    else
        log_failure_msg "$name is not running"
        return $status
    fi
}

log_use_fancy_output () {
    if  [ -t 1 ] &&
	[ "x${TERM:-}" != "x" ] &&
	[ "x${TERM:-}" != "xdumb" ]
    then
        [ -z $FANCYTTY ] && return 0 || true
    else
        return 1
    fi
    case "$FANCYTTY" in
        1|Y|yes|true)   true;;
        *)              false;;
    esac
}

log_success_msg () {
    if [ -n "${1:-}" ]; then
        log_begin_msg "$@"
    fi
    log_end_msg 0
}

log_failure_msg () {
    if [ -n "${1:-}" ]; then
        log_begin_msg "$@" "..."
    fi
    log_end_msg 1 || true
}

log_warning_msg () {
    if [ -n "${1:-}" ]; then
        log_begin_msg "$@" "..."
    fi
    log_end_msg 255 || true
}

#
# NON-LSB HELPER FUNCTIONS
#
# int get_lsb_header_val (char *scriptpathname, char *key)
get_lsb_header_val () {
        if [ ! -f "$1" ] || [ -z "${2:-}" ]; then
                return 1
        fi
        LSB_S="### BEGIN INIT INFO"
        LSB_E="### END INIT INFO"
        sed -n "/$LSB_S/,/$LSB_E/ s/# $2: \+\(.*\)/\1/p" "$1"
}

# If the currently running init daemon is upstart, return zero; if the
# calling init script belongs to a package which also provides a native
# upstart job, it should generally exit non-zero in this case.
init_is_upstart()
{
   if [ -x /sbin/initctl ] && /sbin/initctl version 2>/dev/null | /bin/grep -q upstart; then
       return 0
   fi
   return 1
}

# int log_begin_message (char *message)
log_begin_msg () {
    log_begin_msg_pre "$@"
    if [ -z "${1:-}" ]; then
        return 1
    fi
    echo -n "$@" || true
    log_begin_msg_post "$@"
}

# Sample usage:
# log_daemon_msg "Starting GNOME Login Manager" "gdm"
#
# On Debian, would output "Starting GNOME Login Manager: gdm"
# On Ubuntu, would output " * Starting GNOME Login Manager..."
#
# If the second argument is omitted, logging suitable for use with
# log_progress_msg() is used:
#
# log_daemon_msg "Starting remote filesystem services"
#
# On Debian, would output "Starting remote filesystem services:"
# On Ubuntu, would output " * Starting remote filesystem services..."

log_daemon_msg () {
    if [ -z "${1:-}" ]; then
        return 1
    fi
    log_daemon_msg_pre "$@"

    if [ -z "${2:-}" ]; then
        echo -n "$1:" || true
        return
    fi
    
    echo -n "$1: $2" || true
    log_daemon_msg_post "$@"
}

# #319739
#
# Per policy docs:
#
#     log_daemon_msg "Starting remote file system services"
#     log_progress_msg "nfsd"; start-stop-daemon --start --quiet nfsd
#     log_progress_msg "mountd"; start-stop-daemon --start --quiet mountd
#     log_progress_msg "ugidd"; start-stop-daemon --start --quiet ugidd
#     log_end_msg 0
#
# You could also do something fancy with log_end_msg here based on the
# return values of start-stop-daemon; this is left as an exercise for
# the reader...
#
# On Ubuntu, one would expect log_progress_msg to be a no-op.
log_progress_msg () {
    if [ -z "${1:-}" ]; then
        return 1
    fi
    echo -n " $@" || true
}


# int log_end_message (int exitstatus)
log_end_msg () {
    # If no arguments were passed, return
    if [ -z "${1:-}" ]; then
        return 1
    fi

    log_end_msg_pre "$@"

    # Only do the fancy stuff if we have an appropriate terminal
    if log_use_fancy_output; then
        esc=''		# escape character, printf '\033'
        red="$esc[31m"		# ANSI color escapes
        yellow="$esc[33m"
        normal="$esc[0m"
    else
        red= yellow= normal=
    fi

    if [ $1 -eq 0 ]; then
        echo "." || true
    elif [ $1 -eq 255 ]; then
        echo " ${yellow}(warning).${normal}" || true
    else
        echo " ${red}failed!${normal}" || true
    fi
    log_end_msg_post "$@"
    return $1
}

log_action_msg () {
    log_action_msg_pre "$@"
    echo "$@." || true
    log_action_msg_post "$@"
}

log_action_begin_msg () {
    log_action_begin_msg_pre "$@"
    echo -n "$@..." || true
    log_action_begin_msg_post "$@"
}

log_action_cont_msg () {
    echo -n "$@..." || true
}

log_action_end_msg () {
    local end
    log_action_end_msg_pre "$@"
    if [ -z "${2:-}" ]; then
        end="."
    else
        end=" ($2)."
    fi

    if [ $1 -eq 0 ]; then
        echo "done${end}" || true
    else
        if log_use_fancy_output; then
            esc=''		# escape character, printf '\033'
            red="$esc[31m"	# ANSI color escapes
            normal="$esc[0m"
            echo "${red}failed${end}${normal}" || true
        else
            echo "failed${end}" || true
        fi
    fi
    log_action_end_msg_post "$@"
}

# Pre&Post empty function declaration, to be overriden from /lib/lsb/init-functions.d/*
log_daemon_msg_pre () { :; }
log_daemon_msg_post () { :; }
log_begin_msg_pre () { :; }
log_begin_msg_post () { :; }
log_end_msg_pre () { :; }
log_end_msg_post () { :; }
log_action_msg_pre () { :; }
log_action_msg_post () { :; }
log_action_begin_msg_pre () { :; }
log_action_begin_msg_post () { :; }
log_action_end_msg_pre () { :; }
log_action_end_msg_post () { :; }

# Include hooks from other packages in /lib/lsb/init-functions.d
for hook in $(run-parts --lsbsysinit --list /lib/lsb/init-functions.d 2>/dev/null); do
    [ -r $hook ] && . $hook || true
done

FANCYTTY=
[ -e /etc/lsb-base-logging.sh ] && . /etc/lsb-base-logging.sh || true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               vlog_daemon_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_daemon_msg "$@"
	else
		true
	fi
}

vlog_begin_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_begin_msg "$@"
	else
		true
	fi
}

vlog_action_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_msg "$@"
	else
		true
	fi
}

vlog_action_begin_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_begin_msg "$@"
	else
		true
	fi
}

vlog_action_end_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_action_end_msg "$@"
	else
		true
	fi
}


vlog_end_msg() {
	if test x"${VERBOSE:-yes}" != x"no" ; then
		log_end_msg "$@"
	else
		return ${1:-1}
	fi
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ,  .   ,  ..  ,  LICENSE b  node_modules\f  build   Zr  package.jsonUs  
tsconfig.json   s  CHANGELOG.mds  	README.md   u Tsrc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ?AVݍ,  .   ,  ..  ,  LICENSE b  node_modules^f  build   ^r  package.jsonVs  
tsconfig.json   s  CHANGELOG.mds  	README.md   u Tsrc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               E|^!  .   ]!  ..  _!  
der_digests.h   `!  	der_dsa.h   a!  der_ec.hb!  	der_ecx.h   c!  	der_rsa.h   d!  	der_sm2.h   e! d
der_wrap.h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -ʵf!  .   !  ..  g!  crypto  i!  include ! 	providers                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ')g!  .   f!  ..  h! 
buildinf.h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pc2i!  .   f!  ..  j!  crypto  m!  openssl ! progs.h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ތ˾