aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Beyer <beyert_freebsd@fastmail.net>2021-10-19 10:24:12 +0000
committerKoichiro Iwao <meta@FreeBSD.org>2021-10-20 07:42:18 +0000
commit042847b1b437634da916eb1386273a7fd8777a89 (patch)
treeee6fb66bc9337572f8c80cf8b420f39d82b3df9a
parent532f59340c404ab547e0e51c59c0df6b1f39f13a (diff)
downloadports-042847b1b437634da916eb1386273a7fd8777a89.tar.gz
ports-042847b1b437634da916eb1386273a7fd8777a89.zip
lang/mlton: Update to 20210816
and fix build for FreeBSD 12 and 13. PR: 259261
-rw-r--r--lang/mlton/Makefile280
-rw-r--r--lang/mlton/distinfo21
-rw-r--r--lang/mlton/files/add-local-cross191
-rw-r--r--lang/mlton/files/ml.grm.sig88
-rw-r--r--lang/mlton/files/ml.grm.sml5497
-rw-r--r--lang/mlton/files/ml.lex.sml5660
-rw-r--r--lang/mlton/files/mlb.grm.sig32
-rw-r--r--lang/mlton/files/mlb.grm.sml894
-rw-r--r--lang/mlton/files/mlb.lex.sml1854
-rw-r--r--lang/mlton/files/patch-Makefile40
-rw-r--r--lang/mlton/files/patch-lib_mlrisc-lib_Makefile12
-rw-r--r--lang/mlton/files/patch-runtime-Makefile67
-rw-r--r--lang/mlton/files/patch-runtime_gc_int-inf.c13
-rw-r--r--lang/mlton/files/upgrade-basis.sml68
-rw-r--r--lang/mlton/files/yacc.grm.sig54
-rw-r--r--lang/mlton/files/yacc.grm.sml1053
-rw-r--r--lang/mlton/files/yacc.lex.sml901
-rw-r--r--lang/mlton/pkg-plist1797
18 files changed, 416 insertions, 18106 deletions
diff --git a/lang/mlton/Makefile b/lang/mlton/Makefile
index 407e3d7cf258..433ebbec281d 100644
--- a/lang/mlton/Makefile
+++ b/lang/mlton/Makefile
@@ -1,187 +1,215 @@
# Created by: Stephen Weeks <sweeks@sweeks.com>
-# Previouly maintained by Jesper Louis Andersen
+# Previously maintained by Jesper Louis Andersen
# (jesper.louis.andersen@gmail.com) and Geoffrey Mainland
# (mainland@apeiron.net)
#
# Because MLton is written in SML, it needs an SML compiler to build.
# It is easiest to use another (earlier) binary version of MLton as
# the SML compiler. So, this Makefile fetches and installs an
-# alread-built version of MLton, BOOT_DIST, to use for bootstrapping.
-
+# already-built version of MLton, BOOT_DIST, to use for bootstrapping.
PORTNAME= mlton
-PORTVERSION= 20100608
-PORTREVISION= 8
+PORTVERSION= 20210816
CATEGORIES= lang
-MASTER_SITES= SF http://www.tbrk.org/distfiles/
-DISTFILES= ${SRC_DIST} ${BOOT_DIST}
-EXTRACT_ONLY= ${SRC_DIST}
+MASTER_SITES+= https://github.com/beyert/mlton-freebsd_bootstrap/raw/c7371c1/:bootstrap
+DISTFILES+= ${BOOTNAME}.i386-${OPSYS:tl}-13.txz:bootstrap \
+ ${BOOTNAME}.amd64-${OPSYS:tl}-13.txz:bootstrap \
+ ${BOOTNAME}.i386-${OPSYS:tl}-12.txz:bootstrap \
+ ${BOOTNAME}.amd64-${OPSYS:tl}-12.txz:bootstrap \
+ ${BOOTNAME}.i386-${OPSYS:tl}-11.txz:bootstrap \
+ ${BOOTNAME}.amd64-${OPSYS:tl}-11.txz:bootstrap
MAINTAINER= beyert@cs.ucr.edu
COMMENT= Optimizing Standard ML compiler
+LICENSE= HPND
+LICENSE_GROUPS= COPYFREE OSI
+LICENSE_NAME= Historical Permission Notice and Disclaimer
+LICENSE_FILE= ${WRKSRC}/LICENSE
+LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT}
+
+ONLY_FOR_ARCHS= amd64 i386
+
+BUILD_DEPENDS= bash:shells/bash
LIB_DEPENDS= libgmp.so:math/gmp
RUN_DEPENDS= bash:shells/bash
-BUILD_DEPENDS= bash:shells/bash
-LICENSE_FILE= doc/license/MLton-LICENSE
+USES= compiler:c11 gmake
-OPTIONS_DEFINE= SMLNJ MINGW32 DOCS
-SMLNJ_DESC= Bootstrap with SML/NJ (can take >15 hours)
-MINGW32_DESC= Add the mingw32 target (requires wine)
+BOOTNAME= ${BOOTNAMEPREFIX}${PORTNAME}${BOOTNAMESUFFIX}-${BOOTVERSIONPREFIX}${BOOTVERSION}${BOOTVERSIONSUFFIX}
+BOOTVERSIONSUFFIX=
+BOOTVERSION= ${PORTVERSION}
+BOOTOSMAJ= ${OSREL:R}
-MAKE_JOBS_UNSAFE= yes
-USES= gmake shebangfix
-USE_GCC= yes
+OPTIONS_DEFINE= DOCS EXAMPLES
+
+OPTIONS_SINGLE= TARGET BOOTSTRAP
+OPTIONS_SINGLE_TARGET= NATIVE MINGW32
+OPTIONS_SINGLE_BOOTSTRAP= MLTON SMLNJ POLYML WINE
+
+OPTIONS_DEFAULT= NATIVE MLTON
+
+MLTON_DESC= Bootstrap with MLton (ideal if supported)
+SMLNJ_DESC= Bootstrap with SML/NJ (can take many hours)
+POLYML_DESC= Bootstrap with PolyML
+WINE_DESC= Bootstrap MINGW32 with wine
+
+NATIVE_DESC= Use default target for given architecture
+MINGW32_DESC= Add mingw32 Windows target (requires wine)
.include <bsd.port.options.mk>
-.if ${PORT_OPTIONS:MDOCS}
-BUILD_DEPENDS+= gsed:textproc/gsed \
- htmldoc:textproc/htmldoc
-USE_TEX= latex:build
-.else
-INSTALL_TARGET= install-no-docs remove-docs
-ALL_TARGET= all-no-docs
+.if ${PORT_OPTIONS:MMINGW32}
+BROKEN+= not yet implemented MINGW32 option in modern versions of ${PORTNAME}
.endif
-SRC_DIST= ${DISTNAME}.src.tgz
+BOOT_WRKSRC= ${WRKSRC}/build
+BOOT_WRKTMP= ${WRKDIR}/mlton-bootstrap
-.if ${PORT_OPTIONS:MSMLNJ}
-BROKEN= ${DISTNAME}-${PORTVERSION} does not bootstrap properly with smlnj
+.if ! ${PORT_OPTIONS:MMLTON}
+MAKE_ARGS= DESTDIR='' MLTON_VERSION=${PORTVERSION} \
+ PATH=${WRKSRC}/build/bin:${WRKDIR}/bin:${PATH} \
+ PREFIX=${PREFIX} \
+ WITH_GMP_DIR=${PREFIX}
+.else
+MAKE_ARGS= DESTDIR='' MLTON_VERSION=${PORTVERSION} \
+ PATH=${WRKSRC}/build/bin:${BOOT_WRKSRC}/bin:${PATH} \
+ PREFIX=${PREFIX} \
+ SML_LIB=${BOOT_WRKSRC}/lib/sml WITH_GMP_DIR=${PREFIX} \
+ PREFIX=${PREFIX} LIB=${BOOT_WRKSRC}/lib \
+ TDOC=${STAGEDIR}${DOCSDIR} \
+ TEXM=${STAGEDIR}${EXAMPLESDIR}
+.endif
+
+.if ${PORT_OPTIONS:MDOCS}
+BUILD_DEPENDS+= htmldoc:textproc/htmldoc
+MAKE_ARGS+= MLTON_BINARY_RELEASE_WITH_DOCS=true
+#USE_TEX= latex:build
+USE_TEX= latex:formats
+INSTALL_TARGET= install-docs install
+ALL_TARGET= install-docs all
+.else
+MAKE_ARGS+= MLTON_BINARY_RELEASE_WITH_DOCS=false
+INSTALL_TARGET= install
+ALL_TARGET= all
.endif
.if ${PORT_OPTIONS:MSMLNJ}
BUILD_DEPENDS+= smlnj>=110.65:lang/smlnj
BOOT_DIST=
+MAKE_JOBS_UNSAFE= yes
MAKE_ENV+= SMLNJ_DEVEL=yes
.if ! ${PORT_OPTIONS:MDOCS}
-ALL_TARGET= smlnj-mlton all-no-docs
-.else
ALL_TARGET= smlnj-mlton all
+.else
+ALL_TARGET= smlnj-mlton install-docs all
+.endif
+.elif ${PORT_OPTIONS:MPOLYML}
+BUILD_DEPENDS+= polyc:lang/polyml
+BOOT_DIST=
+MAKE_JOBS_UNSAFE= yes
+#CPPFLAGS+= -L/usr/local/lib -lpolyml -lpolymain
+#LDFLAGS+= -L/usr/local/lib -lpolyml -lpolymain
+.if ! ${PORT_OPTIONS:MDOCS}
+ALL_TARGET= polyml-mlton all
+.else
+ALL_TARGET= polyml-mlton install-docs all
.endif
+.elif ${PORT_OPTIONS:MNATIVE}
+BOOT_DIST= ${BOOTNAME}.${ARCH}-${OPSYS:tl}-${BOOTOSMAJ}.txz
.else
-BOOT_DIST= ${PORTNAME}-${PORTVERSION}-1.${MACHINE_ARCH}-freebsd${OSRELMAJ}.${BOOT_SUF}
+BOOT_DIST=
.endif
-.if ${PORT_OPTIONS:MMINGW32}
+BOOT_DIST_NEW= ${PKGNAME}${DISTVERSIONSUFFIX}.${ARCH}-${OPSYS:tl}-${OSREL:R}-${HOST}${BOOT_SUFX}
+
+.if ${PORT_OPTIONS:MMINGW32} && ${PORT_OPTIONS:MWINE}
BUILD_DEPENDS+= wine:emulators/wine \
mingw32-gcc:devel/mingw32-gcc \
${LOCALBASE}/mingw32/lib/libgmp.a:math/mingw32-libgmp
RUN_DEPENDS+= mingw32-gcc:devel/mingw32-gcc \
${LOCALBASE}/mingw32/lib/libgmp.a:math/mingw32-libgmp
-SSP_CFLAGS?= -fstack-protector # XXX -strong isn't supported by GCC < 4.9
+SSP_CFLAGS?= -fstack-protector # XXX -strong isn't supported by GCC < 4.9
PLIST_SUB+= MINGW32CROSS=""
.else
PLIST_SUB+= MINGW32CROSS="@comment "
.endif
-# MINGW32 requires wine, which doesn't have an official amd64 port
-.if ${PORT_OPTIONS:MSMLNJ} || ${PORT_OPTIONS:MMINGW32}
-ONLY_FOR_ARCHS= i386
-.else
-ONLY_FOR_ARCHS= i386 amd64
-.endif
-
-BOOT_WRKSRC= ${WRKDIR}/mlton-bootstrap
+USE_GITHUB= yes
+GH_ACCOUNT= MLton
+GH_PROJECT= mlton
+GH_TAGNAME= b2fca3d
-MAKE_ARGS= DESTDIR='' \
- PATH=${WRKSRC}/build/bin:${BOOT_WRKSRC}/bin:${PATH} \
- PREFIX=${PREFIX}
-
-.if ${ARCH} == "i386"
-MLTON_ARCH= "x86"
-.elif ${ARCH} == "amd64"
-MLTON_ARCH= "x64"
-.endif
-
-BOOT_EXTRACT= --bzip2
-BOOT_SUF= tbz
+BOOT_CMD= --xz
+BOOT_SUFX= .txz
post-extract:
- @${CP} ${FILESDIR}/add-local-cross ${WRKSRC}/bin/
- @${CHMOD} 755 ${WRKSRC}/bin/add-local-cross
-.if ${PORT_OPTIONS:MSMLNJ}
- @${CP} ${FILESDIR}/upgrade-basis.sml ${WRKSRC}/mlton/
- @for f in `ls ${FILESDIR}/ml.* ${FILESDIR}/mlb.*`; do \
- ${CP} $$f ${WRKSRC}/mlton/front-end/; \
- done
- @for f in `ls ${FILESDIR}/yacc.*`; do \
- ${CP} $$f ${WRKSRC}/mlyacc/src/; \
- done
-.else
@${MKDIR} ${BOOT_WRKSRC}
- @${TAR} xf ${DISTDIR}/${BOOT_DIST} ${BOOT_EXTRACT} -C ${BOOT_WRKSRC}
+.if ${PORT_OPTIONS:MMLTON}
+ @${TAR} xf ${DISTDIR}/${BOOT_DIST} ${BOOT_CMD} -C ${BOOT_WRKSRC}
+ @${REINPLACE_CMD} \
+ 's|/usr/local/lib/mlton|${BOOT_WRKSRC}/lib/mlton|g' \
+ ${BOOT_WRKSRC}/bin/mlton
+ @${REINPLACE_CMD} 's|$$gcc|$$CC|g' ${BOOT_WRKSRC}/bin/mlton
+.endif
+ @${REINPLACE_CMD} 's/CC := cc/CC := ${CC}/g' ${WRKSRC}/Makefile.config
+ @${REINPLACE_CMD} 's|gcc|${CC}|g' ${WRKSRC}/doc/examples/ffi/Makefile
+ @${REINPLACE_CMD} \
+ 's|-lpolymain -lpolyml|-L ${PREFIX}/lib -lpolymain -lpolyml|g' \
+ ${WRKSRC}/mlton/Makefile
+.if ${PORT_OPTIONS:MDOCS}
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.endif
-
-post-patch:
- @${REINPLACE_CMD} 's/CC := gcc -std=gnu99/CC := ${CC} -std=gnu99/g' \
- ${WRKSRC}/runtime/Makefile \
- ${BOOT_WRKSRC}/lib/mlton/sml/mlnlffi-lib/Makefile
- @${REINPLACE_CMD} 's/gcc -v/${CC} -v/g' ${WRKSRC}/runtime/util/Makefile
- @${REINPLACE_CMD} 's/CC = gcc -std=gnu99/CC = ${CC} -std=gnu99/g' ${WRKSRC}/runtime/util/Makefile
.if ${ARCH} == "i386"
- @${REINPLACE_CMD} 's/ram-slop 0\.7/max-heap 800m/g' ${WRKSRC}/mlton/Makefile
+.if ${OSREL:R} == 13
+ @${REINPLACE_CMD} -e 's/ram-slop 0\.7/ram-slop 0.8/' \
+ -e 's|COMPILE_XARGS :=|COMPILE_XARGS := -polyvariance false|' \
+ ${WRKSRC}/mlton/Makefile
.else
- @${REINPLACE_CMD} 's/ram-slop 0\.7/max-heap 2g/g' ${WRKSRC}/mlton/Makefile
+ @${REINPLACE_CMD} -e 's/ram-slop 0\.7/ram-slop 0.7/' \
+ -e 's|COMPILE_XARGS :=|COMPILE_XARGS := -polyvariance false|' \
+ ${WRKSRC}/mlton/Makefile
.endif
-.if ! ${PORT_OPTIONS:MSMLNJ}
- @${REINPLACE_CMD} -e \
- "s|/usr/local/lib/mlton|${BOOT_WRKSRC}/lib/mlton|;s|/usr/local|${LOCALBASE}|" \
- ${BOOT_WRKSRC}/bin/mlton
- @${REINPLACE_CMD} -e "s|"$$"dir/../lib/mlton|${BOOT_WRKSRC}/lib/mlton|" \
- ${BOOT_WRKSRC}/bin/mlton
- @${REINPLACE_CMD} -e "s|"$$"dir/../lib|${BOOT_WRKSRC}/lib/mlton|" \
- ${WRKSRC}/bin/mlton-script
+ @${REINPLACE_CMD} -e 's/ram-slop 0\.7/ram-slop 0.8/' \
+ -e 's|^OLD_MLTON_RUNTIME_ARGS :=|OLD_MLTON_RUNTIME_ARGS := ram-slop 0.8|' \
+ -e 's|^OLD_MLTON_COMPILE_ARGS :=|OLD_MLTON_COMPILE_ARGS := -polyvariance false|' \
+ ${WRKSRC}/Makefile.config
.endif
- @${REINPLACE_CMD} -e "s|no-mllex|${BOOT_WRKSRC}/bin/mllex|" \
- ${WRKSRC}/mlton/front-end/Makefile \
- ${WRKSRC}/mlyacc/Makefile
- @${REINPLACE_CMD} -e "s|no-mlyacc|${BOOT_WRKSRC}/bin/mlyacc|" \
- ${WRKSRC}/mlton/front-end/Makefile \
- ${WRKSRC}/mlyacc/Makefile
- @${REINPLACE_CMD} -e "s|! mlton |! ${BOOT_WRKSRC}/bin/mlton |" \
- ${WRKSRC}/bin/upgrade-basis
- @${REINPLACE_CMD} -e \
- "s|/usr/local|${LOCALBASE}|" \
- ${WRKSRC}/runtime/Makefile \
- ${WRKSRC}/runtime/bytecode/Makefile \
- ${WRKSRC}/runtime/cenv.h \
- ${WRKSRC}/bin/add-cross \
- ${WRKSRC}/bin/add-local-cross \
- ${WRKSRC}/bin/regression \
- ${WRKSRC}/bin/mlton-script \
- ${WRKSRC}/doc/guide/PortingMLton \
- ${WRKSRC}/doc/guide/SelfCompiling \
- ${WRKSRC}/doc/guide/Installation \
- ${WRKSRC}/regression/parse.sml
- @${REINPLACE_CMD} -e \
- "s|gcc|${CC}|" \
- ${WRKSRC}/bin/add-cross \
- ${WRKSRC}/bin/regression \
- ${WRKSRC}/lib/mlnlffi-lib/Makefile \
- ${WRKSRC}/mlnlffigen/gen-cppcmd \
- ${WRKSRC}/mlnlffigen/README \
- ${BOOT_WRKSRC}/lib/mlton/sml/mlrisc-lib/c-call/test/Makefile \
- ${BOOT_WRKSRC}/lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/Makefile
- @${REINPLACE_CMD} -e \
- "s|'gcc'|'${CC}'|" \
- ${WRKSRC}/bin/mlton-script \
- ${BOOT_WRKSRC}/bin/mlton
-.if ! ${PORT_OPTIONS:MSMLNJ}
- @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \
- ${BOOT_WRKSRC}/lib/mlton/include/cenv.h
+ @${REINPLACE_CMD} 's|gcc|${CC}|g' ${WRKSRC}/mlnlffigen/gen-cppcmd
+ @${REINPLACE_CMD} 's|"cc"|"${CC}"|g' ${WRKSRC}/bin/mlton-script
+ @${FIND} ${WRKDIR} | ${GREP} '\.bak$$' | ${AWK} '{ system("${RM} "$$0); }'
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MEXAMPLES}
+ ${MV} ${STAGEDIR}${DOCSDIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}/
+.elif ${PORT_OPTIONS:MDOCS}
+ ${RM} -r ${STAGEDIR}${DOCSDIR}/examples
+ ${RMDIR} ${STAGEDIR}${EXAMPLESDIR}
+.elif ${PORT_OPTIONS:MEXAMPLES}
+# ${MV} ${STAGEDIR}${DOCSDIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}/
+# ${RM} -r ${STAGEDIR}${DOCSDIR}
+ BROKEN+= In port ${PORTNAME}, EXAMPLES requires DOCS
.endif
- @${RM} ${WRKSRC}/doc/guide/PortingMLton.bak \
- ${WRKSRC}/doc/guide/SelfCompiling.bak \
- ${WRKSRC}/doc/guide/Installation.bak
-
-post-build:
- @${REINPLACE_CMD} -i '' -e '1s|/usr/bin/perl|${perl_CMD}|' \
- ${WRKSRC}/build/lib/sml/mlrisc-lib/cm/makecm \
- ${WRKSRC}/build/lib/sml/mlrisc-lib/cm/makeallcm \
- ${WRKSRC}/build/lib/sml/mlrisc-lib/Doc/html/mltex2html
+ @${FIND} ${WRKDIR} | ${GREP} '\.bak$$' | ${AWK} '{ system("${RM} "$$0); }'
+
+makebootstrap: all
+ @${ECHO_MSG} "====> Making new bootstrap image (${BOOT_DIST_NEW})"
+# @${FIND} ${WRKDIR} | ${GREP} '\.bak$$' | ${AWK} '{ system("${RM} "$$0); }'
+ @${MKDIR} ${BOOT_WRKTMP}
+ @cd ${STAGEDIR}${PREFIX} && ${CP} -pR lib bin ${BOOT_WRKTMP}/
+ @${MKDIR} ${BOOT_WRKTMP}/doc && cd ${WRKSRC}/doc && \
+ ${CP} -pR license README.adoc CHANGELOG.adoc ${BOOT_WRKTMP}/doc/
+ @cd ${WRKSRC} && ${CP} -pR LICENSE README.adoc CHANGELOG.adoc \
+ ${BOOT_WRKTMP}/
+ @cd ${BOOT_WRKTMP} && \
+ ${TAR} cfp ${BOOT_WRKTMP}/${BOOT_DIST_NEW} ${BOOT_CMD} \
+ lib bin doc LICENSE README.adoc CHANGELOG.adoc
+ @${ECHO_MSG} "====> Installing new bootstrap image (${BOOT_DIST_NEW})"
+ @${CP} -p ${BOOT_WRKTMP}/${BOOT_DIST_NEW} ${DISTDIR}/
+ @${ECHO_MSG} "====> Backing up new bootstrap image (${BOOT_DIST_NEW})"
+ @${MV} ${BOOT_WRKTMP}/${BOOT_DIST_NEW} ${MASTERDIR}/
+## @${RMDIR} ${BOOT_WRKTMP}
post-build-MINGW32-on:
@${ECHO} Adding mingw32 target...
diff --git a/lang/mlton/distinfo b/lang/mlton/distinfo
index 0406a73a828b..86709166813c 100644
--- a/lang/mlton/distinfo
+++ b/lang/mlton/distinfo
@@ -1,6 +1,15 @@
-SHA256 (mlton-20100608.src.tgz) = f2cb2cf0d6ca8e00331b15e3d23ede05080742895e79e73d2c26a546cd1c0b33
-SIZE (mlton-20100608.src.tgz) = 5785771
-SHA256 (mlton-20100608-1.i386-freebsd.tbz) = 0bf9aee4387dff75540850ab1a77b46b0ddd4687775cc56a9deab00ee3fb3042
-SIZE (mlton-20100608-1.i386-freebsd.tbz) = 10711528
-SHA256 (mlton-20100608-1.amd64-freebsd.tbz) = 1a0721c596a75c27ed4430149a62b9f497d3a8af3f189e36982ef73cd1d61d5d
-SIZE (mlton-20100608-1.amd64-freebsd.tbz) = 11935047
+TIMESTAMP = 1634426635
+SHA256 (mlton-20210816.i386-freebsd-13.txz) = 4faa271b60a82793b7911d8e9863d9831df9bf095badf670ec27c9b86ac1266b
+SIZE (mlton-20210816.i386-freebsd-13.txz) = 4417216
+SHA256 (mlton-20210816.amd64-freebsd-13.txz) = 767ed2fe0e204cd59f9065c9ff96c885d50321f2004cff0a94e84db3e664dc8a
+SIZE (mlton-20210816.amd64-freebsd-13.txz) = 5530224
+SHA256 (mlton-20210816.i386-freebsd-12.txz) = a6d173463c36b2c79ba48c9d94c7857e842ca2c423a952623b7a251390f1d103
+SIZE (mlton-20210816.i386-freebsd-12.txz) = 4582828
+SHA256 (mlton-20210816.amd64-freebsd-12.txz) = d289134bd1371d0c4f090b2945a2fa87052d5e298b9612420dbbb6335440a763
+SIZE (mlton-20210816.amd64-freebsd-12.txz) = 5517216
+SHA256 (mlton-20210816.i386-freebsd-11.txz) = bcc21ef73dcb1eb773cbe076b5a79a9ffad9e431cae4eeac317078741055b91d
+SIZE (mlton-20210816.i386-freebsd-11.txz) = 4613016
+SHA256 (mlton-20210816.amd64-freebsd-11.txz) = b8ddde2adcb08ca76fc6ba3ff6d7186ee7074b3a7b4be6e982a5b1d2fe10eefd
+SIZE (mlton-20210816.amd64-freebsd-11.txz) = 5656260
+SHA256 (MLton-mlton-20210816-b2fca3d_GH0.tar.gz) = 9809f100308c3330803d3d52052ecdc00774b74869f57ec20880c46ba796ea6d
+SIZE (MLton-mlton-20210816-b2fca3d_GH0.tar.gz) = 14307327
diff --git a/lang/mlton/files/add-local-cross b/lang/mlton/files/add-local-cross
deleted file mode 100644
index c76d482ddd5c..000000000000
--- a/lang/mlton/files/add-local-cross
+++ /dev/null
@@ -1,191 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-# This script adds a new crosscompiler target for MLton.
-#
-# It takes three arguments.
-#
-# 1. <crossTarget>, which is what MLton would pass via the -b flag to the GCC
-# cross-compiler tools. You don't need to have installed these tools in order
-# to run this script, since it uses ssh and the native gcc on the target.
-# Examples of $crossTarget are i386-pc-cygwin and sparc-sun-solaris.
-#
-# 2. <crossArch> specifies the target architecture.
-# The posibilities are: amd64, hppa, sparc, x86.
-#
-# 3. <crossOS> specifies the target OS.
-# The possibilities are: aix, cygwin, darwin, freebsd, hpux, linux, mingw,
-# netbsd, openbsd, solaris.
-#
-# Here are some example uses of this script.
-#
-# add-cross mingw32 x86 mingw
-#
-# You also may need to set $libDir, which determines where the$exe.c
-# cross-compiler target will be installed.
-#
-# This script is a modification of add-cross. Rather than ssh into a box
-# running the target platform it uses cross-compiler tools to produce
-# executables and an environment to execute them.
-#
-# It only works with the mingw32 cross-compiler and the wine environment.
-#
-
-MAKE=gmake
-GCC=mingw32-gcc
-RUN=wine
-
-die () {
- echo >&2 "$1"
- exit 1
-}
-
-usage () {
- die "usage: $name <crossTarget> <crossArch> <crossOS>"
-}
-
-case "$#" in
-3)
- crossTarget="$1"
- crossArch="$2"
- crossOS="$3"
- ;;
-*)
- usage
- ;;
-esac
-
-name=`basename "$0"`
-original=`pwd`
-dir=`dirname "$0"`
-src=`cd "$dir/.." && pwd`
-
-PATH="$dir":$PATH
-
-# libDir is the mlton lib directory where you would like the
-# cross-compiler information to be installed. If you have installed
-# from the rpms, this will usually be /usr/lib/mlton. You must have
-# write permission there.
-
-lib="$src/build/lib"
-
-# You shouldn't need to change anything below this line.
-
-rm -rf "$lib/$crossTarget"
-mkdir -p "$lib/$crossTarget" || die "Cannot write to $lib."
-
-tmp="$src/cross-$crossTarget"
-#ssh $machine "rm -rf $tmp && mkdir $tmp"
-rm -rf $tmp && mkdir $tmp
-
-$MAKE -C "$src" dirs
-
-echo '* Making runtime.'
-#( cd "$src" && tar cf - Makefile basis-library bin include runtime ) |
-# ssh $machine "cd $tmp && tar xf - && cd runtime &&
-# ../bin/mmake COMPILE_FAST=yes OMIT_BYTECODE=yes TARGET_ARCH=$crossArch TARGET_OS=$crossOS clean all &&
-# cd .. && make dirs runtime"
-cd "$src"
-for f in Makefile basis-library bin include runtime; do
- cp -pfR $f "$tmp"
-done
-
-echo "* Running make clean all in $tmp/runtime."
-cd "$tmp"
-$MAKE -C runtime COMPILE_FAST=yes OMIT_BYTECODE=yes TARGET=$crossTarget \
- TARGET_ARCH=$crossArch \
- TARGET_OS=$crossOS \
- clean all
-
-echo "* Running make dirs runtime in $tmp."
-$MAKE TARGET=$crossTarget TARGET_ARCH=$crossArch TARGET_OS=$crossOS dirs runtime
-
-echo "* Copy from tmp to build (build/lib/targets/$crossTarget)."
-# ssh $machine "cd $tmp/build/lib/self && tar cf - ." |
-# ( cd "$lib/$crossTarget" && tar xf - )
-mkdir -p "$lib/targets"
-cp -pfR "$tmp/build/lib/targets/$crossTarget" "$lib/targets/"
-
-echo "* Running make mlbpathmap in $src."
-#( cd "$src" &&
-# mmake TARGET=$crossTarget TARGET_ARCH=$crossArch TARGET_OS=$crossOS \
-# mlbpathmap targetmap )
-cd "$src"
-$MAKE TARGET=$crossTarget TARGET_ARCH=$crossArch TARGET_OS=$crossOS \
- mlbpathmap
-
-case "$crossOS" in
-mingw)
- #suf='.exe'
- suf=''
-;;
-*)
- suf=''
-;;
-esac
-
-# Copied from mlton-script
-case "$crossArch" in
-amd64)
- archOpts='-m64'
-;;
-hppa)
- archOpts=''
-;;
-sparc)
- archOpts='-m32'
-;;
-x86)
- archOpts=''
-;;
-esac
-
-case "$crossOS" in
-aix)
- osOpts=''
-;;
-cygwin)
- osOpts=''
-;;
-darwin)
- osOpts='-I/opt/local/include -I/sw/include -L/opt/local/lib -L/sw/lib -lgmp'
-;;
-freebsd)
- osOpts='-I/usr/local/include -L/usr/local/lib/ -lgmp'
-;;
-hpux)
- osOpts=''
-;;
-linux)
- osOpts=''
-;;
-mingw)
- libs='-lws2_32 -lkernel32 -lpsapi -lnetapi32'
-;;
-netbsd)
- osOpts='-I/usr/pkg/include -Wl,-R/usr/pkg/lib -L/usr/pkg/lib/ -lgmp'
-;;
-openbsd)
- osOpts='-I/usr/local/include -L/usr/local/lib/ -lgmp'
-;;
-solaris)
- osOpts='-lnsl -lsocket -lrt'
-;;
-esac
-
-exe='print-constants'
-echo "* Compiling and running print-constants."
-#"$src/build/bin/mlton" -target $crossTarget -build-constants true |
-# ssh $machine "cd $tmp/runtime &&
-# cat >$exe.c &&
-# gcc $archOpts $osOpts -I. -o $exe $exe.c libmlton.a libgdtoa.a -lgmp -lm"
-"$src/build/bin/mlton" -target $crossTarget -build-constants true \
- > "$tmp/runtime/$exe.c"
-cd "$tmp/runtime/"
-$GCC $archOpts $osOpts -I. -o $exe $exe.c libmlton.a libgdtoa.a -lgmp -lm $libs
-
-#ssh $machine "$tmp/runtime/$exe$suf" >"$lib/$crossTarget/constants"
-$RUN "$tmp/runtime/$exe$suf" > "$lib/targets/$crossTarget/constants"
-#ssh $machine "rm -rf $tmp"
-# rm -rf "$tmp"
diff --git a/lang/mlton/files/ml.grm.sig b/lang/mlton/files/ml.grm.sig
deleted file mode 100644
index 7bf0d2ad39fb..000000000000
--- a/lang/mlton/files/ml.grm.sig
+++ /dev/null
@@ -1,88 +0,0 @@
-signature ML_TOKENS =
-sig
-type ('a,'b) token
-type svalue
-val PRIM: 'a * 'a -> (svalue,'a) token
-val SYMBOL: 'a * 'a -> (svalue,'a) token
-val IMPORT: 'a * 'a -> (svalue,'a) token
-val EXPORT: 'a * 'a -> (svalue,'a) token
-val ADDRESS: 'a * 'a -> (svalue,'a) token
-val CONST: 'a * 'a -> (svalue,'a) token
-val COMMAND_LINE_CONST: 'a * 'a -> (svalue,'a) token
-val BUILD_CONST: 'a * 'a -> (svalue,'a) token
-val WITHTYPE: 'a * 'a -> (svalue,'a) token
-val WITH: 'a * 'a -> (svalue,'a) token
-val WILD: 'a * 'a -> (svalue,'a) token
-val WHILE: 'a * 'a -> (svalue,'a) token
-val WHERE: 'a * 'a -> (svalue,'a) token
-val VAL: 'a * 'a -> (svalue,'a) token
-val TYPE: 'a * 'a -> (svalue,'a) token
-val THEN: 'a * 'a -> (svalue,'a) token
-val STRUCTURE: 'a * 'a -> (svalue,'a) token
-val STRUCT: 'a * 'a -> (svalue,'a) token
-val SIGNATURE: 'a * 'a -> (svalue,'a) token
-val SIG: 'a * 'a -> (svalue,'a) token
-val SHARING: 'a * 'a -> (svalue,'a) token
-val SEMICOLON: 'a * 'a -> (svalue,'a) token
-val RPAREN: 'a * 'a -> (svalue,'a) token
-val REC: 'a * 'a -> (svalue,'a) token
-val RBRACKET: 'a * 'a -> (svalue,'a) token
-val RBRACE: 'a * 'a -> (svalue,'a) token
-val RAISE: 'a * 'a -> (svalue,'a) token
-val OVERLOAD: 'a * 'a -> (svalue,'a) token
-val OPEN: 'a * 'a -> (svalue,'a) token
-val OP: 'a * 'a -> (svalue,'a) token
-val OF: 'a * 'a -> (svalue,'a) token
-val ORELSE: 'a * 'a -> (svalue,'a) token
-val NONFIX: 'a * 'a -> (svalue,'a) token
-val LPAREN: 'a * 'a -> (svalue,'a) token
-val LOCAL: 'a * 'a -> (svalue,'a) token
-val LET: 'a * 'a -> (svalue,'a) token
-val LBRACKET: 'a * 'a -> (svalue,'a) token
-val LBRACE: 'a * 'a -> (svalue,'a) token
-val INFIXR: 'a * 'a -> (svalue,'a) token
-val INFIX: 'a * 'a -> (svalue,'a) token
-val INCLUDE: 'a * 'a -> (svalue,'a) token
-val IN: 'a * 'a -> (svalue,'a) token
-val IF: 'a * 'a -> (svalue,'a) token
-val HASH: 'a * 'a -> (svalue,'a) token
-val HANDLE: 'a * 'a -> (svalue,'a) token
-val FUNCTOR: 'a * 'a -> (svalue,'a) token
-val FUN: 'a * 'a -> (svalue,'a) token
-val FN: 'a * 'a -> (svalue,'a) token
-val DARROW: 'a * 'a -> (svalue,'a) token
-val DO: 'a * 'a -> (svalue,'a) token
-val EXCEPTION: 'a * 'a -> (svalue,'a) token
-val EQTYPE: 'a * 'a -> (svalue,'a) token
-val EQUALOP: 'a * 'a -> (svalue,'a) token
-val EOF: 'a * 'a -> (svalue,'a) token
-val END: 'a * 'a -> (svalue,'a) token
-val ELSE: 'a * 'a -> (svalue,'a) token
-val DOTDOTDOT: 'a * 'a -> (svalue,'a) token
-val DATATYPE: 'a * 'a -> (svalue,'a) token
-val COMMA: 'a * 'a -> (svalue,'a) token
-val COLONGT: 'a * 'a -> (svalue,'a) token
-val COLON: 'a * 'a -> (svalue,'a) token
-val CASE: 'a * 'a -> (svalue,'a) token
-val BAR: 'a * 'a -> (svalue,'a) token
-val ASTERISK: 'a * 'a -> (svalue,'a) token
-val AS: 'a * 'a -> (svalue,'a) token
-val ARROW: 'a * 'a -> (svalue,'a) token
-val ANDALSO: 'a * 'a -> (svalue,'a) token
-val AND: 'a * 'a -> (svalue,'a) token
-val ABSTYPE: 'a * 'a -> (svalue,'a) token
-val WORD: ({ digits:string,radix:StringCvt.radix } ) * 'a * 'a -> (svalue,'a) token
-val TYVAR: (string) * 'a * 'a -> (svalue,'a) token
-val STRING: (IntInf.t vector) * 'a * 'a -> (svalue,'a) token
-val REAL: (string) * 'a * 'a -> (svalue,'a) token
-val LONGID: (string) * 'a * 'a -> (svalue,'a) token
-val INT: ({ digits:string,negate:bool,radix:StringCvt.radix } ) * 'a * 'a -> (svalue,'a) token
-val CHAR: (IntInf.t) * 'a * 'a -> (svalue,'a) token
-end
-signature ML_LRVALS=
-sig
-structure Tokens : ML_TOKENS
-structure ParserData:PARSER_DATA
-sharing type ParserData.Token.token = Tokens.token
-sharing type ParserData.svalue = Tokens.svalue
-end
diff --git a/lang/mlton/files/ml.grm.sml b/lang/mlton/files/ml.grm.sml
deleted file mode 100644
index 86a9cd830154..000000000000
--- a/lang/mlton/files/ml.grm.sml
+++ /dev/null
@@ -1,5497 +0,0 @@
-
-functor MLLrValsFun (structure Token: TOKEN
- structure Ast: AST) =
-struct
-structure ParserData=
-struct
-structure Header =
-struct
-(* Heavily modified from SML/NJ sources by sweeks@sweeks.com *)
-
-(* ml.grm
- *
- * Copyright 1989,1992 by AT&T Bell Laboratories
- *)
-
-type int = Int.t
-
-fun reg (left, right) = Region.make {left = left, right = right}
-fun error (reg, msg) = Control.error (reg, Layout.str msg, Layout.empty)
-
-open Ast
-structure Field = Record.Field
-structure Srecord = SortedRecord
-
-structure Type =
- struct
- open Type
-
- val tuple = Record o Srecord.tuple
-
- val unit = tuple (Vector.new0 ())
-
- fun arrow (t1, t2) = Con (Longtycon.arrow, Vector.new2 (t1, t2))
- end
-
-structure DatBind =
- struct
- open DatBind
-
- fun make (dbs, withtypes, left, right) =
- makeRegion' (T {datatypes = dbs, withtypes = withtypes},
- left, right)
- end
-
-structure Pat =
- struct
- open Pat
-
- fun tuple ps =
- if 1 = Vector.length ps
- then node (Vector.sub (ps, 0))
- else Tuple ps
-
- val unit = tuple (Vector.new0 ())
-
- val bogus = unit
-
- fun makeAs (p1: t, p2: t): node =
- let
- fun err () =
- error (Pat.region p1, "must have variable to left in as pattern")
- fun fixopVar (p : t) =
- case node p of
- FlatApp ps =>
- if 1 = Vector.length ps
- then (case node (Vector.sub (ps, 0)) of
- Var {fixop,name} =>
- (case Longvid.split name of
- ([], vid) =>
- SOME (fixop, Vid.toVar vid)
- | _ =>
- let
- val () = err ()
- in
- SOME (Fixop.None, Var.bogus)
- end)
- | _ => NONE)
- else NONE
- | _ => NONE
- in
- case fixopVar p1 of
- SOME (fixop, var) =>
- Layered {fixop = fixop, var = var,
- constraint = NONE,
- pat = p2}
- | NONE =>
- case node p1 of
- Pat.Constraint (p, t) =>
- (case fixopVar p of
- SOME (fixop, var) =>
- Layered {fixop = fixop, var = var,
- constraint = SOME t,
- pat = p2}
- | _ => (err (); bogus))
- | _ => (err (); bogus)
- end
- end
-
-structure Exp =
- struct
- open Exp
-
- fun tuple es =
- if 1 = Vector.length es
- then node (Vector.sub (es, 0))
- else Record (Record.tuple es)
-
- val unit = tuple (Vector.new0 ())
- end
-
-structure Dec =
- struct
- open Dec
-
- fun sequence (d1: t, d2: t): t =
- makeRegion (case (node d1, node d2) of
- (SeqDec d1, SeqDec d2) => SeqDec (Vector.concat [d1, d2])
- | (SeqDec d1, _) =>
- SeqDec (Vector.concat [d1, Vector.new1 d2])
- | (_, SeqDec d2) =>
- SeqDec (Vector.concat [Vector.new1 d1, d2])
- | _ => SeqDec (Vector.new2 (d1, d2)),
- Region.append (region d1, region d2))
- end
-
-structure Spec =
- struct
- open Spec
-
- (* Some of this mess is so that a sharing equation captures as
- * many specs as possible in its scope.
- *)
- fun seq (s: t, s': t): t =
- let
- fun reg s'' = makeRegion (s'', Region.append (region s, region s'))
- in
- case (node s, node s') of
- (Empty, _) => s'
- | (_, Empty) => s
- | (_, Seq (s1, s2)) => reg (Seq (seq (s, s1), s2))
- | (_, Sharing {spec, equations}) =>
- reg (Sharing {spec = seq (s, spec), equations = equations})
- | _ => reg (Seq (s, s'))
- end
-
-(* val seq = Trace.trace2 ("Spec.seq", layout, layout, layout) seq *)
- end
-
-fun consTopdec (d, dss) =
- case dss of
- [] => [[d]]
- | ds :: dss => (d :: ds) :: dss
-
-type rule = Pat.t * Exp.t
-type clause = {pats : Pat.t vector,
- resultType : Type.t option,
- body : Exp.t}
-type clauses = clause vector
-type eb = Con.t * EbRhs.t
-type db = {tyvars: Tyvar.t vector,
- tycon: Tycon.t,
- cons: (Con.t * Type.t option) vector}
-
-type strdesc = Strid.t * Sigexp.t
-
-type wherespec = {tyvars: Tyvar.t vector,
- longtycon: Longtycon.t,
- ty: Type.t}
-
-type typdesc = {tyvars: Tyvar.t vector,
- tycon: Tycon.t}
-
-type valdesc = Var.t * Type.t
-
-type exndesc = Con.t * Type.t option
-
-type strbind = {name: Strid.t,
- def: Strexp.t,
- constraint: SigConst.t}
-
-type sigbind = Sigid.t * Sigexp.t
-
-type funbind = {name : Fctid.t,
- arg : FctArg.t,
- result : SigConst.t,
- body : Strexp.t}
-
-type vb = {pat: Pat.t,
- exp: Exp.t}
-
-type rvb = {pat: Pat.t,
- match: Match.t}
-
-fun ensureNonqualified (ss: Symbol.t list, r: Region.t): Symbol.t * Region.t =
- case ss of
- [s] => (s, r)
- | _ => (error (r, "expected nonqualified id")
- ; (Symbol.bogus, r))
-
-fun cons1 (x, (l, r, y)) = (x :: l, r, y)
-
-fun augment (id, sigexp, (wherespecs, right, binds)) =
- (id, Sigexp.wheree (sigexp, Vector.fromList wherespecs,
- Region.extendRight (Sigexp.region sigexp, right)))
- :: binds
-
-fun 'a augment1 ((strexp: Strexp.t,
- makesigconst: Sigexp.t -> SigConst.t,
- sigexp: Sigexp.t),
- (wherespecs: wherespec list,
- right: SourcePos.t,
- z: 'a)): Strexp.t * 'a =
- (Strexp.makeRegion
- (Strexp.Constrained
- (strexp, makesigconst (Sigexp.wheree
- (sigexp, Vector.fromList wherespecs,
- Region.extendRight (Sigexp.region sigexp, right)))),
- Region.extendRight (Strexp.region strexp, right)),
- z)
-
-type 'a whereAnd = wherespec list * SourcePos.t * 'a list
-
-
-end
-structure LrTable = Token.LrTable
-structure Token = Token
-local open LrTable in
-val table=let val actionRows =
-"\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\006\000\113\000\007\000\060\000\013\000\058\000\
-\\039\000\112\000\040\000\111\000\043\000\110\000\047\000\109\000\
-\\053\000\108\000\066\000\107\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\006\000\113\000\007\000\060\000\013\000\058\000\
-\\039\000\112\000\040\000\111\000\043\000\110\000\047\000\109\000\
-\\066\000\107\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\015\000\057\000\
-\\024\000\055\000\029\000\053\000\033\000\050\000\034\000\049\000\
-\\039\000\046\000\040\000\045\000\041\000\044\000\043\000\042\000\
-\\047\000\040\000\050\000\037\000\052\000\151\000\065\000\031\000\
-\\069\000\030\000\070\000\029\000\071\000\028\000\072\000\027\000\
-\\073\000\026\000\074\000\025\000\075\000\024\000\076\000\023\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\015\000\057\000\
-\\024\000\055\000\029\000\053\000\033\000\050\000\034\000\049\000\
-\\039\000\046\000\040\000\045\000\041\000\044\000\043\000\042\000\
-\\047\000\040\000\050\000\037\000\054\000\138\000\065\000\031\000\
-\\069\000\030\000\070\000\029\000\071\000\028\000\072\000\027\000\
-\\073\000\026\000\074\000\025\000\075\000\024\000\076\000\023\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\015\000\057\000\
-\\024\000\055\000\029\000\053\000\033\000\050\000\034\000\049\000\
-\\039\000\046\000\040\000\045\000\041\000\044\000\043\000\042\000\
-\\047\000\040\000\050\000\037\000\065\000\031\000\069\000\030\000\
-\\070\000\029\000\071\000\028\000\072\000\027\000\073\000\026\000\
-\\074\000\025\000\075\000\024\000\076\000\023\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\039\000\112\000\
-\\040\000\111\000\043\000\175\000\047\000\109\000\053\000\108\000\
-\\066\000\107\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\039\000\112\000\
-\\040\000\111\000\043\000\175\000\047\000\109\000\053\000\228\000\
-\\066\000\107\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\039\000\112\000\
-\\040\000\111\000\043\000\175\000\047\000\109\000\066\000\107\000\000\000\
-\\001\000\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\076\000\000\000\
-\\001\000\002\000\064\000\003\000\063\000\013\000\076\000\000\000\
-\\001\000\002\000\064\000\003\000\063\000\013\000\076\000\020\000\241\000\000\000\
-\\001\000\002\000\064\000\003\000\063\000\013\000\076\000\020\000\241\000\
-\\051\000\240\000\000\000\
-\\001\000\002\000\064\000\003\000\063\000\013\000\076\000\051\000\157\000\000\000\
-\\001\000\002\000\064\000\003\000\063\000\013\000\076\000\051\000\042\001\000\000\
-\\001\000\003\000\122\003\008\000\121\003\009\000\121\003\010\000\121\003\
-\\011\000\121\003\012\000\121\003\013\000\122\003\014\000\121\003\
-\\016\000\121\003\017\000\121\003\018\000\121\003\019\000\121\003\
-\\021\000\121\003\022\000\121\003\023\000\121\003\024\000\121\003\
-\\025\000\121\003\026\000\121\003\027\000\121\003\028\000\121\003\
-\\030\000\121\003\031\000\121\003\032\000\121\003\035\000\121\003\
-\\036\000\121\003\037\000\121\003\038\000\121\003\042\000\121\003\
-\\044\000\121\003\045\000\121\003\046\000\121\003\048\000\121\003\
-\\049\000\121\003\051\000\121\003\052\000\121\003\054\000\121\003\
-\\055\000\121\003\056\000\121\003\058\000\121\003\060\000\121\003\
-\\061\000\121\003\062\000\121\003\063\000\121\003\064\000\121\003\
-\\067\000\121\003\068\000\121\003\000\000\
-\\001\000\003\000\063\000\000\000\
-\\001\000\003\000\063\000\006\000\113\000\039\000\206\000\043\000\205\000\000\000\
-\\001\000\003\000\063\000\013\000\058\000\000\000\
-\\001\000\003\000\063\000\013\000\058\000\024\000\055\000\000\000\
-\\001\000\003\000\063\000\013\000\058\000\041\000\163\001\059\000\162\001\000\000\
-\\001\000\003\000\063\000\013\000\058\000\047\000\117\001\000\000\
-\\001\000\003\000\063\000\013\000\058\000\062\000\191\001\000\000\
-\\001\000\003\000\063\000\013\000\076\000\000\000\
-\\001\000\003\000\063\000\013\000\076\000\019\000\210\001\047\000\181\000\000\000\
-\\001\000\003\000\063\000\013\000\076\000\024\000\075\000\000\000\
-\\001\000\003\000\063\000\013\000\076\000\047\000\181\000\000\000\
-\\001\000\003\000\063\000\013\000\076\000\057\000\077\001\000\000\
-\\001\000\003\000\063\000\013\000\076\000\062\000\243\001\000\000\
-\\001\000\003\000\063\000\013\000\035\001\000\000\
-\\001\000\005\000\084\000\000\000\
-\\001\000\005\000\084\000\013\000\086\000\000\000\
-\\001\000\005\000\084\000\013\000\088\000\000\000\
-\\001\000\006\000\113\000\000\000\
-\\001\000\008\000\123\002\009\000\231\001\016\000\126\002\017\000\126\002\
-\\019\000\123\002\022\000\123\002\023\000\123\002\026\000\123\002\
-\\030\000\123\002\031\000\123\002\035\000\123\002\037\000\123\002\
-\\038\000\123\002\042\000\123\002\044\000\123\002\048\000\123\002\
-\\049\000\123\002\054\000\123\002\055\000\123\002\058\000\123\002\
-\\060\000\123\002\062\000\123\002\063\000\123\002\064\000\235\001\000\000\
-\\001\000\008\000\123\002\009\000\053\002\016\000\141\002\017\000\141\002\
-\\019\000\123\002\022\000\123\002\023\000\123\002\026\000\123\002\
-\\030\000\123\002\031\000\123\002\035\000\123\002\037\000\123\002\
-\\038\000\123\002\042\000\123\002\044\000\123\002\048\000\123\002\
-\\049\000\123\002\054\000\123\002\055\000\123\002\058\000\123\002\
-\\060\000\123\002\062\000\123\002\063\000\123\002\064\000\235\001\000\000\
-\\001\000\008\000\123\002\009\000\053\002\016\000\144\002\017\000\144\002\
-\\019\000\123\002\022\000\123\002\023\000\123\002\026\000\123\002\
-\\030\000\123\002\031\000\123\002\035\000\123\002\037\000\123\002\
-\\038\000\123\002\042\000\123\002\044\000\123\002\048\000\123\002\
-\\049\000\123\002\054\000\123\002\055\000\123\002\058\000\123\002\
-\\060\000\123\002\062\000\123\002\063\000\123\002\064\000\235\001\000\000\
-\\001\000\008\000\131\002\009\000\131\002\016\000\128\002\017\000\128\002\
-\\019\000\131\002\022\000\131\002\023\000\131\002\026\000\131\002\
-\\030\000\131\002\031\000\131\002\035\000\131\002\037\000\131\002\
-\\038\000\131\002\042\000\131\002\044\000\131\002\048\000\131\002\
-\\049\000\131\002\054\000\131\002\055\000\131\002\058\000\131\002\
-\\060\000\131\002\062\000\131\002\063\000\131\002\000\000\
-\\001\000\008\000\202\002\009\000\077\002\016\000\126\002\017\000\126\002\
-\\019\000\202\002\023\000\202\002\026\000\202\002\030\000\202\002\
-\\031\000\202\002\037\000\202\002\038\000\202\002\042\000\202\002\
-\\044\000\202\002\048\000\202\002\049\000\202\002\055\000\202\002\
-\\058\000\202\002\060\000\202\002\062\000\202\002\063\000\202\002\
-\\064\000\080\002\000\000\
-\\001\000\008\000\202\002\009\000\092\002\016\000\141\002\017\000\141\002\
-\\019\000\202\002\023\000\202\002\026\000\202\002\030\000\202\002\
-\\031\000\202\002\037\000\202\002\038\000\202\002\042\000\202\002\
-\\044\000\202\002\048\000\202\002\049\000\202\002\055\000\202\002\
-\\058\000\202\002\060\000\202\002\062\000\202\002\063\000\202\002\
-\\064\000\080\002\000\000\
-\\001\000\008\000\202\002\009\000\092\002\016\000\144\002\017\000\144\002\
-\\019\000\202\002\023\000\202\002\026\000\202\002\030\000\202\002\
-\\031\000\202\002\037\000\202\002\038\000\202\002\042\000\202\002\
-\\044\000\202\002\048\000\202\002\049\000\202\002\055\000\202\002\
-\\058\000\202\002\060\000\202\002\062\000\202\002\063\000\202\002\
-\\064\000\080\002\000\000\
-\\001\000\010\000\081\000\016\000\080\000\018\000\255\000\032\000\079\000\
-\\045\000\078\000\055\000\254\000\000\000\
-\\001\000\010\000\081\000\016\000\080\000\021\000\176\001\032\000\079\000\
-\\045\000\078\000\000\000\
-\\001\000\010\000\081\000\016\000\080\000\022\000\174\001\032\000\079\000\
-\\045\000\078\000\055\000\254\000\000\000\
-\\001\000\010\000\081\000\016\000\080\000\027\000\220\000\032\000\079\000\
-\\045\000\078\000\000\000\
-\\001\000\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\
-\\046\000\031\001\000\000\
-\\001\000\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\
-\\055\000\077\000\000\000\
-\\001\000\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\
-\\061\000\012\001\000\000\
-\\001\000\011\000\036\001\012\000\247\001\000\000\
-\\001\000\011\000\036\001\018\000\131\001\054\000\130\001\000\000\
-\\001\000\011\000\036\001\024\000\143\001\000\000\
-\\001\000\011\000\036\001\055\000\135\001\000\000\
-\\001\000\011\000\036\001\055\000\137\001\000\000\
-\\001\000\011\000\036\001\055\000\141\001\000\000\
-\\001\000\011\000\036\001\055\000\142\001\000\000\
-\\001\000\011\000\036\001\055\000\144\001\000\000\
-\\001\000\011\000\036\001\055\000\217\001\000\000\
-\\001\000\011\000\036\001\055\000\218\001\000\000\
-\\001\000\011\000\036\001\055\000\219\001\000\000\
-\\001\000\011\000\036\001\055\000\220\001\000\000\
-\\001\000\012\000\157\003\016\000\157\003\018\000\157\003\024\000\164\003\
-\\051\000\157\003\000\000\
-\\001\000\012\000\224\000\016\000\223\000\024\000\222\000\000\000\
-\\001\000\012\000\224\000\016\000\223\000\024\000\059\001\000\000\
-\\001\000\012\000\224\000\016\000\223\000\028\000\020\001\000\000\
-\\001\000\016\000\208\000\000\000\
-\\001\000\016\000\211\000\000\000\
-\\001\000\016\000\216\000\000\000\
-\\001\000\016\000\217\000\000\000\
-\\001\000\016\000\218\000\000\000\
-\\001\000\016\000\219\000\000\000\
-\\001\000\016\000\044\001\000\000\
-\\001\000\016\000\048\001\000\000\
-\\001\000\016\000\049\001\000\000\
-\\001\000\016\000\050\001\000\000\
-\\001\000\016\000\080\001\000\000\
-\\001\000\016\000\134\001\000\000\
-\\001\000\016\000\177\001\000\000\
-\\001\000\016\000\237\001\017\000\236\001\000\000\
-\\001\000\016\000\237\001\017\000\236\001\022\000\070\002\000\000\
-\\001\000\016\000\237\001\017\000\236\001\054\000\054\002\000\000\
-\\001\000\016\000\252\001\000\000\
-\\001\000\016\000\000\002\000\000\
-\\001\000\022\000\172\001\000\000\
-\\001\000\022\000\173\001\000\000\
-\\001\000\022\000\211\001\000\000\
-\\001\000\022\000\244\001\000\000\
-\\001\000\022\000\248\001\000\000\
-\\001\000\022\000\025\002\000\000\
-\\001\000\023\000\000\000\000\000\
-\\001\000\024\000\247\000\000\000\
-\\001\000\024\000\009\001\000\000\
-\\001\000\024\000\070\001\000\000\
-\\001\000\024\000\071\001\000\000\
-\\001\000\024\000\072\001\000\000\
-\\001\000\024\000\110\001\000\000\
-\\001\000\024\000\119\001\000\000\
-\\001\000\024\000\123\001\000\000\
-\\001\000\024\000\001\002\000\000\
-\\001\000\024\000\037\002\000\000\
-\\001\000\024\000\044\002\000\000\
-\\001\000\024\000\073\002\000\000\
-\\001\000\029\000\147\001\000\000\
-\\001\000\035\000\000\001\000\000\
-\\001\000\035\000\003\001\000\000\
-\\001\000\035\000\088\001\000\000\
-\\001\000\035\000\026\002\000\000\
-\\001\000\043\000\013\001\000\000\
-\\001\000\051\000\010\001\000\000\
-\\001\000\051\000\068\001\000\000\
-\\001\000\051\000\132\001\000\000\
-\\001\000\052\000\007\001\000\000\
-\\001\000\052\000\066\001\000\000\
-\\001\000\054\000\252\000\000\000\
-\\001\000\054\000\253\000\000\000\
-\\001\000\054\000\061\001\000\000\
-\\001\000\054\000\063\001\000\000\
-\\001\000\054\000\129\001\000\000\
-\\001\000\054\000\179\001\000\000\
-\\001\000\054\000\055\002\000\000\
-\\001\000\055\000\013\002\000\000\
-\\001\000\062\000\243\001\000\000\
-\\001\000\067\000\033\001\000\000\
-\\098\002\000\000\
-\\099\002\000\000\
-\\100\002\000\000\
-\\101\002\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\008\000\059\000\013\000\058\000\
-\\015\000\057\000\019\000\056\000\024\000\055\000\026\000\054\000\
-\\029\000\053\000\030\000\052\000\031\000\051\000\033\000\050\000\
-\\034\000\049\000\037\000\048\000\038\000\047\000\039\000\046\000\
-\\040\000\045\000\041\000\044\000\042\000\043\000\043\000\042\000\
-\\044\000\041\000\047\000\040\000\048\000\039\000\049\000\038\000\
-\\050\000\037\000\055\000\036\000\058\000\035\000\060\000\034\000\
-\\062\000\033\000\063\000\032\000\065\000\031\000\069\000\030\000\
-\\070\000\029\000\071\000\028\000\072\000\027\000\073\000\026\000\
-\\074\000\025\000\075\000\024\000\076\000\023\000\000\000\
-\\101\002\008\000\059\000\019\000\056\000\026\000\054\000\030\000\052\000\
-\\031\000\051\000\037\000\048\000\038\000\047\000\042\000\043\000\
-\\044\000\041\000\048\000\039\000\049\000\038\000\055\000\036\000\
-\\058\000\035\000\060\000\034\000\062\000\033\000\063\000\032\000\000\000\
-\\102\002\000\000\
-\\103\002\000\000\
-\\104\002\000\000\
-\\105\002\000\000\
-\\106\002\000\000\
-\\107\002\000\000\
-\\108\002\000\000\
-\\109\002\003\000\063\000\008\000\059\000\013\000\058\000\019\000\056\000\
-\\026\000\054\000\030\000\052\000\037\000\048\000\038\000\047\000\
-\\041\000\163\001\042\000\043\000\044\000\041\000\048\000\039\000\
-\\049\000\038\000\055\000\142\000\059\000\162\001\060\000\034\000\
-\\062\000\033\000\063\000\032\000\000\000\
-\\109\002\008\000\059\000\019\000\056\000\026\000\054\000\030\000\052\000\
-\\037\000\048\000\038\000\047\000\042\000\043\000\044\000\041\000\
-\\048\000\039\000\049\000\038\000\055\000\142\000\060\000\034\000\
-\\062\000\033\000\063\000\032\000\000\000\
-\\110\002\000\000\
-\\111\002\000\000\
-\\112\002\000\000\
-\\113\002\000\000\
-\\114\002\000\000\
-\\115\002\000\000\
-\\116\002\000\000\
-\\117\002\000\000\
-\\118\002\000\000\
-\\119\002\000\000\
-\\120\002\000\000\
-\\121\002\000\000\
-\\122\002\000\000\
-\\123\002\009\000\231\001\000\000\
-\\124\002\000\000\
-\\125\002\000\000\
-\\126\002\064\000\166\001\000\000\
-\\127\002\000\000\
-\\128\002\000\000\
-\\129\002\000\000\
-\\130\002\000\000\
-\\132\002\043\000\239\001\000\000\
-\\133\002\000\000\
-\\134\002\000\000\
-\\135\002\000\000\
-\\136\002\000\000\
-\\137\002\000\000\
-\\138\002\064\000\166\001\000\000\
-\\139\002\000\000\
-\\140\002\000\000\
-\\141\002\009\000\029\002\064\000\166\001\000\000\
-\\142\002\000\000\
-\\143\002\000\000\
-\\144\002\009\000\029\002\064\000\166\001\000\000\
-\\145\002\000\000\
-\\146\002\000\000\
-\\147\002\000\000\
-\\148\002\000\000\
-\\149\002\000\000\
-\\149\002\003\000\063\000\013\000\076\000\000\000\
-\\150\002\000\000\
-\\151\002\009\000\170\001\064\000\169\001\000\000\
-\\151\002\009\000\033\002\064\000\169\001\000\000\
-\\152\002\000\000\
-\\153\002\000\000\
-\\154\002\000\000\
-\\155\002\000\000\
-\\156\002\011\000\036\001\000\000\
-\\157\002\016\000\246\000\017\000\245\000\000\000\
-\\158\002\000\000\
-\\159\002\000\000\
-\\160\002\003\000\063\000\013\000\076\000\019\000\107\001\025\000\106\001\
-\\026\000\105\001\036\000\104\001\055\000\103\001\056\000\102\001\
-\\060\000\101\001\062\000\100\001\063\000\099\001\000\000\
-\\160\002\019\000\107\001\025\000\106\001\026\000\105\001\036\000\104\001\
-\\055\000\103\001\056\000\102\001\060\000\101\001\062\000\100\001\
-\\063\000\099\001\000\000\
-\\161\002\000\000\
-\\162\002\000\000\
-\\163\002\000\000\
-\\164\002\000\000\
-\\165\002\000\000\
-\\166\002\000\000\
-\\167\002\000\000\
-\\168\002\000\000\
-\\169\002\000\000\
-\\170\002\000\000\
-\\171\002\000\000\
-\\172\002\000\000\
-\\173\002\000\000\
-\\174\002\000\000\
-\\175\002\000\000\
-\\176\002\024\000\001\002\000\000\
-\\177\002\000\000\
-\\178\002\024\000\044\002\000\000\
-\\179\002\000\000\
-\\180\002\000\000\
-\\181\002\009\000\066\002\064\000\065\002\000\000\
-\\181\002\009\000\089\002\064\000\065\002\000\000\
-\\182\002\000\000\
-\\183\002\000\000\
-\\184\002\000\000\
-\\185\002\000\000\
-\\186\002\009\000\255\001\000\000\
-\\187\002\000\000\
-\\188\002\000\000\
-\\188\002\024\000\071\001\000\000\
-\\189\002\009\000\253\001\000\000\
-\\190\002\000\000\
-\\191\002\011\000\036\001\000\000\
-\\192\002\009\000\006\002\000\000\
-\\193\002\000\000\
-\\194\002\000\000\
-\\195\002\046\000\008\002\000\000\
-\\196\002\011\000\036\001\000\000\
-\\197\002\000\000\
-\\198\002\000\000\
-\\199\002\000\000\
-\\200\002\000\000\
-\\201\002\000\000\
-\\202\002\009\000\077\002\000\000\
-\\203\002\000\000\
-\\204\002\000\000\
-\\205\002\000\000\
-\\206\002\000\000\
-\\207\002\000\000\
-\\208\002\008\000\059\000\019\000\056\000\026\000\054\000\030\000\052\000\
-\\037\000\048\000\038\000\047\000\042\000\148\000\044\000\041\000\
-\\048\000\039\000\049\000\038\000\055\000\147\000\062\000\033\000\
-\\063\000\032\000\000\000\
-\\209\002\000\000\
-\\210\002\000\000\
-\\211\002\000\000\
-\\212\002\000\000\
-\\213\002\000\000\
-\\214\002\000\000\
-\\215\002\000\000\
-\\216\002\000\000\
-\\217\002\000\000\
-\\218\002\000\000\
-\\219\002\000\000\
-\\220\002\000\000\
-\\221\002\000\000\
-\\222\002\000\000\
-\\223\002\000\000\
-\\224\002\000\000\
-\\225\002\000\000\
-\\226\002\000\000\
-\\227\002\000\000\
-\\228\002\009\000\146\001\010\000\081\000\016\000\080\000\032\000\079\000\
-\\045\000\078\000\000\000\
-\\229\002\000\000\
-\\230\002\000\000\
-\\231\002\000\000\
-\\232\002\009\000\015\002\000\000\
-\\233\002\000\000\
-\\234\002\016\000\018\001\000\000\
-\\235\002\011\000\036\001\000\000\
-\\236\002\009\000\015\001\000\000\
-\\237\002\000\000\
-\\238\002\000\000\
-\\239\002\014\000\016\001\000\000\
-\\240\002\000\000\
-\\241\002\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\242\002\000\000\
-\\243\002\000\000\
-\\244\002\009\000\229\001\011\000\036\001\000\000\
-\\245\002\000\000\
-\\246\002\000\000\
-\\247\002\006\000\113\000\043\000\118\000\000\000\
-\\248\002\000\000\
-\\249\002\000\000\
-\\250\002\018\000\062\001\000\000\
-\\251\002\000\000\
-\\252\002\014\000\011\002\000\000\
-\\253\002\000\000\
-\\254\002\046\000\010\002\000\000\
-\\255\002\011\000\036\001\000\000\
-\\000\003\000\000\
-\\001\003\000\000\
-\\002\003\009\000\025\001\000\000\
-\\003\003\000\000\
-\\004\003\000\000\
-\\005\003\000\000\
-\\006\003\024\000\024\001\046\000\023\001\000\000\
-\\007\003\011\000\036\001\000\000\
-\\008\003\000\000\
-\\009\003\000\000\
-\\010\003\002\000\129\000\000\000\
-\\011\003\000\000\
-\\012\003\002\000\129\000\000\000\
-\\013\003\000\000\
-\\014\003\000\000\
-\\015\003\002\000\129\000\000\000\
-\\016\003\000\000\
-\\017\003\000\000\
-\\018\003\000\000\
-\\019\003\000\000\
-\\020\003\000\000\
-\\021\003\000\000\
-\\022\003\000\000\
-\\023\003\000\000\
-\\024\003\000\000\
-\\025\003\000\000\
-\\026\003\000\000\
-\\027\003\000\000\
-\\028\003\000\000\
-\\029\003\000\000\
-\\030\003\009\000\030\001\000\000\
-\\031\003\000\000\
-\\032\003\000\000\
-\\033\003\068\000\029\001\000\000\
-\\034\003\000\000\
-\\035\003\009\000\060\002\000\000\
-\\036\003\000\000\
-\\037\003\000\000\
-\\038\003\014\000\019\001\000\000\
-\\039\003\000\000\
-\\040\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\041\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\042\003\000\000\
-\\043\003\018\000\011\001\000\000\
-\\044\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\
-\\055\000\254\000\000\000\
-\\045\003\000\000\
-\\046\003\000\000\
-\\046\003\054\000\251\000\000\000\
-\\047\003\000\000\
-\\048\003\010\000\081\000\016\000\080\000\000\000\
-\\049\003\016\000\080\000\000\000\
-\\050\003\011\000\036\001\000\000\
-\\051\003\000\000\
-\\052\003\000\000\
-\\053\003\000\000\
-\\054\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\055\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\056\003\010\000\081\000\016\000\080\000\032\000\079\000\045\000\078\000\000\000\
-\\057\003\000\000\
-\\058\003\000\000\
-\\059\003\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\024\000\055\000\
-\\033\000\050\000\039\000\046\000\040\000\045\000\041\000\044\000\
-\\043\000\042\000\047\000\040\000\069\000\030\000\070\000\029\000\
-\\071\000\028\000\072\000\027\000\073\000\026\000\074\000\025\000\
-\\075\000\024\000\076\000\023\000\000\000\
-\\060\003\000\000\
-\\061\003\000\000\
-\\062\003\000\000\
-\\063\003\000\000\
-\\064\003\000\000\
-\\065\003\000\000\
-\\066\003\000\000\
-\\067\003\000\000\
-\\068\003\000\000\
-\\069\003\000\000\
-\\070\003\000\000\
-\\071\003\000\000\
-\\072\003\000\000\
-\\073\003\000\000\
-\\074\003\000\000\
-\\075\003\000\000\
-\\076\003\000\000\
-\\077\003\000\000\
-\\078\003\000\000\
-\\079\003\000\000\
-\\080\003\000\000\
-\\081\003\000\000\
-\\082\003\000\000\
-\\083\003\000\000\
-\\084\003\003\000\063\000\013\000\076\000\000\000\
-\\085\003\000\000\
-\\086\003\003\000\063\000\013\000\076\000\000\000\
-\\087\003\000\000\
-\\088\003\000\000\
-\\089\003\010\000\081\000\016\000\080\000\018\000\255\000\032\000\079\000\
-\\045\000\078\000\000\000\
-\\090\003\010\000\081\000\016\000\080\000\018\000\008\001\032\000\079\000\
-\\045\000\078\000\000\000\
-\\091\003\000\000\
-\\092\003\000\000\
-\\093\003\012\000\224\000\016\000\223\000\000\000\
-\\094\003\011\000\036\001\000\000\
-\\095\003\000\000\
-\\096\003\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\039\000\112\000\
-\\040\000\111\000\043\000\175\000\047\000\109\000\066\000\107\000\000\000\
-\\097\003\000\000\
-\\098\003\000\000\
-\\099\003\000\000\
-\\100\003\000\000\
-\\101\003\000\000\
-\\102\003\000\000\
-\\103\003\000\000\
-\\104\003\000\000\
-\\105\003\000\000\
-\\106\003\000\000\
-\\107\003\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\006\000\113\000\007\000\060\000\013\000\058\000\
-\\039\000\112\000\040\000\111\000\043\000\175\000\047\000\109\000\
-\\066\000\107\000\000\000\
-\\107\003\001\000\065\000\002\000\064\000\003\000\063\000\004\000\062\000\
-\\005\000\061\000\007\000\060\000\013\000\058\000\039\000\112\000\
-\\040\000\111\000\043\000\175\000\047\000\109\000\066\000\107\000\000\000\
-\\108\003\000\000\
-\\109\003\012\000\224\000\016\000\223\000\018\000\065\001\000\000\
-\\110\003\000\000\
-\\111\003\000\000\
-\\112\003\018\000\069\001\000\000\
-\\113\003\000\000\
-\\114\003\012\000\224\000\016\000\223\000\000\000\
-\\115\003\000\000\
-\\116\003\012\000\151\001\000\000\
-\\117\003\012\000\224\000\016\000\223\000\000\000\
-\\118\003\000\000\
-\\119\003\000\000\
-\\120\003\011\000\036\001\000\000\
-\\122\003\000\000\
-\\123\003\000\000\
-\\124\003\000\000\
-\\125\003\000\000\
-\\126\003\000\000\
-\\127\003\000\000\
-\\128\003\000\000\
-\\129\003\000\000\
-\\130\003\011\000\036\001\000\000\
-\\131\003\000\000\
-\\132\003\018\000\133\001\000\000\
-\\133\003\000\000\
-\\134\003\003\000\063\000\013\000\035\001\000\000\
-\\135\003\011\000\036\001\018\000\131\001\000\000\
-\\136\003\000\000\
-\\137\003\000\000\
-\\138\003\000\000\
-\\139\003\000\000\
-\\140\003\000\000\
-\\141\003\000\000\
-\\142\003\000\000\
-\\143\003\000\000\
-\\144\003\000\000\
-\\145\003\000\000\
-\\146\003\000\000\
-\\147\003\000\000\
-\\148\003\000\000\
-\\149\003\000\000\
-\\150\003\000\000\
-\\151\003\000\000\
-\\152\003\000\000\
-\\153\003\000\000\
-\\154\003\000\000\
-\\155\003\000\000\
-\\156\003\000\000\
-\\158\003\003\000\063\000\013\000\076\000\024\000\075\000\000\000\
-\\159\003\000\000\
-\\160\003\000\000\
-\\161\003\000\000\
-\\162\003\000\000\
-\\163\003\000\000\
-\\164\003\000\000\
-\\165\003\000\000\
-\\166\003\000\000\
-\\167\003\000\000\
-\\168\003\003\000\063\000\013\000\076\000\000\000\
-\\169\003\000\000\
-\\170\003\000\000\
-\\171\003\000\000\
-\\172\003\000\000\
-\\173\003\000\000\
-\\174\003\000\000\
-\\175\003\000\000\
-\\176\003\000\000\
-\\177\003\003\000\063\000\013\000\058\000\000\000\
-\\178\003\000\000\
-\"
-val actionRowNumbers =
-"\124\000\171\001\123\000\128\000\
-\\125\000\137\000\129\000\089\001\
-\\181\001\202\001\184\001\170\001\
-\\024\000\121\000\075\001\045\000\
-\\140\000\169\001\092\001\081\001\
-\\089\001\029\000\030\000\031\000\
-\\029\000\029\000\029\000\029\000\
-\\029\000\004\000\000\000\020\001\
-\\022\000\022\000\124\000\004\000\
-\\044\001\017\000\024\000\043\001\
-\\003\000\134\000\237\000\002\000\
-\\012\000\041\001\039\001\004\000\
-\\009\000\022\000\001\000\007\000\
-\\025\000\185\001\020\001\004\000\
-\\182\001\020\001\047\001\173\001\
-\\172\001\183\001\046\001\174\001\
-\\126\000\088\001\090\001\252\000\
-\\187\001\176\001\177\001\186\001\
-\\179\001\180\001\178\001\124\000\
-\\004\000\007\000\016\000\004\000\
-\\087\001\063\000\175\001\116\001\
-\\064\000\114\001\114\001\114\001\
-\\065\000\066\000\067\000\068\000\
-\\043\000\243\000\254\000\005\000\
-\\021\001\122\001\060\000\129\001\
-\\203\001\131\001\125\001\128\001\
-\\126\001\132\001\006\000\024\000\
-\\137\001\138\001\011\000\192\001\
-\\019\001\015\000\015\001\247\000\
-\\032\000\183\000\138\000\195\001\
-\\088\000\130\000\196\001\127\000\
-\\086\001\024\000\045\001\048\001\
-\\251\000\206\001\205\001\091\001\
-\\076\001\111\000\112\000\040\000\
-\\096\001\132\000\101\000\134\000\
-\\134\000\102\000\241\000\240\000\
-\\237\000\237\000\237\000\109\000\
-\\120\001\101\001\194\001\193\001\
-\\089\000\106\000\072\001\095\001\
-\\042\001\040\001\046\000\093\001\
-\\199\001\131\000\105\000\007\000\
-\\245\000\009\001\011\001\012\001\
-\\007\001\066\001\067\001\062\000\
-\\082\001\138\001\035\001\190\001\
-\\250\000\031\001\029\001\022\000\
-\\015\000\051\001\058\001\062\001\
-\\059\001\049\001\248\000\052\001\
-\\044\000\015\000\120\000\188\001\
-\\122\000\078\001\077\001\153\001\
-\\149\001\014\000\028\000\080\001\
-\\150\001\159\001\200\001\016\000\
-\\013\000\079\001\016\000\069\000\
-\\116\001\016\000\114\001\070\000\
-\\071\000\072\000\016\000\016\000\
-\\016\000\016\000\004\000\244\000\
-\\004\000\016\000\007\000\127\001\
-\\000\001\061\000\006\000\130\001\
-\\113\000\023\001\114\000\140\001\
-\\110\000\007\001\107\000\143\001\
-\\059\000\090\000\135\001\144\001\
-\\091\000\191\001\092\000\026\000\
-\\026\000\026\000\073\000\189\001\
-\\207\001\097\001\098\001\099\001\
-\\004\000\004\000\134\000\136\000\
-\\135\000\004\000\238\000\239\000\
-\\103\000\100\001\004\000\004\000\
-\\094\001\009\000\004\000\186\000\
-\\246\000\007\000\007\000\093\000\
-\\016\000\007\000\004\000\034\001\
-\\033\001\016\000\020\000\025\000\
-\\030\001\094\000\056\001\020\001\
-\\020\001\007\000\095\000\237\000\
-\\158\001\016\000\016\000\115\000\
-\\048\000\108\000\162\001\074\000\
-\\155\001\050\000\016\000\117\001\
-\\051\000\115\001\016\000\016\000\
-\\016\000\052\000\053\000\049\000\
-\\054\000\084\001\001\001\124\001\
-\\123\001\100\000\003\001\022\001\
-\\032\000\133\001\139\001\007\000\
-\\134\001\147\001\136\001\010\000\
-\\007\000\016\000\019\000\173\000\
-\\172\000\162\000\185\000\187\000\
-\\184\000\176\000\016\000\074\001\
-\\073\001\118\001\119\001\081\000\
-\\082\000\042\000\237\000\121\001\
-\\070\001\071\001\041\000\075\000\
-\\236\000\190\000\187\000\200\000\
-\\116\000\024\000\020\001\022\000\
-\\021\000\187\000\026\000\022\000\
-\\020\001\020\001\010\001\013\001\
-\\004\000\008\001\068\001\069\001\
-\\036\001\204\001\037\001\017\000\
-\\032\001\023\000\063\001\060\001\
-\\083\001\025\000\083\000\152\001\
-\\164\001\163\001\151\001\015\000\
-\\157\001\016\000\154\001\009\000\
-\\016\000\111\001\055\000\113\001\
-\\056\000\057\000\058\000\104\001\
-\\107\001\008\000\105\001\255\000\
-\\005\000\007\000\024\001\140\001\
-\\146\001\007\000\142\001\145\001\
-\\017\001\150\000\036\000\148\000\
-\\033\000\076\000\141\000\156\000\
-\\134\000\134\000\164\000\163\000\
-\\119\000\084\000\171\000\119\000\
-\\022\000\047\000\139\000\103\001\
-\\102\001\085\000\004\000\026\000\
-\\189\000\183\000\079\000\191\000\
-\\218\000\015\000\192\000\214\000\
-\\193\000\080\000\197\000\202\000\
-\\096\000\015\000\188\000\174\000\
-\\198\000\196\000\221\000\224\000\
-\\015\000\194\000\053\001\057\001\
-\\050\001\195\000\054\001\014\001\
-\\038\001\027\001\061\001\025\001\
-\\015\000\249\000\156\001\166\001\
-\\165\001\161\001\160\001\112\001\
-\\109\001\110\001\108\001\168\001\
-\\118\000\167\001\002\001\005\001\
-\\141\001\148\001\016\001\020\001\
-\\143\000\022\000\152\000\144\000\
-\\142\000\119\000\026\000\026\000\
-\\158\000\133\000\086\000\104\000\
-\\165\000\020\001\175\000\177\000\
-\\178\000\018\000\242\000\085\001\
-\\235\000\097\000\016\000\024\000\
-\\217\000\020\001\026\000\017\000\
-\\201\000\098\000\199\000\197\001\
-\\022\000\223\000\016\000\216\000\
-\\016\000\025\000\055\001\106\001\
-\\004\001\006\000\018\001\149\000\
-\\034\000\155\000\154\000\153\000\
-\\151\000\078\000\117\000\157\000\
-\\019\000\166\000\167\000\119\000\
-\\015\000\179\000\180\000\027\000\
-\\253\000\064\001\201\001\019\000\
-\\220\000\219\000\215\000\208\000\
-\\204\000\203\000\015\000\198\001\
-\\222\000\225\000\028\001\026\001\
-\\006\001\145\000\146\000\027\000\
-\\160\000\161\000\077\000\168\000\
-\\099\000\177\000\018\000\231\000\
-\\037\000\226\000\207\000\119\000\
-\\022\000\206\000\205\000\035\000\
-\\159\000\170\000\169\000\016\000\
-\\181\000\065\001\228\000\022\000\
-\\229\000\227\000\119\000\209\000\
-\\210\000\147\000\182\000\232\000\
-\\038\000\211\000\212\000\027\000\
-\\230\000\233\000\027\000\209\000\
-\\039\000\213\000\234\000\087\000"
-val gotoT =
-"\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\033\000\016\000\045\000\015\000\049\000\014\000\050\000\013\000\
-\\054\000\012\000\064\000\011\000\066\000\010\000\067\000\009\000\
-\\068\000\008\000\076\000\007\000\089\000\095\002\117\000\006\000\
-\\118\000\005\000\134\000\004\000\135\000\003\000\136\000\002\000\
-\\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\033\000\016\000\054\000\012\000\117\000\006\000\118\000\005\000\
-\\134\000\004\000\135\000\003\000\136\000\064\000\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\066\000\008\000\065\000\016\000\018\000\
-\\017\000\017\000\064\000\011\000\066\000\010\000\067\000\009\000\
-\\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\072\000\062\000\071\000\063\000\070\000\068\000\069\000\
-\\161\000\068\000\163\000\067\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\066\000\008\000\080\000\016\000\018\000\
-\\017\000\017\000\064\000\011\000\066\000\010\000\067\000\009\000\
-\\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\130\000\081\000\000\000\
-\\130\000\083\000\000\000\
-\\130\000\085\000\000\000\
-\\130\000\087\000\000\000\
-\\130\000\088\000\000\000\
-\\130\000\089\000\000\000\
-\\130\000\090\000\000\000\
-\\130\000\091\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\092\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\098\000\086\000\097\000\151\000\096\000\
-\\154\000\095\000\155\000\094\000\157\000\093\000\168\000\001\000\000\000\
-\\146\000\115\000\147\000\114\000\151\000\096\000\153\000\113\000\
-\\154\000\112\000\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\112\000\118\000\
-\\129\000\117\000\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\099\000\121\000\
-\\107\000\120\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\033\000\016\000\045\000\015\000\049\000\014\000\050\000\123\000\
-\\054\000\012\000\064\000\011\000\066\000\010\000\067\000\009\000\
-\\068\000\008\000\076\000\007\000\117\000\006\000\118\000\005\000\
-\\134\000\004\000\135\000\003\000\136\000\002\000\168\000\001\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\124\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\036\000\126\000\088\000\125\000\000\000\
-\\066\000\130\000\068\000\008\000\069\000\129\000\071\000\128\000\000\000\
-\\061\000\072\000\062\000\071\000\063\000\070\000\068\000\069\000\
-\\161\000\131\000\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\135\000\046\000\134\000\048\000\133\000\049\000\132\000\
-\\064\000\011\000\066\000\010\000\067\000\009\000\068\000\008\000\
-\\076\000\007\000\168\000\001\000\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\138\000\120\000\137\000\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\141\000\
-\\054\000\012\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\148\000\047\000\147\000\049\000\014\000\064\000\011\000\
-\\066\000\010\000\067\000\009\000\068\000\008\000\076\000\007\000\
-\\168\000\001\000\000\000\
-\\041\000\154\000\042\000\153\000\053\000\152\000\061\000\151\000\
-\\063\000\070\000\064\000\150\000\068\000\069\000\000\000\
-\\036\000\156\000\000\000\
-\\036\000\157\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\158\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\053\000\159\000\061\000\151\000\063\000\070\000\064\000\150\000\
-\\068\000\069\000\000\000\
-\\052\000\162\000\055\000\161\000\061\000\160\000\063\000\070\000\
-\\068\000\069\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\168\000\011\000\167\000\
-\\012\000\166\000\013\000\165\000\016\000\101\000\017\000\017\000\
-\\060\000\164\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\151\000\096\000\154\000\163\000\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\078\000\172\000\082\000\171\000\086\000\097\000\
-\\091\000\170\000\092\000\169\000\168\000\001\000\000\000\
-\\015\000\178\000\037\000\177\000\040\000\176\000\061\000\175\000\
-\\063\000\070\000\068\000\069\000\080\000\174\000\000\000\
-\\000\000\
-\\022\000\187\000\024\000\186\000\026\000\185\000\028\000\184\000\
-\\029\000\183\000\030\000\182\000\090\000\181\000\151\000\096\000\
-\\153\000\180\000\154\000\112\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\188\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\022\000\190\000\028\000\184\000\029\000\183\000\030\000\182\000\
-\\151\000\096\000\153\000\189\000\154\000\112\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\072\000\062\000\071\000\063\000\070\000\068\000\069\000\
-\\161\000\068\000\163\000\191\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\033\000\016\000\045\000\015\000\049\000\014\000\050\000\192\000\
-\\054\000\012\000\064\000\011\000\066\000\010\000\067\000\009\000\
-\\068\000\008\000\076\000\007\000\117\000\006\000\118\000\005\000\
-\\134\000\004\000\135\000\003\000\136\000\002\000\168\000\001\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\193\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\078\000\194\000\082\000\171\000\086\000\097\000\
-\\091\000\170\000\092\000\169\000\168\000\001\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\199\000\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\205\000\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\208\000\063\000\070\000\068\000\069\000\131\000\207\000\000\000\
-\\000\000\
-\\010\000\211\000\061\000\210\000\063\000\070\000\068\000\069\000\000\000\
-\\010\000\212\000\061\000\210\000\063\000\070\000\068\000\069\000\000\000\
-\\010\000\213\000\061\000\210\000\063\000\070\000\068\000\069\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\098\000\086\000\097\000\155\000\094\000\
-\\157\000\219\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\223\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\168\000\001\000\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\225\000\086\000\097\000\093\000\224\000\
-\\168\000\001\000\000\000\
-\\061\000\072\000\062\000\071\000\063\000\070\000\068\000\069\000\
-\\161\000\227\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\231\000\086\000\097\000\087\000\230\000\
-\\151\000\229\000\152\000\228\000\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\231\000\086\000\097\000\087\000\232\000\
-\\168\000\001\000\000\000\
-\\053\000\237\000\061\000\236\000\063\000\070\000\064\000\150\000\
-\\068\000\069\000\084\000\235\000\085\000\234\000\162\000\233\000\000\000\
-\\000\000\
-\\000\000\
-\\063\000\241\000\068\000\069\000\144\000\240\000\000\000\
-\\000\000\
-\\000\000\
-\\151\000\229\000\152\000\228\000\000\000\
-\\102\000\242\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\072\000\062\000\247\000\063\000\070\000\068\000\069\000\
-\\160\000\246\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\066\000\130\000\068\000\008\000\069\000\129\000\071\000\248\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\255\000\120\000\137\000\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\000\001\120\000\137\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\002\001\
-\\054\000\012\000\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\003\001\
-\\054\000\012\000\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\004\001\
-\\054\000\012\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\168\000\011\000\167\000\
-\\012\000\166\000\013\000\165\000\016\000\101\000\017\000\017\000\
-\\060\000\012\001\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\019\000\015\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\231\000\086\000\097\000\087\000\230\000\
-\\168\000\001\000\000\000\
-\\038\000\020\001\039\000\019\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\015\000\024\001\061\000\175\000\063\000\070\000\068\000\069\000\000\000\
-\\063\000\241\000\068\000\069\000\144\000\025\001\000\000\
-\\000\000\
-\\000\000\
-\\167\000\026\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\063\000\241\000\068\000\069\000\144\000\030\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\032\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\036\001\
-\\139\000\198\000\140\000\197\000\141\000\035\001\145\000\196\000\
-\\151\000\195\000\000\000\
-\\053\000\039\001\061\000\151\000\063\000\070\000\064\000\150\000\
-\\068\000\069\000\132\000\038\001\133\000\037\001\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\041\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\061\000\208\000\063\000\070\000\068\000\069\000\131\000\043\001\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\044\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\010\000\045\001\061\000\210\000\063\000\070\000\068\000\069\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\049\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\050\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\051\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\052\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\053\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\054\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\055\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\056\001\086\000\097\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\225\000\086\000\097\000\093\000\058\001\
-\\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\014\000\062\001\000\000\
-\\000\000\
-\\019\000\065\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\103\000\074\001\
-\\104\000\073\001\105\000\072\001\107\000\071\001\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\103\000\076\001\
-\\104\000\073\001\105\000\072\001\107\000\071\001\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\104\000\077\001\
-\\105\000\072\001\107\000\071\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\080\001\048\000\079\001\049\000\014\000\064\000\011\000\
-\\066\000\010\000\067\000\009\000\068\000\008\000\076\000\007\000\
-\\168\000\001\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\082\001\046\000\081\001\049\000\014\000\064\000\011\000\
-\\066\000\010\000\067\000\009\000\068\000\008\000\076\000\007\000\
-\\168\000\001\000\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\083\001\120\000\137\000\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\085\001\048\000\084\001\049\000\014\000\064\000\011\000\
-\\066\000\010\000\067\000\009\000\068\000\008\000\076\000\007\000\
-\\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\148\000\047\000\087\001\049\000\014\000\064\000\011\000\
-\\066\000\010\000\067\000\009\000\068\000\008\000\076\000\007\000\
-\\168\000\001\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\088\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\041\000\154\000\042\000\089\001\053\000\152\000\061\000\151\000\
-\\063\000\070\000\064\000\150\000\068\000\069\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\090\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\051\000\096\001\061\000\119\000\063\000\070\000\068\000\069\000\
-\\098\000\095\001\109\000\094\001\110\000\093\001\111\000\092\001\
-\\129\000\091\001\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\168\000\011\000\167\000\
-\\012\000\166\000\013\000\165\000\016\000\101\000\017\000\017\000\
-\\060\000\106\001\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\168\000\011\000\167\000\
-\\012\000\107\001\016\000\101\000\017\000\017\000\064\000\011\000\
-\\066\000\100\000\068\000\008\000\077\000\099\000\168\000\001\000\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\109\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\171\000\086\000\097\000\091\000\170\000\
-\\092\000\110\001\168\000\001\000\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\111\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\112\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\065\000\114\001\066\000\113\001\068\000\008\000\000\000\
-\\015\000\178\000\037\000\177\000\040\000\116\001\061\000\175\000\
-\\063\000\070\000\068\000\069\000\080\000\174\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\146\000\118\001\147\000\114\000\151\000\096\000\153\000\113\000\
-\\154\000\112\000\000\000\
-\\028\000\184\000\030\000\119\001\151\000\096\000\153\000\189\000\
-\\154\000\112\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\078\000\120\001\082\000\171\000\086\000\097\000\
-\\091\000\170\000\092\000\169\000\168\000\001\000\000\000\
-\\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\122\001\
-\\054\000\012\000\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\125\001\139\000\124\001\
-\\140\000\123\001\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\126\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\134\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\136\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\137\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\138\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\156\000\143\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\151\000\229\000\152\000\146\001\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\147\001\086\000\097\000\168\000\001\000\000\000\
-\\000\000\
-\\079\000\148\001\000\000\
-\\000\000\
-\\053\000\237\000\061\000\236\000\063\000\070\000\064\000\150\000\
-\\068\000\069\000\084\000\235\000\085\000\150\001\162\000\233\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\151\001\086\000\097\000\168\000\001\000\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\152\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\066\000\159\001\068\000\008\000\113\000\158\001\124\000\157\001\
-\\125\000\156\001\126\000\155\001\127\000\154\001\128\000\153\001\000\000\
-\\000\000\
-\\000\000\
-\\165\000\163\001\166\000\162\001\000\000\
-\\000\000\
-\\098\000\095\001\109\000\094\001\110\000\093\001\111\000\165\001\000\000\
-\\000\000\
-\\100\000\166\001\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\169\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\031\000\144\000\032\000\143\000\033\000\142\000\034\000\173\001\
-\\054\000\012\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\098\000\095\001\109\000\094\001\110\000\093\001\111\000\176\001\000\000\
-\\000\000\
-\\000\000\
-\\061\000\072\000\062\000\247\000\063\000\070\000\068\000\069\000\
-\\158\000\180\001\159\000\179\001\160\000\178\001\000\000\
-\\146\000\184\001\147\000\114\000\149\000\183\001\150\000\182\001\
-\\151\000\096\000\153\000\181\001\154\000\112\000\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\121\000\186\001\
-\\129\000\185\001\000\000\
-\\066\000\130\000\068\000\008\000\069\000\188\001\070\000\187\001\000\000\
-\\098\000\095\001\109\000\094\001\110\000\093\001\111\000\190\001\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\103\000\192\001\
-\\104\000\073\001\105\000\072\001\107\000\191\001\000\000\
-\\015\000\195\001\043\000\194\001\044\000\193\001\061\000\175\000\
-\\063\000\070\000\068\000\069\000\000\000\
-\\149\000\183\001\150\000\197\001\151\000\096\000\153\000\196\001\
-\\154\000\112\000\000\000\
-\\023\000\202\001\025\000\201\001\027\000\200\001\028\000\184\000\
-\\029\000\199\001\030\000\182\000\090\000\198\001\151\000\096\000\
-\\153\000\180\000\154\000\112\000\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\203\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\065\000\204\001\066\000\113\001\068\000\008\000\000\000\
-\\000\000\
-\\015\000\178\000\018\000\207\001\020\000\206\001\061\000\175\000\
-\\063\000\070\000\068\000\069\000\080\000\205\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\015\000\178\000\018\000\207\001\020\000\206\001\061\000\175\000\
-\\063\000\070\000\068\000\069\000\080\000\205\001\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\032\001\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\210\001\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\212\001\
-\\139\000\198\000\140\000\197\000\141\000\211\001\145\000\196\000\
-\\151\000\195\000\000\000\
-\\000\000\
-\\053\000\039\001\061\000\151\000\063\000\070\000\064\000\150\000\
-\\068\000\069\000\132\000\038\001\133\000\213\001\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\214\001\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\016\000\221\001\017\000\017\000\021\000\220\001\061\000\219\001\
-\\063\000\070\000\064\000\011\000\068\000\069\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\098\000\086\000\097\000\155\000\222\001\
-\\168\000\001\000\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\078\000\223\001\082\000\171\000\086\000\097\000\
-\\091\000\170\000\092\000\169\000\168\000\001\000\000\000\
-\\000\000\
-\\014\000\224\001\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\225\001\086\000\097\000\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\148\000\226\001\000\000\
-\\000\000\
-\\000\000\
-\\116\000\228\001\000\000\
-\\114\000\232\001\116\000\231\001\165\000\230\001\166\000\162\001\000\000\
-\\000\000\
-\\000\000\
-\\009\000\236\001\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\238\001\120\000\137\000\000\000\
-\\033\000\016\000\054\000\012\000\117\000\139\000\118\000\005\000\
-\\119\000\239\001\120\000\137\000\000\000\
-\\000\000\
-\\000\000\
-\\164\000\240\001\000\000\
-\\000\000\
-\\000\000\
-\\164\000\243\001\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\099\000\244\001\
-\\107\000\120\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\020\000\007\000\019\000\016\000\018\000\017\000\017\000\
-\\045\000\247\001\049\000\014\000\064\000\011\000\066\000\010\000\
-\\067\000\009\000\068\000\008\000\076\000\007\000\168\000\001\000\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\103\000\248\001\
-\\104\000\073\001\105\000\072\001\107\000\071\001\000\000\
-\\000\000\
-\\102\000\249\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\063\000\241\000\068\000\069\000\144\000\252\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\001\002\073\000\000\002\000\000\
-\\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\107\000\003\002\
-\\108\000\002\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\143\000\005\002\000\000\
-\\063\000\241\000\068\000\069\000\144\000\007\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\010\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\094\000\012\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\147\000\014\002\151\000\096\000\153\000\113\000\154\000\112\000\000\000\
-\\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\112\000\015\002\
-\\129\000\117\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\164\000\016\002\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\104\000\017\002\
-\\105\000\072\001\107\000\071\001\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\104\000\018\002\
-\\105\000\072\001\107\000\071\001\000\000\
-\\000\000\
-\\033\000\016\000\054\000\012\000\066\000\159\001\068\000\008\000\
-\\117\000\139\000\118\000\005\000\119\000\022\002\120\000\137\000\
-\\124\000\021\002\125\000\020\002\127\000\019\002\128\000\153\001\000\000\
-\\000\000\
-\\000\000\
-\\002\000\026\002\166\000\025\002\000\000\
-\\151\000\096\000\153\000\028\002\154\000\112\000\000\000\
-\\000\000\
-\\100\000\030\002\101\000\029\002\000\000\
-\\000\000\
-\\066\000\010\000\067\000\034\002\068\000\008\000\074\000\033\002\
-\\075\000\032\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\036\002\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\061\000\072\000\062\000\247\000\063\000\070\000\068\000\069\000\
-\\158\000\180\001\159\000\037\002\160\000\178\001\000\000\
-\\000\000\
-\\149\000\183\001\150\000\038\002\151\000\096\000\153\000\196\001\
-\\154\000\112\000\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\104\000\039\002\
-\\105\000\072\001\107\000\071\001\000\000\
-\\066\000\130\000\068\000\008\000\069\000\041\002\070\000\040\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\107\000\003\002\
-\\108\000\043\002\000\000\
-\\015\000\195\001\043\000\194\001\044\000\044\002\061\000\175\000\
-\\063\000\070\000\068\000\069\000\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\045\002\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\046\002\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\015\000\178\000\018\000\207\001\020\000\047\002\061\000\175\000\
-\\063\000\070\000\068\000\069\000\080\000\205\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\104\000\005\000\103\000\006\000\102\000\016\000\101\000\
-\\017\000\017\000\064\000\011\000\066\000\100\000\068\000\008\000\
-\\077\000\099\000\082\000\225\000\086\000\097\000\093\000\048\002\
-\\168\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\002\000\026\002\114\000\050\002\115\000\049\002\116\000\231\001\
-\\166\000\025\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\165\000\230\001\166\000\162\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\066\000\159\001\068\000\008\000\124\000\054\002\125\000\020\002\
-\\127\000\019\002\128\000\153\001\000\000\
-\\000\000\
-\\000\000\
-\\164\000\055\002\000\000\
-\\068\000\202\000\072\000\056\002\000\000\
-\\000\000\
-\\000\000\
-\\061\000\122\000\063\000\070\000\068\000\069\000\099\000\244\001\
-\\107\000\120\000\164\000\057\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\056\000\061\002\066\000\159\001\068\000\008\000\124\000\157\001\
-\\125\000\060\002\126\000\059\002\127\000\154\001\128\000\153\001\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\122\000\062\002\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\066\002\073\000\065\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\112\000\015\002\
-\\129\000\117\000\164\000\067\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\002\000\070\002\166\000\069\002\000\000\
-\\000\000\
-\\100\000\030\002\101\000\072\002\000\000\
-\\066\000\010\000\067\000\034\002\068\000\008\000\074\000\033\002\
-\\075\000\073\002\000\000\
-\\059\000\074\002\000\000\
-\\057\000\077\002\059\000\076\002\165\000\230\001\166\000\162\001\000\000\
-\\000\000\
-\\000\000\
-\\164\000\079\002\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\121\000\080\002\
-\\129\000\185\001\000\000\
-\\000\000\
-\\000\000\
-\\002\000\070\002\114\000\050\002\115\000\081\002\116\000\231\001\
-\\166\000\069\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\068\000\202\000\072\000\201\000\137\000\200\000\138\000\082\002\
-\\139\000\198\000\140\000\197\000\145\000\196\000\151\000\195\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\052\000\162\000\055\000\083\002\061\000\160\000\063\000\070\000\
-\\068\000\069\000\000\000\
-\\000\000\
-\\000\000\
-\\164\000\084\002\000\000\
-\\122\000\086\002\123\000\085\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\002\000\026\002\057\000\089\002\058\000\088\002\059\000\076\002\
-\\166\000\025\002\000\000\
-\\000\000\
-\\000\000\
-\\061\000\119\000\063\000\070\000\068\000\069\000\121\000\080\002\
-\\129\000\185\001\164\000\091\002\000\000\
-\\000\000\
-\\000\000\
-\\052\000\162\000\055\000\083\002\061\000\160\000\063\000\070\000\
-\\068\000\069\000\164\000\092\002\000\000\
-\\122\000\086\002\123\000\093\002\000\000\
-\\002\000\070\002\057\000\089\002\058\000\094\002\059\000\076\002\
-\\166\000\069\002\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\"
-val numstates = 608
-val numrules = 337
-val s = ref "" and index = ref 0
-val string_to_int = fn () =>
-let val i = !index
-in index := i+2; Char.ord(String.sub(!s,i)) + Char.ord(String.sub(!s,i+1)) * 256
-end
-val string_to_list = fn s' =>
- let val len = String.size s'
- fun f () =
- if !index < len then string_to_int() :: f()
- else nil
- in index := 0; s := s'; f ()
- end
-val string_to_pairlist = fn (conv_key,conv_entry) =>
- let fun f () =
- case string_to_int()
- of 0 => EMPTY
- | n => PAIR(conv_key (n-1),conv_entry (string_to_int()),f())
- in f
- end
-val string_to_pairlist_default = fn (conv_key,conv_entry) =>
- let val conv_row = string_to_pairlist(conv_key,conv_entry)
- in fn () =>
- let val default = conv_entry(string_to_int())
- val row = conv_row()
- in (row,default)
- end
- end
-val string_to_table = fn (convert_row,s') =>
- let val len = String.size s'
- fun f ()=
- if !index < len then convert_row() :: f()
- else nil
- in (s := s'; index := 0; f ())
- end
-local
- val memo = Array.array(numstates+numrules,ERROR)
- val _ =let fun g i=(Array.update(memo,i,REDUCE(i-numstates)); g(i+1))
- fun f i =
- if i=numstates then g i
- else (Array.update(memo,i,SHIFT (STATE i)); f (i+1))
- in f 0 handle Subscript => ()
- end
-in
-val entry_to_action = fn 0 => ACCEPT | 1 => ERROR | j => Array.sub(memo,(j-2))
-end
-val gotoT=Array.fromList(string_to_table(string_to_pairlist(NT,STATE),gotoT))
-val actionRows=string_to_table(string_to_pairlist_default(T,entry_to_action),actionRows)
-val actionRowNumbers = string_to_list actionRowNumbers
-val actionT = let val actionRowLookUp=
-let val a=Array.fromList(actionRows) in fn i=>Array.sub(a,i) end
-in Array.fromList(map actionRowLookUp actionRowNumbers)
-end
-in LrTable.mkLrTable {actions=actionT,gotos=gotoT,numRules=numrules,
-numStates=numstates,initialState=STATE 0}
-end
-end
-local open Header in
-type pos = SourcePos.t
-type arg = unit
-structure MlyValue =
-struct
-datatype svalue = VOID | ntVOID of unit -> unit
- | WORD of unit -> ({ digits:string,radix:StringCvt.radix } )
- | TYVAR of unit -> (string) | STRING of unit -> (IntInf.t vector)
- | REAL of unit -> (string) | LONGID of unit -> (string)
- | INT of unit -> ({ digits:string,negate:bool,radix:StringCvt.radix } )
- | CHAR of unit -> (IntInf.t) | word of unit -> (IntInf.t)
- | withtypes of unit -> (TypBind.t)
- | wherespecs' of unit -> (wherespec list)
- | wherespecs of unit -> (wherespec vector)
- | wherespec of unit -> (wherespec) | vids of unit -> (Vid.t list)
- | vidNoEqual of unit -> (Vid.t) | vid of unit -> (Vid.t)
- | var of unit -> (Var.t) | valdescs of unit -> (valdesc list)
- | valdesc of unit -> (valdesc)
- | valbindTop of unit -> (vb vector*rvb vector)
- | valbindRest of unit -> (vb list*rvb list)
- | valbind of unit -> (vb list*rvb list)
- | tyvarseq of unit -> (Tyvar.t vector)
- | tyvars of unit -> (Tyvar.t vector)
- | tyvar_pc of unit -> (Tyvar.t list) | tyvar of unit -> (Tyvar.t)
- | typdescs of unit -> (typdesc list) | typdesc of unit -> (typdesc)
- | typBind'' of unit -> ({ def:Type.t,tycon:Tycon.t,tyvars:Tyvar.t vector } list)
- | typBind' of unit -> ({ def:Type.t,tycon:Tycon.t,tyvars:Tyvar.t vector } list)
- | typBind of unit -> (TypBind.t) | tynode of unit -> (Type.node)
- | tycon of unit -> (Tycon.t) | tyOpt of unit -> (Type.t option)
- | ty1 of unit -> (Type.t) | ty0_pc of unit -> (Type.t list)
- | ty'node of unit -> (Type.node) | ty' of unit -> (Type.t)
- | ty of unit -> (Type.t) | tuple_ty of unit -> (Type.t list)
- | topdecs of unit -> (Topdec.t list list)
- | topdecnode of unit -> (Topdec.node)
- | topdec of unit -> (Topdec.t)
- | tlabels of unit -> ( ( Field.t * Type.t ) list)
- | tlabel of unit -> ( ( Field.t * Type.t ) )
- | symattributes of unit -> (PrimKind.SymbolAttribute.t list)
- | string of unit -> (string) | strid of unit -> (Strid.t)
- | strexpnode of unit -> (Strexp.node)
- | strexp2node of unit -> (Strexp.node)
- | strexp2 of unit -> (Strexp.t)
- | strexp1 of unit -> (Strexp.t* ( Sigexp.t -> SigConst.t ) *Sigexp.t)
- | strexp of unit -> (Strexp.t)
- | strdescs'' of unit -> (strdesc whereAnd)
- | strdescs' of unit -> (strdesc whereAnd)
- | strdescs of unit -> (strdesc list)
- | strdecsnode of unit -> (Strdec.node)
- | strdecs of unit -> (Strdec.t)
- | strdecnode of unit -> (Strdec.node)
- | strdec of unit -> (Strdec.t)
- | strbinds'2 of unit -> (strbind list)
- | strbinds'1' of unit -> (strbind whereAnd)
- | strbinds'1 of unit -> (strbind whereAnd)
- | strbinds' of unit -> (Strexp.t*strbind list)
- | strbinds of unit -> (strbind list) | specs of unit -> (Spec.t)
- | specnode of unit -> (Spec.node) | spec of unit -> (Spec.t)
- | sigids of unit -> (Sigid.t list) | sigid of unit -> (Sigid.t)
- | sigexpnode of unit -> (Sigexp.node)
- | sigexp'node of unit -> (Sigexp.node)
- | sigexp' of unit -> (Sigexp.t) | sigexp of unit -> (Sigexp.t)
- | sigconst of unit -> (SigConst.t)
- | sigbinds'' of unit -> (sigbind whereAnd)
- | sigbinds' of unit -> (sigbind whereAnd)
- | sigbinds of unit -> (sigbind list)
- | sharespec of unit -> (Equation.node)
- | sdecsPlus of unit -> (Dec.t) | sdecs of unit -> (Dec.t)
- | sdec of unit -> (Dec.t) | rvalbindRest of unit -> (rvb list)
- | rvalbind of unit -> (rvb list) | rules of unit -> (rule list)
- | rule of unit -> (rule) | repl of unit -> (DatatypeRhs.node)
- | program of unit -> (Program.t) | priority of unit -> (Priority.t)
- | pats of unit -> (Pat.t list) | patnode of unit -> (Pat.node)
- | patitems of unit -> ( ( (Field.t * Pat.Item.t) list * bool ) )
- | patitem of unit -> ( ( Field.t * Pat.Item.t ) )
- | pat_2c of unit -> (Pat.t list) | pat of unit -> (Pat.t)
- | ot_list of unit -> (Exp.t list) | opcon of unit -> (Con.t)
- | opaspat of unit -> (Pat.t option) | match of unit -> (Match.t)
- | longvidNoEqual of unit -> (Longvid.t)
- | longvid of unit -> (Longvid.t)
- | longvarands of unit -> (Longvar.t list)
- | longvar of unit -> (Longvar.t)
- | longtyconeqns of unit -> (Longtycon.t list)
- | longtycon of unit -> (Longtycon.t)
- | longstrids of unit -> (Longstrid.t list)
- | longstrideqns of unit -> (Longstrid.t list)
- | longstrid of unit -> (Longstrid.t)
- | longidNoAsterisk of unit -> (Symbol.t list*Region.t)
- | longidEqual of unit -> (Symbol.t list*Region.t)
- | longid of unit -> (Symbol.t list*Region.t)
- | longcon of unit -> (Longcon.t) | int of unit -> (IntInf.t)
- | idNoAsterisk of unit -> (Symbol.t*Region.t)
- | idEqual of unit -> (Symbol.t*Region.t)
- | id of unit -> (Symbol.t*Region.t)
- | funs of unit -> (clauses list)
- | funbinds'2 of unit -> (funbind list)
- | funbinds'1' of unit -> (funbind whereAnd)
- | funbinds'1 of unit -> (funbind whereAnd)
- | funbinds' of unit -> (Strexp.t*funbind list)
- | funbinds of unit -> (funbind list) | fixity of unit -> (Fixity.t)
- | field of unit -> (Field.t) | fctid of unit -> (Fctid.t)
- | fctarg of unit -> (FctArg.node)
- | expsAndTopdecs of unit -> (Topdec.t list list)
- | expnode of unit -> (Exp.node) | exp_ps of unit -> (Exp.t list)
- | exp_list of unit -> (Exp.t list) | exp_2c of unit -> (Exp.t list)
- | exp of unit -> (Exp.t) | exndescs of unit -> (exndesc list)
- | exndesc of unit -> (exndesc)
- | elabels of unit -> ( ( Field.t * Exp.t ) list)
- | elabel of unit -> ( ( Field.t * Exp.t ) )
- | ebs of unit -> (eb list) | ebrhsnode of unit -> (EbRhs.node)
- | ebrhs of unit -> (EbRhs.t) | eb of unit -> (eb)
- | digit of unit -> (int) | decsnode of unit -> (Dec.node)
- | decs of unit -> (Dec.t) | decnolocal of unit -> (Dec.node)
- | decnode of unit -> (Dec.node) | dec of unit -> (Dec.t)
- | dbs' of unit -> (db list) | dbs of unit -> (db vector)
- | db of unit -> (db)
- | datatypeRhsnodeNoWithtype of unit -> (DatatypeRhs.node)
- | datatypeRhsnode of unit -> (DatatypeRhs.node)
- | datatypeRhsNoWithtype of unit -> (DatatypeRhs.t)
- | datatypeRhs of unit -> (DatatypeRhs.t)
- | datBindNoWithtype of unit -> (DatBind.t)
- | datBind of unit -> (DatBind.t) | constOrBool of unit -> (Const.t)
- | constrs of unit -> ( ( Con.t * Type.t option ) list)
- | constraint of unit -> (Type.t option)
- | constr of unit -> (Con.t*Type.t option)
- | const' of unit -> (Const.node) | const of unit -> (Const.t)
- | con of unit -> (Con.t) | commapats of unit -> (Pat.t list)
- | clausesTop of unit -> (clauses)
- | clauses of unit -> (clause list) | clause of unit -> (clause)
- | ieattributes of unit -> (PrimKind.ImportExportAttribute.t list)
- | arg_fct of unit -> (Strexp.t) | app_exp1 of unit -> (Exp.t list)
- | app_exp of unit -> (Exp.t list) | apats of unit -> (Pat.t list)
- | apatnode of unit -> (Pat.node) | apat' of unit -> (Pat.t)
- | apat of unit -> (Pat.t) | andspecs of unit -> (wherespec list)
- | aexp of unit -> (Exp.node)
-end
-type svalue = MlyValue.svalue
-type result = Program.t
-end
-structure EC=
-struct
-open LrTable
-infix 5 $$
-fun x $$ y = y::x
-val is_keyword =
-fn (T 7) => true | (T 8) => true | (T 11) => true | (T 14) => true |
-(T 18) => true | (T 19) => true | (T 20) => true | (T 21) => true |
-(T 24) => true | (T 25) => true | (T 26) => true | (T 27) => true |
-(T 28) => true | (T 29) => true | (T 30) => true | (T 31) => true |
-(T 33) => true | (T 34) => true | (T 35) => true | (T 36) => true |
-(T 37) => true | (T 40) => true | (T 41) => true | (T 43) => true |
-(T 45) => true | (T 46) => true | (T 47) => true | (T 48) => true |
-(T 49) => true | (T 52) => true | (T 55) => true | (T 56) => true |
-(T 57) => true | (T 58) => true | (T 59) => true | (T 60) => true |
-(T 61) => true | (T 62) => true | (T 64) => true | (T 63) => true |
-(T 66) => true | (T 67) => true | (T 44) => true | (T 9) => true | _ => false
-val preferred_change : (term list * term list) list =
-(nil
-,nil
- $$ (T 62))::
-(nil
-,nil
- $$ (T 60))::
-(nil
-,nil
- $$ (T 20))::
-(nil
-,nil
- $$ (T 42))::
-(nil
-,nil
- $$ (T 54))::
-(nil
- $$ (T 27),nil
- $$ (T 23))::
-(nil
- $$ (T 23),nil
- $$ (T 27))::
-(nil
- $$ (T 8),nil
- $$ (T 9))::
-(nil
- $$ (T 15),nil
- $$ (T 45))::
-(nil
- $$ (T 54),nil
- $$ (T 17))::
-(nil
- $$ (T 17),nil
- $$ (T 54))::
-(nil
-,nil
- $$ (T 21) $$ (T 2) $$ (T 34))::
-(nil
-,nil
- $$ (T 2) $$ (T 20))::
-nil
-val noShift =
-fn (T 22) => true | _ => false
-val showTerminal =
-fn (T 0) => "CHAR"
- | (T 1) => "INT"
- | (T 2) => "LONGID"
- | (T 3) => "REAL"
- | (T 4) => "STRING"
- | (T 5) => "TYVAR"
- | (T 6) => "WORD"
- | (T 7) => "ABSTYPE"
- | (T 8) => "AND"
- | (T 9) => "ANDALSO"
- | (T 10) => "ARROW"
- | (T 11) => "AS"
- | (T 12) => "ASTERISK"
- | (T 13) => "BAR"
- | (T 14) => "CASE"
- | (T 15) => "COLON"
- | (T 16) => "COLONGT"
- | (T 17) => "COMMA"
- | (T 18) => "DATATYPE"
- | (T 19) => "DOTDOTDOT"
- | (T 20) => "ELSE"
- | (T 21) => "END"
- | (T 22) => "EOF"
- | (T 23) => "EQUALOP"
- | (T 24) => "EQTYPE"
- | (T 25) => "EXCEPTION"
- | (T 26) => "DO"
- | (T 27) => "DARROW"
- | (T 28) => "FN"
- | (T 29) => "FUN"
- | (T 30) => "FUNCTOR"
- | (T 31) => "HANDLE"
- | (T 32) => "HASH"
- | (T 33) => "IF"
- | (T 34) => "IN"
- | (T 35) => "INCLUDE"
- | (T 36) => "INFIX"
- | (T 37) => "INFIXR"
- | (T 38) => "LBRACE"
- | (T 39) => "LBRACKET"
- | (T 40) => "LET"
- | (T 41) => "LOCAL"
- | (T 42) => "LPAREN"
- | (T 43) => "NONFIX"
- | (T 44) => "ORELSE"
- | (T 45) => "OF"
- | (T 46) => "OP"
- | (T 47) => "OPEN"
- | (T 48) => "OVERLOAD"
- | (T 49) => "RAISE"
- | (T 50) => "RBRACE"
- | (T 51) => "RBRACKET"
- | (T 52) => "REC"
- | (T 53) => "RPAREN"
- | (T 54) => "SEMICOLON"
- | (T 55) => "SHARING"
- | (T 56) => "SIG"
- | (T 57) => "SIGNATURE"
- | (T 58) => "STRUCT"
- | (T 59) => "STRUCTURE"
- | (T 60) => "THEN"
- | (T 61) => "TYPE"
- | (T 62) => "VAL"
- | (T 63) => "WHERE"
- | (T 64) => "WHILE"
- | (T 65) => "WILD"
- | (T 66) => "WITH"
- | (T 67) => "WITHTYPE"
- | (T 68) => "BUILD_CONST"
- | (T 69) => "COMMAND_LINE_CONST"
- | (T 70) => "CONST"
- | (T 71) => "ADDRESS"
- | (T 72) => "EXPORT"
- | (T 73) => "IMPORT"
- | (T 74) => "SYMBOL"
- | (T 75) => "PRIM"
- | _ => "bogus-term"
-local open Header in
-val errtermvalue=
-fn (T 0) => MlyValue.CHAR(fn () => (IntInf.fromInt (Char.ord #"a"))) |
-(T 1) => MlyValue.INT(fn () => (
-{digits = "0", negate = false, radix = StringCvt.DEC})) |
-(T 2) => MlyValue.LONGID(fn () => ("bogus")) |
-(T 3) => MlyValue.REAL(fn () => ("13.0")) |
-(T 4) => MlyValue.STRING(fn () => (Vector.fromList [])) |
-(T 5) => MlyValue.TYVAR(fn () => ("'a")) |
-(T 6) => MlyValue.WORD(fn () => ({digits = "0", radix = StringCvt.DEC}
-)) |
-_ => MlyValue.VOID
-end
-val terms : term list = nil
- $$ (T 75) $$ (T 74) $$ (T 73) $$ (T 72) $$ (T 71) $$ (T 70) $$ (T 69)
- $$ (T 68) $$ (T 67) $$ (T 66) $$ (T 65) $$ (T 64) $$ (T 63) $$ (T 62)
- $$ (T 61) $$ (T 60) $$ (T 59) $$ (T 58) $$ (T 57) $$ (T 56) $$ (T 55)
- $$ (T 54) $$ (T 53) $$ (T 52) $$ (T 51) $$ (T 50) $$ (T 49) $$ (T 48)
- $$ (T 47) $$ (T 46) $$ (T 45) $$ (T 44) $$ (T 43) $$ (T 42) $$ (T 41)
- $$ (T 40) $$ (T 39) $$ (T 38) $$ (T 37) $$ (T 36) $$ (T 35) $$ (T 34)
- $$ (T 33) $$ (T 32) $$ (T 31) $$ (T 30) $$ (T 29) $$ (T 28) $$ (T 27)
- $$ (T 26) $$ (T 25) $$ (T 24) $$ (T 23) $$ (T 22) $$ (T 21) $$ (T 20)
- $$ (T 19) $$ (T 18) $$ (T 17) $$ (T 16) $$ (T 15) $$ (T 14) $$ (T 13)
- $$ (T 12) $$ (T 11) $$ (T 10) $$ (T 9) $$ (T 8) $$ (T 7)end
-structure Actions =
-struct
-type int = Int.int
-exception mlyAction of int
-local open Header in
-val actions =
-fn (i392:int,defaultPos,stack,
- (()):arg) =>
-case (i392,stack)
-of ( 0, ( ( _, ( MlyValue.expsAndTopdecs expsAndTopdecs1,
-expsAndTopdecs1left, expsAndTopdecs1right)) :: rest671)) => let val
-result = MlyValue.program (fn _ => let val (expsAndTopdecs as
-expsAndTopdecs1) = expsAndTopdecs1 ()
- in (Program.T expsAndTopdecs)
-end)
- in ( LrTable.NT 88, ( result, expsAndTopdecs1left,
-expsAndTopdecs1right), rest671)
-end
-| ( 1, ( ( _, ( MlyValue.expsAndTopdecs expsAndTopdecs1, _,
-expsAndTopdecs1right)) :: _ :: ( _, ( MlyValue.exp exp1, exp1left, _))
- :: rest671)) => let val result = MlyValue.expsAndTopdecs (fn _ =>
- let val (exp as exp1) = exp1 ()
- val (expsAndTopdecs as expsAndTopdecs1) = expsAndTopdecs1 ()
- in ([Topdec.fromExp exp] :: expsAndTopdecs)
-end)
- in ( LrTable.NT 49, ( result, exp1left, expsAndTopdecs1right),
-rest671)
-end
-| ( 2, ( ( _, ( MlyValue.topdecs topdecs1, topdecs1left,
-topdecs1right)) :: rest671)) => let val result =
-MlyValue.expsAndTopdecs (fn _ => let val (topdecs as topdecs1) =
-topdecs1 ()
- in (topdecs)
-end)
- in ( LrTable.NT 49, ( result, topdecs1left, topdecs1right), rest671)
-
-end
-| ( 3, ( rest671)) => let val result = MlyValue.topdecs (fn _ => ([]
-))
- in ( LrTable.NT 135, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 4, ( ( _, ( MlyValue.topdecs topdecs1, _, topdecs1right)) :: ( _,
- ( MlyValue.topdec topdec1, topdec1left, _)) :: rest671)) => let val
-result = MlyValue.topdecs (fn _ => let val (topdec as topdec1) =
-topdec1 ()
- val (topdecs as topdecs1) = topdecs1 ()
- in (consTopdec (topdec, topdecs))
-end)
- in ( LrTable.NT 135, ( result, topdec1left, topdecs1right), rest671)
-
-end
-| ( 5, ( ( _, ( MlyValue.expsAndTopdecs expsAndTopdecs1, _,
-expsAndTopdecs1right)) :: ( _, ( _, SEMICOLON1left, _)) :: rest671))
- => let val result = MlyValue.topdecs (fn _ => let val (
-expsAndTopdecs as expsAndTopdecs1) = expsAndTopdecs1 ()
- in ([] :: expsAndTopdecs)
-end)
- in ( LrTable.NT 135, ( result, SEMICOLON1left, expsAndTopdecs1right),
- rest671)
-end
-| ( 6, ( ( _, ( MlyValue.topdecnode topdecnode1, (topdecnodeleft as
-topdecnode1left), (topdecnoderight as topdecnode1right))) :: rest671))
- => let val result = MlyValue.topdec (fn _ => let val (topdecnode
- as topdecnode1) = topdecnode1 ()
- in (
-Topdec.makeRegion' (topdecnode,
- topdecnodeleft,
- topdecnoderight)
-)
-end)
- in ( LrTable.NT 133, ( result, topdecnode1left, topdecnode1right),
-rest671)
-end
-| ( 7, ( ( _, ( MlyValue.strdec strdec1, strdec1left, strdec1right))
- :: rest671)) => let val result = MlyValue.topdecnode (fn _ => let
- val (strdec as strdec1) = strdec1 ()
- in (Topdec.Strdec strdec)
-end)
- in ( LrTable.NT 134, ( result, strdec1left, strdec1right), rest671)
-
-end
-| ( 8, ( ( _, ( MlyValue.sigbinds sigbinds1, _, sigbinds1right)) :: (
- _, ( _, SIGNATURE1left, _)) :: rest671)) => let val result =
-MlyValue.topdecnode (fn _ => let val (sigbinds as sigbinds1) =
-sigbinds1 ()
- in (
-let
- val sigbinds = Vector.fromList sigbinds
- val d = Topdec.Signature sigbinds
- in
- d
- end
-)
-end)
- in ( LrTable.NT 134, ( result, SIGNATURE1left, sigbinds1right),
-rest671)
-end
-| ( 9, ( ( _, ( MlyValue.funbinds funbinds1, _, funbinds1right)) :: (
- _, ( _, FUNCTOR1left, _)) :: rest671)) => let val result =
-MlyValue.topdecnode (fn _ => let val (funbinds as funbinds1) =
-funbinds1 ()
- in (Topdec.Functor (Vector.fromList funbinds))
-end)
- in ( LrTable.NT 134, ( result, FUNCTOR1left, funbinds1right), rest671
-)
-end
-| ( 10, ( ( _, ( MlyValue.strdecsnode strdecsnode1, (strdecsnodeleft
- as strdecsnode1left), (strdecsnoderight as strdecsnode1right))) ::
-rest671)) => let val result = MlyValue.strdecs (fn _ => let val (
-strdecsnode as strdecsnode1) = strdecsnode1 ()
- in (
-Strdec.makeRegion'
- (strdecsnode, strdecsnodeleft, strdecsnoderight)
-)
-end)
- in ( LrTable.NT 118, ( result, strdecsnode1left, strdecsnode1right),
-rest671)
-end
-| ( 11, ( rest671)) => let val result = MlyValue.strdecsnode (fn _
- => (Strdec.Seq []))
- in ( LrTable.NT 119, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 12, ( ( _, ( MlyValue.strdecs strdecs1, _, strdecs1right)) :: ( _
-, ( _, SEMICOLON1left, _)) :: rest671)) => let val result =
-MlyValue.strdecsnode (fn _ => let val (strdecs as strdecs1) =
-strdecs1 ()
- in (Strdec.Seq [strdecs])
-end)
- in ( LrTable.NT 119, ( result, SEMICOLON1left, strdecs1right),
-rest671)
-end
-| ( 13, ( ( _, ( MlyValue.strdecs strdecs1, _, strdecs1right)) :: ( _
-, ( MlyValue.strdec strdec1, strdec1left, _)) :: rest671)) => let val
- result = MlyValue.strdecsnode (fn _ => let val (strdec as strdec1) =
- strdec1 ()
- val (strdecs as strdecs1) = strdecs1 ()
- in (Strdec.Seq [strdec, strdecs])
-end)
- in ( LrTable.NT 119, ( result, strdec1left, strdecs1right), rest671)
-
-end
-| ( 14, ( ( _, ( MlyValue.strdecnode strdecnode1, (strdecnodeleft as
-strdecnode1left), (strdecnoderight as strdecnode1right))) :: rest671))
- => let val result = MlyValue.strdec (fn _ => let val (strdecnode
- as strdecnode1) = strdecnode1 ()
- in (
-Strdec.makeRegion' (strdecnode,
- strdecnodeleft, strdecnoderight)
-)
-end)
- in ( LrTable.NT 116, ( result, strdecnode1left, strdecnode1right),
-rest671)
-end
-| ( 15, ( ( _, ( MlyValue.strbinds strbinds1, _, strbinds1right)) ::
-( _, ( _, STRUCTURE1left, _)) :: rest671)) => let val result =
-MlyValue.strdecnode (fn _ => let val (strbinds as strbinds1) =
-strbinds1 ()
- in (
-let
- val strbinds = Vector.fromList strbinds
- val d = Strdec.Structure strbinds
-
-
-
- in
- d
- end
-)
-end)
- in ( LrTable.NT 117, ( result, STRUCTURE1left, strbinds1right),
-rest671)
-end
-| ( 16, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.strdecs
-strdecs2, _, _)) :: _ :: ( _, ( MlyValue.strdecs strdecs1, _, _)) :: (
- _, ( _, LOCAL1left, _)) :: rest671)) => let val result =
-MlyValue.strdecnode (fn _ => let val strdecs1 = strdecs1 ()
- val strdecs2 = strdecs2 ()
- in (Strdec.Local (strdecs1, strdecs2))
-end)
- in ( LrTable.NT 117, ( result, LOCAL1left, END1right), rest671)
-end
-| ( 17, ( ( _, ( MlyValue.decnolocal decnolocal1, (decnolocalleft as
-decnolocal1left), (decnolocalright as decnolocal1right))) :: rest671))
- => let val result = MlyValue.strdecnode (fn _ => let val (
-decnolocal as decnolocal1) = decnolocal1 ()
- in (
-Strdec.Core (Dec.makeRegion' (decnolocal,
- decnolocalleft, decnolocalright))
-)
-end)
- in ( LrTable.NT 117, ( result, decnolocal1left, decnolocal1right),
-rest671)
-end
-| ( 18, ( ( _, ( MlyValue.strbinds' strbinds'1, _, strbinds'1right))
- :: _ :: ( _, ( MlyValue.sigconst sigconst1, _, _)) :: ( _, (
-MlyValue.strid strid1, strid1left, _)) :: rest671)) => let val result
- = MlyValue.strbinds (fn _ => let val (strid as strid1) = strid1 ()
- val (sigconst as sigconst1) = sigconst1 ()
- val (strbinds' as strbinds'1) = strbinds'1 ()
- in (
-let val (def,strbinds) = strbinds'
- in {name = strid, def = def, constraint = sigconst}
- :: strbinds
- end
-)
-end)
- in ( LrTable.NT 111, ( result, strid1left, strbinds'1right), rest671)
-
-end
-| ( 19, ( ( _, ( MlyValue.strbinds'1 strbinds'11, _, strbinds'11right
-)) :: ( _, ( MlyValue.strexp1 strexp11, strexp11left, _)) :: rest671))
- => let val result = MlyValue.strbinds' (fn _ => let val (strexp1
- as strexp11) = strexp11 ()
- val (strbinds'1 as strbinds'11) = strbinds'11 ()
- in (augment1 (strexp1, strbinds'1))
-end)
- in ( LrTable.NT 112, ( result, strexp11left, strbinds'11right),
-rest671)
-end
-| ( 20, ( ( _, ( MlyValue.strbinds'2 strbinds'21, _, strbinds'21right
-)) :: ( _, ( MlyValue.strexp2 strexp21, strexp21left, _)) :: rest671))
- => let val result = MlyValue.strbinds' (fn _ => let val (strexp2
- as strexp21) = strexp21 ()
- val (strbinds'2 as strbinds'21) = strbinds'21 ()
- in ((strexp2,strbinds'2))
-end)
- in ( LrTable.NT 112, ( result, strexp21left, strbinds'21right),
-rest671)
-end
-| ( 21, ( ( _, ( MlyValue.strbinds'2 strbinds'21, (strbinds'2left as
-strbinds'21left), strbinds'21right)) :: rest671)) => let val result =
- MlyValue.strbinds'1 (fn _ => let val (strbinds'2 as strbinds'21) =
-strbinds'21 ()
- in (([], strbinds'2left, strbinds'2))
-end)
- in ( LrTable.NT 113, ( result, strbinds'21left, strbinds'21right),
-rest671)
-end
-| ( 22, ( ( _, ( MlyValue.strbinds'1' strbinds'1'1, _,
-strbinds'1'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, WHERE1left, _)) :: rest671)) => let val result =
-MlyValue.strbinds'1 (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (strbinds'1' as strbinds'1'1) = strbinds'1'1 ()
- in (cons1 (wherespec,strbinds'1'))
-end)
- in ( LrTable.NT 113, ( result, WHERE1left, strbinds'1'1right),
-rest671)
-end
-| ( 23, ( ( _, ( MlyValue.strbinds'1 strbinds'11, strbinds'11left,
-strbinds'11right)) :: rest671)) => let val result =
-MlyValue.strbinds'1' (fn _ => let val (strbinds'1 as strbinds'11) =
-strbinds'11 ()
- in (strbinds'1)
-end)
- in ( LrTable.NT 114, ( result, strbinds'11left, strbinds'11right),
-rest671)
-end
-| ( 24, ( ( _, ( MlyValue.strbinds'1' strbinds'1'1, _,
-strbinds'1'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.strbinds'1' (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (strbinds'1' as strbinds'1'1) = strbinds'1'1 ()
- in (cons1 (wherespec,strbinds'1'))
-end)
- in ( LrTable.NT 114, ( result, AND1left, strbinds'1'1right), rest671)
-
-end
-| ( 25, ( rest671)) => let val result = MlyValue.strbinds'2 (fn _ =>
- ([]))
- in ( LrTable.NT 115, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 26, ( ( _, ( MlyValue.strbinds strbinds1, _, strbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.strbinds'2 (fn _ => let val (strbinds as strbinds1) =
-strbinds1 ()
- in (strbinds)
-end)
- in ( LrTable.NT 115, ( result, AND1left, strbinds1right), rest671)
-
-end
-| ( 27, ( ( _, ( MlyValue.strexpnode strexpnode1, (strexpnodeleft as
-strexpnode1left), (strexpnoderight as strexpnode1right))) :: rest671))
- => let val result = MlyValue.strexp (fn _ => let val (strexpnode
- as strexpnode1) = strexpnode1 ()
- in (
-Strexp.makeRegion' (strexpnode,
- strexpnodeleft, strexpnoderight)
-)
-end)
- in ( LrTable.NT 123, ( result, strexpnode1left, strexpnode1right),
-rest671)
-end
-| ( 28, ( ( _, ( MlyValue.strexp1 strexp11, strexp11left,
-strexp11right)) :: rest671)) => let val result = MlyValue.strexpnode
- (fn _ => let val (strexp1 as strexp11) = strexp11 ()
- in (
-let
- val (strexp, sigconst, sigexp) = strexp1
- in
- Strexp.Constrained (strexp, sigconst sigexp)
- end
-)
-end)
- in ( LrTable.NT 127, ( result, strexp11left, strexp11right), rest671)
-
-end
-| ( 29, ( ( _, ( MlyValue.wherespecs wherespecs1, _, (wherespecsright
- as wherespecs1right))) :: ( _, ( MlyValue.strexp1 strexp11,
-strexp11left, _)) :: rest671)) => let val result =
-MlyValue.strexpnode (fn _ => let val (strexp1 as strexp11) = strexp11
- ()
- val (wherespecs as wherespecs1) = wherespecs1 ()
- in (
-let
- val (strexp,sigconst,sigexp) = strexp1
- in
- Strexp.Constrained
- (strexp,
- sigconst (Sigexp.wheree
- (sigexp, wherespecs,
- Region.extendRight (Sigexp.region sigexp,
- wherespecsright))))
- end
-)
-end)
- in ( LrTable.NT 127, ( result, strexp11left, wherespecs1right),
-rest671)
-end
-| ( 30, ( ( _, ( MlyValue.strexp2node strexp2node1, strexp2node1left,
- strexp2node1right)) :: rest671)) => let val result =
-MlyValue.strexpnode (fn _ => let val (strexp2node as strexp2node1) =
-strexp2node1 ()
- in (strexp2node)
-end)
- in ( LrTable.NT 127, ( result, strexp2node1left, strexp2node1right),
-rest671)
-end
-| ( 31, ( ( _, ( MlyValue.sigexp' sigexp'1, _, sigexp'1right)) :: _
- :: ( _, ( MlyValue.strexp strexp1, strexp1left, _)) :: rest671)) =>
- let val result = MlyValue.strexp1 (fn _ => let val (strexp as
-strexp1) = strexp1 ()
- val (sigexp' as sigexp'1) = sigexp'1 ()
- in ((strexp,SigConst.Transparent,sigexp'))
-end)
- in ( LrTable.NT 124, ( result, strexp1left, sigexp'1right), rest671)
-
-end
-| ( 32, ( ( _, ( MlyValue.sigexp' sigexp'1, _, sigexp'1right)) :: _
- :: ( _, ( MlyValue.strexp strexp1, strexp1left, _)) :: rest671)) =>
- let val result = MlyValue.strexp1 (fn _ => let val (strexp as
-strexp1) = strexp1 ()
- val (sigexp' as sigexp'1) = sigexp'1 ()
- in ((strexp,SigConst.Opaque,sigexp'))
-end)
- in ( LrTable.NT 124, ( result, strexp1left, sigexp'1right), rest671)
-
-end
-| ( 33, ( ( _, ( MlyValue.strexp2node strexp2node1, (strexp2nodeleft
- as strexp2node1left), (strexp2noderight as strexp2node1right))) ::
-rest671)) => let val result = MlyValue.strexp2 (fn _ => let val (
-strexp2node as strexp2node1) = strexp2node1 ()
- in (
-Strexp.makeRegion'
- (strexp2node, strexp2nodeleft, strexp2noderight)
-)
-end)
- in ( LrTable.NT 125, ( result, strexp2node1left, strexp2node1right),
-rest671)
-end
-| ( 34, ( ( _, ( MlyValue.longid longid1, longid1left, longid1right))
- :: rest671)) => let val result = MlyValue.strexp2node (fn _ => let
- val (longid as longid1) = longid1 ()
- in (Strexp.Var (Longstrid.fromSymbols longid))
-end)
- in ( LrTable.NT 126, ( result, longid1left, longid1right), rest671)
-
-end
-| ( 35, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.strdecs
-strdecs1, _, _)) :: ( _, ( _, STRUCT1left, _)) :: rest671)) => let
- val result = MlyValue.strexp2node (fn _ => let val (strdecs as
-strdecs1) = strdecs1 ()
- in (Strexp.Struct strdecs)
-end)
- in ( LrTable.NT 126, ( result, STRUCT1left, END1right), rest671)
-end
-| ( 36, ( ( _, ( MlyValue.arg_fct arg_fct1, _, arg_fct1right)) :: ( _
-, ( MlyValue.longid longid1, longid1left, _)) :: rest671)) => let val
- result = MlyValue.strexp2node (fn _ => let val (longid as longid1) =
- longid1 ()
- val (arg_fct as arg_fct1) = arg_fct1 ()
- in (
-Strexp.App (Fctid.fromSymbol (ensureNonqualified longid), arg_fct))
-
-end)
- in ( LrTable.NT 126, ( result, longid1left, arg_fct1right), rest671)
-
-end
-| ( 37, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.strexp strexp1,
- _, _)) :: _ :: ( _, ( MlyValue.strdecs strdecs1, _, _)) :: ( _, ( _,
-LET1left, _)) :: rest671)) => let val result = MlyValue.strexp2node
- (fn _ => let val (strdecs as strdecs1) = strdecs1 ()
- val (strexp as strexp1) = strexp1 ()
- in (Strexp.Let (strdecs,strexp))
-end)
- in ( LrTable.NT 126, ( result, LET1left, END1right), rest671)
-end
-| ( 38, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.strexp
-strexp1, _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let val
- result = MlyValue.arg_fct (fn _ => let val (strexp as strexp1) =
-strexp1 ()
- in (strexp)
-end)
- in ( LrTable.NT 8, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 39, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.strdecs
-strdecs1, strdecsleft, strdecsright)) :: ( _, ( _, LPAREN1left, _)) ::
- rest671)) => let val result = MlyValue.arg_fct (fn _ => let val (
-strdecs as strdecs1) = strdecs1 ()
- in (
-Strexp.makeRegion'
- (Strexp.Struct strdecs,
- strdecsleft, strdecsright)
-)
-end)
- in ( LrTable.NT 8, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 40, ( ( _, ( MlyValue.sigexp' sigexp'1, sigexp'1left,
-sigexp'1right)) :: rest671)) => let val result = MlyValue.sigexp (fn
- _ => let val (sigexp' as sigexp'1) = sigexp'1 ()
- in (sigexp')
-end)
- in ( LrTable.NT 102, ( result, sigexp'1left, sigexp'1right), rest671)
-
-end
-| ( 41, ( ( _, ( MlyValue.wherespecs wherespecs1, _, (wherespecsright
- as wherespecs1right))) :: ( _, ( MlyValue.sigexp' sigexp'1, (
-sigexp'left as sigexp'1left), _)) :: rest671)) => let val result =
-MlyValue.sigexp (fn _ => let val (sigexp' as sigexp'1) = sigexp'1 ()
- val (wherespecs as wherespecs1) = wherespecs1 ()
- in (
-Sigexp.wheree (sigexp', wherespecs, reg (sigexp'left, wherespecsright))
-)
-end)
- in ( LrTable.NT 102, ( result, sigexp'1left, wherespecs1right),
-rest671)
-end
-| ( 42, ( ( _, ( MlyValue.wherespecs' wherespecs'1, wherespecs'1left,
- wherespecs'1right)) :: rest671)) => let val result =
-MlyValue.wherespecs (fn _ => let val (wherespecs' as wherespecs'1) =
-wherespecs'1 ()
- in (Vector.fromList wherespecs')
-end)
- in ( LrTable.NT 164, ( result, wherespecs'1left, wherespecs'1right),
-rest671)
-end
-| ( 43, ( ( _, ( MlyValue.wherespec wherespec1, _, wherespec1right))
- :: ( _, ( _, WHERE1left, _)) :: rest671)) => let val result =
-MlyValue.wherespecs' (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- in ([wherespec])
-end)
- in ( LrTable.NT 165, ( result, WHERE1left, wherespec1right), rest671)
-
-end
-| ( 44, ( ( _, ( MlyValue.wherespecs' wherespecs'1, _,
-wherespecs'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, WHERE1left, _)) :: rest671)) => let val result =
-MlyValue.wherespecs' (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (wherespecs' as wherespecs'1) = wherespecs'1 ()
- in (wherespec :: wherespecs')
-end)
- in ( LrTable.NT 165, ( result, WHERE1left, wherespecs'1right),
-rest671)
-end
-| ( 45, ( ( _, ( MlyValue.andspecs andspecs1, _, andspecs1right)) ::
-( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _, WHERE1left,
- _)) :: rest671)) => let val result = MlyValue.wherespecs' (fn _ =>
- let val (wherespec as wherespec1) = wherespec1 ()
- val (andspecs as andspecs1) = andspecs1 ()
- in (wherespec :: andspecs)
-end)
- in ( LrTable.NT 165, ( result, WHERE1left, andspecs1right), rest671)
-
-end
-| ( 46, ( ( _, ( MlyValue.wherespec wherespec1, _, wherespec1right))
- :: ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.andspecs (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- in ([wherespec])
-end)
- in ( LrTable.NT 1, ( result, AND1left, wherespec1right), rest671)
-end
-| ( 47, ( ( _, ( MlyValue.andspecs andspecs1, _, andspecs1right)) ::
-( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _, AND1left, _)
-) :: rest671)) => let val result = MlyValue.andspecs (fn _ => let
- val (wherespec as wherespec1) = wherespec1 ()
- val (andspecs as andspecs1) = andspecs1 ()
- in (wherespec :: andspecs)
-end)
- in ( LrTable.NT 1, ( result, AND1left, andspecs1right), rest671)
-end
-| ( 48, ( ( _, ( MlyValue.wherespecs' wherespecs'1, _,
-wherespecs'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.andspecs (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (wherespecs' as wherespecs'1) = wherespecs'1 ()
- in (wherespec :: wherespecs')
-end)
- in ( LrTable.NT 1, ( result, AND1left, wherespecs'1right), rest671)
-
-end
-| ( 49, ( ( _, ( MlyValue.sigbinds' sigbinds'1, _, sigbinds'1right))
- :: ( _, ( MlyValue.sigexp' sigexp'1, _, _)) :: _ :: ( _, (
-MlyValue.sigid sigid1, sigid1left, _)) :: rest671)) => let val result
- = MlyValue.sigbinds (fn _ => let val (sigid as sigid1) = sigid1 ()
- val (sigexp' as sigexp'1) = sigexp'1 ()
- val (sigbinds' as sigbinds'1) = sigbinds'1 ()
- in (augment (sigid, sigexp', sigbinds'))
-end)
- in ( LrTable.NT 98, ( result, sigid1left, sigbinds'1right), rest671)
-
-end
-| ( 50, ( ( _, ( MlyValue.sigexp'node sigexp'node1, (sigexp'nodeleft
- as sigexp'node1left), (sigexp'noderight as sigexp'node1right))) ::
-rest671)) => let val result = MlyValue.sigexp' (fn _ => let val (
-sigexp'node as sigexp'node1) = sigexp'node1 ()
- in (
-Sigexp.makeRegion' (sigexp'node,
- sigexp'nodeleft,
- sigexp'noderight)
-)
-end)
- in ( LrTable.NT 103, ( result, sigexp'node1left, sigexp'node1right),
-rest671)
-end
-| ( 51, ( ( _, ( MlyValue.sigid sigid1, sigid1left, sigid1right)) ::
-rest671)) => let val result = MlyValue.sigexp'node (fn _ => let val
- (sigid as sigid1) = sigid1 ()
- in (Sigexp.Var sigid)
-end)
- in ( LrTable.NT 104, ( result, sigid1left, sigid1right), rest671)
-end
-| ( 52, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.specs specs1, _
-, _)) :: ( _, ( _, SIG1left, _)) :: rest671)) => let val result =
-MlyValue.sigexp'node (fn _ => let val (specs as specs1) = specs1 ()
- in (Sigexp.Spec specs)
-end)
- in ( LrTable.NT 104, ( result, SIG1left, END1right), rest671)
-end
-| ( 53, ( rest671)) => let val result = MlyValue.sigbinds' (fn _ =>
- (([], defaultPos, [])))
- in ( LrTable.NT 99, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 54, ( ( _, ( MlyValue.sigbinds sigbinds1, _, sigbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.sigbinds' (fn _ => let val (sigbinds as sigbinds1) =
-sigbinds1 ()
- in (([], defaultPos, sigbinds))
-end)
- in ( LrTable.NT 99, ( result, AND1left, sigbinds1right), rest671)
-end
-| ( 55, ( ( _, ( MlyValue.sigbinds'' sigbinds''1, _, sigbinds''1right
-)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _,
-WHERE1left, _)) :: rest671)) => let val result = MlyValue.sigbinds'
- (fn _ => let val (wherespec as wherespec1) = wherespec1 ()
- val (sigbinds'' as sigbinds''1) = sigbinds''1 ()
- in (cons1 (wherespec,sigbinds''))
-end)
- in ( LrTable.NT 99, ( result, WHERE1left, sigbinds''1right), rest671)
-
-end
-| ( 56, ( ( _, ( MlyValue.sigbinds' sigbinds'1, sigbinds'1left,
-sigbinds'1right)) :: rest671)) => let val result =
-MlyValue.sigbinds'' (fn _ => let val (sigbinds' as sigbinds'1) =
-sigbinds'1 ()
- in (sigbinds')
-end)
- in ( LrTable.NT 100, ( result, sigbinds'1left, sigbinds'1right),
-rest671)
-end
-| ( 57, ( ( _, ( MlyValue.sigbinds'' sigbinds''1, _, sigbinds''1right
-)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _,
-AND1left, _)) :: rest671)) => let val result = MlyValue.sigbinds''
- (fn _ => let val (wherespec as wherespec1) = wherespec1 ()
- val (sigbinds'' as sigbinds''1) = sigbinds''1 ()
- in (cons1 (wherespec,sigbinds''))
-end)
- in ( LrTable.NT 100, ( result, AND1left, sigbinds''1right), rest671)
-
-end
-| ( 58, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.longtycon longtycon1, _, _)) :: ( _, ( MlyValue.tyvars
-tyvars1, _, _)) :: ( _, ( _, TYPE1left, _)) :: rest671)) => let val
-result = MlyValue.wherespec (fn _ => let val (tyvars as tyvars1) =
-tyvars1 ()
- val (longtycon as longtycon1) = longtycon1 ()
- val (ty as ty1) = ty1 ()
- in (
-{tyvars = tyvars,
- longtycon = longtycon,
- ty = ty}
-)
-end)
- in ( LrTable.NT 163, ( result, TYPE1left, ty1right), rest671)
-end
-| ( 59, ( rest671)) => let val result = MlyValue.sigconst (fn _ => (
-SigConst.None))
- in ( LrTable.NT 101, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 60, ( ( _, ( MlyValue.sigexp sigexp1, _, sigexp1right)) :: ( _, (
- _, COLON1left, _)) :: rest671)) => let val result =
-MlyValue.sigconst (fn _ => let val (sigexp as sigexp1) = sigexp1 ()
- in (SigConst.Transparent sigexp)
-end)
- in ( LrTable.NT 101, ( result, COLON1left, sigexp1right), rest671)
-
-end
-| ( 61, ( ( _, ( MlyValue.sigexp sigexp1, _, sigexp1right)) :: ( _, (
- _, COLONGT1left, _)) :: rest671)) => let val result =
-MlyValue.sigconst (fn _ => let val (sigexp as sigexp1) = sigexp1 ()
- in (SigConst.Opaque sigexp)
-end)
- in ( LrTable.NT 101, ( result, COLONGT1left, sigexp1right), rest671)
-
-end
-| ( 62, ( rest671)) => let val result = MlyValue.specs (fn _ => (
-Spec.makeRegion (Spec.Empty, Region.bogus)))
- in ( LrTable.NT 110, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 63, ( ( _, ( MlyValue.specs specs1, _, specs1right)) :: ( _, ( _,
- SEMICOLON1left, _)) :: rest671)) => let val result = MlyValue.specs
- (fn _ => let val (specs as specs1) = specs1 ()
- in (specs)
-end)
- in ( LrTable.NT 110, ( result, SEMICOLON1left, specs1right), rest671)
-
-end
-| ( 64, ( ( _, ( MlyValue.specs specs1, _, specs1right)) :: ( _, (
-MlyValue.spec spec1, spec1left, _)) :: rest671)) => let val result =
-MlyValue.specs (fn _ => let val (spec as spec1) = spec1 ()
- val (specs as specs1) = specs1 ()
- in (Spec.seq (spec, specs))
-end)
- in ( LrTable.NT 110, ( result, spec1left, specs1right), rest671)
-end
-| ( 65, ( ( _, ( MlyValue.specnode specnode1, (specnodeleft as
-specnode1left), (specnoderight as specnode1right))) :: rest671)) =>
- let val result = MlyValue.spec (fn _ => let val (specnode as
-specnode1) = specnode1 ()
- in (Spec.makeRegion' (specnode, specnodeleft, specnoderight))
-end)
- in ( LrTable.NT 108, ( result, specnode1left, specnode1right),
-rest671)
-end
-| ( 66, ( ( _, ( MlyValue.valdescs valdescs1, _, valdescs1right)) ::
-( _, ( _, VAL1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (valdescs as valdescs1) =
-valdescs1 ()
- in (Spec.Val (Vector.fromList valdescs))
-end)
- in ( LrTable.NT 109, ( result, VAL1left, valdescs1right), rest671)
-
-end
-| ( 67, ( ( _, ( MlyValue.typdescs typdescs1, _, typdescs1right)) ::
-( _, ( _, TYPE1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (typdescs as typdescs1) =
-typdescs1 ()
- in (Spec.Type (Vector.fromList typdescs))
-end)
- in ( LrTable.NT 109, ( result, TYPE1left, typdescs1right), rest671)
-
-end
-| ( 68, ( ( _, ( MlyValue.typBind typBind1, _, typBind1right)) :: ( _
-, ( _, TYPE1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (typBind as typBind1) = typBind1
- ()
- in (Spec.TypeDefs typBind)
-end)
- in ( LrTable.NT 109, ( result, TYPE1left, typBind1right), rest671)
-
-end
-| ( 69, ( ( _, ( MlyValue.typdescs typdescs1, _, typdescs1right)) ::
-( _, ( _, EQTYPE1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (typdescs as typdescs1) =
-typdescs1 ()
- in (Spec.Eqtype (Vector.fromList typdescs))
-end)
- in ( LrTable.NT 109, ( result, EQTYPE1left, typdescs1right), rest671)
-
-end
-| ( 70, ( ( _, ( MlyValue.datatypeRhsNoWithtype
-datatypeRhsNoWithtype1, _, datatypeRhsNoWithtype1right)) :: ( _, ( _,
-DATATYPE1left, _)) :: rest671)) => let val result = MlyValue.specnode
- (fn _ => let val (datatypeRhsNoWithtype as datatypeRhsNoWithtype1) =
- datatypeRhsNoWithtype1 ()
- in (Spec.Datatype datatypeRhsNoWithtype)
-end)
- in ( LrTable.NT 109, ( result, DATATYPE1left,
-datatypeRhsNoWithtype1right), rest671)
-end
-| ( 71, ( ( _, ( MlyValue.exndescs exndescs1, _, exndescs1right)) ::
-( _, ( _, EXCEPTION1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (exndescs as exndescs1) =
-exndescs1 ()
- in (Spec.Exception (Vector.fromList exndescs))
-end)
- in ( LrTable.NT 109, ( result, EXCEPTION1left, exndescs1right),
-rest671)
-end
-| ( 72, ( ( _, ( MlyValue.strdescs strdescs1, _, strdescs1right)) ::
-( _, ( _, STRUCTURE1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (strdescs as strdescs1) =
-strdescs1 ()
- in (Spec.Structure (Vector.fromList strdescs))
-end)
- in ( LrTable.NT 109, ( result, STRUCTURE1left, strdescs1right),
-rest671)
-end
-| ( 73, ( ( _, ( MlyValue.sigexp sigexp1, _, sigexp1right)) :: ( _, (
- _, INCLUDE1left, _)) :: rest671)) => let val result =
-MlyValue.specnode (fn _ => let val (sigexp as sigexp1) = sigexp1 ()
- in (Spec.IncludeSigexp sigexp)
-end)
- in ( LrTable.NT 109, ( result, INCLUDE1left, sigexp1right), rest671)
-
-end
-| ( 74, ( ( _, ( MlyValue.sigids sigids1, _, sigids1right)) :: ( _, (
- MlyValue.sigid sigid1, _, _)) :: ( _, ( _, INCLUDE1left, _)) ::
-rest671)) => let val result = MlyValue.specnode (fn _ => let val (
-sigid as sigid1) = sigid1 ()
- val (sigids as sigids1) = sigids1 ()
- in (Spec.IncludeSigids (Vector.fromList (sigid :: sigids)) )
-end)
- in ( LrTable.NT 109, ( result, INCLUDE1left, sigids1right), rest671)
-
-end
-| ( 75, ( ( _, ( MlyValue.sharespec sharespec1, (sharespecleft as
-sharespec1left), (sharespecright as sharespec1right))) :: rest671)) =>
- let val result = MlyValue.specnode (fn _ => let val (sharespec as
-sharespec1) = sharespec1 ()
- in (
-Spec.Sharing {spec = Spec.makeRegion' (Spec.Empty,
- sharespecleft,
- sharespecright),
- equations = (Vector.new1
- (Equation.makeRegion' (sharespec,
- sharespecleft,
- sharespecright)))}
-)
-end)
- in ( LrTable.NT 109, ( result, sharespec1left, sharespec1right),
-rest671)
-end
-| ( 76, ( ( _, ( MlyValue.longtyconeqns longtyconeqns1, _,
-longtyconeqns1right)) :: _ :: ( _, ( _, SHARING1left, _)) :: rest671))
- => let val result = MlyValue.sharespec (fn _ => let val (
-longtyconeqns as longtyconeqns1) = longtyconeqns1 ()
- in (Equation.Type longtyconeqns)
-end)
- in ( LrTable.NT 97, ( result, SHARING1left, longtyconeqns1right),
-rest671)
-end
-| ( 77, ( ( _, ( MlyValue.longstrideqns longstrideqns1, _,
-longstrideqns1right)) :: ( _, ( _, SHARING1left, _)) :: rest671)) =>
- let val result = MlyValue.sharespec (fn _ => let val (longstrideqns
- as longstrideqns1) = longstrideqns1 ()
- in (Equation.Structure longstrideqns)
-end)
- in ( LrTable.NT 97, ( result, SHARING1left, longstrideqns1right),
-rest671)
-end
-| ( 78, ( ( _, ( MlyValue.longstrid longstrid2, _, longstrid2right))
- :: _ :: ( _, ( MlyValue.longstrid longstrid1, longstrid1left, _)) ::
-rest671)) => let val result = MlyValue.longstrideqns (fn _ => let
- val longstrid1 = longstrid1 ()
- val longstrid2 = longstrid2 ()
- in ([longstrid1,longstrid2])
-end)
- in ( LrTable.NT 69, ( result, longstrid1left, longstrid2right),
-rest671)
-end
-| ( 79, ( ( _, ( MlyValue.longstrideqns longstrideqns1, _,
-longstrideqns1right)) :: _ :: ( _, ( MlyValue.longstrid longstrid1,
-longstrid1left, _)) :: rest671)) => let val result =
-MlyValue.longstrideqns (fn _ => let val (longstrid as longstrid1) =
-longstrid1 ()
- val (longstrideqns as longstrideqns1) = longstrideqns1 ()
- in (longstrid :: longstrideqns)
-end)
- in ( LrTable.NT 69, ( result, longstrid1left, longstrideqns1right),
-rest671)
-end
-| ( 80, ( ( _, ( MlyValue.longtycon longtycon2, _, longtycon2right))
- :: _ :: ( _, ( MlyValue.longtycon longtycon1, longtycon1left, _)) ::
-rest671)) => let val result = MlyValue.longtyconeqns (fn _ => let
- val longtycon1 = longtycon1 ()
- val longtycon2 = longtycon2 ()
- in ([longtycon1,longtycon2])
-end)
- in ( LrTable.NT 72, ( result, longtycon1left, longtycon2right),
-rest671)
-end
-| ( 81, ( ( _, ( MlyValue.longtyconeqns longtyconeqns1, _,
-longtyconeqns1right)) :: _ :: ( _, ( MlyValue.longtycon longtycon1,
-longtycon1left, _)) :: rest671)) => let val result =
-MlyValue.longtyconeqns (fn _ => let val (longtycon as longtycon1) =
-longtycon1 ()
- val (longtyconeqns as longtyconeqns1) = longtyconeqns1 ()
- in (longtycon :: longtyconeqns)
-end)
- in ( LrTable.NT 72, ( result, longtycon1left, longtyconeqns1right),
-rest671)
-end
-| ( 82, ( ( _, ( MlyValue.strdescs' strdescs'1, _, strdescs'1right))
- :: ( _, ( MlyValue.sigexp' sigexp'1, _, _)) :: _ :: ( _, (
-MlyValue.strid strid1, strid1left, _)) :: rest671)) => let val result
- = MlyValue.strdescs (fn _ => let val (strid as strid1) = strid1 ()
- val (sigexp' as sigexp'1) = sigexp'1 ()
- val (strdescs' as strdescs'1) = strdescs'1 ()
- in (augment (strid, sigexp', strdescs'))
-end)
- in ( LrTable.NT 120, ( result, strid1left, strdescs'1right), rest671)
-
-end
-| ( 83, ( rest671)) => let val result = MlyValue.strdescs' (fn _ =>
- (([], defaultPos, [])))
- in ( LrTable.NT 121, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 84, ( ( _, ( MlyValue.strdescs strdescs1, _, strdescs1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.strdescs' (fn _ => let val (strdescs as strdescs1) =
-strdescs1 ()
- in (([], defaultPos, strdescs))
-end)
- in ( LrTable.NT 121, ( result, AND1left, strdescs1right), rest671)
-
-end
-| ( 85, ( ( _, ( MlyValue.strdescs'' strdescs''1, _, strdescs''1right
-)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _,
-WHERE1left, _)) :: rest671)) => let val result = MlyValue.strdescs'
- (fn _ => let val (wherespec as wherespec1) = wherespec1 ()
- val (strdescs'' as strdescs''1) = strdescs''1 ()
- in (cons1 (wherespec, strdescs''))
-end)
- in ( LrTable.NT 121, ( result, WHERE1left, strdescs''1right), rest671
-)
-end
-| ( 86, ( ( _, ( MlyValue.strdescs' strdescs'1, strdescs'1left,
-strdescs'1right)) :: rest671)) => let val result =
-MlyValue.strdescs'' (fn _ => let val (strdescs' as strdescs'1) =
-strdescs'1 ()
- in (strdescs')
-end)
- in ( LrTable.NT 122, ( result, strdescs'1left, strdescs'1right),
-rest671)
-end
-| ( 87, ( ( _, ( MlyValue.strdescs'' strdescs''1, _, strdescs''1right
-)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) :: ( _, ( _,
-AND1left, _)) :: rest671)) => let val result = MlyValue.strdescs''
- (fn _ => let val (wherespec as wherespec1) = wherespec1 ()
- val (strdescs'' as strdescs''1) = strdescs''1 ()
- in (cons1 (wherespec, strdescs''))
-end)
- in ( LrTable.NT 122, ( result, AND1left, strdescs''1right), rest671)
-
-end
-| ( 88, ( ( _, ( MlyValue.typdesc typdesc1, typdesc1left,
-typdesc1right)) :: rest671)) => let val result = MlyValue.typdescs
- (fn _ => let val (typdesc as typdesc1) = typdesc1 ()
- in ([typdesc])
-end)
- in ( LrTable.NT 149, ( result, typdesc1left, typdesc1right), rest671)
-
-end
-| ( 89, ( ( _, ( MlyValue.typdescs typdescs1, _, typdescs1right)) ::
- _ :: ( _, ( MlyValue.typdesc typdesc1, typdesc1left, _)) :: rest671))
- => let val result = MlyValue.typdescs (fn _ => let val (typdesc as
-typdesc1) = typdesc1 ()
- val (typdescs as typdescs1) = typdescs1 ()
- in (typdesc :: typdescs)
-end)
- in ( LrTable.NT 149, ( result, typdesc1left, typdescs1right), rest671
-)
-end
-| ( 90, ( ( _, ( MlyValue.tycon tycon1, _, tycon1right)) :: ( _, (
-MlyValue.tyvars tyvars1, tyvars1left, _)) :: rest671)) => let val
-result = MlyValue.typdesc (fn _ => let val (tyvars as tyvars1) =
-tyvars1 ()
- val (tycon as tycon1) = tycon1 ()
- in ({tyvars = tyvars,
- tycon = tycon})
-end)
- in ( LrTable.NT 148, ( result, tyvars1left, tycon1right), rest671)
-
-end
-| ( 91, ( ( _, ( MlyValue.valdesc valdesc1, valdesc1left,
-valdesc1right)) :: rest671)) => let val result = MlyValue.valdescs
- (fn _ => let val (valdesc as valdesc1) = valdesc1 ()
- in ([valdesc])
-end)
- in ( LrTable.NT 158, ( result, valdesc1left, valdesc1right), rest671)
-
-end
-| ( 92, ( ( _, ( MlyValue.valdescs valdescs1, _, valdescs1right)) ::
- _ :: ( _, ( MlyValue.valdesc valdesc1, valdesc1left, _)) :: rest671))
- => let val result = MlyValue.valdescs (fn _ => let val (valdesc as
-valdesc1) = valdesc1 ()
- val (valdescs as valdescs1) = valdescs1 ()
- in (valdesc :: valdescs)
-end)
- in ( LrTable.NT 158, ( result, valdesc1left, valdescs1right), rest671
-)
-end
-| ( 93, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.var var1, var1left, _)) :: rest671)) => let val result =
-MlyValue.valdesc (fn _ => let val (var as var1) = var1 ()
- val (ty as ty1) = ty1 ()
- in (
-Con.ensureSpecify (Vid.toCon (Vid.fromVar var))
- ; (var, ty)
-)
-end)
- in ( LrTable.NT 157, ( result, var1left, ty1right), rest671)
-end
-| ( 94, ( ( _, ( MlyValue.exndesc exndesc1, exndesc1left,
-exndesc1right)) :: rest671)) => let val result = MlyValue.exndescs
- (fn _ => let val (exndesc as exndesc1) = exndesc1 ()
- in ([exndesc])
-end)
- in ( LrTable.NT 43, ( result, exndesc1left, exndesc1right), rest671)
-
-end
-| ( 95, ( ( _, ( MlyValue.exndescs exndescs1, _, exndescs1right)) ::
- _ :: ( _, ( MlyValue.exndesc exndesc1, exndesc1left, _)) :: rest671))
- => let val result = MlyValue.exndescs (fn _ => let val (exndesc as
-exndesc1) = exndesc1 ()
- val (exndescs as exndescs1) = exndescs1 ()
- in (exndesc :: exndescs)
-end)
- in ( LrTable.NT 43, ( result, exndesc1left, exndescs1right), rest671)
-
-end
-| ( 96, ( ( _, ( MlyValue.tyOpt tyOpt1, _, tyOpt1right)) :: ( _, (
-MlyValue.con con1, con1left, _)) :: rest671)) => let val result =
-MlyValue.exndesc (fn _ => let val (con as con1) = con1 ()
- val (tyOpt as tyOpt1) = tyOpt1 ()
- in (Con.ensureSpecify con; (con, tyOpt))
-end)
- in ( LrTable.NT 42, ( result, con1left, tyOpt1right), rest671)
-end
-| ( 97, ( rest671)) => let val result = MlyValue.tyOpt (fn _ => (
-NONE))
- in ( LrTable.NT 142, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 98, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: ( _, ( _, OF1left,
- _)) :: rest671)) => let val result = MlyValue.tyOpt (fn _ => let
- val (ty as ty1) = ty1 ()
- in (SOME ty)
-end)
- in ( LrTable.NT 142, ( result, OF1left, ty1right), rest671)
-end
-| ( 99, ( ( _, ( MlyValue.funbinds' funbinds'1, _, funbinds'1right))
- :: _ :: ( _, ( MlyValue.sigconst sigconst1, _, _)) :: _ :: ( _, (
-MlyValue.fctarg fctarg1, fctargleft, fctargright)) :: _ :: ( _, (
-MlyValue.fctid fctid1, fctid1left, _)) :: rest671)) => let val result
- = MlyValue.funbinds (fn _ => let val (fctid as fctid1) = fctid1 ()
- val (fctarg as fctarg1) = fctarg1 ()
- val (sigconst as sigconst1) = sigconst1 ()
- val (funbinds' as funbinds'1) = funbinds'1 ()
- in (
-let val (strexp,funbinds) = funbinds'
- in {name = fctid,
- arg = FctArg.makeRegion' (fctarg, fctargleft, fctargright),
- result = sigconst,
- body = strexp}
- :: funbinds
- end
-)
-end)
- in ( LrTable.NT 54, ( result, fctid1left, funbinds'1right), rest671)
-
-end
-| ( 100, ( ( _, ( MlyValue.funbinds'1 funbinds'11, _,
-funbinds'11right)) :: ( _, ( MlyValue.strexp1 strexp11, strexp11left,
- _)) :: rest671)) => let val result = MlyValue.funbinds' (fn _ => let
- val (strexp1 as strexp11) = strexp11 ()
- val (funbinds'1 as funbinds'11) = funbinds'11 ()
- in (augment1 (strexp1, funbinds'1))
-end)
- in ( LrTable.NT 55, ( result, strexp11left, funbinds'11right),
-rest671)
-end
-| ( 101, ( ( _, ( MlyValue.funbinds'2 funbinds'21, _,
-funbinds'21right)) :: ( _, ( MlyValue.strexp2 strexp21, strexp21left,
- _)) :: rest671)) => let val result = MlyValue.funbinds' (fn _ => let
- val (strexp2 as strexp21) = strexp21 ()
- val (funbinds'2 as funbinds'21) = funbinds'21 ()
- in ((strexp2, funbinds'2))
-end)
- in ( LrTable.NT 55, ( result, strexp21left, funbinds'21right),
-rest671)
-end
-| ( 102, ( ( _, ( MlyValue.funbinds'2 funbinds'21, (funbinds'2left
- as funbinds'21left), funbinds'21right)) :: rest671)) => let val
-result = MlyValue.funbinds'1 (fn _ => let val (funbinds'2 as
-funbinds'21) = funbinds'21 ()
- in ([], funbinds'2left, funbinds'2)
-end)
- in ( LrTable.NT 56, ( result, funbinds'21left, funbinds'21right),
-rest671)
-end
-| ( 103, ( ( _, ( MlyValue.funbinds'1' funbinds'1'1, _,
-funbinds'1'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, WHERE1left, _)) :: rest671)) => let val result =
-MlyValue.funbinds'1 (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (funbinds'1' as funbinds'1'1) = funbinds'1'1 ()
- in (cons1 (wherespec,funbinds'1'))
-end)
- in ( LrTable.NT 56, ( result, WHERE1left, funbinds'1'1right), rest671
-)
-end
-| ( 104, ( rest671)) => let val result = MlyValue.funbinds'2 (fn _
- => ([]))
- in ( LrTable.NT 58, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 105, ( ( _, ( MlyValue.funbinds funbinds1, _, funbinds1right)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.funbinds'2 (fn _ => let val (funbinds as funbinds1) =
-funbinds1 ()
- in (funbinds)
-end)
- in ( LrTable.NT 58, ( result, AND1left, funbinds1right), rest671)
-end
-| ( 106, ( ( _, ( MlyValue.funbinds'1 funbinds'11, funbinds'11left,
-funbinds'11right)) :: rest671)) => let val result =
-MlyValue.funbinds'1' (fn _ => let val (funbinds'1 as funbinds'11) =
-funbinds'11 ()
- in (funbinds'1)
-end)
- in ( LrTable.NT 57, ( result, funbinds'11left, funbinds'11right),
-rest671)
-end
-| ( 107, ( ( _, ( MlyValue.funbinds'1' funbinds'1'1, _,
-funbinds'1'1right)) :: ( _, ( MlyValue.wherespec wherespec1, _, _)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.funbinds'1' (fn _ => let val (wherespec as wherespec1) =
-wherespec1 ()
- val (funbinds'1' as funbinds'1'1) = funbinds'1'1 ()
- in (cons1 (wherespec,funbinds'1'))
-end)
- in ( LrTable.NT 57, ( result, AND1left, funbinds'1'1right), rest671)
-
-end
-| ( 108, ( ( _, ( MlyValue.sigexp sigexp1, _, sigexp1right)) :: _ ::
-( _, ( MlyValue.strid strid1, strid1left, _)) :: rest671)) => let val
- result = MlyValue.fctarg (fn _ => let val (strid as strid1) = strid1
- ()
- val (sigexp as sigexp1) = sigexp1 ()
- in (FctArg.Structure (strid, sigexp))
-end)
- in ( LrTable.NT 50, ( result, strid1left, sigexp1right), rest671)
-end
-| ( 109, ( ( _, ( MlyValue.specs specs1, specs1left, specs1right)) ::
- rest671)) => let val result = MlyValue.fctarg (fn _ => let val (
-specs as specs1) = specs1 ()
- in (FctArg.Spec specs)
-end)
- in ( LrTable.NT 50, ( result, specs1left, specs1right), rest671)
-end
-| ( 110, ( rest671)) => let val result = MlyValue.decs (fn _ => (
-Dec.makeRegion' (Dec.SeqDec (Vector.new0 ()),
- defaultPos, defaultPos)
-))
- in ( LrTable.NT 33, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 111, ( ( _, ( MlyValue.decs decs1, _, decs1right)) :: ( _, (
-MlyValue.dec dec1, dec1left, _)) :: rest671)) => let val result =
-MlyValue.decs (fn _ => let val (dec as dec1) = dec1 ()
- val (decs as decs1) = decs1 ()
- in (Dec.sequence (dec,decs))
-end)
- in ( LrTable.NT 33, ( result, dec1left, decs1right), rest671)
-end
-| ( 112, ( ( _, ( MlyValue.decs decs1, _, decs1right)) :: ( _, ( _,
-SEMICOLON1left, _)) :: rest671)) => let val result = MlyValue.decs
- (fn _ => let val (decs as decs1) = decs1 ()
- in (decs)
-end)
- in ( LrTable.NT 33, ( result, SEMICOLON1left, decs1right), rest671)
-
-end
-| ( 113, ( ( _, ( MlyValue.decnode decnode1, (decnodeleft as
-decnode1left), (decnoderight as decnode1right))) :: rest671)) => let
- val result = MlyValue.dec (fn _ => let val (decnode as decnode1) =
-decnode1 ()
- in (Dec.makeRegion' (decnode, decnodeleft, decnoderight))
-end)
- in ( LrTable.NT 30, ( result, decnode1left, decnode1right), rest671)
-
-end
-| ( 114, ( ( _, ( MlyValue.decnolocal decnolocal1, decnolocal1left,
-decnolocal1right)) :: rest671)) => let val result = MlyValue.decnode
- (fn _ => let val (decnolocal as decnolocal1) = decnolocal1 ()
- in (decnolocal)
-end)
- in ( LrTable.NT 31, ( result, decnolocal1left, decnolocal1right),
-rest671)
-end
-| ( 115, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.decs decs2, _,
- _)) :: _ :: ( _, ( MlyValue.decs decs1, _, _)) :: ( _, ( _,
-LOCAL1left, _)) :: rest671)) => let val result = MlyValue.decnode (fn
- _ => let val decs1 = decs1 ()
- val decs2 = decs2 ()
- in (Dec.Local (decs1,decs2))
-end)
- in ( LrTable.NT 31, ( result, LOCAL1left, END1right), rest671)
-end
-| ( 116, ( ( _, ( MlyValue.valbindTop valbindTop1, _,
-valbindTop1right)) :: ( _, ( _, VAL1left, _)) :: rest671)) => let val
- result = MlyValue.decnolocal (fn _ => let val (valbindTop as
-valbindTop1) = valbindTop1 ()
- in (
-Dec.Val {tyvars = Vector.new0 (),
- vbs = #1 valbindTop,
- rvbs = #2 valbindTop}
-)
-end)
- in ( LrTable.NT 32, ( result, VAL1left, valbindTop1right), rest671)
-
-end
-| ( 117, ( ( _, ( MlyValue.valbindTop valbindTop1, _,
-valbindTop1right)) :: ( _, ( MlyValue.tyvarseq tyvarseq1, _, _)) :: (
- _, ( _, VAL1left, _)) :: rest671)) => let val result =
-MlyValue.decnolocal (fn _ => let val (tyvarseq as tyvarseq1) =
-tyvarseq1 ()
- val (valbindTop as valbindTop1) = valbindTop1 ()
- in (
-Dec.Val {tyvars = tyvarseq,
- vbs = #1 valbindTop,
- rvbs = #2 valbindTop}
-)
-end)
- in ( LrTable.NT 32, ( result, VAL1left, valbindTop1right), rest671)
-
-end
-| ( 118, ( ( _, ( MlyValue.funs funs1, _, funs1right)) :: ( _, ( _,
-FUN1left, _)) :: rest671)) => let val result = MlyValue.decnolocal
- (fn _ => let val (funs as funs1) = funs1 ()
- in (Dec.Fun (Vector.new0 (), Vector.fromList funs))
-end)
- in ( LrTable.NT 32, ( result, FUN1left, funs1right), rest671)
-end
-| ( 119, ( ( _, ( MlyValue.funs funs1, _, funs1right)) :: ( _, (
-MlyValue.tyvarseq tyvarseq1, _, _)) :: ( _, ( _, FUN1left, _)) ::
-rest671)) => let val result = MlyValue.decnolocal (fn _ => let val (
-tyvarseq as tyvarseq1) = tyvarseq1 ()
- val (funs as funs1) = funs1 ()
- in (Dec.Fun (tyvarseq, Vector.fromList funs))
-end)
- in ( LrTable.NT 32, ( result, FUN1left, funs1right), rest671)
-end
-| ( 120, ( ( _, ( MlyValue.typBind typBind1, _, typBind1right)) :: (
- _, ( _, TYPE1left, _)) :: rest671)) => let val result =
-MlyValue.decnolocal (fn _ => let val (typBind as typBind1) = typBind1
- ()
- in (Dec.Type typBind)
-end)
- in ( LrTable.NT 32, ( result, TYPE1left, typBind1right), rest671)
-end
-| ( 121, ( ( _, ( MlyValue.datatypeRhs datatypeRhs1, _,
-datatypeRhs1right)) :: ( _, ( _, DATATYPE1left, _)) :: rest671)) =>
- let val result = MlyValue.decnolocal (fn _ => let val (datatypeRhs
- as datatypeRhs1) = datatypeRhs1 ()
- in (Dec.Datatype datatypeRhs)
-end)
- in ( LrTable.NT 32, ( result, DATATYPE1left, datatypeRhs1right),
-rest671)
-end
-| ( 122, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.decs decs1, _,
- _)) :: _ :: ( _, ( MlyValue.datBind datBind1, _, _)) :: ( _, ( _,
-ABSTYPE1left, _)) :: rest671)) => let val result =
-MlyValue.decnolocal (fn _ => let val (datBind as datBind1) = datBind1
- ()
- val (decs as decs1) = decs1 ()
- in (
-Dec.Abstype {datBind = datBind,
- body = decs}
-)
-end)
- in ( LrTable.NT 32, ( result, ABSTYPE1left, END1right), rest671)
-end
-| ( 123, ( ( _, ( MlyValue.ebs ebs1, _, ebs1right)) :: ( _, ( _,
-EXCEPTION1left, _)) :: rest671)) => let val result =
-MlyValue.decnolocal (fn _ => let val (ebs as ebs1) = ebs1 ()
- in (Dec.Exception (Vector.fromList ebs))
-end)
- in ( LrTable.NT 32, ( result, EXCEPTION1left, ebs1right), rest671)
-
-end
-| ( 124, ( ( _, ( MlyValue.longstrids longstrids1, _,
-longstrids1right)) :: ( _, ( _, OPEN1left, _)) :: rest671)) => let
- val result = MlyValue.decnolocal (fn _ => let val (longstrids as
-longstrids1) = longstrids1 ()
- in (Dec.Open (Vector.fromList longstrids))
-end)
- in ( LrTable.NT 32, ( result, OPEN1left, longstrids1right), rest671)
-
-end
-| ( 125, ( ( _, ( MlyValue.vids vids1, _, vids1right)) :: ( _, (
-MlyValue.fixity fixity1, fixity1left, _)) :: rest671)) => let val
-result = MlyValue.decnolocal (fn _ => let val (fixity as fixity1) =
-fixity1 ()
- val (vids as vids1) = vids1 ()
- in (
-Dec.Fix {fixity = fixity,
- ops = Vector.fromList vids}
-)
-end)
- in ( LrTable.NT 32, ( result, fixity1left, vids1right), rest671)
-end
-| ( 126, ( ( _, ( MlyValue.longvarands longvarands1, _,
-longvarands1right)) :: _ :: ( _, ( MlyValue.ty ty1, _, _)) :: _ :: ( _
-, ( MlyValue.var var1, _, _)) :: ( _, ( MlyValue.priority priority1, _
-, _)) :: ( _, ( _, OVERLOAD1left, _)) :: rest671)) => let val result
- = MlyValue.decnolocal (fn _ => let val (priority as priority1) =
-priority1 ()
- val (var as var1) = var1 ()
- val (ty as ty1) = ty1 ()
- val (longvarands as longvarands1) = longvarands1 ()
- in (
-Dec.Overload (priority,
- var,
- Vector.new0 (),
- ty,
- Vector.fromList longvarands)
-)
-end)
- in ( LrTable.NT 32, ( result, OVERLOAD1left, longvarands1right),
-rest671)
-end
-| ( 127, ( ( _, ( MlyValue.valbind valbind1, valbind1left,
-valbind1right)) :: rest671)) => let val result = MlyValue.valbindTop
- (fn _ => let val (valbind as valbind1) = valbind1 ()
- in (
-let
- val (vbs, rvbs) = valbind
- in
- (Vector.fromList vbs,
- Vector.fromList rvbs)
- end
-)
-end)
- in ( LrTable.NT 156, ( result, valbind1left, valbind1right), rest671)
-
-end
-| ( 128, ( ( _, ( MlyValue.valbindRest valbindRest1, _,
-valbindRest1right)) :: ( _, ( MlyValue.exp exp1, _, _)) :: _ :: ( _, (
- MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val result =
-MlyValue.valbind (fn _ => let val (pat as pat1) = pat1 ()
- val (exp as exp1) = exp1 ()
- val (valbindRest as valbindRest1) = valbindRest1 ()
- in (
-let
- val (vbs, rvbs) = valbindRest
- in
- ({pat = pat, exp = exp} :: vbs,
- rvbs)
- end
-)
-end)
- in ( LrTable.NT 154, ( result, pat1left, valbindRest1right), rest671)
-
-end
-| ( 129, ( ( _, ( MlyValue.rvalbind rvalbind1, _, rvalbind1right)) ::
- ( _, ( _, REC1left, _)) :: rest671)) => let val result =
-MlyValue.valbind (fn _ => let val (rvalbind as rvalbind1) = rvalbind1
- ()
- in (([], rvalbind))
-end)
- in ( LrTable.NT 154, ( result, REC1left, rvalbind1right), rest671)
-
-end
-| ( 130, ( rest671)) => let val result = MlyValue.valbindRest (fn _
- => (([], [])))
- in ( LrTable.NT 155, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 131, ( ( _, ( MlyValue.valbind valbind1, _, valbind1right)) :: (
- _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.valbindRest (fn _ => let val (valbind as valbind1) =
-valbind1 ()
- in (valbind)
-end)
- in ( LrTable.NT 155, ( result, AND1left, valbind1right), rest671)
-end
-| ( 132, ( ( _, ( MlyValue.rvalbind rvalbind1, _, rvalbind1right)) ::
- ( _, ( _, REC1left, _)) :: rest671)) => let val result =
-MlyValue.rvalbind (fn _ => let val (rvalbind as rvalbind1) =
-rvalbind1 ()
- in (rvalbind)
-end)
- in ( LrTable.NT 92, ( result, REC1left, rvalbind1right), rest671)
-end
-| ( 133, ( ( _, ( MlyValue.rvalbindRest rvalbindRest1, _,
-rvalbindRest1right)) :: ( _, ( MlyValue.match match1, _, _)) :: _ :: _
- :: ( _, ( MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val
-result = MlyValue.rvalbind (fn _ => let val (pat as pat1) = pat1 ()
- val (match as match1) = match1 ()
- val (rvalbindRest as rvalbindRest1) = rvalbindRest1 ()
- in ({pat = pat, match = match} :: rvalbindRest)
-end)
- in ( LrTable.NT 92, ( result, pat1left, rvalbindRest1right), rest671)
-
-end
-| ( 134, ( rest671)) => let val result = MlyValue.rvalbindRest (fn _
- => ([]))
- in ( LrTable.NT 93, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 135, ( ( _, ( MlyValue.rvalbind rvalbind1, _, rvalbind1right)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.rvalbindRest (fn _ => let val (rvalbind as rvalbind1) =
-rvalbind1 ()
- in (rvalbind)
-end)
- in ( LrTable.NT 93, ( result, AND1left, rvalbind1right), rest671)
-end
-| ( 136, ( rest671)) => let val result = MlyValue.constraint (fn _
- => (NONE))
- in ( LrTable.NT 18, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 137, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: ( _, ( _,
-COLON1left, _)) :: rest671)) => let val result = MlyValue.constraint
- (fn _ => let val (ty as ty1) = ty1 ()
- in (SOME ty)
-end)
- in ( LrTable.NT 18, ( result, COLON1left, ty1right), rest671)
-end
-| ( 138, ( ( _, ( MlyValue.clausesTop clausesTop1, clausesTop1left,
-clausesTop1right)) :: rest671)) => let val result = MlyValue.funs (fn
- _ => let val (clausesTop as clausesTop1) = clausesTop1 ()
- in ([clausesTop])
-end)
- in ( LrTable.NT 59, ( result, clausesTop1left, clausesTop1right),
-rest671)
-end
-| ( 139, ( ( _, ( MlyValue.funs funs1, _, funs1right)) :: _ :: ( _, (
- MlyValue.clausesTop clausesTop1, clausesTop1left, _)) :: rest671)) =>
- let val result = MlyValue.funs (fn _ => let val (clausesTop as
-clausesTop1) = clausesTop1 ()
- val (funs as funs1) = funs1 ()
- in (clausesTop :: funs)
-end)
- in ( LrTable.NT 59, ( result, clausesTop1left, funs1right), rest671)
-
-end
-| ( 140, ( ( _, ( MlyValue.clauses clauses1, clauses1left,
-clauses1right)) :: rest671)) => let val result = MlyValue.clausesTop
- (fn _ => let val (clauses as clauses1) = clauses1 ()
- in (Vector.fromList clauses)
-end)
- in ( LrTable.NT 12, ( result, clauses1left, clauses1right), rest671)
-
-end
-| ( 141, ( ( _, ( MlyValue.clause clause1, clause1left, clause1right)
-) :: rest671)) => let val result = MlyValue.clauses (fn _ => let val
- (clause as clause1) = clause1 ()
- in ([clause])
-end)
- in ( LrTable.NT 11, ( result, clause1left, clause1right), rest671)
-
-end
-| ( 142, ( ( _, ( MlyValue.clauses clauses1, _, clauses1right)) :: _
- :: ( _, ( MlyValue.clause clause1, clause1left, _)) :: rest671)) =>
- let val result = MlyValue.clauses (fn _ => let val (clause as
-clause1) = clause1 ()
- val (clauses as clauses1) = clauses1 ()
- in (clause :: clauses)
-end)
- in ( LrTable.NT 11, ( result, clause1left, clauses1right), rest671)
-
-end
-| ( 143, ( ( _, ( MlyValue.exp exp1, _, exp1right)) :: _ :: ( _, (
-MlyValue.constraint constraint1, _, _)) :: ( _, ( MlyValue.apats
-apats1, apats1left, _)) :: rest671)) => let val result =
-MlyValue.clause (fn _ => let val (apats as apats1) = apats1 ()
- val (constraint as constraint1) = constraint1 ()
- val (exp as exp1) = exp1 ()
- in (
-{pats = Vector.fromList apats,
- resultType = constraint,
- body = exp}
-)
-end)
- in ( LrTable.NT 10, ( result, apats1left, exp1right), rest671)
-end
-| ( 144, ( ( _, ( MlyValue.typBind' typBind'1, (typBind'left as
-typBind'1left), (typBind'right as typBind'1right))) :: rest671)) =>
- let val result = MlyValue.typBind (fn _ => let val (typBind' as
-typBind'1) = typBind'1 ()
- in (
-let
- val typBind = Vector.fromList typBind'
- val b =
- TypBind.makeRegion'
- (TypBind.T typBind, typBind'left, typBind'right)
- in
- b
- end
-)
-end)
- in ( LrTable.NT 145, ( result, typBind'1left, typBind'1right),
-rest671)
-end
-| ( 145, ( ( _, ( MlyValue.typBind'' typBind''1, _, typBind''1right))
- :: ( _, ( MlyValue.ty ty1, _, _)) :: _ :: ( _, ( MlyValue.tycon
-tycon1, _, _)) :: ( _, ( MlyValue.tyvars tyvars1, tyvars1left, _)) ::
-rest671)) => let val result = MlyValue.typBind' (fn _ => let val (
-tyvars as tyvars1) = tyvars1 ()
- val (tycon as tycon1) = tycon1 ()
- val (ty as ty1) = ty1 ()
- val (typBind'' as typBind''1) = typBind''1 ()
- in ({def = ty, tycon = tycon, tyvars = tyvars} :: typBind'')
-end)
- in ( LrTable.NT 146, ( result, tyvars1left, typBind''1right), rest671
-)
-end
-| ( 146, ( rest671)) => let val result = MlyValue.typBind'' (fn _ =>
- ([]))
- in ( LrTable.NT 147, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 147, ( ( _, ( MlyValue.typBind' typBind'1, _, typBind'1right)) ::
- ( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.typBind'' (fn _ => let val (typBind' as typBind'1) =
-typBind'1 ()
- in (typBind')
-end)
- in ( LrTable.NT 147, ( result, AND1left, typBind'1right), rest671)
-
-end
-| ( 148, ( ( _, ( MlyValue.tyvarseq tyvarseq1, tyvarseq1left,
-tyvarseq1right)) :: rest671)) => let val result = MlyValue.tyvars (fn
- _ => let val (tyvarseq as tyvarseq1) = tyvarseq1 ()
- in (tyvarseq)
-end)
- in ( LrTable.NT 152, ( result, tyvarseq1left, tyvarseq1right),
-rest671)
-end
-| ( 149, ( rest671)) => let val result = MlyValue.tyvars (fn _ => (
-Vector.new0 ()))
- in ( LrTable.NT 152, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 150, ( ( _, ( MlyValue.tyvar tyvar1, tyvar1left, tyvar1right)) ::
- rest671)) => let val result = MlyValue.tyvarseq (fn _ => let val (
-tyvar as tyvar1) = tyvar1 ()
- in (Vector.new1 tyvar)
-end)
- in ( LrTable.NT 153, ( result, tyvar1left, tyvar1right), rest671)
-end
-| ( 151, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.tyvar_pc
-tyvar_pc1, _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let
- val result = MlyValue.tyvarseq (fn _ => let val (tyvar_pc as
-tyvar_pc1) = tyvar_pc1 ()
- in (
-let
- val v = Vector.fromList tyvar_pc
- val () =
- reportDuplicates
- (v, {equals = Tyvar.sameName,
- layout = Tyvar.layout,
- name = "type variable",
- region = Tyvar.region,
- term = fn () => Layout.tuple (Vector.toListMap
- (v, Tyvar.layout))})
- in
- v
- end
-)
-end)
- in ( LrTable.NT 153, ( result, LPAREN1left, RPAREN1right), rest671)
-
-end
-| ( 152, ( ( _, ( MlyValue.tyvar tyvar1, tyvar1left, tyvar1right)) ::
- rest671)) => let val result = MlyValue.tyvar_pc (fn _ => let val (
-tyvar as tyvar1) = tyvar1 ()
- in ([tyvar])
-end)
- in ( LrTable.NT 151, ( result, tyvar1left, tyvar1right), rest671)
-end
-| ( 153, ( ( _, ( MlyValue.tyvar_pc tyvar_pc1, _, tyvar_pc1right)) ::
- _ :: ( _, ( MlyValue.tyvar tyvar1, tyvar1left, _)) :: rest671)) =>
- let val result = MlyValue.tyvar_pc (fn _ => let val (tyvar as
-tyvar1) = tyvar1 ()
- val (tyvar_pc as tyvar_pc1) = tyvar_pc1 ()
- in (tyvar :: tyvar_pc)
-end)
- in ( LrTable.NT 151, ( result, tyvar1left, tyvar_pc1right), rest671)
-
-end
-| ( 154, ( ( _, ( MlyValue.constr constr1, constr1left, constr1right)
-) :: rest671)) => let val result = MlyValue.constrs (fn _ => let val
- (constr as constr1) = constr1 ()
- in ([constr])
-end)
- in ( LrTable.NT 19, ( result, constr1left, constr1right), rest671)
-
-end
-| ( 155, ( ( _, ( MlyValue.constrs constrs1, _, constrs1right)) :: _
- :: ( _, ( MlyValue.constr constr1, constr1left, _)) :: rest671)) =>
- let val result = MlyValue.constrs (fn _ => let val (constr as
-constr1) = constr1 ()
- val (constrs as constrs1) = constrs1 ()
- in (constr :: constrs)
-end)
- in ( LrTable.NT 19, ( result, constr1left, constrs1right), rest671)
-
-end
-| ( 156, ( ( _, ( MlyValue.opcon opcon1, opcon1left, opcon1right)) ::
- rest671)) => let val result = MlyValue.constr (fn _ => let val (
-opcon as opcon1) = opcon1 ()
- in (opcon, NONE)
-end)
- in ( LrTable.NT 17, ( result, opcon1left, opcon1right), rest671)
-end
-| ( 157, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.opcon opcon1, opcon1left, _)) :: rest671)) => let val result
- = MlyValue.constr (fn _ => let val (opcon as opcon1) = opcon1 ()
- val (ty as ty1) = ty1 ()
- in (opcon, SOME ty)
-end)
- in ( LrTable.NT 17, ( result, opcon1left, ty1right), rest671)
-end
-| ( 158, ( ( _, ( MlyValue.con con1, con1left, con1right)) :: rest671
-)) => let val result = MlyValue.opcon (fn _ => let val (con as con1)
- = con1 ()
- in (con)
-end)
- in ( LrTable.NT 79, ( result, con1left, con1right), rest671)
-end
-| ( 159, ( ( _, ( MlyValue.con con1, _, con1right)) :: ( _, ( _,
-OP1left, _)) :: rest671)) => let val result = MlyValue.opcon (fn _ =>
- let val (con as con1) = con1 ()
- in (con)
-end)
- in ( LrTable.NT 79, ( result, OP1left, con1right), rest671)
-end
-| ( 160, ( ( _, ( MlyValue.eb eb1, eb1left, eb1right)) :: rest671))
- => let val result = MlyValue.ebs (fn _ => let val (eb as eb1) = eb1
- ()
- in ([eb])
-end)
- in ( LrTable.NT 39, ( result, eb1left, eb1right), rest671)
-end
-| ( 161, ( ( _, ( MlyValue.ebs ebs1, _, ebs1right)) :: _ :: ( _, (
-MlyValue.eb eb1, eb1left, _)) :: rest671)) => let val result =
-MlyValue.ebs (fn _ => let val (eb as eb1) = eb1 ()
- val (ebs as ebs1) = ebs1 ()
- in (eb::ebs)
-end)
- in ( LrTable.NT 39, ( result, eb1left, ebs1right), rest671)
-end
-| ( 162, ( ( _, ( MlyValue.ebrhs ebrhs1, _, ebrhs1right)) :: ( _, (
-MlyValue.opcon opcon1, opcon1left, _)) :: rest671)) => let val result
- = MlyValue.eb (fn _ => let val (opcon as opcon1) = opcon1 ()
- val (ebrhs as ebrhs1) = ebrhs1 ()
- in (Con.ensureRedefine opcon; (opcon, ebrhs))
-end)
- in ( LrTable.NT 36, ( result, opcon1left, ebrhs1right), rest671)
-end
-| ( 163, ( ( _, ( MlyValue.ebrhsnode ebrhsnode1, (ebrhsnodeleft as
-ebrhsnode1left), (ebrhsnoderight as ebrhsnode1right))) :: rest671)) =>
- let val result = MlyValue.ebrhs (fn _ => let val (ebrhsnode as
-ebrhsnode1) = ebrhsnode1 ()
- in (
-EbRhs.makeRegion' (ebrhsnode,
- ebrhsnodeleft, ebrhsnoderight)
-)
-end)
- in ( LrTable.NT 37, ( result, ebrhsnode1left, ebrhsnode1right),
-rest671)
-end
-| ( 164, ( rest671)) => let val result = MlyValue.ebrhsnode (fn _ =>
- (EbRhs.Gen NONE))
- in ( LrTable.NT 38, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 165, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: ( _, ( _, OF1left
-, _)) :: rest671)) => let val result = MlyValue.ebrhsnode (fn _ =>
- let val (ty as ty1) = ty1 ()
- in (EbRhs.Gen (SOME ty))
-end)
- in ( LrTable.NT 38, ( result, OF1left, ty1right), rest671)
-end
-| ( 166, ( ( _, ( MlyValue.longcon longcon1, _, longcon1right)) :: (
- _, ( _, EQUALOP1left, _)) :: rest671)) => let val result =
-MlyValue.ebrhsnode (fn _ => let val (longcon as longcon1) = longcon1
- ()
- in (EbRhs.Def longcon)
-end)
- in ( LrTable.NT 38, ( result, EQUALOP1left, longcon1right), rest671)
-
-end
-| ( 167, ( ( _, ( MlyValue.longcon longcon1, _, longcon1right)) :: _
- :: ( _, ( _, EQUALOP1left, _)) :: rest671)) => let val result =
-MlyValue.ebrhsnode (fn _ => let val (longcon as longcon1) = longcon1
- ()
- in (EbRhs.Def longcon)
-end)
- in ( LrTable.NT 38, ( result, EQUALOP1left, longcon1right), rest671)
-
-end
-| ( 168, ( ( _, ( _, INFIX1left, INFIX1right)) :: rest671)) => let
- val result = MlyValue.fixity (fn _ => (Fixity.Infix NONE))
- in ( LrTable.NT 53, ( result, INFIX1left, INFIX1right), rest671)
-end
-| ( 169, ( ( _, ( MlyValue.digit digit1, _, digit1right)) :: ( _, ( _
-, INFIX1left, _)) :: rest671)) => let val result = MlyValue.fixity
- (fn _ => let val (digit as digit1) = digit1 ()
- in (Fixity.Infix (SOME digit))
-end)
- in ( LrTable.NT 53, ( result, INFIX1left, digit1right), rest671)
-end
-| ( 170, ( ( _, ( _, INFIXR1left, INFIXR1right)) :: rest671)) => let
- val result = MlyValue.fixity (fn _ => (Fixity.Infixr NONE))
- in ( LrTable.NT 53, ( result, INFIXR1left, INFIXR1right), rest671)
-
-end
-| ( 171, ( ( _, ( MlyValue.digit digit1, _, digit1right)) :: ( _, ( _
-, INFIXR1left, _)) :: rest671)) => let val result = MlyValue.fixity
- (fn _ => let val (digit as digit1) = digit1 ()
- in (Fixity.Infixr (SOME digit))
-end)
- in ( LrTable.NT 53, ( result, INFIXR1left, digit1right), rest671)
-end
-| ( 172, ( ( _, ( _, NONFIX1left, NONFIX1right)) :: rest671)) => let
- val result = MlyValue.fixity (fn _ => (Fixity.Nonfix))
- in ( LrTable.NT 53, ( result, NONFIX1left, NONFIX1right), rest671)
-
-end
-| ( 173, ( rest671)) => let val result = MlyValue.priority (fn _ =>
- (Priority.T NONE))
- in ( LrTable.NT 87, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 174, ( ( _, ( MlyValue.digit digit1, digit1left, digit1right)) ::
- rest671)) => let val result = MlyValue.priority (fn _ => let val (
-digit as digit1) = digit1 ()
- in (Priority.T (SOME digit))
-end)
- in ( LrTable.NT 87, ( result, digit1left, digit1right), rest671)
-end
-| ( 175, ( ( _, ( MlyValue.INT INT1, INT1left, INT1right)) :: rest671
-)) => let val result = MlyValue.int (fn _ => let val (INT as INT1) =
- INT1 ()
- in (
-let
- val {digits, negate, radix} = INT
- in
- case StringCvt.scanString (fn r => IntInf.scan (radix, r)) digits of
- NONE => Error.bug "parser saw invalid int"
- | SOME i => if negate then ~ i else i
- end
-)
-end)
- in ( LrTable.NT 63, ( result, INT1left, INT1right), rest671)
-end
-| ( 176, ( ( _, ( MlyValue.WORD WORD1, WORD1left, WORD1right)) ::
-rest671)) => let val result = MlyValue.word (fn _ => let val (WORD
- as WORD1) = WORD1 ()
- in (
-let
- val {digits, radix} = WORD
- in
- case StringCvt.scanString (fn r => IntInf.scan (radix, r)) digits of
- NONE => Error.bug "parser saw invalid word"
- | SOME i => i
- end
-)
-end)
- in ( LrTable.NT 167, ( result, WORD1left, WORD1right), rest671)
-end
-| ( 177, ( ( _, ( MlyValue.INT INT1, (INTleft as INT1left), (INTright
- as INT1right))) :: rest671)) => let val result = MlyValue.digit (fn
- _ => let val (INT as INT1) = INT1 ()
- in (
-let
- val {digits, negate, radix} = INT
- in
- if 1 = String.size digits andalso not negate andalso radix = StringCvt.DEC
- then valOf (Int.fromString digits)
- else let
- open Layout
- val _ =
- Control.error (reg (INTleft, INTright),
- str "invalid digit in infix declaration",
- empty)
- in
- 0
- end
- end
-)
-end)
- in ( LrTable.NT 35, ( result, INT1left, INT1right), rest671)
-end
-| ( 178, ( ( _, ( MlyValue.datatypeRhsnode datatypeRhsnode1, (
-datatypeRhsnodeleft as datatypeRhsnode1left), (datatypeRhsnoderight
- as datatypeRhsnode1right))) :: rest671)) => let val result =
-MlyValue.datatypeRhs (fn _ => let val (datatypeRhsnode as
-datatypeRhsnode1) = datatypeRhsnode1 ()
- in (
-DatatypeRhs.makeRegion' (datatypeRhsnode,
- datatypeRhsnodeleft, datatypeRhsnoderight)
-)
-end)
- in ( LrTable.NT 23, ( result, datatypeRhsnode1left,
-datatypeRhsnode1right), rest671)
-end
-| ( 179, ( ( _, ( MlyValue.datatypeRhsnodeNoWithtype
-datatypeRhsnodeNoWithtype1, (datatypeRhsnodeNoWithtypeleft as
-datatypeRhsnodeNoWithtype1left), (datatypeRhsnodeNoWithtyperight as
-datatypeRhsnodeNoWithtype1right))) :: rest671)) => let val result =
-MlyValue.datatypeRhsNoWithtype (fn _ => let val (
-datatypeRhsnodeNoWithtype as datatypeRhsnodeNoWithtype1) =
-datatypeRhsnodeNoWithtype1 ()
- in (
-DatatypeRhs.makeRegion' (datatypeRhsnodeNoWithtype,
- datatypeRhsnodeNoWithtypeleft,
- datatypeRhsnodeNoWithtyperight)
-)
-end)
- in ( LrTable.NT 24, ( result, datatypeRhsnodeNoWithtype1left,
-datatypeRhsnodeNoWithtype1right), rest671)
-end
-| ( 180, ( ( _, ( MlyValue.repl repl1, repl1left, repl1right)) ::
-rest671)) => let val result = MlyValue.datatypeRhsnode (fn _ => let
- val (repl as repl1) = repl1 ()
- in (repl)
-end)
- in ( LrTable.NT 25, ( result, repl1left, repl1right), rest671)
-end
-| ( 181, ( ( _, ( MlyValue.datBind datBind1, datBind1left,
-datBind1right)) :: rest671)) => let val result =
-MlyValue.datatypeRhsnode (fn _ => let val (datBind as datBind1) =
-datBind1 ()
- in (DatatypeRhs.DatBind datBind)
-end)
- in ( LrTable.NT 25, ( result, datBind1left, datBind1right), rest671)
-
-end
-| ( 182, ( ( _, ( MlyValue.repl repl1, repl1left, repl1right)) ::
-rest671)) => let val result = MlyValue.datatypeRhsnodeNoWithtype (fn
- _ => let val (repl as repl1) = repl1 ()
- in (repl)
-end)
- in ( LrTable.NT 26, ( result, repl1left, repl1right), rest671)
-end
-| ( 183, ( ( _, ( MlyValue.datBindNoWithtype datBindNoWithtype1,
-datBindNoWithtype1left, datBindNoWithtype1right)) :: rest671)) => let
- val result = MlyValue.datatypeRhsnodeNoWithtype (fn _ => let val (
-datBindNoWithtype as datBindNoWithtype1) = datBindNoWithtype1 ()
- in (DatatypeRhs.DatBind datBindNoWithtype)
-end)
- in ( LrTable.NT 26, ( result, datBindNoWithtype1left,
-datBindNoWithtype1right), rest671)
-end
-| ( 184, ( ( _, ( MlyValue.longtycon longtycon1, _, longtycon1right))
- :: _ :: _ :: ( _, ( MlyValue.tycon tycon1, _, _)) :: ( _, (
-MlyValue.tyvars tyvars1, (tyvarsleft as tyvars1left), tyvarsright)) ::
- rest671)) => let val result = MlyValue.repl (fn _ => let val (
-tyvars as tyvars1) = tyvars1 ()
- val (tycon as tycon1) = tycon1 ()
- val (longtycon as longtycon1) = longtycon1 ()
- in (
-if Vector.isEmpty tyvars
- then ()
- else error (reg (tyvarsleft, tyvarsright),
- "nonempty tyvars in datatype repl")
- ; DatatypeRhs.Repl {lhs = tycon, rhs = longtycon}
-)
-end)
- in ( LrTable.NT 89, ( result, tyvars1left, longtycon1right), rest671)
-
-end
-| ( 185, ( ( _, ( MlyValue.withtypes withtypes1, _, (withtypesright
- as withtypes1right))) :: ( _, ( MlyValue.dbs dbs1, (dbsleft as
-dbs1left), _)) :: rest671)) => let val result = MlyValue.datBind (fn
- _ => let val (dbs as dbs1) = dbs1 ()
- val (withtypes as withtypes1) = withtypes1 ()
- in (DatBind.make (dbs, withtypes, dbsleft, withtypesright))
-end)
- in ( LrTable.NT 21, ( result, dbs1left, withtypes1right), rest671)
-
-end
-| ( 186, ( ( _, ( MlyValue.dbs dbs1, (dbsleft as dbs1left), (dbsright
- as dbs1right))) :: rest671)) => let val result =
-MlyValue.datBindNoWithtype (fn _ => let val (dbs as dbs1) = dbs1 ()
- in (DatBind.make (dbs, TypBind.empty, dbsleft, dbsright))
-end)
- in ( LrTable.NT 22, ( result, dbs1left, dbs1right), rest671)
-end
-| ( 187, ( ( _, ( MlyValue.dbs' dbs'1, dbs'1left, dbs'1right)) ::
-rest671)) => let val result = MlyValue.dbs (fn _ => let val (dbs'
- as dbs'1) = dbs'1 ()
- in (Vector.fromList dbs')
-end)
- in ( LrTable.NT 28, ( result, dbs'1left, dbs'1right), rest671)
-end
-| ( 188, ( ( _, ( MlyValue.db db1, db1left, db1right)) :: rest671))
- => let val result = MlyValue.dbs' (fn _ => let val (db as db1) =
-db1 ()
- in ([db])
-end)
- in ( LrTable.NT 29, ( result, db1left, db1right), rest671)
-end
-| ( 189, ( ( _, ( MlyValue.dbs' dbs'1, _, dbs'1right)) :: _ :: ( _, (
- MlyValue.db db1, db1left, _)) :: rest671)) => let val result =
-MlyValue.dbs' (fn _ => let val (db as db1) = db1 ()
- val (dbs' as dbs'1) = dbs'1 ()
- in (db :: dbs')
-end)
- in ( LrTable.NT 29, ( result, db1left, dbs'1right), rest671)
-end
-| ( 190, ( ( _, ( MlyValue.constrs constrs1, _, constrs1right)) :: _
- :: ( _, ( MlyValue.tycon tycon1, _, _)) :: ( _, ( MlyValue.tyvars
-tyvars1, tyvars1left, _)) :: rest671)) => let val result =
-MlyValue.db (fn _ => let val (tyvars as tyvars1) = tyvars1 ()
- val (tycon as tycon1) = tycon1 ()
- val (constrs as constrs1) = constrs1 ()
- in (
-{cons = Vector.fromList constrs,
- tycon = tycon,
- tyvars = tyvars}
-)
-end)
- in ( LrTable.NT 27, ( result, tyvars1left, constrs1right), rest671)
-
-end
-| ( 191, ( rest671)) => let val result = MlyValue.withtypes (fn _ =>
- (TypBind.empty))
- in ( LrTable.NT 166, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 192, ( ( _, ( MlyValue.typBind typBind1, _, typBind1right)) :: (
- _, ( _, WITHTYPE1left, _)) :: rest671)) => let val result =
-MlyValue.withtypes (fn _ => let val (typBind as typBind1) = typBind1
- ()
- in (typBind)
-end)
- in ( LrTable.NT 166, ( result, WITHTYPE1left, typBind1right), rest671
-)
-end
-| ( 193, ( ( _, ( MlyValue.longvar longvar1, longvar1left,
-longvar1right)) :: rest671)) => let val result = MlyValue.longvarands
- (fn _ => let val (longvar as longvar1) = longvar1 ()
- in ([longvar])
-end)
- in ( LrTable.NT 74, ( result, longvar1left, longvar1right), rest671)
-
-end
-| ( 194, ( ( _, ( MlyValue.longvarands longvarands1, _,
-longvarands1right)) :: _ :: ( _, ( MlyValue.longvar longvar1,
-longvar1left, _)) :: rest671)) => let val result =
-MlyValue.longvarands (fn _ => let val (longvar as longvar1) =
-longvar1 ()
- val (longvarands as longvarands1) = longvarands1 ()
- in (longvar :: longvarands)
-end)
- in ( LrTable.NT 74, ( result, longvar1left, longvarands1right),
-rest671)
-end
-| ( 195, ( ( _, ( MlyValue.rules rules1, (rulesleft as rules1left), (
-rulesright as rules1right))) :: rest671)) => let val result =
-MlyValue.match (fn _ => let val (rules as rules1) = rules1 ()
- in (
-Match.makeRegion' (Match.T (Vector.fromList rules),
- rulesleft, rulesright)
-)
-end)
- in ( LrTable.NT 77, ( result, rules1left, rules1right), rest671)
-end
-| ( 196, ( ( _, ( MlyValue.rule rule1, rule1left, rule1right)) ::
-rest671)) => let val result = MlyValue.rules (fn _ => let val (rule
- as rule1) = rule1 ()
- in ([rule])
-end)
- in ( LrTable.NT 91, ( result, rule1left, rule1right), rest671)
-end
-| ( 197, ( ( _, ( MlyValue.rules rules1, _, rules1right)) :: _ :: ( _
-, ( MlyValue.rule rule1, rule1left, _)) :: rest671)) => let val
-result = MlyValue.rules (fn _ => let val (rule as rule1) = rule1 ()
- val (rules as rules1) = rules1 ()
- in (rule :: rules)
-end)
- in ( LrTable.NT 91, ( result, rule1left, rules1right), rest671)
-end
-| ( 198, ( ( _, ( MlyValue.exp exp1, _, exp1right)) :: _ :: ( _, (
-MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val result =
-MlyValue.rule (fn _ => let val (pat as pat1) = pat1 ()
- val (exp as exp1) = exp1 ()
- in ((pat,exp))
-end)
- in ( LrTable.NT 90, ( result, pat1left, exp1right), rest671)
-end
-| ( 199, ( ( _, ( MlyValue.exp exp1, _, exp1right)) :: _ :: ( _, (
-MlyValue.field field1, field1left, _)) :: rest671)) => let val result
- = MlyValue.elabel (fn _ => let val (field as field1) = field1 ()
- val (exp as exp1) = exp1 ()
- in (field,exp)
-end)
- in ( LrTable.NT 40, ( result, field1left, exp1right), rest671)
-end
-| ( 200, ( ( _, ( MlyValue.elabels elabels1, _, elabels1right)) :: _
- :: ( _, ( MlyValue.elabel elabel1, elabel1left, _)) :: rest671)) =>
- let val result = MlyValue.elabels (fn _ => let val (elabel as
-elabel1) = elabel1 ()
- val (elabels as elabels1) = elabels1 ()
- in (elabel :: elabels)
-end)
- in ( LrTable.NT 41, ( result, elabel1left, elabels1right), rest671)
-
-end
-| ( 201, ( ( _, ( MlyValue.elabel elabel1, elabel1left, elabel1right)
-) :: rest671)) => let val result = MlyValue.elabels (fn _ => let val
- (elabel as elabel1) = elabel1 ()
- in ([elabel])
-end)
- in ( LrTable.NT 41, ( result, elabel1left, elabel1right), rest671)
-
-end
-| ( 202, ( ( _, ( MlyValue.exp exp2, _, exp2right)) :: _ :: ( _, (
-MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
-MlyValue.exp_ps (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- in ([exp1, exp2])
-end)
- in ( LrTable.NT 47, ( result, exp1left, exp2right), rest671)
-end
-| ( 203, ( ( _, ( MlyValue.exp_ps exp_ps1, _, exp_ps1right)) :: _ ::
-( _, ( MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val
-result = MlyValue.exp_ps (fn _ => let val (exp as exp1) = exp1 ()
- val (exp_ps as exp_ps1) = exp_ps1 ()
- in (exp :: exp_ps)
-end)
- in ( LrTable.NT 47, ( result, exp1left, exp_ps1right), rest671)
-end
-| ( 204, ( ( _, ( MlyValue.expnode expnode1, (expnodeleft as
-expnode1left), (expnoderight as expnode1right))) :: rest671)) => let
- val result = MlyValue.exp (fn _ => let val (expnode as expnode1) =
-expnode1 ()
- in (Exp.makeRegion' (expnode, expnodeleft, expnoderight))
-end)
- in ( LrTable.NT 44, ( result, expnode1left, expnode1right), rest671)
-
-end
-| ( 205, ( ( _, ( MlyValue.match match1, _, match1right)) :: _ :: ( _
-, ( MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
- MlyValue.expnode (fn _ => let val (exp as exp1) = exp1 ()
- val (match as match1) = match1 ()
- in (Exp.Handle (exp, match))
-end)
- in ( LrTable.NT 48, ( result, exp1left, match1right), rest671)
-end
-| ( 206, ( ( _, ( MlyValue.exp exp2, _, exp2right)) :: _ :: ( _, (
-MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
-MlyValue.expnode (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- in (Exp.Orelse (exp1, exp2))
-end)
- in ( LrTable.NT 48, ( result, exp1left, exp2right), rest671)
-end
-| ( 207, ( ( _, ( MlyValue.exp exp2, _, exp2right)) :: _ :: ( _, (
-MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
-MlyValue.expnode (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- in (Exp.Andalso (exp1, exp2))
-end)
- in ( LrTable.NT 48, ( result, exp1left, exp2right), rest671)
-end
-| ( 208, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
-MlyValue.expnode (fn _ => let val (exp as exp1) = exp1 ()
- val (ty as ty1) = ty1 ()
- in (Exp.Constraint (exp, ty))
-end)
- in ( LrTable.NT 48, ( result, exp1left, ty1right), rest671)
-end
-| ( 209, ( ( _, ( MlyValue.app_exp app_exp1, app_exp1left,
-app_exp1right)) :: rest671)) => let val result = MlyValue.expnode (fn
- _ => let val (app_exp as app_exp1) = app_exp1 ()
- in (Exp.FlatApp (Vector.fromList app_exp))
-end)
- in ( LrTable.NT 48, ( result, app_exp1left, app_exp1right), rest671)
-
-end
-| ( 210, ( ( _, ( MlyValue.match match1, _, match1right)) :: ( _, ( _
-, FN1left, _)) :: rest671)) => let val result = MlyValue.expnode (fn
- _ => let val (match as match1) = match1 ()
- in (Exp.Fn match)
-end)
- in ( LrTable.NT 48, ( result, FN1left, match1right), rest671)
-end
-| ( 211, ( ( _, ( MlyValue.match match1, _, match1right)) :: _ :: ( _
-, ( MlyValue.exp exp1, _, _)) :: ( _, ( _, CASE1left, _)) :: rest671))
- => let val result = MlyValue.expnode (fn _ => let val (exp as exp1)
- = exp1 ()
- val (match as match1) = match1 ()
- in (Exp.Case (exp, match))
-end)
- in ( LrTable.NT 48, ( result, CASE1left, match1right), rest671)
-end
-| ( 212, ( ( _, ( MlyValue.exp exp2, _, exp2right)) :: _ :: ( _, (
-MlyValue.exp exp1, _, _)) :: ( _, ( _, WHILE1left, _)) :: rest671)) =>
- let val result = MlyValue.expnode (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- in (Exp.While {test = exp1, expr = exp2})
-end)
- in ( LrTable.NT 48, ( result, WHILE1left, exp2right), rest671)
-end
-| ( 213, ( ( _, ( MlyValue.exp exp3, _, exp3right)) :: _ :: ( _, (
-MlyValue.exp exp2, _, _)) :: _ :: ( _, ( MlyValue.exp exp1, _, _)) ::
-( _, ( _, IF1left, _)) :: rest671)) => let val result =
-MlyValue.expnode (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- val exp3 = exp3 ()
- in (Exp.If (exp1, exp2, exp3))
-end)
- in ( LrTable.NT 48, ( result, IF1left, exp3right), rest671)
-end
-| ( 214, ( ( _, ( MlyValue.exp exp1, _, exp1right)) :: ( _, ( _,
-RAISE1left, _)) :: rest671)) => let val result = MlyValue.expnode (fn
- _ => let val (exp as exp1) = exp1 ()
- in (Exp.Raise exp)
-end)
- in ( LrTable.NT 48, ( result, RAISE1left, exp1right), rest671)
-end
-| ( 215, ( ( _, ( MlyValue.app_exp1 app_exp11, _, app_exp11right)) ::
- ( _, ( MlyValue.aexp aexp1, (aexpleft as aexp1left), aexpright)) ::
-rest671)) => let val result = MlyValue.app_exp (fn _ => let val (
-aexp as aexp1) = aexp1 ()
- val (app_exp1 as app_exp11) = app_exp11 ()
- in (
-Exp.makeRegion' (aexp, aexpleft, aexpright)
- :: app_exp1
-)
-end)
- in ( LrTable.NT 6, ( result, aexp1left, app_exp11right), rest671)
-end
-| ( 216, ( ( _, ( MlyValue.app_exp1 app_exp11, _, app_exp11right)) ::
- ( _, ( MlyValue.longvid longvid1, (longvidleft as longvid1left),
-longvidright)) :: rest671)) => let val result = MlyValue.app_exp (fn
- _ => let val (longvid as longvid1) = longvid1 ()
- val (app_exp1 as app_exp11) = app_exp11 ()
- in (
-Exp.makeRegion' (Exp.Var {name = longvid,
- fixop = Fixop.None},
- longvidleft, longvidright)
- :: app_exp1
-)
-end)
- in ( LrTable.NT 6, ( result, longvid1left, app_exp11right), rest671)
-
-end
-| ( 217, ( rest671)) => let val result = MlyValue.app_exp1 (fn _ =>
- ([]))
- in ( LrTable.NT 7, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 218, ( ( _, ( MlyValue.app_exp app_exp1, app_exp1left,
-app_exp1right)) :: rest671)) => let val result = MlyValue.app_exp1
- (fn _ => let val (app_exp as app_exp1) = app_exp1 ()
- in (app_exp)
-end)
- in ( LrTable.NT 7, ( result, app_exp1left, app_exp1right), rest671)
-
-end
-| ( 219, ( ( _, ( MlyValue.vid vid1, _, vid1right)) :: ( _, ( _,
-OP1left, _)) :: rest671)) => let val result = MlyValue.aexp (fn _ =>
- let val (vid as vid1) = vid1 ()
- in (
-Exp.Var {name = Longvid.short vid,
- fixop = Fixop.Op}
-)
-end)
- in ( LrTable.NT 0, ( result, OP1left, vid1right), rest671)
-end
-| ( 220, ( ( _, ( MlyValue.const const1, const1left, const1right)) ::
- rest671)) => let val result = MlyValue.aexp (fn _ => let val (const
- as const1) = const1 ()
- in (Exp.Const const)
-end)
- in ( LrTable.NT 0, ( result, const1left, const1right), rest671)
-end
-| ( 221, ( ( _, ( MlyValue.field field1, _, field1right)) :: ( _, ( _
-, HASH1left, _)) :: rest671)) => let val result = MlyValue.aexp (fn _
- => let val (field as field1) = field1 ()
- in (Exp.Selector field)
-end)
- in ( LrTable.NT 0, ( result, HASH1left, field1right), rest671)
-end
-| ( 222, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( MlyValue.elabels
-elabels1, _, _)) :: ( _, ( _, LBRACE1left, _)) :: rest671)) => let
- val result = MlyValue.aexp (fn _ => let val (elabels as elabels1) =
- elabels1 ()
- in (Exp.Record (Record.fromVector (Vector.fromList elabels)))
-end)
- in ( LrTable.NT 0, ( result, LBRACE1left, RBRACE1right), rest671)
-end
-| ( 223, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( _, LBRACE1left, _))
- :: rest671)) => let val result = MlyValue.aexp (fn _ => (Exp.unit))
- in ( LrTable.NT 0, ( result, LBRACE1left, RBRACE1right), rest671)
-end
-| ( 224, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( _, LPAREN1left, _))
- :: rest671)) => let val result = MlyValue.aexp (fn _ => (Exp.unit))
- in ( LrTable.NT 0, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 225, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.expnode
-expnode1, _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let
- val result = MlyValue.aexp (fn _ => let val (expnode as expnode1) =
- expnode1 ()
- in (expnode)
-end)
- in ( LrTable.NT 0, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 226, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.exp_ps
-exp_ps1, _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let val
- result = MlyValue.aexp (fn _ => let val (exp_ps as exp_ps1) =
-exp_ps1 ()
- in (Exp.Seq (Vector.fromList exp_ps))
-end)
- in ( LrTable.NT 0, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 227, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.exp_2c
-exp_2c1, _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let val
- result = MlyValue.aexp (fn _ => let val (exp_2c as exp_2c1) =
-exp_2c1 ()
- in (Exp.tuple (Vector.fromList exp_2c))
-end)
- in ( LrTable.NT 0, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 228, ( ( _, ( _, _, RBRACKET1right)) :: ( _, ( MlyValue.exp_list
-exp_list1, _, _)) :: ( _, ( _, LBRACKET1left, _)) :: rest671)) => let
- val result = MlyValue.aexp (fn _ => let val (exp_list as exp_list1)
- = exp_list1 ()
- in (Exp.List (Vector.fromList exp_list))
-end)
- in ( LrTable.NT 0, ( result, LBRACKET1left, RBRACKET1right), rest671)
-
-end
-| ( 229, ( ( _, ( _, _, RBRACKET1right)) :: ( _, ( _, LBRACKET1left,
- _)) :: rest671)) => let val result = MlyValue.aexp (fn _ => (
-Exp.List (Vector.new0 ())))
- in ( LrTable.NT 0, ( result, LBRACKET1left, RBRACKET1right), rest671)
-
-end
-| ( 230, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.exp exp1, _, _
-)) :: _ :: ( _, ( MlyValue.decs decs1, _, _)) :: ( _, ( _, LET1left, _
-)) :: rest671)) => let val result = MlyValue.aexp (fn _ => let val (
-decs as decs1) = decs1 ()
- val (exp as exp1) = exp1 ()
- in (Exp.Let (decs, exp))
-end)
- in ( LrTable.NT 0, ( result, LET1left, END1right), rest671)
-end
-| ( 231, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.exp_ps exp_ps1
-, exp_psleft, exp_psright)) :: _ :: ( _, ( MlyValue.decs decs1, _, _))
- :: ( _, ( _, LET1left, _)) :: rest671)) => let val result =
-MlyValue.aexp (fn _ => let val (decs as decs1) = decs1 ()
- val (exp_ps as exp_ps1) = exp_ps1 ()
- in (
-Exp.Let (decs, Exp.makeRegion' (Exp.Seq (Vector.fromList exp_ps),
- exp_psleft,
- exp_psright))
-)
-end)
- in ( LrTable.NT 0, ( result, LET1left, END1right), rest671)
-end
-| ( 232, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _,
-ADDRESS1left, _)) :: rest671)) => let val result = MlyValue.aexp (fn
- _ => let val (string as string1) = string1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.Address {name = string,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, ADDRESS1left, SEMICOLON1right), rest671)
-
-end
-| ( 233, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _,
-BUILD_CONST1left, _)) :: rest671)) => let val result = MlyValue.aexp
- (fn _ => let val (string as string1) = string1 ()
- val (ty as ty1) = ty1 ()
- in (Exp.Prim (PrimKind.BuildConst {name = string, ty = ty}))
-end)
- in ( LrTable.NT 0, ( result, BUILD_CONST1left, SEMICOLON1right),
-rest671)
-end
-| ( 234, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, (
-MlyValue.constOrBool constOrBool1, _, _)) :: _ :: ( _, ( MlyValue.ty
-ty1, _, _)) :: _ :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _
-, COMMAND_LINE_CONST1left, _)) :: rest671)) => let val result =
-MlyValue.aexp (fn _ => let val (string as string1) = string1 ()
- val (ty as ty1) = ty1 ()
- val (constOrBool as constOrBool1) = constOrBool1 ()
- in (
-Exp.Prim (PrimKind.CommandLineConst {name = string,
- ty = ty,
- value = constOrBool})
-)
-end)
- in ( LrTable.NT 0, ( result, COMMAND_LINE_CONST1left, SEMICOLON1right
-), rest671)
-end
-| ( 235, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _,
-CONST1left, _)) :: rest671)) => let val result = MlyValue.aexp (fn _
- => let val (string as string1) = string1 ()
- val (ty as ty1) = ty1 ()
- in (Exp.Prim (PrimKind.Const {name = string, ty = ty}))
-end)
- in ( LrTable.NT 0, ( result, CONST1left, SEMICOLON1right), rest671)
-
-end
-| ( 236, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.ieattributes ieattributes1, _, _)) ::
-( _, ( MlyValue.string string1, _, _)) :: ( _, ( _, EXPORT1left, _))
- :: rest671)) => let val result = MlyValue.aexp (fn _ => let val (
-string as string1) = string1 ()
- val (ieattributes as ieattributes1) = ieattributes1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.Export {attributes = ieattributes,
- name = string,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, EXPORT1left, SEMICOLON1right), rest671)
-
-end
-| ( 237, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.ieattributes ieattributes1, _, _)) ::
-( _, ( MlyValue.string string1, _, _)) :: ( _, ( _, IMPORT1left, _))
- :: rest671)) => let val result = MlyValue.aexp (fn _ => let val (
-string as string1) = string1 ()
- val (ieattributes as ieattributes1) = ieattributes1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.Import {attributes = ieattributes,
- name = string,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, IMPORT1left, SEMICOLON1right), rest671)
-
-end
-| ( 238, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.ieattributes ieattributes1, _, _)) ::
- _ :: ( _, ( _, IMPORT1left, _)) :: rest671)) => let val result =
-MlyValue.aexp (fn _ => let val (ieattributes as ieattributes1) =
-ieattributes1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.IImport {attributes = ieattributes,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, IMPORT1left, SEMICOLON1right), rest671)
-
-end
-| ( 239, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _,
-PRIM1left, _)) :: rest671)) => let val result = MlyValue.aexp (fn _
- => let val (string as string1) = string1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.Prim {name = string,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, PRIM1left, SEMICOLON1right), rest671)
-
-end
-| ( 240, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: ( _, ( MlyValue.symattributes symattributes1, _, _))
- :: ( _, ( MlyValue.string string1, _, _)) :: ( _, ( _, SYMBOL1left, _
-)) :: rest671)) => let val result = MlyValue.aexp (fn _ => let val (
-string as string1) = string1 ()
- val (symattributes as symattributes1) = symattributes1 ()
- val (ty as ty1) = ty1 ()
- in (
-Exp.Prim (PrimKind.Symbol {attributes = symattributes,
- name = string,
- ty = ty})
-)
-end)
- in ( LrTable.NT 0, ( result, SYMBOL1left, SEMICOLON1right), rest671)
-
-end
-| ( 241, ( ( _, ( _, _, SEMICOLON1right)) :: ( _, ( MlyValue.ty ty1,
- _, _)) :: _ :: _ :: ( _, ( _, SYMBOL1left, _)) :: rest671)) => let
- val result = MlyValue.aexp (fn _ => let val (ty as ty1) = ty1 ()
- in (Exp.Prim (PrimKind.ISymbol {ty = ty}))
-end)
- in ( LrTable.NT 0, ( result, SYMBOL1left, SEMICOLON1right), rest671)
-
-end
-| ( 242, ( rest671)) => let val result = MlyValue.ieattributes (fn _
- => ([]))
- in ( LrTable.NT 9, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 243, ( ( _, ( MlyValue.ieattributes ieattributes1, _,
-ieattributes1right)) :: ( _, ( MlyValue.id id1, (idleft as id1left),
-idright)) :: rest671)) => let val result = MlyValue.ieattributes (fn
- _ => let val (id as id1) = id1 ()
- val (ieattributes as ieattributes1) = ieattributes1 ()
- in (
-let
- val id = Symbol.toString (#1 id)
- in
- case id of
- "cdecl" => PrimKind.ImportExportAttribute.Cdecl :: ieattributes
- | "stdcall" => PrimKind.ImportExportAttribute.Stdcall :: ieattributes
- | _ => (error (reg (idleft, idright), concat ["invalid attribute", id])
- ; ieattributes)
- end
-)
-end)
- in ( LrTable.NT 9, ( result, id1left, ieattributes1right), rest671)
-
-end
-| ( 244, ( rest671)) => let val result = MlyValue.symattributes (fn
- _ => ([]))
- in ( LrTable.NT 130, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 245, ( ( _, ( MlyValue.symattributes symattributes1, _,
-symattributes1right)) :: ( _, ( MlyValue.id id1, (idleft as id1left),
-idright)) :: rest671)) => let val result = MlyValue.symattributes (fn
- _ => let val (id as id1) = id1 ()
- val (symattributes as symattributes1) = symattributes1 ()
- in (
-let
- val id = Symbol.toString (#1 id)
- in
- case id of
- "alloc" => PrimKind.SymbolAttribute.Alloc :: symattributes
- | _ => (error (reg (idleft, idright), concat ["invalid attribute", id])
- ; symattributes)
- end
-)
-end)
- in ( LrTable.NT 130, ( result, id1left, symattributes1right), rest671
-)
-end
-| ( 246, ( ( _, ( MlyValue.exp_2c exp_2c1, _, exp_2c1right)) :: _ ::
-( _, ( MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val
-result = MlyValue.exp_2c (fn _ => let val (exp as exp1) = exp1 ()
- val (exp_2c as exp_2c1) = exp_2c1 ()
- in (exp :: exp_2c)
-end)
- in ( LrTable.NT 45, ( result, exp1left, exp_2c1right), rest671)
-end
-| ( 247, ( ( _, ( MlyValue.exp exp2, _, exp2right)) :: _ :: ( _, (
-MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val result =
-MlyValue.exp_2c (fn _ => let val exp1 = exp1 ()
- val exp2 = exp2 ()
- in ([exp1, exp2])
-end)
- in ( LrTable.NT 45, ( result, exp1left, exp2right), rest671)
-end
-| ( 248, ( ( _, ( MlyValue.exp exp1, exp1left, exp1right)) :: rest671
-)) => let val result = MlyValue.exp_list (fn _ => let val (exp as
-exp1) = exp1 ()
- in ([exp])
-end)
- in ( LrTable.NT 46, ( result, exp1left, exp1right), rest671)
-end
-| ( 249, ( ( _, ( MlyValue.exp_list exp_list1, _, exp_list1right)) ::
- _ :: ( _, ( MlyValue.exp exp1, exp1left, _)) :: rest671)) => let val
- result = MlyValue.exp_list (fn _ => let val (exp as exp1) = exp1 ()
- val (exp_list as exp_list1) = exp_list1 ()
- in (exp :: exp_list)
-end)
- in ( LrTable.NT 46, ( result, exp1left, exp_list1right), rest671)
-end
-| ( 250, ( ( _, ( MlyValue.patnode patnode1, (patnodeleft as
-patnode1left), (patnoderight as patnode1right))) :: rest671)) => let
- val result = MlyValue.pat (fn _ => let val (patnode as patnode1) =
-patnode1 ()
- in (Pat.makeRegion' (patnode, patnodeleft, patnoderight))
-end)
- in ( LrTable.NT 81, ( result, patnode1left, patnode1right), rest671)
-
-end
-| ( 251, ( ( _, ( MlyValue.pat pat2, _, pat2right)) :: _ :: ( _, (
-MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val result =
-MlyValue.patnode (fn _ => let val pat1 = pat1 ()
- val pat2 = pat2 ()
- in (Pat.makeAs (pat1, pat2))
-end)
- in ( LrTable.NT 85, ( result, pat1left, pat2right), rest671)
-end
-| ( 252, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val result =
-MlyValue.patnode (fn _ => let val (pat as pat1) = pat1 ()
- val (ty as ty1) = ty1 ()
- in (Pat.Constraint (pat, ty))
-end)
- in ( LrTable.NT 85, ( result, pat1left, ty1right), rest671)
-end
-| ( 253, ( ( _, ( MlyValue.apats apats1, apats1left, apats1right)) ::
- rest671)) => let val result = MlyValue.patnode (fn _ => let val (
-apats as apats1) = apats1 ()
- in (Pat.FlatApp (Vector.fromList apats))
-end)
- in ( LrTable.NT 85, ( result, apats1left, apats1right), rest671)
-end
-| ( 254, ( ( _, ( MlyValue.apat apat1, apat1left, apat1right)) ::
-rest671)) => let val result = MlyValue.apats (fn _ => let val (apat
- as apat1) = apat1 ()
- in ([apat])
-end)
- in ( LrTable.NT 5, ( result, apat1left, apat1right), rest671)
-end
-| ( 255, ( ( _, ( MlyValue.apats apats1, _, apats1right)) :: ( _, (
-MlyValue.apat apat1, apat1left, _)) :: rest671)) => let val result =
-MlyValue.apats (fn _ => let val (apat as apat1) = apat1 ()
- val (apats as apats1) = apats1 ()
- in (apat :: apats)
-end)
- in ( LrTable.NT 5, ( result, apat1left, apats1right), rest671)
-end
-| ( 256, ( ( _, ( MlyValue.apatnode apatnode1, (apatnodeleft as
-apatnode1left), (apatnoderight as apatnode1right))) :: rest671)) =>
- let val result = MlyValue.apat (fn _ => let val (apatnode as
-apatnode1) = apatnode1 ()
- in (Pat.makeRegion' (apatnode, apatnodeleft, apatnoderight))
-end)
- in ( LrTable.NT 2, ( result, apatnode1left, apatnode1right), rest671)
-
-end
-| ( 257, ( ( _, ( MlyValue.longvidNoEqual longvidNoEqual1,
-longvidNoEqual1left, longvidNoEqual1right)) :: rest671)) => let val
-result = MlyValue.apatnode (fn _ => let val (longvidNoEqual as
-longvidNoEqual1) = longvidNoEqual1 ()
- in (
-Pat.Var {name = longvidNoEqual,
- fixop = Fixop.None}
-)
-end)
- in ( LrTable.NT 4, ( result, longvidNoEqual1left,
-longvidNoEqual1right), rest671)
-end
-| ( 258, ( ( _, ( MlyValue.vid vid1, _, vid1right)) :: ( _, ( _,
-OP1left, _)) :: rest671)) => let val result = MlyValue.apatnode (fn _
- => let val (vid as vid1) = vid1 ()
- in (
-Pat.Var {name = Longvid.short vid,
- fixop = Fixop.Op}
-)
-end)
- in ( LrTable.NT 4, ( result, OP1left, vid1right), rest671)
-end
-| ( 259, ( ( _, ( MlyValue.const const1, const1left, const1right)) ::
- rest671)) => let val result = MlyValue.apatnode (fn _ => let val (
-const as const1) = const1 ()
- in (
-let
- val _ =
- case Const.node const of
- Const.Real r =>
- let
- open Layout
- in
- Control.error
- (Const.region const,
- seq [str "real constants are not allowed in patterns: ",
- Const.layout const],
- empty)
- end
- | _ => ()
- in
- Pat.Const const
- end
-)
-end)
- in ( LrTable.NT 4, ( result, const1left, const1right), rest671)
-end
-| ( 260, ( ( _, ( _, WILD1left, WILD1right)) :: rest671)) => let val
- result = MlyValue.apatnode (fn _ => (Pat.Wild))
- in ( LrTable.NT 4, ( result, WILD1left, WILD1right), rest671)
-end
-| ( 261, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.pats pats1,
- _, _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let val result
- = MlyValue.apatnode (fn _ => let val (pats as pats1) = pats1 ()
- in (Pat.tuple (Vector.fromList pats))
-end)
- in ( LrTable.NT 4, ( result, LPAREN1left, RPAREN1right), rest671)
-end
-| ( 262, ( ( _, ( _, _, RBRACKET1right)) :: ( _, ( MlyValue.pats
-pats1, _, _)) :: ( _, ( _, LBRACKET1left, _)) :: rest671)) => let val
- result = MlyValue.apatnode (fn _ => let val (pats as pats1) = pats1
- ()
- in (Pat.List (Vector.fromList pats))
-end)
- in ( LrTable.NT 4, ( result, LBRACKET1left, RBRACKET1right), rest671)
-
-end
-| ( 263, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( _, LBRACE1left, _))
- :: rest671)) => let val result = MlyValue.apatnode (fn _ => (
-Pat.unit))
- in ( LrTable.NT 4, ( result, LBRACE1left, RBRACE1right), rest671)
-end
-| ( 264, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( MlyValue.patitems
-patitems1, _, _)) :: ( _, ( _, LBRACE1left, _)) :: rest671)) => let
- val result = MlyValue.apatnode (fn _ => let val (patitems as
-patitems1) = patitems1 ()
- in (
-let
- val (items, flexible) = patitems
- in
- Pat.Record {flexible = flexible,
- items = Vector.fromList items}
- end
-)
-end)
- in ( LrTable.NT 4, ( result, LBRACE1left, RBRACE1right), rest671)
-end
-| ( 265, ( rest671)) => let val result = MlyValue.pats (fn _ => ([])
-)
- in ( LrTable.NT 86, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 266, ( ( _, ( MlyValue.commapats commapats1, _, commapats1right))
- :: ( _, ( MlyValue.pat pat1, pat1left, _)) :: rest671)) => let val
-result = MlyValue.pats (fn _ => let val (pat as pat1) = pat1 ()
- val (commapats as commapats1) = commapats1 ()
- in (pat :: commapats)
-end)
- in ( LrTable.NT 86, ( result, pat1left, commapats1right), rest671)
-
-end
-| ( 267, ( rest671)) => let val result = MlyValue.commapats (fn _ =>
- ([]))
- in ( LrTable.NT 13, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 268, ( ( _, ( MlyValue.commapats commapats1, _, commapats1right))
- :: ( _, ( MlyValue.pat pat1, _, _)) :: ( _, ( _, COMMA1left, _)) ::
-rest671)) => let val result = MlyValue.commapats (fn _ => let val (
-pat as pat1) = pat1 ()
- val (commapats as commapats1) = commapats1 ()
- in (pat :: commapats)
-end)
- in ( LrTable.NT 13, ( result, COMMA1left, commapats1right), rest671)
-
-end
-| ( 269, ( ( _, ( MlyValue.patitems patitems1, _, patitems1right)) ::
- _ :: ( _, ( MlyValue.patitem patitem1, patitem1left, _)) :: rest671))
- => let val result = MlyValue.patitems (fn _ => let val (patitem as
-patitem1) = patitem1 ()
- val (patitems as patitems1) = patitems1 ()
- in (
-let val (items, f) = patitems
- in (patitem :: items, f)
- end
-)
-end)
- in ( LrTable.NT 84, ( result, patitem1left, patitems1right), rest671)
-
-end
-| ( 270, ( ( _, ( MlyValue.patitem patitem1, patitem1left,
-patitem1right)) :: rest671)) => let val result = MlyValue.patitems
- (fn _ => let val (patitem as patitem1) = patitem1 ()
- in ([patitem], false)
-end)
- in ( LrTable.NT 84, ( result, patitem1left, patitem1right), rest671)
-
-end
-| ( 271, ( ( _, ( _, DOTDOTDOT1left, DOTDOTDOT1right)) :: rest671))
- => let val result = MlyValue.patitems (fn _ => ([], true))
- in ( LrTable.NT 84, ( result, DOTDOTDOT1left, DOTDOTDOT1right),
-rest671)
-end
-| ( 272, ( ( _, ( MlyValue.pat pat1, _, pat1right)) :: _ :: ( _, (
-MlyValue.field field1, field1left, _)) :: rest671)) => let val result
- = MlyValue.patitem (fn _ => let val (field as field1) = field1 ()
- val (pat as pat1) = pat1 ()
- in ((field, Pat.Item.Field pat))
-end)
- in ( LrTable.NT 83, ( result, field1left, pat1right), rest671)
-end
-| ( 273, ( ( _, ( MlyValue.opaspat opaspat1, _, opaspat1right)) :: (
- _, ( MlyValue.constraint constraint1, _, _)) :: ( _, (
-MlyValue.vidNoEqual vidNoEqual1, vidNoEqual1left, _)) :: rest671)) =>
- let val result = MlyValue.patitem (fn _ => let val (vidNoEqual as
-vidNoEqual1) = vidNoEqual1 ()
- val (constraint as constraint1) = constraint1 ()
- val (opaspat as opaspat1) = opaspat1 ()
- in (
-Field.Symbol (Vid.toSymbol vidNoEqual),
- Pat.Item.Vid (vidNoEqual, constraint, opaspat)
-)
-end)
- in ( LrTable.NT 83, ( result, vidNoEqual1left, opaspat1right),
-rest671)
-end
-| ( 274, ( rest671)) => let val result = MlyValue.opaspat (fn _ => (
-NONE))
- in ( LrTable.NT 78, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 275, ( ( _, ( MlyValue.pat pat1, _, pat1right)) :: ( _, ( _,
-AS1left, _)) :: rest671)) => let val result = MlyValue.opaspat (fn _
- => let val (pat as pat1) = pat1 ()
- in (SOME pat)
-end)
- in ( LrTable.NT 78, ( result, AS1left, pat1right), rest671)
-end
-| ( 276, ( ( _, ( MlyValue.tynode tynode1, (tynodeleft as tynode1left
-), (tynoderight as tynode1right))) :: rest671)) => let val result =
-MlyValue.ty (fn _ => let val (tynode as tynode1) = tynode1 ()
- in (Type.makeRegion' (tynode, tynodeleft, tynoderight))
-end)
- in ( LrTable.NT 137, ( result, tynode1left, tynode1right), rest671)
-
-end
-| ( 277, ( ( _, ( MlyValue.tuple_ty tuple_ty1, tuple_ty1left,
-tuple_ty1right)) :: rest671)) => let val result = MlyValue.tynode (fn
- _ => let val (tuple_ty as tuple_ty1) = tuple_ty1 ()
- in (Type.tuple (Vector.fromList tuple_ty))
-end)
- in ( LrTable.NT 144, ( result, tuple_ty1left, tuple_ty1right),
-rest671)
-end
-| ( 278, ( ( _, ( MlyValue.ty ty2, _, ty2right)) :: _ :: ( _, (
-MlyValue.ty ty1, ty1left, _)) :: rest671)) => let val result =
-MlyValue.tynode (fn _ => let val ty1 = ty1 ()
- val ty2 = ty2 ()
- in (Type.arrow (ty1, ty2))
-end)
- in ( LrTable.NT 144, ( result, ty1left, ty2right), rest671)
-end
-| ( 279, ( ( _, ( MlyValue.ty'node ty'node1, ty'node1left,
-ty'node1right)) :: rest671)) => let val result = MlyValue.tynode (fn
- _ => let val (ty'node as ty'node1) = ty'node1 ()
- in (ty'node)
-end)
- in ( LrTable.NT 144, ( result, ty'node1left, ty'node1right), rest671)
-
-end
-| ( 280, ( ( _, ( MlyValue.ty'node ty'node1, (ty'nodeleft as
-ty'node1left), (ty'noderight as ty'node1right))) :: rest671)) => let
- val result = MlyValue.ty' (fn _ => let val (ty'node as ty'node1) =
-ty'node1 ()
- in (Type.makeRegion' (ty'node, ty'nodeleft, ty'noderight))
-end)
- in ( LrTable.NT 138, ( result, ty'node1left, ty'node1right), rest671)
-
-end
-| ( 281, ( ( _, ( MlyValue.tyvar tyvar1, tyvar1left, tyvar1right)) ::
- rest671)) => let val result = MlyValue.ty'node (fn _ => let val (
-tyvar as tyvar1) = tyvar1 ()
- in (Type.Var tyvar)
-end)
- in ( LrTable.NT 139, ( result, tyvar1left, tyvar1right), rest671)
-end
-| ( 282, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( MlyValue.tlabels
-tlabels1, _, _)) :: ( _, ( _, LBRACE1left, _)) :: rest671)) => let
- val result = MlyValue.ty'node (fn _ => let val (tlabels as tlabels1
-) = tlabels1 ()
- in (Type.Record (Srecord.fromVector (Vector.fromList tlabels)))
-end)
- in ( LrTable.NT 139, ( result, LBRACE1left, RBRACE1right), rest671)
-
-end
-| ( 283, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( _, LBRACE1left, _))
- :: rest671)) => let val result = MlyValue.ty'node (fn _ => (
-Type.unit))
- in ( LrTable.NT 139, ( result, LBRACE1left, RBRACE1right), rest671)
-
-end
-| ( 284, ( ( _, ( MlyValue.longtycon longtycon1, _, longtycon1right))
- :: _ :: ( _, ( MlyValue.ty0_pc ty0_pc1, _, _)) :: ( _, ( _,
-LPAREN1left, _)) :: rest671)) => let val result = MlyValue.ty'node
- (fn _ => let val (ty0_pc as ty0_pc1) = ty0_pc1 ()
- val (longtycon as longtycon1) = longtycon1 ()
- in (
-Type.Con (longtycon,
- Vector.fromList ty0_pc)
-)
-end)
- in ( LrTable.NT 139, ( result, LPAREN1left, longtycon1right), rest671
-)
-end
-| ( 285, ( ( _, ( _, _, RPAREN1right)) :: ( _, ( MlyValue.ty ty1, _,
- _)) :: ( _, ( _, LPAREN1left, _)) :: rest671)) => let val result =
-MlyValue.ty'node (fn _ => let val (ty as ty1) = ty1 ()
- in (Type.node ty)
-end)
- in ( LrTable.NT 139, ( result, LPAREN1left, RPAREN1right), rest671)
-
-end
-| ( 286, ( ( _, ( MlyValue.longtycon longtycon1, _, longtycon1right))
- :: ( _, ( MlyValue.ty' ty'1, ty'1left, _)) :: rest671)) => let val
-result = MlyValue.ty'node (fn _ => let val (ty' as ty'1) = ty'1 ()
- val (longtycon as longtycon1) = longtycon1 ()
- in (
-Type.Con (longtycon,
- Vector.new1 ty')
-)
-end)
- in ( LrTable.NT 139, ( result, ty'1left, longtycon1right), rest671)
-
-end
-| ( 287, ( ( _, ( MlyValue.longtycon longtycon1, longtycon1left,
-longtycon1right)) :: rest671)) => let val result = MlyValue.ty'node
- (fn _ => let val (longtycon as longtycon1) = longtycon1 ()
- in (
-Type.Con (longtycon,
- Vector.new0 ())
-)
-end)
- in ( LrTable.NT 139, ( result, longtycon1left, longtycon1right),
-rest671)
-end
-| ( 288, ( ( _, ( MlyValue.ty ty1, _, ty1right)) :: _ :: ( _, (
-MlyValue.field field1, field1left, _)) :: rest671)) => let val result
- = MlyValue.tlabel (fn _ => let val (field as field1) = field1 ()
- val (ty as ty1) = ty1 ()
- in (field, ty)
-end)
- in ( LrTable.NT 131, ( result, field1left, ty1right), rest671)
-end
-| ( 289, ( ( _, ( MlyValue.tlabels tlabels1, _, tlabels1right)) :: _
- :: ( _, ( MlyValue.tlabel tlabel1, tlabel1left, _)) :: rest671)) =>
- let val result = MlyValue.tlabels (fn _ => let val (tlabel as
-tlabel1) = tlabel1 ()
- val (tlabels as tlabels1) = tlabels1 ()
- in (tlabel :: tlabels)
-end)
- in ( LrTable.NT 132, ( result, tlabel1left, tlabels1right), rest671)
-
-end
-| ( 290, ( ( _, ( MlyValue.tlabel tlabel1, tlabel1left, tlabel1right)
-) :: rest671)) => let val result = MlyValue.tlabels (fn _ => let val
- (tlabel as tlabel1) = tlabel1 ()
- in ([tlabel])
-end)
- in ( LrTable.NT 132, ( result, tlabel1left, tlabel1right), rest671)
-
-end
-| ( 291, ( ( _, ( MlyValue.tuple_ty tuple_ty1, _, tuple_ty1right)) ::
- _ :: ( _, ( MlyValue.ty' ty'1, ty'1left, _)) :: rest671)) => let val
- result = MlyValue.tuple_ty (fn _ => let val (ty' as ty'1) = ty'1 ()
- val (tuple_ty as tuple_ty1) = tuple_ty1 ()
- in (ty' :: tuple_ty)
-end)
- in ( LrTable.NT 136, ( result, ty'1left, tuple_ty1right), rest671)
-
-end
-| ( 292, ( ( _, ( MlyValue.ty' ty'2, _, ty'2right)) :: _ :: ( _, (
-MlyValue.ty' ty'1, ty'1left, _)) :: rest671)) => let val result =
-MlyValue.tuple_ty (fn _ => let val ty'1 = ty'1 ()
- val ty'2 = ty'2 ()
- in ([ty'1, ty'2])
-end)
- in ( LrTable.NT 136, ( result, ty'1left, ty'2right), rest671)
-end
-| ( 293, ( ( _, ( MlyValue.ty ty2, _, ty2right)) :: _ :: ( _, (
-MlyValue.ty ty1, ty1left, _)) :: rest671)) => let val result =
-MlyValue.ty0_pc (fn _ => let val ty1 = ty1 ()
- val ty2 = ty2 ()
- in ([ty1, ty2])
-end)
- in ( LrTable.NT 140, ( result, ty1left, ty2right), rest671)
-end
-| ( 294, ( ( _, ( MlyValue.ty0_pc ty0_pc1, _, ty0_pc1right)) :: _ ::
-( _, ( MlyValue.ty ty1, ty1left, _)) :: rest671)) => let val result =
- MlyValue.ty0_pc (fn _ => let val (ty as ty1) = ty1 ()
- val (ty0_pc as ty0_pc1) = ty0_pc1 ()
- in (ty :: ty0_pc)
-end)
- in ( LrTable.NT 140, ( result, ty1left, ty0_pc1right), rest671)
-end
-| ( 295, ( ( _, ( MlyValue.const const1, const1left, const1right)) ::
- rest671)) => let val result = MlyValue.constOrBool (fn _ => let val
- (const as const1) = const1 ()
- in (const)
-end)
- in ( LrTable.NT 20, ( result, const1left, const1right), rest671)
-end
-| ( 296, ( ( _, ( MlyValue.id id1, (idleft as id1left), (idright as
-id1right))) :: rest671)) => let val result = MlyValue.constOrBool (fn
- _ => let val (id as id1) = id1 ()
- in (
-let
- fun ok b = Const.makeRegion (Const.Bool b, reg (idleft, idright))
- in
- case Symbol.toString (#1 id) of
- "false" => ok false
- | "true" => ok true
- | s => (error (#2 id, concat ["unknown boolean constant: ", s])
- ; ok false)
- end
-)
-end)
- in ( LrTable.NT 20, ( result, id1left, id1right), rest671)
-end
-| ( 297, ( ( _, ( MlyValue.const' const'1, (const'left as const'1left
-), (const'right as const'1right))) :: rest671)) => let val result =
-MlyValue.const (fn _ => let val (const' as const'1) = const'1 ()
- in (
-Const.makeRegion
- (const', reg (const'left, const'right))
-)
-end)
- in ( LrTable.NT 15, ( result, const'1left, const'1right), rest671)
-
-end
-| ( 298, ( ( _, ( MlyValue.int int1, int1left, int1right)) :: rest671
-)) => let val result = MlyValue.const' (fn _ => let val (int as int1
-) = int1 ()
- in (Const.Int int)
-end)
- in ( LrTable.NT 16, ( result, int1left, int1right), rest671)
-end
-| ( 299, ( ( _, ( MlyValue.word word1, word1left, word1right)) ::
-rest671)) => let val result = MlyValue.const' (fn _ => let val (word
- as word1) = word1 ()
- in (Const.Word word)
-end)
- in ( LrTable.NT 16, ( result, word1left, word1right), rest671)
-end
-| ( 300, ( ( _, ( MlyValue.REAL REAL1, REAL1left, REAL1right)) ::
-rest671)) => let val result = MlyValue.const' (fn _ => let val (REAL
- as REAL1) = REAL1 ()
- in (Const.Real REAL)
-end)
- in ( LrTable.NT 16, ( result, REAL1left, REAL1right), rest671)
-end
-| ( 301, ( ( _, ( MlyValue.STRING STRING1, STRING1left, STRING1right)
-) :: rest671)) => let val result = MlyValue.const' (fn _ => let val
- (STRING as STRING1) = STRING1 ()
- in (Const.String STRING)
-end)
- in ( LrTable.NT 16, ( result, STRING1left, STRING1right), rest671)
-
-end
-| ( 302, ( ( _, ( MlyValue.CHAR CHAR1, CHAR1left, CHAR1right)) ::
-rest671)) => let val result = MlyValue.const' (fn _ => let val (CHAR
- as CHAR1) = CHAR1 ()
- in (Const.Char CHAR)
-end)
- in ( LrTable.NT 16, ( result, CHAR1left, CHAR1right), rest671)
-end
-| ( 303, ( ( _, ( MlyValue.STRING STRING1, STRING1left, STRING1right)
-) :: rest671)) => let val result = MlyValue.string (fn _ => let val
- (STRING as STRING1) = STRING1 ()
- in (
-CharVector.tabulate
- (Vector.length STRING, fn i =>
- Char.fromInt (Int.fromIntInf (Vector.sub (STRING, i))))
-)
-end)
- in ( LrTable.NT 129, ( result, STRING1left, STRING1right), rest671)
-
-end
-| ( 304, ( ( _, ( MlyValue.longidNoAsterisk longidNoAsterisk1,
-longidNoAsterisk1left, longidNoAsterisk1right)) :: rest671)) => let
- val result = MlyValue.idNoAsterisk (fn _ => let val (
-longidNoAsterisk as longidNoAsterisk1) = longidNoAsterisk1 ()
- in (ensureNonqualified longidNoAsterisk)
-end)
- in ( LrTable.NT 62, ( result, longidNoAsterisk1left,
-longidNoAsterisk1right), rest671)
-end
-| ( 305, ( ( _, ( MlyValue.idNoAsterisk idNoAsterisk1,
-idNoAsterisk1left, idNoAsterisk1right)) :: rest671)) => let val
-result = MlyValue.id (fn _ => let val (idNoAsterisk as idNoAsterisk1)
- = idNoAsterisk1 ()
- in (idNoAsterisk)
-end)
- in ( LrTable.NT 60, ( result, idNoAsterisk1left, idNoAsterisk1right),
- rest671)
-end
-| ( 306, ( ( _, ( _, (ASTERISKleft as ASTERISK1left), (ASTERISKright
- as ASTERISK1right))) :: rest671)) => let val result = MlyValue.id
- (fn _ => ((Symbol.asterisk, reg (ASTERISKleft, ASTERISKright))))
- in ( LrTable.NT 60, ( result, ASTERISK1left, ASTERISK1right), rest671
-)
-end
-| ( 307, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.idEqual (fn _ => let val (id as id1) =
- id1 ()
- in (id)
-end)
- in ( LrTable.NT 61, ( result, id1left, id1right), rest671)
-end
-| ( 308, ( ( _, ( _, (EQUALOPleft as EQUALOP1left), (EQUALOPright as
-EQUALOP1right))) :: rest671)) => let val result = MlyValue.idEqual
- (fn _ => ((Symbol.equal, reg (EQUALOPleft, EQUALOPright))))
- in ( LrTable.NT 61, ( result, EQUALOP1left, EQUALOP1right), rest671)
-
-end
-| ( 309, ( ( _, ( MlyValue.longidNoAsterisk longidNoAsterisk1,
-longidNoAsterisk1left, longidNoAsterisk1right)) :: rest671)) => let
- val result = MlyValue.longid (fn _ => let val (longidNoAsterisk as
-longidNoAsterisk1) = longidNoAsterisk1 ()
- in (longidNoAsterisk)
-end)
- in ( LrTable.NT 65, ( result, longidNoAsterisk1left,
-longidNoAsterisk1right), rest671)
-end
-| ( 310, ( ( _, ( _, (ASTERISKleft as ASTERISK1left), (ASTERISKright
- as ASTERISK1right))) :: rest671)) => let val result =
-MlyValue.longid (fn _ => (
-([Symbol.asterisk], reg (ASTERISKleft, ASTERISKright))))
- in ( LrTable.NT 65, ( result, ASTERISK1left, ASTERISK1right), rest671
-)
-end
-| ( 311, ( ( _, ( MlyValue.LONGID LONGID1, (LONGIDleft as LONGID1left
-), (LONGIDright as LONGID1right))) :: rest671)) => let val result =
-MlyValue.longidNoAsterisk (fn _ => let val (LONGID as LONGID1) =
-LONGID1 ()
- in (
-let
- val syms = List.map (String.split (LONGID, #"."), Symbol.fromString)
- in
- (syms, reg (LONGIDleft, LONGIDright))
- end
-)
-end)
- in ( LrTable.NT 67, ( result, LONGID1left, LONGID1right), rest671)
-
-end
-| ( 312, ( ( _, ( MlyValue.longid longid1, longid1left, longid1right)
-) :: rest671)) => let val result = MlyValue.longidEqual (fn _ => let
- val (longid as longid1) = longid1 ()
- in (longid)
-end)
- in ( LrTable.NT 66, ( result, longid1left, longid1right), rest671)
-
-end
-| ( 313, ( ( _, ( _, (EQUALOPleft as EQUALOP1left), (EQUALOPright as
-EQUALOP1right))) :: rest671)) => let val result =
-MlyValue.longidEqual (fn _ => (
-([Symbol.equal], reg (EQUALOPleft, EQUALOPright))))
- in ( LrTable.NT 66, ( result, EQUALOP1left, EQUALOP1right), rest671)
-
-end
-| ( 314, ( ( _, ( MlyValue.idEqual idEqual1, idEqual1left,
-idEqual1right)) :: rest671)) => let val result = MlyValue.vid (fn _
- => let val (idEqual as idEqual1) = idEqual1 ()
- in (Vid.fromSymbol idEqual)
-end)
- in ( LrTable.NT 160, ( result, idEqual1left, idEqual1right), rest671)
-
-end
-| ( 315, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.vidNoEqual (fn _ => let val (id as id1
-) = id1 ()
- in (Vid.fromSymbol id)
-end)
- in ( LrTable.NT 161, ( result, id1left, id1right), rest671)
-end
-| ( 316, ( ( _, ( MlyValue.vid vid1, vid1left, vid1right)) :: rest671
-)) => let val result = MlyValue.vids (fn _ => let val (vid as vid1)
- = vid1 ()
- in ([vid])
-end)
- in ( LrTable.NT 162, ( result, vid1left, vid1right), rest671)
-end
-| ( 317, ( ( _, ( MlyValue.vids vids1, _, vids1right)) :: ( _, (
-MlyValue.vid vid1, vid1left, _)) :: rest671)) => let val result =
-MlyValue.vids (fn _ => let val (vid as vid1) = vid1 ()
- val (vids as vids1) = vids1 ()
- in (vid::vids)
-end)
- in ( LrTable.NT 162, ( result, vid1left, vids1right), rest671)
-end
-| ( 318, ( ( _, ( MlyValue.idEqual idEqual1, idEqual1left,
-idEqual1right)) :: rest671)) => let val result = MlyValue.var (fn _
- => let val (idEqual as idEqual1) = idEqual1 ()
- in (Var.fromSymbol idEqual)
-end)
- in ( LrTable.NT 159, ( result, idEqual1left, idEqual1right), rest671)
-
-end
-| ( 319, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.con (fn _ => let val (id as id1) = id1
- ()
- in (Con.fromSymbol id)
-end)
- in ( LrTable.NT 14, ( result, id1left, id1right), rest671)
-end
-| ( 320, ( ( _, ( MlyValue.idNoAsterisk idNoAsterisk1,
-idNoAsterisk1left, idNoAsterisk1right)) :: rest671)) => let val
-result = MlyValue.tycon (fn _ => let val (idNoAsterisk as
-idNoAsterisk1) = idNoAsterisk1 ()
- in (Tycon.fromSymbol idNoAsterisk)
-end)
- in ( LrTable.NT 143, ( result, idNoAsterisk1left, idNoAsterisk1right)
-, rest671)
-end
-| ( 321, ( ( _, ( MlyValue.TYVAR TYVAR1, (TYVARleft as TYVAR1left), (
-TYVARright as TYVAR1right))) :: rest671)) => let val result =
-MlyValue.tyvar (fn _ => let val (TYVAR as TYVAR1) = TYVAR1 ()
- in (
-Tyvar.newString (TYVAR, {left = TYVARleft,
- right = TYVARright})
-)
-end)
- in ( LrTable.NT 150, ( result, TYVAR1left, TYVAR1right), rest671)
-end
-| ( 322, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.field (fn _ => let val (id as id1) =
-id1 ()
- in (Field.Symbol (#1 id))
-end)
- in ( LrTable.NT 52, ( result, id1left, id1right), rest671)
-end
-| ( 323, ( ( _, ( MlyValue.int int1, (intleft as int1left), (intright
- as int1right))) :: rest671)) => let val result = MlyValue.field (fn
- _ => let val (int as int1) = int1 ()
- in (
-let
- val int =
- IntInf.toInt int
- handle Exn.Overflow =>
- (error (reg (intleft, intright),
- "field too huge")
- ; 0)
- in
- Field.Int
- (if int <= 0
- then (error (reg (intleft, intright),
- "nonpositive field")
- ; ~1)
- else
- int - 1)
- end
-)
-end)
- in ( LrTable.NT 52, ( result, int1left, int1right), rest671)
-end
-| ( 324, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.strid (fn _ => let val (id as id1) =
-id1 ()
- in (Strid.fromSymbol id)
-end)
- in ( LrTable.NT 128, ( result, id1left, id1right), rest671)
-end
-| ( 325, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.sigid (fn _ => let val (id as id1) =
-id1 ()
- in (Sigid.fromSymbol id)
-end)
- in ( LrTable.NT 106, ( result, id1left, id1right), rest671)
-end
-| ( 326, ( ( _, ( MlyValue.sigid sigid1, sigid1left, sigid1right)) ::
- rest671)) => let val result = MlyValue.sigids (fn _ => let val (
-sigid as sigid1) = sigid1 ()
- in ([sigid])
-end)
- in ( LrTable.NT 107, ( result, sigid1left, sigid1right), rest671)
-end
-| ( 327, ( ( _, ( MlyValue.sigids sigids1, _, sigids1right)) :: ( _,
-( MlyValue.sigid sigid1, sigid1left, _)) :: rest671)) => let val
-result = MlyValue.sigids (fn _ => let val (sigid as sigid1) = sigid1
- ()
- val (sigids as sigids1) = sigids1 ()
- in (sigid :: sigids)
-end)
- in ( LrTable.NT 107, ( result, sigid1left, sigids1right), rest671)
-
-end
-| ( 328, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671))
- => let val result = MlyValue.fctid (fn _ => let val (id as id1) =
-id1 ()
- in (Fctid.fromSymbol id)
-end)
- in ( LrTable.NT 51, ( result, id1left, id1right), rest671)
-end
-| ( 329, ( ( _, ( MlyValue.longidNoAsterisk longidNoAsterisk1,
-longidNoAsterisk1left, longidNoAsterisk1right)) :: rest671)) => let
- val result = MlyValue.longtycon (fn _ => let val (longidNoAsterisk
- as longidNoAsterisk1) = longidNoAsterisk1 ()
- in (Longtycon.fromSymbols longidNoAsterisk)
-end)
- in ( LrTable.NT 71, ( result, longidNoAsterisk1left,
-longidNoAsterisk1right), rest671)
-end
-| ( 330, ( ( _, ( MlyValue.longidEqual longidEqual1, longidEqual1left
-, longidEqual1right)) :: rest671)) => let val result =
-MlyValue.longvar (fn _ => let val (longidEqual as longidEqual1) =
-longidEqual1 ()
- in (Longvar.fromSymbols longidEqual)
-end)
- in ( LrTable.NT 73, ( result, longidEqual1left, longidEqual1right),
-rest671)
-end
-| ( 331, ( ( _, ( MlyValue.longidEqual longidEqual1, longidEqual1left
-, longidEqual1right)) :: rest671)) => let val result =
-MlyValue.longvid (fn _ => let val (longidEqual as longidEqual1) =
-longidEqual1 ()
- in (Longvid.fromSymbols longidEqual)
-end)
- in ( LrTable.NT 75, ( result, longidEqual1left, longidEqual1right),
-rest671)
-end
-| ( 332, ( ( _, ( MlyValue.longid longid1, longid1left, longid1right)
-) :: rest671)) => let val result = MlyValue.longvidNoEqual (fn _ =>
- let val (longid as longid1) = longid1 ()
- in (Longvid.fromSymbols longid)
-end)
- in ( LrTable.NT 76, ( result, longid1left, longid1right), rest671)
-
-end
-| ( 333, ( ( _, ( MlyValue.longid longid1, longid1left, longid1right)
-) :: rest671)) => let val result = MlyValue.longcon (fn _ => let val
- (longid as longid1) = longid1 ()
- in (Longcon.fromSymbols longid)
-end)
- in ( LrTable.NT 64, ( result, longid1left, longid1right), rest671)
-
-end
-| ( 334, ( ( _, ( MlyValue.longid longid1, longid1left, longid1right)
-) :: rest671)) => let val result = MlyValue.longstrid (fn _ => let
- val (longid as longid1) = longid1 ()
- in (Longstrid.fromSymbols longid)
-end)
- in ( LrTable.NT 68, ( result, longid1left, longid1right), rest671)
-
-end
-| ( 335, ( ( _, ( MlyValue.longstrid longstrid1, longstrid1left,
-longstrid1right)) :: rest671)) => let val result =
-MlyValue.longstrids (fn _ => let val (longstrid as longstrid1) =
-longstrid1 ()
- in ([longstrid])
-end)
- in ( LrTable.NT 70, ( result, longstrid1left, longstrid1right),
-rest671)
-end
-| ( 336, ( ( _, ( MlyValue.longstrids longstrids1, _,
-longstrids1right)) :: ( _, ( MlyValue.longstrid longstrid1,
-longstrid1left, _)) :: rest671)) => let val result =
-MlyValue.longstrids (fn _ => let val (longstrid as longstrid1) =
-longstrid1 ()
- val (longstrids as longstrids1) = longstrids1 ()
- in (longstrid :: longstrids)
-end)
- in ( LrTable.NT 70, ( result, longstrid1left, longstrids1right),
-rest671)
-end
-| _ => raise (mlyAction i392)
-end
-val void = MlyValue.VOID
-val extract = fn a => (fn MlyValue.program x => x
-| _ => let exception ParseInternal
- in raise ParseInternal end) a ()
-end
-end
-structure Tokens : ML_TOKENS =
-struct
-type svalue = ParserData.svalue
-type ('a,'b) token = ('a,'b) Token.token
-fun CHAR (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 0,(
-ParserData.MlyValue.CHAR (fn () => i),p1,p2))
-fun INT (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 1,(
-ParserData.MlyValue.INT (fn () => i),p1,p2))
-fun LONGID (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 2,(
-ParserData.MlyValue.LONGID (fn () => i),p1,p2))
-fun REAL (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 3,(
-ParserData.MlyValue.REAL (fn () => i),p1,p2))
-fun STRING (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 4,(
-ParserData.MlyValue.STRING (fn () => i),p1,p2))
-fun TYVAR (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 5,(
-ParserData.MlyValue.TYVAR (fn () => i),p1,p2))
-fun WORD (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 6,(
-ParserData.MlyValue.WORD (fn () => i),p1,p2))
-fun ABSTYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 7,(
-ParserData.MlyValue.VOID,p1,p2))
-fun AND (p1,p2) = Token.TOKEN (ParserData.LrTable.T 8,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ANDALSO (p1,p2) = Token.TOKEN (ParserData.LrTable.T 9,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ARROW (p1,p2) = Token.TOKEN (ParserData.LrTable.T 10,(
-ParserData.MlyValue.VOID,p1,p2))
-fun AS (p1,p2) = Token.TOKEN (ParserData.LrTable.T 11,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ASTERISK (p1,p2) = Token.TOKEN (ParserData.LrTable.T 12,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BAR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 13,(
-ParserData.MlyValue.VOID,p1,p2))
-fun CASE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 14,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COLON (p1,p2) = Token.TOKEN (ParserData.LrTable.T 15,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COLONGT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 16,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COMMA (p1,p2) = Token.TOKEN (ParserData.LrTable.T 17,(
-ParserData.MlyValue.VOID,p1,p2))
-fun DATATYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 18,(
-ParserData.MlyValue.VOID,p1,p2))
-fun DOTDOTDOT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 19,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ELSE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 20,(
-ParserData.MlyValue.VOID,p1,p2))
-fun END (p1,p2) = Token.TOKEN (ParserData.LrTable.T 21,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EOF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 22,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EQUALOP (p1,p2) = Token.TOKEN (ParserData.LrTable.T 23,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EQTYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 24,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EXCEPTION (p1,p2) = Token.TOKEN (ParserData.LrTable.T 25,(
-ParserData.MlyValue.VOID,p1,p2))
-fun DO (p1,p2) = Token.TOKEN (ParserData.LrTable.T 26,(
-ParserData.MlyValue.VOID,p1,p2))
-fun DARROW (p1,p2) = Token.TOKEN (ParserData.LrTable.T 27,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 28,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FUN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 29,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FUNCTOR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 30,(
-ParserData.MlyValue.VOID,p1,p2))
-fun HANDLE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 31,(
-ParserData.MlyValue.VOID,p1,p2))
-fun HASH (p1,p2) = Token.TOKEN (ParserData.LrTable.T 32,(
-ParserData.MlyValue.VOID,p1,p2))
-fun IF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 33,(
-ParserData.MlyValue.VOID,p1,p2))
-fun IN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 34,(
-ParserData.MlyValue.VOID,p1,p2))
-fun INCLUDE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 35,(
-ParserData.MlyValue.VOID,p1,p2))
-fun INFIX (p1,p2) = Token.TOKEN (ParserData.LrTable.T 36,(
-ParserData.MlyValue.VOID,p1,p2))
-fun INFIXR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 37,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LBRACE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 38,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LBRACKET (p1,p2) = Token.TOKEN (ParserData.LrTable.T 39,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LET (p1,p2) = Token.TOKEN (ParserData.LrTable.T 40,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LOCAL (p1,p2) = Token.TOKEN (ParserData.LrTable.T 41,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LPAREN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 42,(
-ParserData.MlyValue.VOID,p1,p2))
-fun NONFIX (p1,p2) = Token.TOKEN (ParserData.LrTable.T 43,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ORELSE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 44,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 45,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OP (p1,p2) = Token.TOKEN (ParserData.LrTable.T 46,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OPEN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 47,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OVERLOAD (p1,p2) = Token.TOKEN (ParserData.LrTable.T 48,(
-ParserData.MlyValue.VOID,p1,p2))
-fun RAISE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 49,(
-ParserData.MlyValue.VOID,p1,p2))
-fun RBRACE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 50,(
-ParserData.MlyValue.VOID,p1,p2))
-fun RBRACKET (p1,p2) = Token.TOKEN (ParserData.LrTable.T 51,(
-ParserData.MlyValue.VOID,p1,p2))
-fun REC (p1,p2) = Token.TOKEN (ParserData.LrTable.T 52,(
-ParserData.MlyValue.VOID,p1,p2))
-fun RPAREN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 53,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SEMICOLON (p1,p2) = Token.TOKEN (ParserData.LrTable.T 54,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SHARING (p1,p2) = Token.TOKEN (ParserData.LrTable.T 55,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SIG (p1,p2) = Token.TOKEN (ParserData.LrTable.T 56,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SIGNATURE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 57,(
-ParserData.MlyValue.VOID,p1,p2))
-fun STRUCT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 58,(
-ParserData.MlyValue.VOID,p1,p2))
-fun STRUCTURE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 59,(
-ParserData.MlyValue.VOID,p1,p2))
-fun THEN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 60,(
-ParserData.MlyValue.VOID,p1,p2))
-fun TYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 61,(
-ParserData.MlyValue.VOID,p1,p2))
-fun VAL (p1,p2) = Token.TOKEN (ParserData.LrTable.T 62,(
-ParserData.MlyValue.VOID,p1,p2))
-fun WHERE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 63,(
-ParserData.MlyValue.VOID,p1,p2))
-fun WHILE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 64,(
-ParserData.MlyValue.VOID,p1,p2))
-fun WILD (p1,p2) = Token.TOKEN (ParserData.LrTable.T 65,(
-ParserData.MlyValue.VOID,p1,p2))
-fun WITH (p1,p2) = Token.TOKEN (ParserData.LrTable.T 66,(
-ParserData.MlyValue.VOID,p1,p2))
-fun WITHTYPE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 67,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BUILD_CONST (p1,p2) = Token.TOKEN (ParserData.LrTable.T 68,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COMMAND_LINE_CONST (p1,p2) = Token.TOKEN (ParserData.LrTable.T 69
-,(ParserData.MlyValue.VOID,p1,p2))
-fun CONST (p1,p2) = Token.TOKEN (ParserData.LrTable.T 70,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ADDRESS (p1,p2) = Token.TOKEN (ParserData.LrTable.T 71,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EXPORT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 72,(
-ParserData.MlyValue.VOID,p1,p2))
-fun IMPORT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 73,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SYMBOL (p1,p2) = Token.TOKEN (ParserData.LrTable.T 74,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PRIM (p1,p2) = Token.TOKEN (ParserData.LrTable.T 75,(
-ParserData.MlyValue.VOID,p1,p2))
-end
-end
diff --git a/lang/mlton/files/ml.lex.sml b/lang/mlton/files/ml.lex.sml
deleted file mode 100644
index 0be061ef80b9..000000000000
--- a/lang/mlton/files/ml.lex.sml
+++ /dev/null
@@ -1,5660 +0,0 @@
-type int = Int.int
-functor MLLexFun (structure Tokens : ML_TOKENS)=
- struct
- structure UserDeclarations =
- struct
-(* Heavily modified from the SML/NJ sources by sweeks@sweeks.com. *)
-
-(* ml.lex
- *
- * Copyright 1989 by AT&T Bell Laboratories
- *
- * $Log: ml.lex,v $
- * Revision 1.3 1997/05/22 20:17:22 jhr
- * Changed lexer to accept "1e1" style floating-point literals.
- *
- * Revision 1.2 1997/01/28 23:20:40 jhr
- * Integer and word literals are now represented by IntInf.int (instead of
- * as strings).
- *
- *)
-
-type int = Int.t
-
-type svalue = Tokens.svalue
-type pos = SourcePos.t
-type lexresult = (svalue, pos) Tokens.token
-type lexarg = {source: Source.t}
-type arg = lexarg
-type ('a,'b) token = ('a,'b) Tokens.token
-
-val charlist: IntInf.t list ref = ref []
-val colNum: int ref = ref 0
-val commentLevel: int ref = ref 0
-val commentStart = ref SourcePos.bogus
-val lineFile: File.t ref = ref ""
-val lineNum: int ref = ref 0
-val stringStart = ref SourcePos.bogus
-val stringtype = ref false
-
-fun lineDirective (source, file, yypos) =
- Source.lineDirective (source, file,
- {lineNum = !lineNum,
- lineStart = yypos - !colNum})
-
-fun addString (s: string) =
- charlist :=
- String.fold (s, !charlist, fn (c, ac) => Int.toIntInf (Char.ord c) :: ac)
-
-fun addChar (c: char) = addString (String.fromChar c)
-
-fun inc (ri as ref (i: int)) = ri := i + 1
-
-fun dec (ri as ref (i: int)) = ri := i - 1
-
-fun error (source, left, right, msg) =
- Control.errorStr (Region.make {left = Source.getPos (source, left),
- right = Source.getPos (source, right)},
- msg)
-
-fun stringError (source, right, msg) =
- Control.errorStr (Region.make {left = !stringStart,
- right = Source.getPos (source, right)},
- msg)
-
-fun addOrd (i: IntInf.t): unit = List.push (charlist, i)
-
-fun addHexEscape (s: string, source, yypos): unit =
- case StringCvt.scanString (Pervasive.IntInf.scan StringCvt.HEX) s of
- NONE => stringError (source, yypos, "illegal unicode escape")
- | SOME i => addOrd i
-
-val eof: lexarg -> lexresult =
- fn {source, ...} =>
- let
- val pos = Source.lineStart source
- val _ =
- if !commentLevel > 0
- then Control.errorStr (Region.make {left = !commentStart,
- right = pos},
- "unclosed comment")
- else ()
- in
- Tokens.EOF (pos, pos)
- end
-
-val size = String.size
-
-fun tok (t, s, l, r) =
- let
- val l = Source.getPos (s, l)
- val r = Source.getPos (s, r)
- val _ =
- if true
- then ()
- else
- print (concat ["tok (",
- SourcePos.toString l,
- ", " ,
- SourcePos.toString r,
- ")\n"])
- in
- t (l, r)
- end
-
-fun tok' (t, x, s, l) = tok (fn (l, r) => t (x, l, r), s, l, l + size x)
-
-fun int (yytext, drop, source, yypos, {negate: bool}, radix) =
- Tokens.INT ({digits = String.dropPrefix (yytext, drop),
- negate = negate,
- radix = radix},
- Source.getPos (source, yypos),
- Source.getPos (source, yypos + size yytext))
-
-fun word (yytext, drop, source, yypos, radix) =
- Tokens.WORD ({digits = String.dropPrefix (yytext, drop),
- radix = radix},
- Source.getPos (source, yypos),
- Source.getPos (source, yypos + size yytext))
-
-
-end (* end of user routines *)
-exception LexError (* raised if illegal leaf action tried *)
-structure Internal =
- struct
-
-datatype yyfinstate = N of int
-type statedata = {fin : yyfinstate list, trans: int Vector.vector}
-(* transition & final state table *)
-val tab = let
-fun decode s k =
- let val k' = k + k
- val hi = Char.ord(String.sub(s, k'))
- val lo = Char.ord(String.sub(s, k' + 1))
- in hi * 256 + lo end
-val s = [
- (0,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (1,129,
-"\000\017\000\017\000\017\000\017\000\017\000\017\000\017\000\017\
-\\000\017\001\041\001\044\000\017\001\041\001\043\000\017\000\017\
-\\000\017\000\017\000\017\000\017\000\017\000\017\000\017\000\017\
-\\000\017\000\017\000\017\000\017\000\017\000\017\000\017\000\017\
-\\001\041\000\190\001\040\001\038\000\190\000\190\000\190\001\036\
-\\001\028\001\027\000\190\000\190\001\026\001\024\001\021\000\190\
-\\001\014\001\012\001\012\001\012\001\012\001\012\001\012\001\012\
-\\001\012\001\012\001\010\001\009\000\190\001\007\000\190\000\190\
-\\000\190\000\038\000\038\000\038\000\038\000\038\000\038\000\038\
-\\000\038\000\038\000\038\000\038\000\038\000\038\000\038\000\038\
-\\000\038\000\038\000\038\000\038\000\038\000\038\000\038\000\038\
-\\000\038\000\038\000\038\001\006\000\190\001\005\000\190\000\191\
-\\000\190\000\176\000\038\000\172\000\163\000\144\000\136\000\038\
-\\000\130\000\118\000\038\000\038\000\111\000\038\000\105\000\095\
-\\000\038\000\038\000\088\000\065\000\058\000\038\000\055\000\040\
-\\000\038\000\038\000\038\000\037\000\036\000\035\000\018\000\017\
-\\000\017"
-),
- (3,129,
-"\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\050\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\048\001\045\001\046\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045\001\045\001\045\001\045\001\045\001\045\001\045\001\045\
-\\001\045"
-),
- (5,129,
-"\001\051\001\051\001\051\001\051\001\051\001\051\001\051\001\051\
-\\001\051\001\051\001\088\001\051\001\051\001\087\001\051\001\051\
-\\001\051\001\051\001\051\001\051\001\051\001\051\001\051\001\051\
-\\001\051\001\051\001\051\001\051\001\051\001\051\001\051\001\051\
-\\001\052\001\052\001\086\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\053\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\052\
-\\001\052\001\052\001\052\001\052\001\052\001\052\001\052\001\051\
-\\001\051"
-),
- (7,129,
-"\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\091\001\094\001\089\001\091\001\093\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\091\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\090\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
-\\001\089"
-),
- (9,129,
-"\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\000\000\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\098\001\095\001\095\001\095\001\095\001\095\
-\\001\096\001\096\001\096\001\096\001\096\001\096\001\096\001\096\
-\\001\096\001\096\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095"
-),
- (11,129,
-"\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\000\000\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\103\001\100\
-\\001\101\001\101\001\101\001\101\001\101\001\101\001\101\001\101\
-\\001\101\001\101\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100\001\100\001\100\001\100\001\100\001\100\001\100\001\100\
-\\001\100"
-),
- (13,129,
-"\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\107\000\000\001\095\001\107\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\107\001\095\001\106\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\104\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
-\\001\095"
-),
- (15,129,
-"\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\111\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\114\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\112\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
-\\001\110"
-),
- (18,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\000\000\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\032\000\023\000\023\000\023\000\023\000\023\000\023\000\023\
-\\000\023\000\023\000\019\000\000\000\019\000\019\000\019\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (19,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\000\000\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\019\000\000\000\019\000\019\000\019\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (20,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
-\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
-\\000\021\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\000\000\021\000\000\000\021\000\000\
-\\000\021\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\000\000\021\000\000\000\021\000\000\
-\\000\000"
-),
- (21,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
-\\000\000\000\000\000\021\000\021\000\000\000\021\000\020\000\021\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
-\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
-\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
-\\000\000"
-),
- (22,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\022\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\000\000\000\000\000\000\000\000\022\
-\\000\000\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
-\\000\022\000\022\000\022\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (23,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\027\000\000\
-\\000\023\000\023\000\023\000\023\000\023\000\023\000\023\000\023\
-\\000\023\000\023\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (24,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\
-\\000\026\000\026\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\025\000\000\
-\\000\000"
-),
- (25,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\026\000\026\000\026\000\026\000\026\000\026\000\026\000\026\
-\\000\026\000\026\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (27,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\028\000\028\000\028\000\028\000\028\000\028\000\028\000\028\
-\\000\028\000\028\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (28,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\028\000\028\000\028\000\028\000\028\000\028\000\028\000\028\
-\\000\028\000\028\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\029\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\029\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (29,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\031\000\031\000\031\000\031\000\031\000\031\000\031\000\031\
-\\000\031\000\031\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\030\000\000\
-\\000\000"
-),
- (30,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\031\000\031\000\031\000\031\000\031\000\031\000\031\000\031\
-\\000\031\000\031\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (32,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\027\000\000\
-\\000\023\000\023\000\023\000\023\000\023\000\023\000\023\000\023\
-\\000\023\000\023\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\033\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (33,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\034\000\034\000\034\000\034\000\034\000\034\000\034\000\034\
-\\000\034\000\034\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\034\000\034\000\034\000\034\000\034\000\034\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\034\000\034\000\034\000\034\000\034\000\034\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (38,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (40,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\048\000\041\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (41,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\042\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (42,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\043\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (43,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\044\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (44,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\045\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (45,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\046\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (46,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\047\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (48,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\052\000\039\000\039\
-\\000\039\000\049\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (49,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\050\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (50,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\051\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (52,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\053\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (53,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\054\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (55,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\056\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (56,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\057\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (58,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\062\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\059\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (59,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\060\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (60,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\061\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (62,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\063\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (63,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\064\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (65,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\082\000\074\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\066\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (66,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\067\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (67,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\068\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (68,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\069\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (69,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\070\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (70,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\071\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (71,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\072\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (72,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\073\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (74,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\075\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (75,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\076\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (76,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\077\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (77,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\078\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (78,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\079\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (79,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\080\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (80,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\081\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (82,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\083\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (83,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\084\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (84,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\085\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (85,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\086\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (86,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\087\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (88,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\091\000\039\000\039\000\039\000\089\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (89,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\090\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (91,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\092\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (92,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\093\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (93,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\094\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (95,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\104\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\101\000\039\000\096\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (96,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\097\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (97,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\098\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (98,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\099\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (99,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\100\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (101,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\102\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (102,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\103\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (105,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\106\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (106,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\107\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (107,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\108\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (108,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\109\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (109,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\110\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (111,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\116\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\112\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (112,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\113\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (113,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\114\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (114,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\115\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (116,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\117\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (118,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\129\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\119\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (119,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\124\000\039\000\039\000\120\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (120,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\121\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (121,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\122\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (122,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\123\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (124,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\125\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (125,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\126\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (126,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\127\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (127,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\128\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (130,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\131\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (131,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\132\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (132,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\133\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (133,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\134\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (134,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\135\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (136,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\143\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\137\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (137,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\138\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (138,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\139\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (139,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\140\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (140,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\141\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (141,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\142\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (144,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\160\000\039\000\158\000\039\
-\\000\039\000\153\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\145\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (145,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\146\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (146,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\147\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (147,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\148\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (148,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\149\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (149,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\150\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (150,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\151\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (151,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\152\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (153,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\154\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (154,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\155\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (155,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\156\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (156,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\157\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (158,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\159\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (160,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\161\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (161,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\162\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (163,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\165\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\164\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (165,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\166\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (166,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\167\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (167,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\168\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (168,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\169\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (169,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\170\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (170,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\171\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (172,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\173\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (173,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\174\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (174,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\175\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (176,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\184\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\178\000\039\
-\\000\039\000\039\000\039\000\177\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (178,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\179\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (179,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\180\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (180,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\181\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (181,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\182\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (182,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\183\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (184,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\185\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (185,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\186\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (186,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\187\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (187,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\188\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (188,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\020\000\000\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\039\
-\\000\000\000\039\000\039\000\039\000\039\000\189\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\039\000\039\000\039\000\039\000\039\
-\\000\039\000\039\000\039\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (191,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\254\000\243\000\222\000\000\000\216\000\000\000\000\
-\\000\000\000\210\000\000\000\000\000\000\000\000\000\000\000\202\
-\\000\198\000\000\000\000\000\192\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (192,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\193\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (193,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\194\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (194,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\195\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (195,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\196\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (196,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\197\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (198,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\199\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (199,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\200\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (200,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\201\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (202,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\203\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (203,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\204\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (204,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\205\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (205,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\206\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (206,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\207\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (207,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\208\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (208,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\209\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (210,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\211\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (211,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\212\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (212,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\213\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (213,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\214\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (214,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\215\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (216,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\217\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (217,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\218\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (218,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\219\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (219,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\220\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (220,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\221\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (222,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\223\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (223,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\227\000\224\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (224,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\225\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (225,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\226\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (227,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\228\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (228,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\229\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (229,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\230\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (230,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\231\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (231,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\232\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (232,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\233\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (233,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\234\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (234,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\235\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (235,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\236\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (236,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\237\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (237,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\238\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (238,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\239\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (239,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\240\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (240,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\241\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (241,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\242\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (243,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\244\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (244,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\245\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (245,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\246\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (246,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\247\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (247,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\248\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (248,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\249\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (249,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\250\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (250,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\251\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (251,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\252\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (252,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\253\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (254,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\255\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (255,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (256,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\001\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (257,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\001\002\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (258,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\001\003\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (259,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\001\004\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (263,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\000\000\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\019\000\000\000\019\000\019\001\008\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (266,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\000\000\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\019\000\000\000\019\000\019\001\011\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (268,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\027\000\000\
-\\001\013\001\013\001\013\001\013\001\013\001\013\001\013\001\013\
-\\001\013\001\013\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (270,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\027\000\000\
-\\001\013\001\013\001\013\001\013\001\013\001\013\001\013\001\013\
-\\001\013\001\013\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\024\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\017\
-\\001\015\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (271,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\016\001\016\001\016\001\016\001\016\001\016\001\016\001\016\
-\\001\016\001\016\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\016\001\016\001\016\001\016\001\016\001\016\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\016\001\016\001\016\001\016\001\016\001\016\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (273,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\020\001\020\001\020\001\020\001\020\001\020\001\020\001\020\
-\\001\020\001\020\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\018\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (274,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\019\001\019\001\019\001\019\001\019\001\019\001\019\001\019\
-\\001\019\001\019\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\019\001\019\001\019\001\019\001\019\001\019\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\019\001\019\001\019\001\019\001\019\001\019\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (276,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\020\001\020\001\020\001\020\001\020\001\020\001\020\001\020\
-\\001\020\001\020\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (277,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\001\022\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (278,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\001\023\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (280,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\000\000\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\019\000\000\000\019\000\019\001\025\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (284,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\029\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (285,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\001\030\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (286,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\001\031\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (287,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\032\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (288,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\001\033\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (289,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\001\034\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (290,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\035\000\000\000\000\001\035\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\035\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (292,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\037\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\037\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\000\000\000\000\000\000\000\000\001\037\
-\\000\000\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\001\037\001\037\001\037\001\037\001\037\
-\\001\037\001\037\001\037\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (294,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\019\001\039\000\019\000\019\000\019\000\019\000\000\
-\\000\000\000\000\000\019\000\019\000\000\000\019\000\020\000\019\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\019\000\000\000\019\000\019\000\019\000\019\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\019\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\019\000\000\000\019\000\000\
-\\000\000"
-),
- (297,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\042\000\000\000\000\001\042\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\042\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (299,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\044\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (302,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\047\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (304,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\049\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (309,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\083\001\085\000\000\001\083\001\084\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\083\000\000\001\082\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\079\001\079\001\079\001\079\001\079\001\079\001\079\001\079\
-\\001\079\001\079\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\001\070\000\000\000\000\
-\\000\000\000\000\000\000\000\000\001\069\000\000\001\066\000\000\
-\\000\000\001\065\001\064\000\000\000\000\000\000\001\063\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\001\062\000\000\
-\\000\000\000\000\001\061\000\000\001\060\001\055\001\054\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (311,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\056\001\056\001\056\001\056\001\056\001\056\001\056\001\056\
-\\001\056\001\056\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\056\001\056\001\056\001\056\001\056\001\056\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\056\001\056\001\056\001\056\001\056\001\056\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (312,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\057\001\057\001\057\001\057\001\057\001\057\001\057\001\057\
-\\001\057\001\057\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\057\001\057\001\057\001\057\001\057\001\057\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\057\001\057\001\057\001\057\001\057\001\057\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (313,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\058\001\058\001\058\001\058\001\058\001\058\001\058\001\058\
-\\001\058\001\058\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\058\001\058\001\058\001\058\001\058\001\058\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\058\001\058\001\058\001\058\001\058\001\058\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (314,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\059\001\059\001\059\001\059\001\059\001\059\001\059\001\059\
-\\001\059\001\059\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\059\001\059\001\059\001\059\001\059\001\059\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\059\001\059\001\059\001\059\001\059\001\059\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (322,129,
-"\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\000\000\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\068\001\068\001\068\001\068\001\068\001\068\001\068\001\068\
-\\001\068\001\068\001\068\001\068\001\068\001\068\001\068\001\068\
-\\001\068\001\068\001\068\001\068\001\068\001\068\001\068\001\068\
-\\001\068\001\068\001\068\001\068\001\068\001\068\001\068\001\068\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067\001\067\001\067\001\067\001\067\001\067\001\067\001\067\
-\\001\067"
-),
- (326,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\071\001\071\001\071\001\071\001\071\001\071\001\071\001\071\
-\\001\071\001\071\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\071\001\071\001\071\001\071\001\071\001\071\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\071\001\071\001\071\001\071\001\071\001\071\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (327,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
-\\001\072\001\072\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (328,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\073\001\073\001\073\001\073\001\073\001\073\001\073\001\073\
-\\001\073\001\073\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\073\001\073\001\073\001\073\001\073\001\073\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\073\001\073\001\073\001\073\001\073\001\073\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (329,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\074\001\074\001\074\001\074\001\074\001\074\001\074\001\074\
-\\001\074\001\074\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\074\001\074\001\074\001\074\001\074\001\074\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\074\001\074\001\074\001\074\001\074\001\074\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (330,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\075\001\075\001\075\001\075\001\075\001\075\001\075\001\075\
-\\001\075\001\075\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\075\001\075\001\075\001\075\001\075\001\075\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\075\001\075\001\075\001\075\001\075\001\075\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (331,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\076\001\076\001\076\001\076\001\076\001\076\001\076\001\076\
-\\001\076\001\076\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\076\001\076\001\076\001\076\001\076\001\076\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\076\001\076\001\076\001\076\001\076\001\076\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (332,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\077\001\077\001\077\001\077\001\077\001\077\001\077\001\077\
-\\001\077\001\077\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\077\001\077\001\077\001\077\001\077\001\077\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\077\001\077\001\077\001\077\001\077\001\077\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (333,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\078\001\078\001\078\001\078\001\078\001\078\001\078\001\078\
-\\001\078\001\078\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\078\001\078\001\078\001\078\001\078\001\078\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\078\001\078\001\078\001\078\001\078\001\078\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (335,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\080\001\080\001\080\001\080\001\080\001\080\001\080\001\080\
-\\001\080\001\080\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (336,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
-\\001\081\001\081\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (339,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\083\000\000\000\000\001\083\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\083\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (340,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\085\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (343,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\088\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (347,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\092\000\000\000\000\001\092\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\092\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (349,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\094\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (352,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\097\001\097\001\097\001\097\001\097\001\097\001\097\001\097\
-\\001\097\001\097\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (354,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\099\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (357,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\102\001\102\001\102\001\102\001\102\001\102\001\102\001\102\
-\\001\102\001\102\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (360,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\105\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (363,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\109\000\000\000\000\001\109\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\001\109\000\000\001\108\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (366,129,
-"\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\000\000\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111"
-),
- (368,129,
-"\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\000\000\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\113\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
-\\001\111"
-),
- (370,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\001\115\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
- (371,129,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\001\116\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000"
-),
-(0, 0, "")]
-fun f(n, i, x) = (n, Vector.tabulate(i, decode x))
-val s = map f (rev (tl (rev s)))
-exception LexHackingError
-fun look ((j,x)::r, i) = if i = j then x else look(r, i)
- | look ([], i) = raise LexHackingError
-fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
-in Vector.fromList(map g
-[{fin = [], trans = 0},
-{fin = [(N 2)], trans = 1},
-{fin = [(N 2)], trans = 1},
-{fin = [], trans = 3},
-{fin = [], trans = 3},
-{fin = [], trans = 5},
-{fin = [], trans = 5},
-{fin = [(N 592)], trans = 7},
-{fin = [(N 592)], trans = 7},
-{fin = [], trans = 9},
-{fin = [], trans = 9},
-{fin = [], trans = 11},
-{fin = [], trans = 11},
-{fin = [], trans = 13},
-{fin = [], trans = 13},
-{fin = [(N 481)], trans = 15},
-{fin = [(N 481)], trans = 15},
-{fin = [(N 462)], trans = 0},
-{fin = [(N 391),(N 462)], trans = 18},
-{fin = [(N 391)], trans = 19},
-{fin = [], trans = 20},
-{fin = [(N 391)], trans = 21},
-{fin = [(N 391)], trans = 22},
-{fin = [(N 418)], trans = 23},
-{fin = [], trans = 24},
-{fin = [], trans = 25},
-{fin = [(N 411)], trans = 25},
-{fin = [], trans = 27},
-{fin = [(N 411)], trans = 28},
-{fin = [], trans = 29},
-{fin = [], trans = 30},
-{fin = [(N 411)], trans = 30},
-{fin = [(N 418)], trans = 32},
-{fin = [], trans = 33},
-{fin = [(N 429)], trans = 33},
-{fin = [(N 104),(N 462)], trans = 0},
-{fin = [(N 120),(N 391),(N 462)], trans = 19},
-{fin = [(N 102),(N 462)], trans = 0},
-{fin = [(N 391),(N 462)], trans = 38},
-{fin = [(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 40},
-{fin = [(N 391)], trans = 41},
-{fin = [(N 391)], trans = 42},
-{fin = [(N 350),(N 391)], trans = 43},
-{fin = [(N 391)], trans = 44},
-{fin = [(N 391)], trans = 45},
-{fin = [(N 391)], trans = 46},
-{fin = [(N 359),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 48},
-{fin = [(N 391)], trans = 49},
-{fin = [(N 391)], trans = 50},
-{fin = [(N 345),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 52},
-{fin = [(N 391)], trans = 53},
-{fin = [(N 339),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 55},
-{fin = [(N 391)], trans = 56},
-{fin = [(N 333),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 58},
-{fin = [(N 391)], trans = 59},
-{fin = [(N 391)], trans = 60},
-{fin = [(N 329),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 62},
-{fin = [(N 391)], trans = 63},
-{fin = [(N 324),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 65},
-{fin = [(N 391)], trans = 66},
-{fin = [(N 391)], trans = 67},
-{fin = [(N 391)], trans = 68},
-{fin = [(N 391)], trans = 69},
-{fin = [(N 309),(N 391)], trans = 70},
-{fin = [(N 391)], trans = 71},
-{fin = [(N 391)], trans = 72},
-{fin = [(N 319),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 74},
-{fin = [(N 292),(N 391)], trans = 75},
-{fin = [(N 391)], trans = 76},
-{fin = [(N 391)], trans = 77},
-{fin = [(N 391)], trans = 78},
-{fin = [(N 391)], trans = 79},
-{fin = [(N 391)], trans = 80},
-{fin = [(N 302),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 82},
-{fin = [(N 391)], trans = 83},
-{fin = [(N 391)], trans = 84},
-{fin = [(N 391)], trans = 85},
-{fin = [(N 391)], trans = 86},
-{fin = [(N 288),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 88},
-{fin = [(N 391)], trans = 89},
-{fin = [(N 280),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 91},
-{fin = [(N 391)], trans = 92},
-{fin = [(N 391)], trans = 93},
-{fin = [(N 276),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 95},
-{fin = [(N 391)], trans = 96},
-{fin = [(N 391)], trans = 97},
-{fin = [(N 391)], trans = 98},
-{fin = [(N 391)], trans = 99},
-{fin = [(N 366),(N 391)], trans = 38},
-{fin = [(N 265),(N 391)], trans = 101},
-{fin = [(N 391)], trans = 102},
-{fin = [(N 270),(N 391)], trans = 38},
-{fin = [(N 262),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 105},
-{fin = [(N 391)], trans = 106},
-{fin = [(N 391)], trans = 107},
-{fin = [(N 391)], trans = 108},
-{fin = [(N 391)], trans = 109},
-{fin = [(N 259),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 111},
-{fin = [(N 391)], trans = 112},
-{fin = [(N 391)], trans = 113},
-{fin = [(N 391)], trans = 114},
-{fin = [(N 252),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 116},
-{fin = [(N 246),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 118},
-{fin = [(N 221),(N 391)], trans = 119},
-{fin = [(N 391)], trans = 120},
-{fin = [(N 391)], trans = 121},
-{fin = [(N 235),(N 391)], trans = 122},
-{fin = [(N 242),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 124},
-{fin = [(N 391)], trans = 125},
-{fin = [(N 391)], trans = 126},
-{fin = [(N 391)], trans = 127},
-{fin = [(N 229),(N 391)], trans = 38},
-{fin = [(N 218),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 130},
-{fin = [(N 391)], trans = 131},
-{fin = [(N 391)], trans = 132},
-{fin = [(N 391)], trans = 133},
-{fin = [(N 391)], trans = 134},
-{fin = [(N 215),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 136},
-{fin = [(N 391)], trans = 137},
-{fin = [(N 200),(N 391)], trans = 138},
-{fin = [(N 391)], trans = 139},
-{fin = [(N 391)], trans = 140},
-{fin = [(N 391)], trans = 141},
-{fin = [(N 208),(N 391)], trans = 38},
-{fin = [(N 196),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 144},
-{fin = [(N 391)], trans = 145},
-{fin = [(N 391)], trans = 146},
-{fin = [(N 391)], trans = 147},
-{fin = [(N 391)], trans = 148},
-{fin = [(N 391)], trans = 149},
-{fin = [(N 391)], trans = 150},
-{fin = [(N 391)], trans = 151},
-{fin = [(N 190),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 153},
-{fin = [(N 391)], trans = 154},
-{fin = [(N 391)], trans = 155},
-{fin = [(N 391)], trans = 156},
-{fin = [(N 180),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 158},
-{fin = [(N 173),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 160},
-{fin = [(N 391)], trans = 161},
-{fin = [(N 169),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 163},
-{fin = [(N 193),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 165},
-{fin = [(N 391)], trans = 166},
-{fin = [(N 391)], trans = 167},
-{fin = [(N 391)], trans = 168},
-{fin = [(N 391)], trans = 169},
-{fin = [(N 391)], trans = 170},
-{fin = [(N 164),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 172},
-{fin = [(N 391)], trans = 173},
-{fin = [(N 391)], trans = 174},
-{fin = [(N 155),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 176},
-{fin = [(N 150),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 178},
-{fin = [(N 139),(N 391)], trans = 179},
-{fin = [(N 391)], trans = 180},
-{fin = [(N 391)], trans = 181},
-{fin = [(N 391)], trans = 182},
-{fin = [(N 374),(N 391)], trans = 38},
-{fin = [(N 391)], trans = 184},
-{fin = [(N 391)], trans = 185},
-{fin = [(N 391)], trans = 186},
-{fin = [(N 391)], trans = 187},
-{fin = [(N 391)], trans = 188},
-{fin = [(N 147),(N 391)], trans = 38},
-{fin = [(N 391),(N 462)], trans = 19},
-{fin = [(N 98),(N 462)], trans = 191},
-{fin = [], trans = 192},
-{fin = [], trans = 193},
-{fin = [], trans = 194},
-{fin = [], trans = 195},
-{fin = [], trans = 196},
-{fin = [(N 90)], trans = 0},
-{fin = [], trans = 198},
-{fin = [], trans = 199},
-{fin = [], trans = 200},
-{fin = [(N 96)], trans = 0},
-{fin = [], trans = 202},
-{fin = [], trans = 203},
-{fin = [], trans = 204},
-{fin = [], trans = 205},
-{fin = [], trans = 206},
-{fin = [], trans = 207},
-{fin = [], trans = 208},
-{fin = [(N 82)], trans = 0},
-{fin = [], trans = 210},
-{fin = [], trans = 211},
-{fin = [], trans = 212},
-{fin = [], trans = 213},
-{fin = [], trans = 214},
-{fin = [(N 72)], trans = 0},
-{fin = [], trans = 216},
-{fin = [], trans = 217},
-{fin = [], trans = 218},
-{fin = [], trans = 219},
-{fin = [], trans = 220},
-{fin = [(N 64)], trans = 0},
-{fin = [], trans = 222},
-{fin = [], trans = 223},
-{fin = [], trans = 224},
-{fin = [], trans = 225},
-{fin = [(N 56)], trans = 0},
-{fin = [], trans = 227},
-{fin = [], trans = 228},
-{fin = [], trans = 229},
-{fin = [], trans = 230},
-{fin = [], trans = 231},
-{fin = [], trans = 232},
-{fin = [], trans = 233},
-{fin = [], trans = 234},
-{fin = [], trans = 235},
-{fin = [], trans = 236},
-{fin = [], trans = 237},
-{fin = [], trans = 238},
-{fin = [], trans = 239},
-{fin = [], trans = 240},
-{fin = [], trans = 241},
-{fin = [(N 49)], trans = 0},
-{fin = [], trans = 243},
-{fin = [], trans = 244},
-{fin = [], trans = 245},
-{fin = [], trans = 246},
-{fin = [], trans = 247},
-{fin = [], trans = 248},
-{fin = [], trans = 249},
-{fin = [], trans = 250},
-{fin = [], trans = 251},
-{fin = [], trans = 252},
-{fin = [(N 29)], trans = 0},
-{fin = [], trans = 254},
-{fin = [], trans = 255},
-{fin = [], trans = 256},
-{fin = [], trans = 257},
-{fin = [], trans = 258},
-{fin = [], trans = 259},
-{fin = [(N 16)], trans = 0},
-{fin = [(N 108),(N 462)], trans = 0},
-{fin = [(N 106),(N 462)], trans = 0},
-{fin = [(N 127),(N 391),(N 462)], trans = 263},
-{fin = [(N 135),(N 391)], trans = 19},
-{fin = [(N 110),(N 462)], trans = 0},
-{fin = [(N 122),(N 391),(N 462)], trans = 266},
-{fin = [(N 125),(N 391)], trans = 19},
-{fin = [(N 414),(N 462)], trans = 268},
-{fin = [(N 414)], trans = 268},
-{fin = [(N 414),(N 462)], trans = 270},
-{fin = [], trans = 271},
-{fin = [(N 423)], trans = 271},
-{fin = [], trans = 273},
-{fin = [], trans = 274},
-{fin = [(N 440)], trans = 274},
-{fin = [(N 434)], trans = 276},
-{fin = [(N 462)], trans = 277},
-{fin = [], trans = 278},
-{fin = [(N 118)], trans = 0},
-{fin = [(N 391),(N 462)], trans = 280},
-{fin = [(N 132),(N 391)], trans = 19},
-{fin = [(N 100),(N 462)], trans = 0},
-{fin = [(N 114),(N 462)], trans = 0},
-{fin = [(N 112),(N 462)], trans = 284},
-{fin = [(N 460)], trans = 285},
-{fin = [], trans = 286},
-{fin = [], trans = 287},
-{fin = [], trans = 288},
-{fin = [], trans = 289},
-{fin = [], trans = 290},
-{fin = [(N 457)], trans = 290},
-{fin = [(N 377),(N 462)], trans = 292},
-{fin = [(N 377)], trans = 292},
-{fin = [(N 129),(N 391),(N 462)], trans = 294},
-{fin = [(N 445)], trans = 0},
-{fin = [(N 442),(N 462)], trans = 0},
-{fin = [(N 2),(N 462)], trans = 297},
-{fin = [(N 2)], trans = 297},
-{fin = [(N 7),(N 462)], trans = 299},
-{fin = [(N 7)], trans = 0},
-{fin = [(N 500)], trans = 0},
-{fin = [(N 500)], trans = 302},
-{fin = [(N 498)], trans = 0},
-{fin = [(N 500)], trans = 304},
-{fin = [(N 493)], trans = 0},
-{fin = [(N 495)], trans = 0},
-{fin = [(N 584)], trans = 0},
-{fin = [(N 582),(N 584)], trans = 0},
-{fin = [(N 574),(N 582),(N 584)], trans = 309},
-{fin = [(N 523)], trans = 0},
-{fin = [], trans = 311},
-{fin = [], trans = 312},
-{fin = [], trans = 313},
-{fin = [], trans = 314},
-{fin = [(N 543)], trans = 0},
-{fin = [(N 520)], trans = 0},
-{fin = [(N 517)], trans = 0},
-{fin = [(N 514)], trans = 0},
-{fin = [(N 511)], trans = 0},
-{fin = [(N 508)], trans = 0},
-{fin = [(N 505)], trans = 0},
-{fin = [], trans = 322},
-{fin = [(N 531)], trans = 0},
-{fin = [(N 527),(N 531)], trans = 0},
-{fin = [(N 560)], trans = 0},
-{fin = [], trans = 326},
-{fin = [], trans = 327},
-{fin = [], trans = 328},
-{fin = [], trans = 329},
-{fin = [], trans = 330},
-{fin = [], trans = 331},
-{fin = [], trans = 332},
-{fin = [], trans = 333},
-{fin = [(N 554)], trans = 0},
-{fin = [], trans = 335},
-{fin = [], trans = 336},
-{fin = [(N 536)], trans = 0},
-{fin = [(N 557)], trans = 0},
-{fin = [(N 566)], trans = 339},
-{fin = [(N 572)], trans = 340},
-{fin = [(N 572)], trans = 0},
-{fin = [(N 502),(N 582),(N 584)], trans = 0},
-{fin = [(N 579),(N 584)], trans = 343},
-{fin = [(N 579)], trans = 0},
-{fin = [(N 596)], trans = 0},
-{fin = [(N 594),(N 596)], trans = 0},
-{fin = [(N 592),(N 596)], trans = 347},
-{fin = [(N 592)], trans = 347},
-{fin = [(N 589),(N 596)], trans = 349},
-{fin = [(N 589)], trans = 0},
-{fin = [(N 490)], trans = 0},
-{fin = [(N 465),(N 490)], trans = 352},
-{fin = [(N 465)], trans = 352},
-{fin = [(N 490)], trans = 354},
-{fin = [(N 488)], trans = 0},
-{fin = [(N 472)], trans = 0},
-{fin = [(N 470),(N 472)], trans = 357},
-{fin = [(N 470)], trans = 357},
-{fin = [(N 467),(N 472)], trans = 0},
-{fin = [(N 490)], trans = 360},
-{fin = [(N 475),(N 488)], trans = 0},
-{fin = [(N 479),(N 490)], trans = 0},
-{fin = [(N 490)], trans = 363},
-{fin = [(N 479)], trans = 0},
-{fin = [], trans = 363},
-{fin = [(N 481),(N 490)], trans = 366},
-{fin = [(N 481)], trans = 366},
-{fin = [(N 481),(N 490)], trans = 368},
-{fin = [(N 481),(N 488)], trans = 366},
-{fin = [(N 490)], trans = 370},
-{fin = [], trans = 371},
-{fin = [(N 485)], trans = 0}])
-end
-structure StartStates =
- struct
- datatype yystartstate = STARTSTATE of int
-
-(* start state definitions *)
-
-val A = STARTSTATE 3;
-val F = STARTSTATE 7;
-val INITIAL = STARTSTATE 1;
-val L = STARTSTATE 9;
-val LL = STARTSTATE 11;
-val LLC = STARTSTATE 13;
-val LLCQ = STARTSTATE 15;
-val S = STARTSTATE 5;
-
-end
-type result = UserDeclarations.lexresult
- exception LexerError (* raised if illegal leaf action tried *)
-end
-
-type int = Int.int
-fun makeLexer (yyinput: int -> string) =
-let val yygone0:int= ~1
- val yyb = ref "\n" (* buffer *)
- val yybl: int ref = ref 1 (*buffer length *)
- val yybufpos: int ref = ref 1 (* location of next character to use *)
- val yygone: int ref = ref yygone0 (* position in file of beginning of buffer *)
- val yydone = ref false (* eof found yet? *)
- val yybegin: int ref = ref 1 (*Current 'start state' for lexer *)
-
- val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
- yybegin := x
-
-fun lex (yyarg as ({source})) =
-let fun continue() : Internal.result =
- let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0: int) =
- let fun action (i: int,nil) = raise LexError
- | action (i,nil::l) = action (i-1,l)
- | action (i,(node::acts)::l) =
- case node of
- Internal.N yyk =>
- (let fun yymktext() = String.substring(!yyb,i0,i-i0)
- val yypos: int = i0+ !yygone
- fun REJECT() = action(i,acts::l)
- open UserDeclarations Internal.StartStates
- in (yybufpos := i; case yyk of
-
- (* Application actions *)
-
- 100 => (tok (Tokens.COMMA, source, yypos, yypos + 1))
-| 102 => (tok (Tokens.LBRACE, source, yypos, yypos + 1))
-| 104 => (tok (Tokens.RBRACE, source, yypos, yypos + 1))
-| 106 => (tok (Tokens.LBRACKET, source, yypos, yypos + 1))
-| 108 => (tok (Tokens.RBRACKET, source, yypos, yypos + 1))
-| 110 => (tok (Tokens.SEMICOLON, source, yypos, yypos + 1))
-| 112 => (tok (Tokens.LPAREN, source, yypos, yypos + 1))
-| 114 => (tok (Tokens.RPAREN, source, yypos, yypos + 1))
-| 118 => (tok (Tokens.DOTDOTDOT, source, yypos, yypos + 3))
-| 120 => (tok (Tokens.BAR, source, yypos, yypos + 1))
-| 122 => (tok (Tokens.COLON, source, yypos, yypos + 1))
-| 125 => (tok (Tokens.COLONGT, source, yypos, yypos + 1))
-| 127 => (tok (Tokens.EQUALOP, source, yypos, yypos + 1))
-| 129 => (tok (Tokens.HASH, source, yypos, yypos + 1))
-| 132 => (tok (Tokens.ARROW, source, yypos, yypos + 2))
-| 135 => (tok (Tokens.DARROW, source, yypos, yypos + 2))
-| 139 => (tok (Tokens.AND, source, yypos, yypos + 3))
-| 147 => (tok (Tokens.ABSTYPE, source, yypos, yypos + 7))
-| 150 => (tok (Tokens.AS, source, yypos, yypos + 2))
-| 155 => (tok (Tokens.CASE, source, yypos, yypos + 4))
-| 16 => let val yytext=yymktext() in tok (Tokens.ADDRESS, source, yypos, yypos + size yytext) end
-| 164 => (tok (Tokens.DATATYPE, source, yypos, yypos + 8))
-| 169 => (tok (Tokens.ELSE, source, yypos, yypos + 4))
-| 173 => (tok (Tokens.END, source, yypos, yypos + 3))
-| 180 => (tok (Tokens.EQTYPE, source, yypos, yypos + 6))
-| 190 => (tok (Tokens.EXCEPTION, source, yypos, yypos + 9))
-| 193 => (tok (Tokens.DO, source, yypos, yypos + 2))
-| 196 => (tok (Tokens.FN, source, yypos, yypos + 2))
-| 2 => (continue ())
-| 200 => (tok (Tokens.FUN, source, yypos, yypos + 3))
-| 208 => (tok (Tokens.FUNCTOR, source, yypos, yypos + 7))
-| 215 => (tok (Tokens.HANDLE, source, yypos, yypos + 6))
-| 218 => (tok (Tokens.IF, source, yypos, yypos + 2))
-| 221 => (tok (Tokens.IN, source, yypos, yypos + 2))
-| 229 => (tok (Tokens.INCLUDE, source, yypos, yypos + 7))
-| 235 => (tok (Tokens.INFIX, source, yypos, yypos + 5))
-| 242 => (tok (Tokens.INFIXR, source, yypos, yypos + 6))
-| 246 => (tok (Tokens.LET, source, yypos, yypos + 3))
-| 252 => (tok (Tokens.LOCAL, source, yypos, yypos + 5))
-| 259 => (tok (Tokens.NONFIX, source, yypos, yypos + 6))
-| 262 => (tok (Tokens.OF, source, yypos, yypos + 2))
-| 265 => (tok (Tokens.OP, source, yypos, yypos + 2))
-| 270 => (tok (Tokens.OPEN, source, yypos, yypos + 4))
-| 276 => (tok (Tokens.RAISE, source, yypos, yypos + 5))
-| 280 => (tok (Tokens.REC, source, yypos, yypos + 3))
-| 288 => (tok (Tokens.SHARING, source, yypos, yypos + 7))
-| 29 => let val yytext=yymktext() in tok (Tokens.BUILD_CONST, source, yypos, yypos + size yytext) end
-| 292 => (tok (Tokens.SIG, source, yypos, yypos + 3))
-| 302 => (tok (Tokens.SIGNATURE, source, yypos, yypos + 9))
-| 309 => (tok (Tokens.STRUCT, source, yypos, yypos + 6))
-| 319 => (tok (Tokens.STRUCTURE, source, yypos, yypos + 9))
-| 324 => (tok (Tokens.THEN, source, yypos, yypos + 4))
-| 329 => (tok (Tokens.TYPE, source, yypos, yypos + 4))
-| 333 => (tok (Tokens.VAL, source, yypos, yypos + 3))
-| 339 => (tok (Tokens.WHERE, source, yypos, yypos + 5))
-| 345 => (tok (Tokens.WHILE, source, yypos, yypos + 5))
-| 350 => (tok (Tokens.WITH, source, yypos, yypos + 4))
-| 359 => (tok (Tokens.WITHTYPE, source, yypos, yypos + 8))
-| 366 => (tok (Tokens.ORELSE, source, yypos, yypos + 6))
-| 374 => (tok (Tokens.ANDALSO, source, yypos, yypos + 7))
-| 377 => let val yytext=yymktext() in tok' (Tokens.TYVAR, yytext, source, yypos) end
-| 391 => let val yytext=yymktext() in case yytext of
- "*" => tok (Tokens.ASTERISK, source, yypos, yypos + 1)
- | _ => tok' (Tokens.LONGID, yytext, source, yypos) end
-| 411 => let val yytext=yymktext() in tok' (Tokens.REAL, yytext, source, yypos) end
-| 414 => let val yytext=yymktext() in int (yytext, 0, source, yypos, {negate = false}, StringCvt.DEC) end
-| 418 => let val yytext=yymktext() in int (yytext, 1, source, yypos, {negate = true}, StringCvt.DEC) end
-| 423 => let val yytext=yymktext() in int (yytext, 2, source, yypos, {negate = false}, StringCvt.HEX) end
-| 429 => let val yytext=yymktext() in int (yytext, 3, source, yypos, {negate = true}, StringCvt.HEX) end
-| 434 => let val yytext=yymktext() in word (yytext, 2, source, yypos, StringCvt.DEC) end
-| 440 => let val yytext=yymktext() in word (yytext, 3, source, yypos, StringCvt.HEX) end
-| 442 => (charlist := []
- ; stringStart := Source.getPos (source, yypos)
- ; stringtype := true
- ; YYBEGIN S
- ; continue ())
-| 445 => (charlist := []
- ; stringStart := Source.getPos (source, yypos)
- ; stringtype := false
- ; YYBEGIN S
- ; continue ())
-| 457 => (YYBEGIN L
- ; commentStart := Source.getPos (source, yypos)
- ; commentLevel := 1
- ; continue ())
-| 460 => (YYBEGIN A
- ; commentLevel := 1
- ; commentStart := Source.getPos (source, yypos)
- ; continue ())
-| 462 => (error (source, yypos, yypos + 1, "illegal token") ;
- continue ())
-| 465 => let val yytext=yymktext() in YYBEGIN LL
- ; (lineNum := valOf (Int.fromString yytext)
- ; colNum := 1)
- handle Overflow => YYBEGIN A
- ; continue () end
-| 467 => ((* cheat: take n > 0 dots *) continue ())
-| 470 => let val yytext=yymktext() in YYBEGIN LLC
- ; (colNum := valOf (Int.fromString yytext))
- handle Overflow => YYBEGIN A
- ; continue () end
-| 472 => (YYBEGIN LLC; continue ()
- (* note hack, since ml-lex chokes on the empty string for 0* *))
-| 475 => (YYBEGIN INITIAL
- ; lineDirective (source, NONE, yypos + 2)
- ; commentLevel := 0; charlist := []; continue ())
-| 479 => (YYBEGIN LLCQ; continue ())
-| 481 => let val yytext=yymktext() in lineFile := yytext; continue () end
-| 485 => (YYBEGIN INITIAL
- ; lineDirective (source, SOME (!lineFile), yypos + 3)
- ; commentLevel := 0; charlist := []; continue ())
-| 488 => (YYBEGIN INITIAL; commentLevel := 0; charlist := []; continue ())
-| 49 => let val yytext=yymktext() in tok (Tokens.COMMAND_LINE_CONST, source, yypos, yypos + size yytext) end
-| 490 => (YYBEGIN A; continue ())
-| 493 => (inc commentLevel; continue ())
-| 495 => (Source.newline (source, yypos) ; continue ())
-| 498 => (dec commentLevel
- ; if 0 = !commentLevel then YYBEGIN INITIAL else ()
- ; continue ())
-| 500 => (continue ())
-| 502 => (let
- val s = Vector.fromListRev (!charlist)
- val _ = charlist := nil
- fun make (t, v) =
- t (v, !stringStart, Source.getPos (source, yypos + 1))
- val () = YYBEGIN INITIAL
- in
- if !stringtype
- then make (Tokens.STRING, s)
- else
- make (Tokens.CHAR,
- if 1 <> Vector.length s
- then (error
- (source, yypos, yypos + 1,
- "character constant not length 1")
- ; 0)
- else Vector.sub (s, 0))
- end)
-| 505 => (addChar #"\a"; continue ())
-| 508 => (addChar #"\b"; continue ())
-| 511 => (addChar #"\f"; continue ())
-| 514 => (addChar #"\n"; continue ())
-| 517 => (addChar #"\r"; continue ())
-| 520 => (addChar #"\t"; continue ())
-| 523 => (addChar #"\v"; continue ())
-| 527 => let val yytext=yymktext() in addChar (Char.chr(Char.ord(String.sub(yytext, 2))
- -Char.ord #"@"));
- continue () end
-| 531 => (error (source, yypos, yypos + 2,
- "illegal control escape; must be one of @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
- continue ())
-| 536 => let val yytext=yymktext() in let
- fun c (i, scale) =
- scale * (Char.ord (String.sub (yytext, i))
- - Char.ord #"0")
- val () = addOrd (IntInf.fromInt
- (c (1, 100) + c (2, 10) + c (3, 1)))
- in
- continue ()
- end end
-| 543 => let val yytext=yymktext() in addHexEscape (String.substring (yytext, 2, 4),
- source, yypos)
- ; continue () end
-| 554 => let val yytext=yymktext() in addHexEscape (String.substring (yytext, 2, 8),
- source, yypos)
- ; continue () end
-| 557 => (addString "\""; continue ())
-| 56 => let val yytext=yymktext() in tok (Tokens.CONST, source, yypos, yypos + size yytext) end
-| 560 => (addString "\\"; continue ())
-| 566 => (YYBEGIN F; continue ())
-| 572 => (Source.newline (source, yypos + 1) ; YYBEGIN F ; continue ())
-| 574 => (stringError (source, yypos, "illegal string escape")
- ; continue ())
-| 579 => (Source.newline (source, yypos)
- ; stringError (source, yypos, "unclosed string")
- ; continue ())
-| 582 => let val yytext=yymktext() in addString yytext; continue () end
-| 584 => (stringError (source, yypos + 1, "illegal character in string")
- ; continue ())
-| 589 => (Source.newline (source, yypos) ; continue ())
-| 592 => (continue ())
-| 594 => (YYBEGIN S
- ; stringStart := Source.getPos (source, yypos)
- ; continue ())
-| 596 => (stringError (source, yypos, "unclosed string")
- ; continue ())
-| 64 => let val yytext=yymktext() in tok (Tokens.EXPORT, source, yypos, yypos + size yytext) end
-| 7 => (Source.newline (source, yypos); continue ())
-| 72 => let val yytext=yymktext() in tok (Tokens.IMPORT, source, yypos, yypos + size yytext) end
-| 82 => let val yytext=yymktext() in tok (Tokens.OVERLOAD, source, yypos, yypos + size yytext) end
-| 90 => let val yytext=yymktext() in tok (Tokens.SYMBOL, source, yypos, yypos + size yytext) end
-| 96 => let val yytext=yymktext() in tok (Tokens.PRIM, source, yypos, yypos + size yytext) end
-| 98 => (tok (Tokens.WILD, source, yypos, yypos + 1))
-| _ => raise Internal.LexerError
-
- ) end )
-
- val {fin,trans} = Vector.sub (Internal.tab, s)
- val NewAcceptingLeaves = fin::AcceptingLeaves
- in if l = !yybl then
- if trans = #trans(Vector.sub(Internal.tab,0))
- then action(l,NewAcceptingLeaves
-) else let val newchars= if !yydone then "" else yyinput 1024
- in if (String.size newchars)=0
- then (yydone := true;
- if (l=i0) then UserDeclarations.eof yyarg
- else action(l,NewAcceptingLeaves))
- else (if i0=l then yyb := newchars
- else yyb := String.substring(!yyb,i0,l-i0)^newchars;
- yygone := !yygone+i0;
- yybl := String.size (!yyb);
- scan (s,AcceptingLeaves,l-i0,0))
- end
- else let val NewChar = Char.ord (CharVector.sub (!yyb,l))
- val NewChar = if NewChar<128 then NewChar else 128
- val NewState = Vector.sub (trans, NewChar)
- in if NewState=0 then action(l,NewAcceptingLeaves)
- else scan(NewState,NewAcceptingLeaves,l+1,i0)
- end
- end
-(*
- val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
-then !yybegin+1 else !yybegin
-*)
- in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
- end
-in continue end
- in lex
- end
-end
diff --git a/lang/mlton/files/mlb.grm.sig b/lang/mlton/files/mlb.grm.sig
deleted file mode 100644
index 66ca84bf9b98..000000000000
--- a/lang/mlton/files/mlb.grm.sig
+++ /dev/null
@@ -1,32 +0,0 @@
-signature MLB_TOKENS =
-sig
-type ('a,'b) token
-type svalue
-val STRING: (string) * 'a * 'a -> (svalue,'a) token
-val FILE: (string) * 'a * 'a -> (svalue,'a) token
-val PRIM: 'a * 'a -> (svalue,'a) token
-val ANN: 'a * 'a -> (svalue,'a) token
-val STRUCTURE: 'a * 'a -> (svalue,'a) token
-val SIGNATURE: 'a * 'a -> (svalue,'a) token
-val OPEN: 'a * 'a -> (svalue,'a) token
-val LOCAL: 'a * 'a -> (svalue,'a) token
-val LET: 'a * 'a -> (svalue,'a) token
-val IN: 'a * 'a -> (svalue,'a) token
-val FUNCTOR: 'a * 'a -> (svalue,'a) token
-val EQUALOP: 'a * 'a -> (svalue,'a) token
-val END: 'a * 'a -> (svalue,'a) token
-val BASIS: 'a * 'a -> (svalue,'a) token
-val BAS: 'a * 'a -> (svalue,'a) token
-val AND: 'a * 'a -> (svalue,'a) token
-val EOF: 'a * 'a -> (svalue,'a) token
-val SEMICOLON: 'a * 'a -> (svalue,'a) token
-val COMMA: 'a * 'a -> (svalue,'a) token
-val ID: (string) * 'a * 'a -> (svalue,'a) token
-end
-signature MLB_LRVALS=
-sig
-structure Tokens : MLB_TOKENS
-structure ParserData:PARSER_DATA
-sharing type ParserData.Token.token = Tokens.token
-sharing type ParserData.svalue = Tokens.svalue
-end
diff --git a/lang/mlton/files/mlb.grm.sml b/lang/mlton/files/mlb.grm.sml
deleted file mode 100644
index 91a580aa635d..000000000000
--- a/lang/mlton/files/mlb.grm.sml
+++ /dev/null
@@ -1,894 +0,0 @@
-
-functor MLBLrValsFun (structure Token: TOKEN
- structure Ast: AST
- val lexAndParseProgOrMLB: File.t * Region.t ->
- Ast.Basdec.node) =
-struct
-structure ParserData=
-struct
-structure Header =
-struct
-(* Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh
- * Jagannathan, and Stephen Weeks.
- * Copyright (C) 1997-2000 NEC Research Institute.
- *
- * MLton is released under a BSD-style license.
- * See the file MLton-LICENSE for details.
- *)
-
-type int = Int.t
-
-fun reg (left, right) = Region.make {left = left, right = right}
-fun error (reg, msg) = Control.error (reg, Layout.str msg, Layout.empty)
-
-open Ast
-
-type fctbinds = {lhs: Fctid.t, rhs: Fctid.t} list
-type sigbinds = {lhs: Sigid.t, rhs: Sigid.t} list
-type strbinds = {lhs: Strid.t, rhs: Strid.t} list
-
-type basbinds = {name: Basid.t, def: Basexp.t} list
-
-
-end
-structure LrTable = Token.LrTable
-structure Token = Token
-local open LrTable in
-val table=let val actionRows =
-"\
-\\001\000\001\000\025\000\000\000\
-\\001\000\001\000\025\000\006\000\070\000\012\000\069\000\000\000\
-\\001\000\004\000\000\000\000\000\
-\\001\000\008\000\071\000\000\000\
-\\001\000\008\000\074\000\000\000\
-\\001\000\008\000\082\000\000\000\
-\\001\000\008\000\084\000\000\000\
-\\001\000\009\000\053\000\000\000\
-\\001\000\011\000\039\000\000\000\
-\\001\000\011\000\049\000\000\000\
-\\001\000\011\000\081\000\000\000\
-\\001\000\020\000\021\000\000\000\
-\\086\000\000\000\
-\\087\000\000\000\
-\\088\000\003\000\017\000\007\000\016\000\010\000\015\000\013\000\014\000\
-\\014\000\013\000\015\000\012\000\016\000\011\000\017\000\010\000\
-\\018\000\009\000\019\000\008\000\020\000\007\000\000\000\
-\\089\000\000\000\
-\\090\000\000\000\
-\\091\000\000\000\
-\\092\000\000\000\
-\\093\000\000\000\
-\\094\000\000\000\
-\\095\000\000\000\
-\\096\000\000\000\
-\\097\000\000\000\
-\\098\000\000\000\
-\\099\000\000\000\
-\\100\000\000\000\
-\\101\000\000\000\
-\\102\000\000\000\
-\\103\000\000\000\
-\\104\000\000\000\
-\\105\000\005\000\052\000\000\000\
-\\105\000\005\000\052\000\009\000\051\000\000\000\
-\\106\000\000\000\
-\\107\000\000\000\
-\\108\000\000\000\
-\\109\000\000\000\
-\\110\000\005\000\047\000\000\000\
-\\110\000\005\000\047\000\009\000\046\000\000\000\
-\\111\000\000\000\
-\\112\000\000\000\
-\\113\000\000\000\
-\\114\000\000\000\
-\\115\000\005\000\044\000\000\000\
-\\115\000\005\000\044\000\009\000\043\000\000\000\
-\\116\000\000\000\
-\\117\000\000\000\
-\\118\000\000\000\
-\\119\000\005\000\077\000\000\000\
-\\120\000\000\000\
-\\121\000\000\000\
-\\122\000\000\000\
-\\123\000\000\000\
-\\124\000\000\000\
-\\125\000\000\000\
-\\126\000\001\000\025\000\000\000\
-\\127\000\000\000\
-\\128\000\000\000\
-\\129\000\000\000\
-\\130\000\000\000\
-\\131\000\000\000\
-\\132\000\000\000\
-\\133\000\000\000\
-\\134\000\020\000\021\000\000\000\
-\\135\000\000\000\
-\"
-val actionRowNumbers =
-"\014\000\013\000\012\000\017\000\
-\\014\000\025\000\024\000\026\000\
-\\011\000\000\000\000\000\000\000\
-\\014\000\000\000\000\000\014\000\
-\\016\000\008\000\063\000\061\000\
-\\044\000\020\000\059\000\060\000\
-\\038\000\019\000\058\000\054\000\
-\\023\000\055\000\009\000\057\000\
-\\032\000\018\000\007\000\021\000\
-\\015\000\014\000\062\000\064\000\
-\\041\000\000\000\000\000\035\000\
-\\000\000\000\000\056\000\014\000\
-\\029\000\000\000\000\000\001\000\
-\\003\000\043\000\040\000\045\000\
-\\037\000\034\000\039\000\004\000\
-\\031\000\028\000\033\000\052\000\
-\\050\000\048\000\046\000\014\000\
-\\014\000\027\000\042\000\036\000\
-\\022\000\030\000\047\000\000\000\
-\\010\000\005\000\049\000\001\000\
-\\051\000\006\000\053\000\002\000"
-val gotoT =
-"\
-\\007\000\004\000\008\000\003\000\009\000\002\000\010\000\001\000\
-\\020\000\083\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\007\000\004\000\008\000\003\000\009\000\016\000\010\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\001\000\018\000\002\000\017\000\000\000\
-\\019\000\022\000\025\000\021\000\028\000\020\000\000\000\
-\\019\000\026\000\021\000\025\000\024\000\024\000\000\000\
-\\013\000\029\000\014\000\028\000\019\000\027\000\000\000\
-\\007\000\004\000\008\000\003\000\009\000\030\000\010\000\001\000\000\000\
-\\015\000\033\000\018\000\032\000\019\000\031\000\000\000\
-\\004\000\035\000\013\000\034\000\019\000\027\000\000\000\
-\\007\000\004\000\008\000\003\000\009\000\036\000\010\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\001\000\018\000\002\000\039\000\003\000\038\000\000\000\
-\\000\000\
-\\027\000\040\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\023\000\043\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\013\000\029\000\014\000\046\000\019\000\027\000\000\000\
-\\000\000\
-\\000\000\
-\\017\000\048\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\007\000\004\000\008\000\003\000\009\000\052\000\010\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\019\000\022\000\026\000\054\000\028\000\053\000\000\000\
-\\019\000\022\000\025\000\055\000\028\000\020\000\000\000\
-\\000\000\
-\\019\000\026\000\022\000\057\000\024\000\056\000\000\000\
-\\019\000\026\000\021\000\058\000\024\000\024\000\000\000\
-\\000\000\
-\\007\000\004\000\008\000\003\000\009\000\059\000\010\000\001\000\000\000\
-\\000\000\
-\\016\000\061\000\018\000\060\000\019\000\031\000\000\000\
-\\015\000\062\000\018\000\032\000\019\000\031\000\000\000\
-\\005\000\066\000\011\000\065\000\012\000\064\000\013\000\063\000\
-\\019\000\027\000\000\000\
-\\000\000\
-\\027\000\070\000\000\000\
-\\000\000\
-\\000\000\
-\\023\000\071\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\017\000\073\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\006\000\074\000\000\000\
-\\000\000\
-\\007\000\004\000\008\000\003\000\009\000\076\000\010\000\001\000\000\000\
-\\007\000\004\000\008\000\003\000\009\000\077\000\010\000\001\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\004\000\078\000\013\000\034\000\019\000\027\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\011\000\081\000\012\000\064\000\013\000\063\000\019\000\027\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\"
-val numstates = 84
-val numrules = 50
-val s = ref "" and index = ref 0
-val string_to_int = fn () =>
-let val i = !index
-in index := i+2; Char.ord(String.sub(!s,i)) + Char.ord(String.sub(!s,i+1)) * 256
-end
-val string_to_list = fn s' =>
- let val len = String.size s'
- fun f () =
- if !index < len then string_to_int() :: f()
- else nil
- in index := 0; s := s'; f ()
- end
-val string_to_pairlist = fn (conv_key,conv_entry) =>
- let fun f () =
- case string_to_int()
- of 0 => EMPTY
- | n => PAIR(conv_key (n-1),conv_entry (string_to_int()),f())
- in f
- end
-val string_to_pairlist_default = fn (conv_key,conv_entry) =>
- let val conv_row = string_to_pairlist(conv_key,conv_entry)
- in fn () =>
- let val default = conv_entry(string_to_int())
- val row = conv_row()
- in (row,default)
- end
- end
-val string_to_table = fn (convert_row,s') =>
- let val len = String.size s'
- fun f ()=
- if !index < len then convert_row() :: f()
- else nil
- in (s := s'; index := 0; f ())
- end
-local
- val memo = Array.array(numstates+numrules,ERROR)
- val _ =let fun g i=(Array.update(memo,i,REDUCE(i-numstates)); g(i+1))
- fun f i =
- if i=numstates then g i
- else (Array.update(memo,i,SHIFT (STATE i)); f (i+1))
- in f 0 handle Subscript => ()
- end
-in
-val entry_to_action = fn 0 => ACCEPT | 1 => ERROR | j => Array.sub(memo,(j-2))
-end
-val gotoT=Array.fromList(string_to_table(string_to_pairlist(NT,STATE),gotoT))
-val actionRows=string_to_table(string_to_pairlist_default(T,entry_to_action),actionRows)
-val actionRowNumbers = string_to_list actionRowNumbers
-val actionT = let val actionRowLookUp=
-let val a=Array.fromList(actionRows) in fn i=>Array.sub(a,i) end
-in Array.fromList(map actionRowLookUp actionRowNumbers)
-end
-in LrTable.mkLrTable {actions=actionT,gotos=gotoT,numRules=numrules,
-numStates=numstates,initialState=STATE 0}
-end
-end
-local open Header in
-type pos = SourcePos.t
-type arg = unit
-structure MlyValue =
-struct
-datatype svalue = VOID | ntVOID of unit -> unit
- | STRING of unit -> (string) | FILE of unit -> (string)
- | ID of unit -> (string) | strid of unit -> (Strid.t)
- | strbinds'' of unit -> (strbinds)
- | strbinds' of unit -> (Strid.t*strbinds)
- | strbinds of unit -> (strbinds) | sigid of unit -> (Sigid.t)
- | sigbinds'' of unit -> (sigbinds)
- | sigbinds' of unit -> (Sigid.t*sigbinds)
- | sigbinds of unit -> (sigbinds) | mlb of unit -> (Basdec.t)
- | id of unit -> (Symbol.t*Region.t) | fctid of unit -> (Fctid.t)
- | fctbinds'' of unit -> (fctbinds)
- | fctbinds' of unit -> (Fctid.t*fctbinds)
- | fctbinds of unit -> (fctbinds) | basids of unit -> (Basid.t list)
- | basid of unit -> (Basid.t) | basexpnode of unit -> (Basexp.node)
- | basexp of unit -> (Basexp.t)
- | basdecsnode of unit -> (Basdec.node)
- | basdecs of unit -> (Basdec.t)
- | basdecnode of unit -> (Basdec.node)
- | basdec of unit -> (Basdec.t) | basbinds'' of unit -> (basbinds)
- | basbinds' of unit -> (Basexp.t*basbinds)
- | basbinds of unit -> (basbinds)
- | annStar of unit -> ( ( string * Region.t ) list)
- | annPlus of unit -> ( ( string * Region.t ) list)
- | ann of unit -> (string*Region.t)
-end
-type svalue = MlyValue.svalue
-type result = Basdec.t
-end
-structure EC=
-struct
-open LrTable
-infix 5 $$
-fun x $$ y = y::x
-val is_keyword =
-fn (T 4) => true | (T 5) => true | (T 6) => true | (T 7) => true | (T
-9) => true | (T 10) => true | (T 11) => true | (T 12) => true | (T 13)
- => true | (T 14) => true | (T 15) => true | (T 16) => true | (T 17)
- => true | _ => false
-val preferred_change : (term list * term list) list =
-(nil
-,nil
- $$ (T 2))::
-(nil
-,nil
- $$ (T 7) $$ (T 0) $$ (T 10))::
-nil
-val noShift =
-fn (T 3) => true | _ => false
-val showTerminal =
-fn (T 0) => "ID"
- | (T 1) => "COMMA"
- | (T 2) => "SEMICOLON"
- | (T 3) => "EOF"
- | (T 4) => "AND"
- | (T 5) => "BAS"
- | (T 6) => "BASIS"
- | (T 7) => "END"
- | (T 8) => "EQUALOP"
- | (T 9) => "FUNCTOR"
- | (T 10) => "IN"
- | (T 11) => "LET"
- | (T 12) => "LOCAL"
- | (T 13) => "OPEN"
- | (T 14) => "SIGNATURE"
- | (T 15) => "STRUCTURE"
- | (T 16) => "ANN"
- | (T 17) => "PRIM"
- | (T 18) => "FILE"
- | (T 19) => "STRING"
- | _ => "bogus-term"
-local open Header in
-val errtermvalue=
-fn (T 0) => MlyValue.ID(fn () => ("bogus")) |
-_ => MlyValue.VOID
-end
-val terms : term list = nil
- $$ (T 17) $$ (T 16) $$ (T 15) $$ (T 14) $$ (T 13) $$ (T 12) $$ (T 11)
- $$ (T 10) $$ (T 9) $$ (T 8) $$ (T 7) $$ (T 6) $$ (T 5) $$ (T 4) $$
-(T 3) $$ (T 2) $$ (T 1)end
-structure Actions =
-struct
-type int = Int.int
-exception mlyAction of int
-local open Header in
-val actions =
-fn (i392:int,defaultPos,stack,
- (()):arg) =>
-case (i392,stack)
-of ( 0, ( ( _, ( MlyValue.basdecs basdecs1, basdecs1left,
-basdecs1right)) :: rest671)) => let val result = MlyValue.mlb (fn _
- => let val (basdecs as basdecs1) = basdecs1 ()
- in (basdecs)
-end)
- in ( LrTable.NT 19, ( result, basdecs1left, basdecs1right), rest671)
-
-end
-| ( 1, ( ( _, ( MlyValue.basdecsnode basdecsnode1, (basdecsnodeleft
- as basdecsnode1left), (basdecsnoderight as basdecsnode1right))) ::
-rest671)) => let val result = MlyValue.basdecs (fn _ => let val (
-basdecsnode as basdecsnode1) = basdecsnode1 ()
- in (
-Basdec.makeRegion'
- (basdecsnode, basdecsnodeleft, basdecsnoderight)
-)
-end)
- in ( LrTable.NT 8, ( result, basdecsnode1left, basdecsnode1right),
-rest671)
-end
-| ( 2, ( rest671)) => let val result = MlyValue.basdecsnode (fn _ =>
- (Basdec.Seq []))
- in ( LrTable.NT 9, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 3, ( ( _, ( MlyValue.basdecs basdecs1, _, basdecs1right)) :: ( _,
- ( _, SEMICOLON1left, _)) :: rest671)) => let val result =
-MlyValue.basdecsnode (fn _ => let val (basdecs as basdecs1) =
-basdecs1 ()
- in (Basdec.Seq [basdecs])
-end)
- in ( LrTable.NT 9, ( result, SEMICOLON1left, basdecs1right), rest671)
-
-end
-| ( 4, ( ( _, ( MlyValue.basdecs basdecs1, _, basdecs1right)) :: ( _,
- ( MlyValue.basdec basdec1, basdec1left, _)) :: rest671)) => let val
-result = MlyValue.basdecsnode (fn _ => let val (basdec as basdec1) =
-basdec1 ()
- val (basdecs as basdecs1) = basdecs1 ()
- in (Basdec.Seq [basdec, basdecs])
-end)
- in ( LrTable.NT 9, ( result, basdec1left, basdecs1right), rest671)
-
-end
-| ( 5, ( ( _, ( MlyValue.basdecnode basdecnode1, (basdecnodeleft as
-basdecnode1left), (basdecnoderight as basdecnode1right))) :: rest671))
- => let val result = MlyValue.basdec (fn _ => let val (basdecnode
- as basdecnode1) = basdecnode1 ()
- in (
-Basdec.makeRegion'
- (basdecnode, basdecnodeleft, basdecnoderight)
-)
-end)
- in ( LrTable.NT 6, ( result, basdecnode1left, basdecnode1right),
-rest671)
-end
-| ( 6, ( ( _, ( MlyValue.fctbinds fctbinds1, _, (fctbindsright as
-fctbinds1right))) :: ( _, ( _, (FUNCTORleft as FUNCTOR1left), _)) ::
-rest671)) => let val result = MlyValue.basdecnode (fn _ => let val (
-fctbinds as fctbinds1) = fctbinds1 ()
- in (
-let
- val fctbinds = Vector.fromList fctbinds
- in
- Basdec.Defs (ModIdBind.makeRegion' (ModIdBind.Fct fctbinds, FUNCTORleft, fctbindsright))
- end
-)
-end)
- in ( LrTable.NT 7, ( result, FUNCTOR1left, fctbinds1right), rest671)
-
-end
-| ( 7, ( ( _, ( MlyValue.sigbinds sigbinds1, _, (sigbindsright as
-sigbinds1right))) :: ( _, ( _, (SIGNATUREleft as SIGNATURE1left), _))
- :: rest671)) => let val result = MlyValue.basdecnode (fn _ => let
- val (sigbinds as sigbinds1) = sigbinds1 ()
- in (
-let
- val sigbinds = Vector.fromList sigbinds
- in
- Basdec.Defs (ModIdBind.makeRegion' (ModIdBind.Sig sigbinds, SIGNATUREleft, sigbindsright))
- end
-)
-end)
- in ( LrTable.NT 7, ( result, SIGNATURE1left, sigbinds1right), rest671
-)
-end
-| ( 8, ( ( _, ( MlyValue.strbinds strbinds1, _, (strbindsright as
-strbinds1right))) :: ( _, ( _, (STRUCTUREleft as STRUCTURE1left), _))
- :: rest671)) => let val result = MlyValue.basdecnode (fn _ => let
- val (strbinds as strbinds1) = strbinds1 ()
- in (
-let
- val strbinds = Vector.fromList strbinds
- in
- Basdec.Defs (ModIdBind.makeRegion' (ModIdBind.Str strbinds, STRUCTUREleft, strbindsright))
- end
-)
-end)
- in ( LrTable.NT 7, ( result, STRUCTURE1left, strbinds1right), rest671
-)
-end
-| ( 9, ( ( _, ( MlyValue.basbinds basbinds1, _, basbinds1right)) :: (
- _, ( _, BASIS1left, _)) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val (basbinds as basbinds1) =
-basbinds1 ()
- in (
-let
- val basbinds = Vector.fromList basbinds
- in
- Basdec.Basis basbinds
- end
-)
-end)
- in ( LrTable.NT 7, ( result, BASIS1left, basbinds1right), rest671)
-
-end
-| ( 10, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.basdecs
-basdecs2, _, _)) :: _ :: ( _, ( MlyValue.basdecs basdecs1, _, _)) :: (
- _, ( _, LOCAL1left, _)) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val basdecs1 = basdecs1 ()
- val basdecs2 = basdecs2 ()
- in (Basdec.Local (basdecs1, basdecs2))
-end)
- in ( LrTable.NT 7, ( result, LOCAL1left, END1right), rest671)
-end
-| ( 11, ( ( _, ( MlyValue.basids basids1, _, basids1right)) :: ( _, (
- _, OPEN1left, _)) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val (basids as basids1) = basids1 ()
- in (Basdec.Open (Vector.fromList basids))
-end)
- in ( LrTable.NT 7, ( result, OPEN1left, basids1right), rest671)
-end
-| ( 12, ( ( _, ( MlyValue.FILE FILE1, (FILEleft as FILE1left), (
-FILEright as FILE1right))) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val (FILE as FILE1) = FILE1 ()
- in (
-let val reg = reg (FILEleft, FILEright)
- in lexAndParseProgOrMLB (FILE, reg)
- end
-)
-end)
- in ( LrTable.NT 7, ( result, FILE1left, FILE1right), rest671)
-end
-| ( 13, ( ( _, ( MlyValue.STRING STRING1, (STRINGleft as STRING1left)
-, (STRINGright as STRING1right))) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val (STRING as STRING1) = STRING1 ()
- in (
-let val reg = reg (STRINGleft, STRINGright)
- in lexAndParseProgOrMLB (STRING, reg)
- end
-)
-end)
- in ( LrTable.NT 7, ( result, STRING1left, STRING1right), rest671)
-end
-| ( 14, ( ( _, ( _, PRIM1left, PRIM1right)) :: rest671)) => let val
-result = MlyValue.basdecnode (fn _ => (Basdec.Prim))
- in ( LrTable.NT 7, ( result, PRIM1left, PRIM1right), rest671)
-end
-| ( 15, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.basdecs
-basdecs1, _, _)) :: _ :: ( _, ( MlyValue.annPlus annPlus1, _, _)) :: (
- _, ( _, ANN1left, _)) :: rest671)) => let val result =
-MlyValue.basdecnode (fn _ => let val (annPlus as annPlus1) = annPlus1
- ()
- val (basdecs as basdecs1) = basdecs1 ()
- in (
-let
- val extendRight =
- let val right = valOf (Region.right (Basdec.region basdecs))
- in fn reg => Region.extendRight (reg, right)
- end
- fun mkAnn' ((ann,reg), basdecs) = Basdec.Ann (ann, reg, basdecs)
- fun mkAnn ((ann,reg), basdecsnode) : Basdec.node =
- mkAnn' ((ann,reg), Basdec.makeRegion (basdecsnode, extendRight reg))
- val (anns,ann) = List.splitLast annPlus
- in
- List.fold(anns, mkAnn'(ann, basdecs), mkAnn)
- end
-)
-end)
- in ( LrTable.NT 7, ( result, ANN1left, END1right), rest671)
-end
-| ( 16, ( ( _, ( MlyValue.fctbinds' fctbinds'1, _, fctbinds'1right))
- :: _ :: ( _, ( MlyValue.fctid fctid1, fctid1left, _)) :: rest671)) =>
- let val result = MlyValue.fctbinds (fn _ => let val (fctid as
-fctid1) = fctid1 ()
- val (fctbinds' as fctbinds'1) = fctbinds'1 ()
- in (
-let val (def, fctbinds) = fctbinds'
- in {lhs = fctid, rhs = def}
- :: fctbinds
- end
-)
-end)
- in ( LrTable.NT 14, ( result, fctid1left, fctbinds'1right), rest671)
-
-end
-| ( 17, ( ( _, ( MlyValue.fctbinds'' fctbinds''1, _, fctbinds''1right
-)) :: ( _, ( MlyValue.fctid fctid1, fctid1left, _)) :: rest671)) =>
- let val result = MlyValue.fctbinds (fn _ => let val (fctid as
-fctid1) = fctid1 ()
- val (fctbinds'' as fctbinds''1) = fctbinds''1 ()
- in ({lhs = fctid, rhs = fctid} :: fctbinds'')
-end)
- in ( LrTable.NT 14, ( result, fctid1left, fctbinds''1right), rest671)
-
-end
-| ( 18, ( ( _, ( MlyValue.fctbinds'' fctbinds''1, _, fctbinds''1right
-)) :: ( _, ( MlyValue.fctid fctid1, fctid1left, _)) :: rest671)) =>
- let val result = MlyValue.fctbinds' (fn _ => let val (fctid as
-fctid1) = fctid1 ()
- val (fctbinds'' as fctbinds''1) = fctbinds''1 ()
- in (fctid, fctbinds'')
-end)
- in ( LrTable.NT 15, ( result, fctid1left, fctbinds''1right), rest671)
-
-end
-| ( 19, ( rest671)) => let val result = MlyValue.fctbinds'' (fn _ =>
- ([]))
- in ( LrTable.NT 16, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 20, ( ( _, ( MlyValue.fctbinds fctbinds1, _, fctbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.fctbinds'' (fn _ => let val (fctbinds as fctbinds1) =
-fctbinds1 ()
- in (fctbinds)
-end)
- in ( LrTable.NT 16, ( result, AND1left, fctbinds1right), rest671)
-end
-| ( 21, ( ( _, ( MlyValue.sigbinds' sigbinds'1, _, sigbinds'1right))
- :: _ :: ( _, ( MlyValue.sigid sigid1, sigid1left, _)) :: rest671)) =>
- let val result = MlyValue.sigbinds (fn _ => let val (sigid as
-sigid1) = sigid1 ()
- val (sigbinds' as sigbinds'1) = sigbinds'1 ()
- in (
-let val (def, sigbinds) = sigbinds'
- in {lhs = sigid, rhs = def}
- :: sigbinds
- end
-)
-end)
- in ( LrTable.NT 20, ( result, sigid1left, sigbinds'1right), rest671)
-
-end
-| ( 22, ( ( _, ( MlyValue.sigbinds'' sigbinds''1, _, sigbinds''1right
-)) :: ( _, ( MlyValue.sigid sigid1, sigid1left, _)) :: rest671)) =>
- let val result = MlyValue.sigbinds (fn _ => let val (sigid as
-sigid1) = sigid1 ()
- val (sigbinds'' as sigbinds''1) = sigbinds''1 ()
- in ({lhs = sigid, rhs = sigid} :: sigbinds'')
-end)
- in ( LrTable.NT 20, ( result, sigid1left, sigbinds''1right), rest671)
-
-end
-| ( 23, ( ( _, ( MlyValue.sigbinds'' sigbinds''1, _, sigbinds''1right
-)) :: ( _, ( MlyValue.sigid sigid1, sigid1left, _)) :: rest671)) =>
- let val result = MlyValue.sigbinds' (fn _ => let val (sigid as
-sigid1) = sigid1 ()
- val (sigbinds'' as sigbinds''1) = sigbinds''1 ()
- in (sigid, sigbinds'')
-end)
- in ( LrTable.NT 21, ( result, sigid1left, sigbinds''1right), rest671)
-
-end
-| ( 24, ( rest671)) => let val result = MlyValue.sigbinds'' (fn _ =>
- ([]))
- in ( LrTable.NT 22, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 25, ( ( _, ( MlyValue.sigbinds sigbinds1, _, sigbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.sigbinds'' (fn _ => let val (sigbinds as sigbinds1) =
-sigbinds1 ()
- in (sigbinds)
-end)
- in ( LrTable.NT 22, ( result, AND1left, sigbinds1right), rest671)
-end
-| ( 26, ( ( _, ( MlyValue.strbinds' strbinds'1, _, strbinds'1right))
- :: _ :: ( _, ( MlyValue.strid strid1, strid1left, _)) :: rest671)) =>
- let val result = MlyValue.strbinds (fn _ => let val (strid as
-strid1) = strid1 ()
- val (strbinds' as strbinds'1) = strbinds'1 ()
- in (
-let val (def, strbinds) = strbinds'
- in {lhs = strid, rhs = def}
- :: strbinds
- end
-)
-end)
- in ( LrTable.NT 24, ( result, strid1left, strbinds'1right), rest671)
-
-end
-| ( 27, ( ( _, ( MlyValue.strbinds'' strbinds''1, _, strbinds''1right
-)) :: ( _, ( MlyValue.strid strid1, strid1left, _)) :: rest671)) =>
- let val result = MlyValue.strbinds (fn _ => let val (strid as
-strid1) = strid1 ()
- val (strbinds'' as strbinds''1) = strbinds''1 ()
- in ({lhs = strid, rhs = strid} :: strbinds'')
-end)
- in ( LrTable.NT 24, ( result, strid1left, strbinds''1right), rest671)
-
-end
-| ( 28, ( ( _, ( MlyValue.strbinds'' strbinds''1, _, strbinds''1right
-)) :: ( _, ( MlyValue.strid strid1, strid1left, _)) :: rest671)) =>
- let val result = MlyValue.strbinds' (fn _ => let val (strid as
-strid1) = strid1 ()
- val (strbinds'' as strbinds''1) = strbinds''1 ()
- in (strid, strbinds'')
-end)
- in ( LrTable.NT 25, ( result, strid1left, strbinds''1right), rest671)
-
-end
-| ( 29, ( rest671)) => let val result = MlyValue.strbinds'' (fn _ =>
- ([]))
- in ( LrTable.NT 26, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 30, ( ( _, ( MlyValue.strbinds strbinds1, _, strbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.strbinds'' (fn _ => let val (strbinds as strbinds1) =
-strbinds1 ()
- in (strbinds)
-end)
- in ( LrTable.NT 26, ( result, AND1left, strbinds1right), rest671)
-end
-| ( 31, ( ( _, ( MlyValue.basbinds' basbinds'1, _, basbinds'1right))
- :: _ :: ( _, ( MlyValue.basid basid1, basid1left, _)) :: rest671)) =>
- let val result = MlyValue.basbinds (fn _ => let val (basid as
-basid1) = basid1 ()
- val (basbinds' as basbinds'1) = basbinds'1 ()
- in (
-let val (def, basbinds) = basbinds'
- in {name = basid, def = def}
- :: basbinds
- end
-)
-end)
- in ( LrTable.NT 3, ( result, basid1left, basbinds'1right), rest671)
-
-end
-| ( 32, ( ( _, ( MlyValue.basbinds'' basbinds''1, _, basbinds''1right
-)) :: ( _, ( MlyValue.basexp basexp1, basexp1left, _)) :: rest671)) =>
- let val result = MlyValue.basbinds' (fn _ => let val (basexp as
-basexp1) = basexp1 ()
- val (basbinds'' as basbinds''1) = basbinds''1 ()
- in (basexp, basbinds'')
-end)
- in ( LrTable.NT 4, ( result, basexp1left, basbinds''1right), rest671)
-
-end
-| ( 33, ( rest671)) => let val result = MlyValue.basbinds'' (fn _ =>
- ([]))
- in ( LrTable.NT 5, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 34, ( ( _, ( MlyValue.basbinds basbinds1, _, basbinds1right)) ::
-( _, ( _, AND1left, _)) :: rest671)) => let val result =
-MlyValue.basbinds'' (fn _ => let val (basbinds as basbinds1) =
-basbinds1 ()
- in (basbinds)
-end)
- in ( LrTable.NT 5, ( result, AND1left, basbinds1right), rest671)
-end
-| ( 35, ( ( _, ( MlyValue.basexpnode basexpnode1, (basexpnodeleft as
-basexpnode1left), (basexpnoderight as basexpnode1right))) :: rest671))
- => let val result = MlyValue.basexp (fn _ => let val (basexpnode
- as basexpnode1) = basexpnode1 ()
- in (
-Basexp.makeRegion'
- (basexpnode, basexpnodeleft, basexpnoderight)
-)
-end)
- in ( LrTable.NT 10, ( result, basexpnode1left, basexpnode1right),
-rest671)
-end
-| ( 36, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.basdecs
-basdecs1, _, _)) :: ( _, ( _, BAS1left, _)) :: rest671)) => let val
-result = MlyValue.basexpnode (fn _ => let val (basdecs as basdecs1) =
- basdecs1 ()
- in (Basexp.Bas basdecs)
-end)
- in ( LrTable.NT 11, ( result, BAS1left, END1right), rest671)
-end
-| ( 37, ( ( _, ( MlyValue.basid basid1, basid1left, basid1right)) ::
-rest671)) => let val result = MlyValue.basexpnode (fn _ => let val (
-basid as basid1) = basid1 ()
- in (Basexp.Var basid)
-end)
- in ( LrTable.NT 11, ( result, basid1left, basid1right), rest671)
-end
-| ( 38, ( ( _, ( _, _, END1right)) :: ( _, ( MlyValue.basexp basexp1,
- _, _)) :: _ :: ( _, ( MlyValue.basdecs basdecs1, _, _)) :: ( _, ( _,
-LET1left, _)) :: rest671)) => let val result = MlyValue.basexpnode
- (fn _ => let val (basdecs as basdecs1) = basdecs1 ()
- val (basexp as basexp1) = basexp1 ()
- in (Basexp.Let (basdecs, basexp))
-end)
- in ( LrTable.NT 11, ( result, LET1left, END1right), rest671)
-end
-| ( 39, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671)) =>
- let val result = MlyValue.basid (fn _ => let val (id as id1) = id1
- ()
- in (Basid.fromSymbol id)
-end)
- in ( LrTable.NT 12, ( result, id1left, id1right), rest671)
-end
-| ( 40, ( ( _, ( MlyValue.basid basid1, basid1left, basid1right)) ::
-rest671)) => let val result = MlyValue.basids (fn _ => let val (
-basid as basid1) = basid1 ()
- in ([basid])
-end)
- in ( LrTable.NT 13, ( result, basid1left, basid1right), rest671)
-end
-| ( 41, ( ( _, ( MlyValue.basids basids1, _, basids1right)) :: ( _, (
- MlyValue.basid basid1, basid1left, _)) :: rest671)) => let val
-result = MlyValue.basids (fn _ => let val (basid as basid1) = basid1
- ()
- val (basids as basids1) = basids1 ()
- in (basid :: basids)
-end)
- in ( LrTable.NT 13, ( result, basid1left, basids1right), rest671)
-end
-| ( 42, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671)) =>
- let val result = MlyValue.fctid (fn _ => let val (id as id1) = id1
- ()
- in (Fctid.fromSymbol id)
-end)
- in ( LrTable.NT 17, ( result, id1left, id1right), rest671)
-end
-| ( 43, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671)) =>
- let val result = MlyValue.sigid (fn _ => let val (id as id1) = id1
- ()
- in (Sigid.fromSymbol id)
-end)
- in ( LrTable.NT 23, ( result, id1left, id1right), rest671)
-end
-| ( 44, ( ( _, ( MlyValue.id id1, id1left, id1right)) :: rest671)) =>
- let val result = MlyValue.strid (fn _ => let val (id as id1) = id1
- ()
- in (Strid.fromSymbol id)
-end)
- in ( LrTable.NT 27, ( result, id1left, id1right), rest671)
-end
-| ( 45, ( ( _, ( MlyValue.ID ID1, (IDleft as ID1left), (IDright as
-ID1right))) :: rest671)) => let val result = MlyValue.id (fn _ => let
- val (ID as ID1) = ID1 ()
- in (Symbol.fromString ID, reg (IDleft, IDright))
-end)
- in ( LrTable.NT 18, ( result, ID1left, ID1right), rest671)
-end
-| ( 46, ( ( _, ( MlyValue.STRING STRING1, (STRINGleft as STRING1left)
-, (STRINGright as STRING1right))) :: rest671)) => let val result =
-MlyValue.ann (fn _ => let val (STRING as STRING1) = STRING1 ()
- in (STRING, reg (STRINGleft, STRINGright))
-end)
- in ( LrTable.NT 0, ( result, STRING1left, STRING1right), rest671)
-end
-| ( 47, ( ( _, ( MlyValue.annStar annStar1, _, annStar1right)) :: ( _
-, ( MlyValue.ann ann1, ann1left, _)) :: rest671)) => let val result =
- MlyValue.annPlus (fn _ => let val (ann as ann1) = ann1 ()
- val (annStar as annStar1) = annStar1 ()
- in (ann::annStar)
-end)
- in ( LrTable.NT 1, ( result, ann1left, annStar1right), rest671)
-end
-| ( 48, ( rest671)) => let val result = MlyValue.annStar (fn _ => (
-[]))
- in ( LrTable.NT 2, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 49, ( ( _, ( MlyValue.annPlus annPlus1, annPlus1left,
-annPlus1right)) :: rest671)) => let val result = MlyValue.annStar (fn
- _ => let val (annPlus as annPlus1) = annPlus1 ()
- in (annPlus)
-end)
- in ( LrTable.NT 2, ( result, annPlus1left, annPlus1right), rest671)
-
-end
-| _ => raise (mlyAction i392)
-end
-val void = MlyValue.VOID
-val extract = fn a => (fn MlyValue.mlb x => x
-| _ => let exception ParseInternal
- in raise ParseInternal end) a ()
-end
-end
-structure Tokens : MLB_TOKENS =
-struct
-type svalue = ParserData.svalue
-type ('a,'b) token = ('a,'b) Token.token
-fun ID (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 0,(
-ParserData.MlyValue.ID (fn () => i),p1,p2))
-fun COMMA (p1,p2) = Token.TOKEN (ParserData.LrTable.T 1,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SEMICOLON (p1,p2) = Token.TOKEN (ParserData.LrTable.T 2,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EOF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 3,(
-ParserData.MlyValue.VOID,p1,p2))
-fun AND (p1,p2) = Token.TOKEN (ParserData.LrTable.T 4,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BAS (p1,p2) = Token.TOKEN (ParserData.LrTable.T 5,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BASIS (p1,p2) = Token.TOKEN (ParserData.LrTable.T 6,(
-ParserData.MlyValue.VOID,p1,p2))
-fun END (p1,p2) = Token.TOKEN (ParserData.LrTable.T 7,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EQUALOP (p1,p2) = Token.TOKEN (ParserData.LrTable.T 8,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FUNCTOR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 9,(
-ParserData.MlyValue.VOID,p1,p2))
-fun IN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 10,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LET (p1,p2) = Token.TOKEN (ParserData.LrTable.T 11,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LOCAL (p1,p2) = Token.TOKEN (ParserData.LrTable.T 12,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OPEN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 13,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SIGNATURE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 14,(
-ParserData.MlyValue.VOID,p1,p2))
-fun STRUCTURE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 15,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ANN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 16,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PRIM (p1,p2) = Token.TOKEN (ParserData.LrTable.T 17,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FILE (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 18,(
-ParserData.MlyValue.FILE (fn () => i),p1,p2))
-fun STRING (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 19,(
-ParserData.MlyValue.STRING (fn () => i),p1,p2))
-end
-end
diff --git a/lang/mlton/files/mlb.lex.sml b/lang/mlton/files/mlb.lex.sml
deleted file mode 100644
index 7ffe122e7248..000000000000
--- a/lang/mlton/files/mlb.lex.sml
+++ /dev/null
@@ -1,1854 +0,0 @@
-type int = Int.int
-functor MLBLexFun (structure Tokens : MLB_TOKENS)=
- struct
- structure UserDeclarations =
- struct
-(* Copyright (C) 2004-2006 Henry Cejtin, Matthew Fluet, Suresh
- * Jagannathan, and Stephen Weeks.
- *
- * MLton is released under a BSD-style license.
- * See the file MLton-LICENSE for details.
- *)
-
-type int = Int.t
-
-type svalue = Tokens.svalue
-type pos = SourcePos.t
-type lexresult = (svalue, pos) Tokens.token
-type lexarg = {source: Source.t}
-type arg = lexarg
-type ('a,'b) token = ('a,'b) Tokens.token
-
-val charlist: string list ref = ref []
-val colNum: int ref = ref 0
-val commentLevel: int ref = ref 0
-val commentStart = ref SourcePos.bogus
-val lineFile: File.t ref = ref ""
-val lineNum: int ref = ref 0
-val stringStart = ref SourcePos.bogus
-
-fun lineDirective (source, file, yypos) =
- Source.lineDirective (source, file,
- {lineNum = !lineNum,
- lineStart = yypos - !colNum})
-fun addString (s: string) = charlist := s :: (!charlist)
-fun addChar (c: char) = addString (String.fromChar c)
-
-fun inc (ri as ref (i: int)) = (ri := i + 1)
-fun dec (ri as ref (i: int)) = (ri := i-1)
-
-fun error (source, left, right, msg) =
- Control.errorStr (Region.make {left = Source.getPos (source, left),
- right = Source.getPos (source, right)},
- msg)
-
-fun stringError (source, right, msg) =
- Control.errorStr (Region.make {left = !stringStart,
- right = Source.getPos (source, right)},
- msg)
-
-val eof: lexarg -> lexresult =
- fn {source, ...} =>
- let
- val pos = Source.lineStart source
- val _ =
- if !commentLevel > 0
- then Control.errorStr (Region.make {left = !commentStart,
- right = pos},
- "unclosed comment")
- else ()
- in
- Tokens.EOF (pos, pos)
- end
-
-val size = String.size
-
-fun tok (t, s, l, r) =
- let
- val l = Source.getPos (s, l)
- val r = Source.getPos (s, r)
- val _ =
- if true
- then ()
- else
- print (concat ["tok (",
- SourcePos.toString l,
- ", " ,
- SourcePos.toString r,
- ")\n"])
- in
- t (l, r)
- end
-
-fun tok' (t, x, s, l) = tok (fn (l, r) => t (x, l, r), s, l, l + size x)
-
-end (* end of user routines *)
-exception LexError (* raised if illegal leaf action tried *)
-structure Internal =
- struct
-
-datatype yyfinstate = N of int
-type statedata = {fin : yyfinstate list, trans: string}
-(* transition & final state table *)
-val tab = let
-val s = [
- (0,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (1,
-"\017\017\017\017\017\017\017\017\017\127\130\017\127\129\017\017\
-\\017\017\017\017\017\017\017\017\017\017\017\017\017\017\017\017\
-\\127\017\126\017\125\017\017\017\117\017\017\017\116\095\115\096\
-\\095\095\095\095\095\095\095\095\095\095\017\094\017\093\017\017\
-\\017\018\018\018\018\018\018\018\018\018\018\018\018\018\018\018\
-\\018\018\018\018\018\018\018\018\018\018\018\017\017\017\017\088\
-\\017\084\079\018\018\076\069\018\018\067\018\018\060\018\018\056\
-\\018\018\018\039\018\018\018\018\018\018\018\017\017\017\017\017\
-\\017"
-),
- (3,
-"\131\131\131\131\131\131\131\131\131\131\136\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\134\131\132\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\131\
-\\131"
-),
- (5,
-"\137\137\137\137\137\137\137\137\137\137\165\137\137\164\137\137\
-\\137\137\137\137\137\137\137\137\137\137\137\137\137\137\137\137\
-\\138\138\163\138\138\138\138\138\138\138\138\138\138\138\138\138\
-\\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\
-\\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\
-\\138\138\138\138\138\138\138\138\138\138\138\138\139\138\138\138\
-\\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\
-\\138\138\138\138\138\138\138\138\138\138\138\138\138\138\138\137\
-\\137"
-),
- (7,
-"\166\166\166\166\166\166\166\166\166\168\171\166\168\170\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\168\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\167\166\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\166\
-\\166"
-),
- (9,
-"\172\172\172\172\172\172\172\172\172\172\000\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\175\172\172\172\172\172\
-\\173\173\173\173\173\173\173\173\173\173\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172"
-),
- (11,
-"\177\177\177\177\177\177\177\177\177\177\000\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\180\177\
-\\178\178\178\178\178\178\178\178\178\178\177\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\
-\\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\177\
-\\177"
-),
- (13,
-"\172\172\172\172\172\172\172\172\172\184\000\172\184\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\184\172\183\172\172\172\172\172\172\172\181\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\172\
-\\172"
-),
- (15,
-"\187\187\187\187\187\187\187\187\187\187\188\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187\187\191\187\187\187\187\187\187\187\189\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\187\
-\\187"
-),
- (18,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (20,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\035\000\000\000\000\000\000\000\000\021\033\000\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (21,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\000\000\000\000\000\000\021\022\020\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (22,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\027\000\000\000\000\000\000\000\000\023\000\000\
-\\023\023\023\023\023\023\023\023\023\023\000\000\000\000\000\000\
-\\000\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\
-\\023\023\023\023\023\023\023\023\023\023\023\000\000\000\000\023\
-\\000\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\
-\\023\023\023\023\023\023\023\023\023\023\023\000\000\000\000\000\
-\\000"
-),
- (23,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\024\000\000\000\000\000\000\000\000\023\022\020\
-\\023\023\023\023\023\023\023\023\023\023\000\000\000\000\000\000\
-\\000\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\
-\\023\023\023\023\023\023\023\023\023\023\023\000\000\000\000\023\
-\\000\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\
-\\023\023\023\023\023\023\023\023\023\023\023\000\000\000\000\000\
-\\000"
-),
- (24,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (25,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\026\026\026\026\026\026\026\026\026\026\026\026\026\026\026\
-\\026\026\026\026\026\026\026\026\026\026\026\000\000\000\000\026\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (26,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\023\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\026\026\026\026\026\026\026\026\026\026\026\026\026\026\026\
-\\026\026\026\026\026\026\026\026\026\026\026\000\000\000\000\026\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (27,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\028\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (28,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\029\029\029\029\029\029\029\029\029\029\029\029\029\029\029\
-\\029\029\029\029\029\029\029\029\029\029\029\000\000\000\000\029\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (29,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\023\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\029\029\029\029\029\029\029\029\029\029\029\029\029\029\029\
-\\029\029\029\029\029\029\029\029\029\029\029\000\000\000\000\029\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (30,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\031\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (31,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\
-\\032\032\032\032\032\032\032\032\032\032\032\000\000\000\000\032\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (32,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\021\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\032\032\032\032\032\032\032\032\032\032\032\032\032\032\032\
-\\032\032\032\032\032\032\032\032\032\032\032\000\000\000\000\032\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (33,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\020\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (34,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\020\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (35,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\036\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (36,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\037\037\037\037\037\037\037\037\037\037\037\037\037\037\037\
-\\037\037\037\037\037\037\037\037\037\037\037\000\000\000\000\037\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (37,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\021\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\037\037\037\037\037\037\037\037\037\037\037\037\037\037\037\
-\\037\037\037\037\037\037\037\037\037\037\037\000\000\000\000\037\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (38,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\038\000\000\000\000\000\000\000\000\
-\\038\038\038\038\038\038\038\038\038\038\000\000\000\000\000\000\
-\\000\038\038\038\038\038\038\038\038\038\038\038\038\038\038\038\
-\\038\038\038\038\038\038\038\038\038\038\038\000\000\000\000\038\
-\\000\038\038\038\038\038\038\038\038\038\038\038\038\038\038\038\
-\\038\038\038\038\038\038\038\038\038\038\038\000\000\000\000\000\
-\\000"
-),
- (39,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\048\019\019\019\019\019\019\
-\\019\019\019\019\040\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (40,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\041\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (41,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\042\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (42,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\043\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (43,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\044\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (44,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\045\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (45,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\046\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (46,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\047\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (48,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\049\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (49,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\050\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (50,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\051\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (51,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\052\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (52,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\053\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (53,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\054\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (54,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\055\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (56,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\057\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (57,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\058\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (58,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\059\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (60,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\065\019\019\019\019\019\019\019\019\019\061\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (61,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\062\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (62,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\063\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (63,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\064\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (65,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\066\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (67,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\068\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (69,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\070\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (70,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\071\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (71,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\072\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (72,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\073\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (73,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\074\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (74,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\075\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (76,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\077\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (77,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\078\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (79,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\080\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (80,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\081\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (81,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\082\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (82,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\083\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (84,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\085\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (85,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\038\000\000\000\000\000\021\022\020\
-\\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\000\
-\\000\019\019\019\019\019\019\019\019\019\019\019\019\019\019\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\019\
-\\000\019\019\019\087\019\019\019\019\019\019\019\019\019\086\019\
-\\019\019\019\019\019\019\019\019\019\019\019\000\000\000\000\000\
-\\000"
-),
- (88,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\000\000\000\000\000\000\021\022\020\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\089\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (89,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\000\000\000\000\000\000\021\022\020\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\090\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (90,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\000\000\000\000\000\000\021\022\020\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\091\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (91,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\030\000\000\000\000\000\000\000\000\021\022\020\
-\\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\000\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\021\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\021\
-\\000\021\021\021\021\021\021\021\021\021\021\021\021\092\021\021\
-\\021\021\021\021\021\021\021\021\021\021\021\000\000\000\000\000\
-\\000"
-),
- (96,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\101\000\000\000\000\000\000\000\000\097\099\000\
-\\097\097\097\097\097\097\097\097\097\097\000\000\000\000\000\000\
-\\000\097\097\097\097\097\097\097\097\097\097\097\097\097\097\097\
-\\097\097\097\097\097\097\097\097\097\097\097\000\000\000\000\097\
-\\000\097\097\097\097\097\097\097\097\097\097\097\097\097\097\097\
-\\097\097\097\097\097\097\097\097\097\097\097\000\000\000\000\000\
-\\000"
-),
- (97,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\112\000\000\000\000\000\000\000\000\097\104\098\
-\\097\097\097\097\097\097\097\097\097\097\000\000\000\000\000\000\
-\\000\097\097\097\097\097\097\097\097\097\097\097\097\097\097\097\
-\\097\097\097\097\097\097\097\097\097\097\097\000\000\000\000\097\
-\\000\097\097\097\097\097\097\097\097\097\097\097\097\097\097\097\
-\\097\097\097\097\097\097\097\097\097\097\097\000\000\000\000\000\
-\\000"
-),
- (99,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\100\098\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (100,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\098\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (101,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\102\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (102,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\103\103\103\103\103\103\103\103\103\103\103\103\103\103\103\
-\\103\103\103\103\103\103\103\103\103\103\103\000\000\000\000\103\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (103,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\097\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\103\103\103\103\103\103\103\103\103\103\103\103\103\103\103\
-\\103\103\103\103\103\103\103\103\103\103\103\000\000\000\000\103\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (104,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\109\000\000\000\000\000\000\000\000\105\000\000\
-\\105\105\105\105\105\105\105\105\105\105\000\000\000\000\000\000\
-\\000\105\105\105\105\105\105\105\105\105\105\105\105\105\105\105\
-\\105\105\105\105\105\105\105\105\105\105\105\000\000\000\000\105\
-\\000\105\105\105\105\105\105\105\105\105\105\105\105\105\105\105\
-\\105\105\105\105\105\105\105\105\105\105\105\000\000\000\000\000\
-\\000"
-),
- (105,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\106\000\000\000\000\000\000\000\000\105\104\098\
-\\105\105\105\105\105\105\105\105\105\105\000\000\000\000\000\000\
-\\000\105\105\105\105\105\105\105\105\105\105\105\105\105\105\105\
-\\105\105\105\105\105\105\105\105\105\105\105\000\000\000\000\105\
-\\000\105\105\105\105\105\105\105\105\105\105\105\105\105\105\105\
-\\105\105\105\105\105\105\105\105\105\105\105\000\000\000\000\000\
-\\000"
-),
- (106,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\107\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (107,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\108\108\108\108\108\108\108\108\108\108\108\108\108\108\108\
-\\108\108\108\108\108\108\108\108\108\108\108\000\000\000\000\108\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (108,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\105\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\108\108\108\108\108\108\108\108\108\108\108\108\108\108\108\
-\\108\108\108\108\108\108\108\108\108\108\108\000\000\000\000\108\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (109,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\110\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (110,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\111\111\111\111\111\111\111\111\111\111\111\111\111\111\111\
-\\111\111\111\111\111\111\111\111\111\111\111\000\000\000\000\111\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (111,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\105\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\111\111\111\111\111\111\111\111\111\111\111\111\111\111\111\
-\\111\111\111\111\111\111\111\111\111\111\111\000\000\000\000\111\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (112,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\113\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (113,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\114\114\114\114\114\114\114\114\114\114\114\114\114\114\114\
-\\114\114\114\114\114\114\114\114\114\114\114\000\000\000\000\114\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (114,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\097\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\114\114\114\114\114\114\114\114\114\114\114\114\114\114\114\
-\\114\114\114\114\114\114\114\114\114\114\114\000\000\000\000\114\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (117,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\118\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (118,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\119\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (119,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\120\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (120,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\121\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (121,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\122\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (122,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\123\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (123,
-"\000\000\000\000\000\000\000\000\000\124\000\000\124\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\124\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (127,
-"\000\000\000\000\000\000\000\000\000\128\000\000\128\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\128\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (129,
-"\000\000\000\000\000\000\000\000\000\000\130\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (132,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\133\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (134,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\135\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (139,
-"\000\000\000\000\000\000\000\000\000\160\162\000\160\161\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\160\000\159\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\156\156\156\156\156\156\156\156\156\156\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\155\000\152\000\
-\\000\151\150\000\000\000\149\000\000\000\000\000\000\000\148\000\
-\\000\000\147\000\146\141\140\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (141,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\142\142\142\142\142\142\142\142\142\142\000\000\000\000\000\000\
-\\000\142\142\142\142\142\142\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\142\142\142\142\142\142\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (142,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\143\143\143\143\143\143\143\143\143\143\000\000\000\000\000\000\
-\\000\143\143\143\143\143\143\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\143\143\143\143\143\143\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (143,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\144\144\144\144\144\144\144\144\144\144\000\000\000\000\000\000\
-\\000\144\144\144\144\144\144\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\144\144\144\144\144\144\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (144,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\145\145\145\145\145\145\145\145\145\145\000\000\000\000\000\000\
-\\000\145\145\145\145\145\145\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\145\145\145\145\145\145\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (152,
-"\153\153\153\153\153\153\153\153\153\153\000\153\153\153\153\153\
-\\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\
-\\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\
-\\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\
-\\154\154\154\154\154\154\154\154\154\154\154\154\154\154\154\154\
-\\154\154\154\154\154\154\154\154\154\154\154\154\154\154\154\154\
-\\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\
-\\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\153\
-\\153"
-),
- (156,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\157\157\157\157\157\157\157\157\157\157\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (157,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\158\158\158\158\158\158\158\158\158\158\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (160,
-"\000\000\000\000\000\000\000\000\000\160\000\000\160\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\160\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (161,
-"\000\000\000\000\000\000\000\000\000\000\162\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (164,
-"\000\000\000\000\000\000\000\000\000\000\165\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (168,
-"\000\000\000\000\000\000\000\000\000\169\000\000\169\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\169\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (170,
-"\000\000\000\000\000\000\000\000\000\000\171\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (173,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\174\174\174\174\174\174\174\174\174\174\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (175,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\176\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (178,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\179\179\179\179\179\179\179\179\179\179\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (181,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\182\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (184,
-"\000\000\000\000\000\000\000\000\000\186\000\000\186\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\186\000\185\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (187,
-"\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\000\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188"
-),
- (189,
-"\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\000\188\188\188\188\188\188\190\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\188\
-\\188"
-),
- (191,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\192\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (192,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\193\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
-(0, "")]
-fun f x = x
-val s = map f (rev (tl (rev s)))
-exception LexHackingError
-fun look ((j,x)::r, i) = if i = j then x else look(r, i)
- | look ([], i) = raise LexHackingError
-fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
-in Vector.fromList(map g
-[{fin = [], trans = 0},
-{fin = [(N 2)], trans = 1},
-{fin = [(N 2)], trans = 1},
-{fin = [], trans = 3},
-{fin = [], trans = 3},
-{fin = [], trans = 5},
-{fin = [], trans = 5},
-{fin = [(N 323)], trans = 7},
-{fin = [(N 323)], trans = 7},
-{fin = [], trans = 9},
-{fin = [], trans = 9},
-{fin = [], trans = 11},
-{fin = [], trans = 11},
-{fin = [], trans = 13},
-{fin = [], trans = 13},
-{fin = [(N 223)], trans = 15},
-{fin = [(N 223)], trans = 15},
-{fin = [(N 204)], trans = 0},
-{fin = [(N 90),(N 185),(N 204)], trans = 18},
-{fin = [(N 90),(N 185)], trans = 18},
-{fin = [], trans = 20},
-{fin = [(N 185)], trans = 21},
-{fin = [], trans = 22},
-{fin = [(N 185)], trans = 23},
-{fin = [], trans = 24},
-{fin = [], trans = 25},
-{fin = [], trans = 26},
-{fin = [], trans = 27},
-{fin = [], trans = 28},
-{fin = [], trans = 29},
-{fin = [], trans = 30},
-{fin = [], trans = 31},
-{fin = [], trans = 32},
-{fin = [], trans = 33},
-{fin = [], trans = 34},
-{fin = [], trans = 35},
-{fin = [], trans = 36},
-{fin = [], trans = 37},
-{fin = [(N 90)], trans = 38},
-{fin = [(N 90),(N 185),(N 204)], trans = 39},
-{fin = [(N 90),(N 185)], trans = 40},
-{fin = [(N 90),(N 185)], trans = 41},
-{fin = [(N 90),(N 185)], trans = 42},
-{fin = [(N 90),(N 185)], trans = 43},
-{fin = [(N 90),(N 185)], trans = 44},
-{fin = [(N 90),(N 185)], trans = 45},
-{fin = [(N 90),(N 185)], trans = 46},
-{fin = [(N 87),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185)], trans = 48},
-{fin = [(N 90),(N 185)], trans = 49},
-{fin = [(N 90),(N 185)], trans = 50},
-{fin = [(N 90),(N 185)], trans = 51},
-{fin = [(N 90),(N 185)], trans = 52},
-{fin = [(N 90),(N 185)], trans = 53},
-{fin = [(N 90),(N 185)], trans = 54},
-{fin = [(N 77),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 56},
-{fin = [(N 90),(N 185)], trans = 57},
-{fin = [(N 90),(N 185)], trans = 58},
-{fin = [(N 67),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 60},
-{fin = [(N 90),(N 185)], trans = 61},
-{fin = [(N 90),(N 185)], trans = 62},
-{fin = [(N 90),(N 185)], trans = 63},
-{fin = [(N 62),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185)], trans = 65},
-{fin = [(N 56),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 67},
-{fin = [(N 52),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 69},
-{fin = [(N 90),(N 185)], trans = 70},
-{fin = [(N 90),(N 185)], trans = 71},
-{fin = [(N 90),(N 185)], trans = 72},
-{fin = [(N 90),(N 185)], trans = 73},
-{fin = [(N 90),(N 185)], trans = 74},
-{fin = [(N 49),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 76},
-{fin = [(N 90),(N 185)], trans = 77},
-{fin = [(N 41),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 79},
-{fin = [(N 90),(N 185)], trans = 80},
-{fin = [(N 31),(N 90),(N 185)], trans = 81},
-{fin = [(N 90),(N 185)], trans = 82},
-{fin = [(N 37),(N 90),(N 185)], trans = 18},
-{fin = [(N 90),(N 185),(N 204)], trans = 84},
-{fin = [(N 90),(N 185)], trans = 85},
-{fin = [(N 23),(N 90),(N 185)], trans = 18},
-{fin = [(N 27),(N 90),(N 185)], trans = 18},
-{fin = [(N 185),(N 204)], trans = 88},
-{fin = [(N 185)], trans = 89},
-{fin = [(N 185)], trans = 90},
-{fin = [(N 185)], trans = 91},
-{fin = [(N 13),(N 185)], trans = 21},
-{fin = [(N 19),(N 204)], trans = 0},
-{fin = [(N 17),(N 204)], trans = 0},
-{fin = [(N 185),(N 204)], trans = 21},
-{fin = [(N 204)], trans = 96},
-{fin = [(N 185)], trans = 97},
-{fin = [], trans = 96},
-{fin = [], trans = 99},
-{fin = [], trans = 100},
-{fin = [], trans = 101},
-{fin = [], trans = 102},
-{fin = [], trans = 103},
-{fin = [], trans = 104},
-{fin = [(N 185)], trans = 105},
-{fin = [], trans = 106},
-{fin = [], trans = 107},
-{fin = [], trans = 108},
-{fin = [], trans = 109},
-{fin = [], trans = 110},
-{fin = [], trans = 111},
-{fin = [], trans = 112},
-{fin = [], trans = 113},
-{fin = [], trans = 114},
-{fin = [(N 204)], trans = 33},
-{fin = [(N 15),(N 204)], trans = 0},
-{fin = [(N 204)], trans = 117},
-{fin = [(N 202)], trans = 118},
-{fin = [], trans = 119},
-{fin = [], trans = 120},
-{fin = [], trans = 121},
-{fin = [], trans = 122},
-{fin = [], trans = 123},
-{fin = [(N 199)], trans = 123},
-{fin = [(N 204)], trans = 35},
-{fin = [(N 187),(N 204)], trans = 0},
-{fin = [(N 2),(N 204)], trans = 127},
-{fin = [(N 2)], trans = 127},
-{fin = [(N 7),(N 204)], trans = 129},
-{fin = [(N 7)], trans = 0},
-{fin = [(N 242)], trans = 0},
-{fin = [(N 242)], trans = 132},
-{fin = [(N 240)], trans = 0},
-{fin = [(N 242)], trans = 134},
-{fin = [(N 235)], trans = 0},
-{fin = [(N 237)], trans = 0},
-{fin = [(N 315)], trans = 0},
-{fin = [(N 313),(N 315)], trans = 0},
-{fin = [(N 305),(N 313),(N 315)], trans = 139},
-{fin = [(N 265)], trans = 0},
-{fin = [], trans = 141},
-{fin = [], trans = 142},
-{fin = [], trans = 143},
-{fin = [], trans = 144},
-{fin = [(N 285)], trans = 0},
-{fin = [(N 262)], trans = 0},
-{fin = [(N 259)], trans = 0},
-{fin = [(N 256)], trans = 0},
-{fin = [(N 253)], trans = 0},
-{fin = [(N 250)], trans = 0},
-{fin = [(N 247)], trans = 0},
-{fin = [], trans = 152},
-{fin = [(N 273)], trans = 0},
-{fin = [(N 269),(N 273)], trans = 0},
-{fin = [(N 291)], trans = 0},
-{fin = [], trans = 156},
-{fin = [], trans = 157},
-{fin = [(N 278)], trans = 0},
-{fin = [(N 288)], trans = 0},
-{fin = [(N 297)], trans = 160},
-{fin = [(N 303)], trans = 161},
-{fin = [(N 303)], trans = 0},
-{fin = [(N 244),(N 313),(N 315)], trans = 0},
-{fin = [(N 310),(N 315)], trans = 164},
-{fin = [(N 310)], trans = 0},
-{fin = [(N 327)], trans = 0},
-{fin = [(N 325),(N 327)], trans = 0},
-{fin = [(N 323),(N 327)], trans = 168},
-{fin = [(N 323)], trans = 168},
-{fin = [(N 320),(N 327)], trans = 170},
-{fin = [(N 320)], trans = 0},
-{fin = [(N 232)], trans = 0},
-{fin = [(N 207),(N 232)], trans = 173},
-{fin = [(N 207)], trans = 173},
-{fin = [(N 232)], trans = 175},
-{fin = [(N 230)], trans = 0},
-{fin = [(N 214)], trans = 0},
-{fin = [(N 212),(N 214)], trans = 178},
-{fin = [(N 212)], trans = 178},
-{fin = [(N 209),(N 214)], trans = 0},
-{fin = [(N 232)], trans = 181},
-{fin = [(N 217),(N 230)], trans = 0},
-{fin = [(N 221),(N 232)], trans = 0},
-{fin = [(N 232)], trans = 184},
-{fin = [(N 221)], trans = 0},
-{fin = [], trans = 184},
-{fin = [(N 223),(N 232)], trans = 187},
-{fin = [(N 223)], trans = 187},
-{fin = [(N 223),(N 232)], trans = 189},
-{fin = [(N 223),(N 230)], trans = 187},
-{fin = [(N 232)], trans = 191},
-{fin = [], trans = 192},
-{fin = [(N 227)], trans = 0}])
-end
-structure StartStates =
- struct
- datatype yystartstate = STARTSTATE of int
-
-(* start state definitions *)
-
-val A = STARTSTATE 3;
-val F = STARTSTATE 7;
-val INITIAL = STARTSTATE 1;
-val L = STARTSTATE 9;
-val LL = STARTSTATE 11;
-val LLC = STARTSTATE 13;
-val LLCQ = STARTSTATE 15;
-val S = STARTSTATE 5;
-
-end
-type result = UserDeclarations.lexresult
- exception LexerError (* raised if illegal leaf action tried *)
-end
-
-type int = Int.int
-fun makeLexer (yyinput: int -> string) =
-let val yygone0:int= ~1
- val yyb = ref "\n" (* buffer *)
- val yybl: int ref = ref 1 (*buffer length *)
- val yybufpos: int ref = ref 1 (* location of next character to use *)
- val yygone: int ref = ref yygone0 (* position in file of beginning of buffer *)
- val yydone = ref false (* eof found yet? *)
- val yybegin: int ref = ref 1 (*Current 'start state' for lexer *)
-
- val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
- yybegin := x
-
-fun lex (yyarg as ({source})) =
-let fun continue() : Internal.result =
- let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0: int) =
- let fun action (i: int,nil) = raise LexError
- | action (i,nil::l) = action (i-1,l)
- | action (i,(node::acts)::l) =
- case node of
- Internal.N yyk =>
- (let fun yymktext() = String.substring(!yyb,i0,i-i0)
- val yypos: int = i0+ !yygone
- fun REJECT() = action(i,acts::l)
- open UserDeclarations Internal.StartStates
- in (yybufpos := i; case yyk of
-
- (* Application actions *)
-
- 13 => (tok (Tokens.PRIM, source, yypos, yypos + 4))
-| 15 => (tok (Tokens.COMMA, source, yypos, yypos + 1))
-| 17 => (tok (Tokens.SEMICOLON, source, yypos, yypos + 1))
-| 185 => let val yytext=yymktext() in tok' (Tokens.FILE, yytext, source, yypos) end
-| 187 => (charlist := [""]
- ; stringStart := Source.getPos (source, yypos)
- ; YYBEGIN S
- ; continue ())
-| 19 => (tok (Tokens.EQUALOP, source, yypos, yypos + 1))
-| 199 => (YYBEGIN L
- ; commentStart := Source.getPos (source, yypos)
- ; commentLevel := 1
- ; continue ())
-| 2 => (continue ())
-| 202 => (YYBEGIN A
- ; commentLevel := 1
- ; commentStart := Source.getPos (source, yypos)
- ; continue ())
-| 204 => (error (source, yypos, yypos + 1, "illegal token") ;
- continue ())
-| 207 => let val yytext=yymktext() in YYBEGIN LL
- ; (lineNum := valOf (Int.fromString yytext)
- ; colNum := 1)
- handle Overflow => YYBEGIN A
- ; continue () end
-| 209 => ((* cheat: take n > 0 dots *) continue ())
-| 212 => let val yytext=yymktext() in YYBEGIN LLC
- ; (colNum := valOf (Int.fromString yytext))
- handle Overflow => YYBEGIN A
- ; continue () end
-| 214 => (YYBEGIN LLC; continue ()
- (* note hack, since ml-lex chokes on the empty string for 0* *))
-| 217 => (YYBEGIN INITIAL
- ; lineDirective (source, NONE, yypos + 2)
- ; commentLevel := 0; charlist := []; continue ())
-| 221 => (YYBEGIN LLCQ; continue ())
-| 223 => let val yytext=yymktext() in lineFile := yytext; continue () end
-| 227 => (YYBEGIN INITIAL
- ; lineDirective (source, SOME (!lineFile), yypos + 3)
- ; commentLevel := 0; charlist := []; continue ())
-| 23 => (tok (Tokens.ANN, source, yypos, yypos + 3))
-| 230 => (YYBEGIN INITIAL; commentLevel := 0; charlist := []; continue ())
-| 232 => (YYBEGIN A; continue ())
-| 235 => (inc commentLevel; continue ())
-| 237 => (Source.newline (source, yypos) ; continue ())
-| 240 => (dec commentLevel
- ; if 0 = !commentLevel then YYBEGIN INITIAL else ()
- ; continue ())
-| 242 => (continue ())
-| 244 => (let
- val s = concat (rev (!charlist))
- val _ = charlist := nil
- fun make (t, v) =
- t (v, !stringStart, Source.getPos (source, yypos + 1))
- in YYBEGIN INITIAL
- ; make (Tokens.STRING, s)
- end)
-| 247 => (addChar #"\a"; continue ())
-| 250 => (addChar #"\b"; continue ())
-| 253 => (addChar #"\f"; continue ())
-| 256 => (addChar #"\n"; continue ())
-| 259 => (addChar #"\r"; continue ())
-| 262 => (addChar #"\t"; continue ())
-| 265 => (addChar #"\v"; continue ())
-| 269 => let val yytext=yymktext() in addChar (Char.chr(Char.ord(String.sub(yytext, 2))
- -Char.ord #"@"))
- ; continue () end
-| 27 => (tok (Tokens.AND, source, yypos, yypos + 3))
-| 273 => (error (source, yypos, yypos + 2,
- "illegal control escape; must be one of @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_")
- ; continue ())
-| 278 => let val yytext=yymktext() in let
- val x =
- Char.ord(String.sub(yytext, 1)) * 100
- + Char.ord(String.sub(yytext, 2)) * 10
- + Char.ord(String.sub(yytext, 3))
- - (Char.ord #"0") * 111
- in (if x > 255
- then stringError (source, yypos,
- "illegal ascii escape")
- else addChar(Char.chr x);
- continue ())
- end end
-| 285 => let val yytext=yymktext() in let
- val x =
- StringCvt.scanString
- (Pervasive.Int.scan StringCvt.HEX)
- (String.substring (yytext, 2, 4))
- fun err () =
- stringError (source, yypos,
- "illegal unicode escape")
- in (case x of
- SOME x => if x > 255
- then err()
- else addChar(Char.chr x)
- | _ => err())
- ; continue ()
- end end
-| 288 => (addString "\""; continue ())
-| 291 => (addString "\\"; continue ())
-| 297 => (YYBEGIN F; continue ())
-| 303 => (Source.newline (source, yypos) ; YYBEGIN F ; continue ())
-| 305 => (stringError (source, yypos, "illegal string escape")
- ; continue ())
-| 31 => (tok (Tokens.BAS, source, yypos, yypos + 3))
-| 310 => (Source.newline (source, yypos)
- ; stringError (source, yypos, "unclosed string")
- ; continue ())
-| 313 => let val yytext=yymktext() in addString yytext; continue () end
-| 315 => (stringError (source, yypos + 1, "illegal character in string")
- ; continue ())
-| 320 => (Source.newline (source, yypos) ; continue ())
-| 323 => (continue ())
-| 325 => (YYBEGIN S
- ; stringStart := Source.getPos (source, yypos)
- ; continue ())
-| 327 => (stringError (source, yypos, "unclosed string")
- ; continue ())
-| 37 => (tok (Tokens.BASIS, source, yypos, yypos + 5))
-| 41 => (tok (Tokens.END, source, yypos, yypos + 3))
-| 49 => (tok (Tokens.FUNCTOR, source, yypos, yypos + 7))
-| 52 => (tok (Tokens.IN, source, yypos, yypos + 2))
-| 56 => (tok (Tokens.LET, source, yypos, yypos + 3))
-| 62 => (tok (Tokens.LOCAL, source, yypos, yypos + 5))
-| 67 => (tok (Tokens.OPEN, source, yypos, yypos + 4))
-| 7 => (Source.newline (source, yypos); continue ())
-| 77 => (tok (Tokens.SIGNATURE, source, yypos, yypos + 9))
-| 87 => (tok (Tokens.STRUCTURE, source, yypos, yypos + 9))
-| 90 => let val yytext=yymktext() in tok' (Tokens.ID, yytext, source, yypos) end
-| _ => raise Internal.LexerError
-
- ) end )
-
- val {fin,trans} = Vector.sub (Internal.tab, s)
- val NewAcceptingLeaves = fin::AcceptingLeaves
- in if l = !yybl then
- if trans = #trans(Vector.sub(Internal.tab,0))
- then action(l,NewAcceptingLeaves
-) else let val newchars= if !yydone then "" else yyinput 1024
- in if (String.size newchars)=0
- then (yydone := true;
- if (l=i0) then UserDeclarations.eof yyarg
- else action(l,NewAcceptingLeaves))
- else (if i0=l then yyb := newchars
- else yyb := String.substring(!yyb,i0,l-i0)^newchars;
- yygone := !yygone+i0;
- yybl := String.size (!yyb);
- scan (s,AcceptingLeaves,l-i0,0))
- end
- else let val NewChar = Char.ord (CharVector.sub (!yyb,l))
- val NewChar = if NewChar<128 then NewChar else 128
- val NewState = Char.ord (CharVector.sub (trans,NewChar))
- in if NewState=0 then action(l,NewAcceptingLeaves)
- else scan(NewState,NewAcceptingLeaves,l+1,i0)
- end
- end
-(*
- val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
-then !yybegin+1 else !yybegin
-*)
- in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
- end
-in continue end
- in lex
- end
-end
diff --git a/lang/mlton/files/patch-Makefile b/lang/mlton/files/patch-Makefile
index 96c0aa5633c1..8b3aa64139b4 100644
--- a/lang/mlton/files/patch-Makefile
+++ b/lang/mlton/files/patch-Makefile
@@ -1,25 +1,15 @@
---- Makefile.orig 2010-06-11 06:35:30.000000000 -0700
-+++ Makefile 2013-03-25 20:23:46.000000000 -0700
-@@ -34,7 +34,11 @@
- PATH := $(BIN):$(SRC)/bin:$(shell echo $$PATH)
- CP := /bin/cp -fpR
- GZIP := gzip --force --best
-+ifeq ($(TARGET), mingw32)
-+RANLIB := $(TARGET)-ranlib
-+else
- RANLIB := ranlib
-+endif
-
- # If we're compiling with another version of MLton, then we want to do
- # another round of compilation so that we get a MLton built without
-@@ -401,6 +405,10 @@
- cd "$(TLIB)/sml"; for i in */[Dd]oc; do mv "$$i" "$(TDOC)/$$i"; done
- cd "$(TLIB)/sml"; for i in */README*; do mv "$$i" "$(TDOC)/$$i"; done
-
-+remove-docs:
-+ cd "$(TLIB)/sml"; for i in */[Dd]oc; do rm -rf "$$i"; done
-+ cd "$(TLIB)/sml"; for i in */README*; do rm -rf "$$i"; done
-+
- .PHONY: release
- release: version
- tar cvzf ../mlton-$(VERSION).tar.gz \
+--- Makefile.orig 2021-08-16 18:18:28 UTC
++++ Makefile
+@@ -387,9 +387,11 @@ install-no-strip:
+ -e "s;^LIB_REL_BIN=.*;LIB_REL_BIN=\"$(TLIB_REL_TBIN)\";" \
+ < "$(BIN)/$(MLTON)" > "$(TBIN)/$(MLTON)"
+ $(CHMOD) a+x "$(TBIN)/$(MLTON)"
+- $(CP) "$(LIB)/." "$(TLIB)/"
++# $(CP) "$(LIB)/." "$(TLIB)/"
+ $(MKDIR) "$(TMAN)"
+ cd "$(SRC)/man" && $(CP) $(MAN_PAGES) "$(TMAN)/"
++ cd "$(LIB)" && $(CP) include mlton-compile \
++ sml static-library targets "$(TLIB)/"
+ ifeq (true, $(GZIP_MAN))
+ cd "$(TMAN)" && $(GZIP) --force --best $(MAN_PAGES);
+ endif
diff --git a/lang/mlton/files/patch-lib_mlrisc-lib_Makefile b/lang/mlton/files/patch-lib_mlrisc-lib_Makefile
new file mode 100644
index 000000000000..ce6920f8d4aa
--- /dev/null
+++ b/lang/mlton/files/patch-lib_mlrisc-lib_Makefile
@@ -0,0 +1,12 @@
+--- lib/mlrisc-lib/Makefile.orig 2021-08-16 18:18:28 UTC
++++ lib/mlrisc-lib/Makefile
+@@ -17,6 +17,9 @@ all: MLRISC/README.mlton
+ MLRISC/README.mlton: MLRISC.tgz MLRISC.patch
+ $(RM) MLRISC
+ $(GZIP) -dc MLRISC.tgz | $(TAR) xf -
++ $(SED) -i.bak 's|gcc|$(CC)|g' \
++ MLRISC/c-call/varargs/interp/Makefile \
++ MLRISC/c-call/test/Makefile
+ $(FIND) MLRISC -name '._*' -prune -exec $(RM) '{}' ';'
+ $(CHMOD) -R a+r MLRISC
+ $(CHMOD) -R g-s MLRISC
diff --git a/lang/mlton/files/patch-runtime-Makefile b/lang/mlton/files/patch-runtime-Makefile
deleted file mode 100644
index c0ec8cd04ca4..000000000000
--- a/lang/mlton/files/patch-runtime-Makefile
+++ /dev/null
@@ -1,67 +0,0 @@
---- runtime/Makefile.orig 2010-06-11 06:35:14.000000000 -0700
-+++ runtime/Makefile 2013-03-06 19:55:56.000000000 -0800
-@@ -23,6 +23,19 @@
-
- TARGET_ARCH := $(shell ../bin/host-arch)
- TARGET_OS := $(shell ../bin/host-os)
-+
-+ifeq ($(TARGET), self)
-+GCC := gcc
-+else
-+GCC := $(TARGET)-gcc
-+endif
-+
-+ifeq ($(TARGET_OS), mingw)
-+RUN := wine
-+else
-+RUN :=
-+endif
-+
- GCC_MAJOR_VERSION := \
- $(shell $(CC) -v 2>&1 | grep 'gcc version' | \
- sed 's/.*gcc version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/\1/')
-@@ -292,7 +305,7 @@
- cd gdtoa && $(CC) $(OPTCFLAGS) $(OPTWARNCFLAGS) -w -O1 -o arithchk.out arithchk.c
-
- gdtoa/arith.h: gdtoa/arithchk.out
-- cd gdtoa && ./arithchk.out >arith.h
-+ cd gdtoa && $(RUN) ./arithchk.out >arith.h
-
- gdtoa/%-pic.o: gdtoa/%.c gdtoa/arith.h
- $(CC) $(PICCFLAGS) $(PICWARNCFLAGS) -w -DINFNAN_CHECK -c -o $@ $<
-@@ -322,7 +335,7 @@
- gen/gen-types.stamp: gen/gen-types.c util.h util.o
- $(CC) $(OPTCFLAGS) $(WARNCFLAGS) -o gen/gen-types gen/gen-types.c util.o
- rm -f gen/c-types.h gen/c-types.sml gen/ml-types.h gen/gen-types.stamp
-- cd gen && ./gen-types
-+ cd gen && $(RUN) ./gen-types
- rm -f gen/gen-types$(EXE) gen/gen-types
- touch $@
-
-@@ -333,7 +346,7 @@
- gen/gen-basis-ffi.stamp: gen/gen-basis-ffi.sml gen/basis-ffi.def
- mlton -output gen/gen-basis-ffi gen/gen-basis-ffi.sml
- rm -f gen/basis-ffi.h gen/basis-ffi.sml gen/gen-basis-ffi.stamp
-- cd gen && ./gen-basis-ffi
-+ cd gen && $(RUN) ./gen-basis-ffi
- rm -f gen/gen-basis-ffi
- touch $@
-
-@@ -342,7 +355,7 @@
- gen/gen-sizes.stamp: gen/gen-sizes.c libmlton.a $(HFILES)
- $(CC) $(OPTCFLAGS) $(WARNCFLAGS) -I. -o gen/gen-sizes gen/gen-sizes.c -L. -lmlton
- rm -f gen/sizes
-- cd gen && ./gen-sizes
-+ cd gen && $(RUN) ./gen-sizes
- rm -f gen/gen-sizes$(EXE) gen/gen-sizes
- touch $@
-
-@@ -370,7 +383,7 @@
- bytecode/print-opcodes: bytecode/print-opcodes.c bytecode/opcode.h $(HFILES)
- $(CC) $(OPTCFLAGS) $(WARNCFLAGS) -o bytecode/print-opcodes bytecode/print-opcodes.c
- rm -f bytecode/opcodes
-- cd bytecode && ./print-opcodes > opcodes
-+ cd bytecode && $(RUN) ./print-opcodes > opcodes
-
- basis.c: $(BASISCFILES)
- rm -f basis.c
diff --git a/lang/mlton/files/patch-runtime_gc_int-inf.c b/lang/mlton/files/patch-runtime_gc_int-inf.c
deleted file mode 100644
index 745fb26f035a..000000000000
--- a/lang/mlton/files/patch-runtime_gc_int-inf.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- runtime/gc/int-inf.c.orig 2010-06-11 06:35:14.000000000 -0700
-+++ runtime/gc/int-inf.c 2013-02-17 15:45:47.000000000 -0800
-@@ -6,6 +6,10 @@
- * See the file MLton-LICENSE for details.
- */
-
-+#ifndef __gmp_const
-+# define __gmp_const const
-+#endif
-+
- /*
- * Test if a intInf is a fixnum.
- */
diff --git a/lang/mlton/files/upgrade-basis.sml b/lang/mlton/files/upgrade-basis.sml
deleted file mode 100644
index 7235efc7d47b..000000000000
--- a/lang/mlton/files/upgrade-basis.sml
+++ /dev/null
@@ -1,68 +0,0 @@
-structure MLton =
- struct
- open MLton
-
- structure Platform =
- struct
- fun peek (l, f) = List.find f l
- fun omap (opt, f) = Option.map f opt
- val toLower = String.translate (str o Char.toLower)
-
- structure Arch =
- struct
- datatype t = Alpha | AMD64 | ARM | HPPA | IA64 | m68k |
- MIPS | PowerPC | S390 | Sparc | X86
-
- val all = [(Alpha, "Alpha"),
- (AMD64, "AMD64"),
- (ARM, "ARM"),
- (HPPA, "HPPA"),
- (IA64, "IA64"),
- (m68k, "m68k"),
- (MIPS, "MIPS"),
- (PowerPC, "PowerPC"),
- (S390, "S390"),
- (Sparc, "Sparc"),
- (X86, "X86")]
-
- fun fromString s =
- let
- val s = toLower s
- in
- omap (peek (all, fn (_, s') => s = toLower s'), #1)
- end
-
- val host = X86
-
- fun toString a = #2 (valOf (peek (all, fn (a', _) => a = a')))
- end
-
- structure OS =
- struct
- datatype t = AIX | Cygwin | Darwin | FreeBSD | HPUX | Linux
- | MinGW | NetBSD | OpenBSD | Solaris
-
- val all = [(AIX, "AIX"),
- (Cygwin, "Cygwin"),
- (Darwin, "Darwin"),
- (FreeBSD, "FreeBSD"),
- (HPUX, "HPUX"),
- (Linux, "Linux"),
- (MinGW, "MinGW"),
- (NetBSD, "NetBSD"),
- (OpenBSD, "OpenBSD"),
- (Solaris, "Solaris")]
-
- fun fromString s =
- let
- val s = toLower s
- in
- omap (peek (all, fn (_, s') => s = toLower s'), #1)
- end
-
- val host = FreeBSD
-
- fun toString a = #2 (valOf (peek (all, fn (a', _) => a = a')))
- end
- end
- end
diff --git a/lang/mlton/files/yacc.grm.sig b/lang/mlton/files/yacc.grm.sig
deleted file mode 100644
index 48dd896fbf18..000000000000
--- a/lang/mlton/files/yacc.grm.sig
+++ /dev/null
@@ -1,54 +0,0 @@
-signature Mlyacc_TOKENS =
-sig
-type ('a,'b) token
-type svalue
-val BOGUS_VALUE: 'a * 'a -> (svalue,'a) token
-val UNKNOWN: (string) * 'a * 'a -> (svalue,'a) token
-val VALUE: 'a * 'a -> (svalue,'a) token
-val VERBOSE: 'a * 'a -> (svalue,'a) token
-val TYVAR: (string) * 'a * 'a -> (svalue,'a) token
-val TERM: 'a * 'a -> (svalue,'a) token
-val START: 'a * 'a -> (svalue,'a) token
-val SUBST: 'a * 'a -> (svalue,'a) token
-val RPAREN: 'a * 'a -> (svalue,'a) token
-val RBRACE: 'a * 'a -> (svalue,'a) token
-val PROG: (string) * 'a * 'a -> (svalue,'a) token
-val PREFER: 'a * 'a -> (svalue,'a) token
-val PREC_TAG: 'a * 'a -> (svalue,'a) token
-val PREC: (Header.prec) * 'a * 'a -> (svalue,'a) token
-val PERCENT_TOKEN_SIG_INFO: 'a * 'a -> (svalue,'a) token
-val PERCENT_ARG: 'a * 'a -> (svalue,'a) token
-val PERCENT_POS: 'a * 'a -> (svalue,'a) token
-val PERCENT_PURE: 'a * 'a -> (svalue,'a) token
-val PERCENT_EOP: 'a * 'a -> (svalue,'a) token
-val OF: 'a * 'a -> (svalue,'a) token
-val NOSHIFT: 'a * 'a -> (svalue,'a) token
-val NONTERM: 'a * 'a -> (svalue,'a) token
-val NODEFAULT: 'a * 'a -> (svalue,'a) token
-val NAME: 'a * 'a -> (svalue,'a) token
-val LPAREN: 'a * 'a -> (svalue,'a) token
-val LBRACE: 'a * 'a -> (svalue,'a) token
-val KEYWORD: 'a * 'a -> (svalue,'a) token
-val INT: (string) * 'a * 'a -> (svalue,'a) token
-val PERCENT_HEADER: 'a * 'a -> (svalue,'a) token
-val IDDOT: (string) * 'a * 'a -> (svalue,'a) token
-val ID: (string*int) * 'a * 'a -> (svalue,'a) token
-val HEADER: (string) * 'a * 'a -> (svalue,'a) token
-val FOR: 'a * 'a -> (svalue,'a) token
-val EOF: 'a * 'a -> (svalue,'a) token
-val DELIMITER: 'a * 'a -> (svalue,'a) token
-val COMMA: 'a * 'a -> (svalue,'a) token
-val COLON: 'a * 'a -> (svalue,'a) token
-val CHANGE: 'a * 'a -> (svalue,'a) token
-val BAR: 'a * 'a -> (svalue,'a) token
-val BLOCK: 'a * 'a -> (svalue,'a) token
-val ASTERISK: 'a * 'a -> (svalue,'a) token
-val ARROW: 'a * 'a -> (svalue,'a) token
-end
-signature Mlyacc_LRVALS=
-sig
-structure Tokens : Mlyacc_TOKENS
-structure ParserData:PARSER_DATA
-sharing type ParserData.Token.token = Tokens.token
-sharing type ParserData.svalue = Tokens.svalue
-end
diff --git a/lang/mlton/files/yacc.grm.sml b/lang/mlton/files/yacc.grm.sml
deleted file mode 100644
index afb4ecc1b6b5..000000000000
--- a/lang/mlton/files/yacc.grm.sml
+++ /dev/null
@@ -1,1053 +0,0 @@
-
-
-functor MlyaccLrValsFun(structure Hdr : HEADER
- where type prec = Header.prec
- structure Token : TOKEN)
- =
-struct
-structure ParserData=
-struct
-structure Header =
-struct
-(* ML-Yacc Parser Generator (c) 1989 Andrew W. Appel, David R. Tarditi *)
-
-(* parser for the ML parser generator *)
-
-open Hdr
-
-end
-structure LrTable = Token.LrTable
-structure Token = Token
-local open LrTable in
-val table=let val actionRows =
-"\
-\\001\000\001\000\076\000\000\000\
-\\001\000\005\000\025\000\008\000\024\000\014\000\023\000\016\000\022\000\
-\\019\000\021\000\020\000\020\000\021\000\019\000\022\000\018\000\
-\\024\000\017\000\025\000\016\000\026\000\015\000\027\000\014\000\
-\\028\000\013\000\029\000\012\000\031\000\011\000\035\000\010\000\
-\\036\000\009\000\037\000\008\000\039\000\007\000\040\000\006\000\000\000\
-\\001\000\006\000\063\000\000\000\
-\\001\000\006\000\074\000\000\000\
-\\001\000\006\000\086\000\000\000\
-\\001\000\006\000\098\000\000\000\
-\\001\000\007\000\085\000\033\000\084\000\000\000\
-\\001\000\009\000\000\000\000\000\
-\\001\000\010\000\061\000\000\000\
-\\001\000\011\000\003\000\000\000\
-\\001\000\012\000\026\000\000\000\
-\\001\000\012\000\028\000\000\000\
-\\001\000\012\000\029\000\000\000\
-\\001\000\012\000\032\000\000\000\
-\\001\000\012\000\044\000\013\000\043\000\000\000\
-\\001\000\012\000\044\000\013\000\043\000\017\000\042\000\032\000\041\000\
-\\038\000\040\000\000\000\
-\\001\000\012\000\048\000\000\000\
-\\001\000\012\000\053\000\000\000\
-\\001\000\012\000\071\000\015\000\070\000\000\000\
-\\001\000\012\000\071\000\015\000\070\000\033\000\069\000\000\000\
-\\001\000\012\000\077\000\000\000\
-\\001\000\012\000\080\000\000\000\
-\\001\000\012\000\101\000\000\000\
-\\001\000\032\000\036\000\000\000\
-\\001\000\032\000\037\000\000\000\
-\\001\000\032\000\050\000\000\000\
-\\001\000\032\000\057\000\000\000\
-\\001\000\032\000\100\000\000\000\
-\\001\000\032\000\104\000\000\000\
-\\106\000\012\000\053\000\000\000\
-\\107\000\000\000\
-\\108\000\000\000\
-\\109\000\004\000\058\000\000\000\
-\\110\000\004\000\058\000\000\000\
-\\111\000\000\000\
-\\112\000\000\000\
-\\113\000\000\000\
-\\114\000\000\000\
-\\115\000\000\000\
-\\116\000\000\000\
-\\117\000\000\000\
-\\118\000\000\000\
-\\119\000\000\000\
-\\120\000\000\000\
-\\121\000\000\000\
-\\122\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\123\000\000\000\
-\\124\000\000\000\
-\\125\000\000\000\
-\\126\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\127\000\000\000\
-\\128\000\000\000\
-\\129\000\004\000\075\000\000\000\
-\\130\000\000\000\
-\\131\000\000\000\
-\\132\000\004\000\060\000\000\000\
-\\133\000\000\000\
-\\134\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\135\000\023\000\091\000\000\000\
-\\136\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\137\000\023\000\059\000\000\000\
-\\138\000\004\000\094\000\000\000\
-\\139\000\000\000\
-\\140\000\000\000\
-\\141\000\000\000\
-\\142\000\012\000\034\000\000\000\
-\\143\000\000\000\
-\\144\000\000\000\
-\\145\000\000\000\
-\\146\000\000\000\
-\\147\000\000\000\
-\\148\000\000\000\
-\\149\000\000\000\
-\\150\000\000\000\
-\\151\000\012\000\044\000\013\000\043\000\000\000\
-\\152\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\153\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\154\000\001\000\066\000\002\000\065\000\012\000\044\000\013\000\043\000\000\000\
-\\155\000\000\000\
-\\156\000\000\000\
-\\157\000\000\000\
-\\158\000\000\000\
-\\159\000\000\000\
-\\160\000\030\000\096\000\000\000\
-\"
-val actionRowNumbers =
-"\009\000\031\000\001\000\030\000\
-\\010\000\046\000\011\000\012\000\
-\\013\000\065\000\065\000\023\000\
-\\024\000\015\000\048\000\065\000\
-\\065\000\011\000\047\000\016\000\
-\\065\000\025\000\017\000\065\000\
-\\026\000\032\000\060\000\035\000\
-\\055\000\040\000\008\000\038\000\
-\\065\000\034\000\043\000\002\000\
-\\049\000\073\000\068\000\071\000\
-\\019\000\014\000\078\000\036\000\
-\\041\000\033\000\044\000\037\000\
-\\042\000\029\000\063\000\003\000\
-\\052\000\039\000\000\000\050\000\
-\\020\000\015\000\013\000\021\000\
-\\064\000\015\000\072\000\015\000\
-\\015\000\006\000\004\000\070\000\
-\\081\000\080\000\079\000\062\000\
-\\065\000\065\000\065\000\058\000\
-\\059\000\054\000\056\000\045\000\
-\\074\000\075\000\069\000\018\000\
-\\015\000\061\000\083\000\051\000\
-\\053\000\015\000\005\000\077\000\
-\\065\000\027\000\022\000\057\000\
-\\015\000\083\000\066\000\082\000\
-\\076\000\028\000\067\000\007\000"
-val gotoT =
-"\
-\\001\000\103\000\000\000\
-\\006\000\002\000\000\000\
-\\005\000\003\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\002\000\025\000\000\000\
-\\000\000\
-\\013\000\029\000\014\000\028\000\000\000\
-\\003\000\031\000\000\000\
-\\003\000\033\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\037\000\017\000\036\000\000\000\
-\\000\000\
-\\003\000\043\000\000\000\
-\\003\000\044\000\000\000\
-\\002\000\045\000\000\000\
-\\000\000\
-\\000\000\
-\\003\000\047\000\000\000\
-\\000\000\
-\\010\000\050\000\011\000\049\000\000\000\
-\\003\000\054\000\015\000\053\000\016\000\052\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\060\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\004\000\066\000\008\000\065\000\000\000\
-\\007\000\070\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\010\000\071\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\007\000\037\000\017\000\076\000\000\000\
-\\013\000\077\000\014\000\028\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\037\000\017\000\079\000\000\000\
-\\000\000\
-\\007\000\037\000\017\000\080\000\000\000\
-\\007\000\037\000\017\000\081\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\\003\000\086\000\009\000\085\000\000\000\
-\\003\000\054\000\015\000\087\000\016\000\052\000\000\000\
-\\003\000\088\000\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\007\000\062\000\000\000\
-\\007\000\062\000\000\000\
-\\000\000\
-\\004\000\090\000\000\000\
-\\007\000\037\000\017\000\091\000\000\000\
-\\000\000\
-\\012\000\093\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\037\000\017\000\095\000\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\003\000\097\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\007\000\037\000\017\000\100\000\000\000\
-\\012\000\101\000\000\000\
-\\000\000\
-\\000\000\
-\\007\000\062\000\000\000\
-\\000\000\
-\\000\000\
-\\000\000\
-\"
-val numstates = 104
-val numrules = 55
-val s = ref "" and index = ref 0
-val string_to_int = fn () =>
-let val i = !index
-in index := i+2; Char.ord(String.sub(!s,i)) + Char.ord(String.sub(!s,i+1)) * 256
-end
-val string_to_list = fn s' =>
- let val len = String.size s'
- fun f () =
- if !index < len then string_to_int() :: f()
- else nil
- in index := 0; s := s'; f ()
- end
-val string_to_pairlist = fn (conv_key,conv_entry) =>
- let fun f () =
- case string_to_int()
- of 0 => EMPTY
- | n => PAIR(conv_key (n-1),conv_entry (string_to_int()),f())
- in f
- end
-val string_to_pairlist_default = fn (conv_key,conv_entry) =>
- let val conv_row = string_to_pairlist(conv_key,conv_entry)
- in fn () =>
- let val default = conv_entry(string_to_int())
- val row = conv_row()
- in (row,default)
- end
- end
-val string_to_table = fn (convert_row,s') =>
- let val len = String.size s'
- fun f ()=
- if !index < len then convert_row() :: f()
- else nil
- in (s := s'; index := 0; f ())
- end
-local
- val memo = Array.array(numstates+numrules,ERROR)
- val _ =let fun g i=(Array.update(memo,i,REDUCE(i-numstates)); g(i+1))
- fun f i =
- if i=numstates then g i
- else (Array.update(memo,i,SHIFT (STATE i)); f (i+1))
- in f 0 handle Subscript => ()
- end
-in
-val entry_to_action = fn 0 => ACCEPT | 1 => ERROR | j => Array.sub(memo,(j-2))
-end
-val gotoT=Array.fromList(string_to_table(string_to_pairlist(NT,STATE),gotoT))
-val actionRows=string_to_table(string_to_pairlist_default(T,entry_to_action),actionRows)
-val actionRowNumbers = string_to_list actionRowNumbers
-val actionT = let val actionRowLookUp=
-let val a=Array.fromList(actionRows) in fn i=>Array.sub(a,i) end
-in Array.fromList(map actionRowLookUp actionRowNumbers)
-end
-in LrTable.mkLrTable {actions=actionT,gotos=gotoT,numRules=numrules,
-numStates=numstates,initialState=STATE 0}
-end
-end
-local open Header in
-type pos = int
-type arg = Hdr.inputSource
-structure MlyValue =
-struct
-datatype svalue = VOID | ntVOID of unit -> unit
- | UNKNOWN of unit -> (string) | TYVAR of unit -> (string)
- | PROG of unit -> (string) | PREC of unit -> (Header.prec)
- | INT of unit -> (string) | IDDOT of unit -> (string)
- | ID of unit -> (string*int) | HEADER of unit -> (string)
- | TY of unit -> (string)
- | CHANGE_DEC of unit -> ( ( Hdr.symbol list * Hdr.symbol list ) )
- | CHANGE_DECL of unit -> ( ( Hdr.symbol list * Hdr.symbol list ) list)
- | SUBST_DEC of unit -> ( ( Hdr.symbol list * Hdr.symbol list ) )
- | SUBST_DECL of unit -> ( ( Hdr.symbol list * Hdr.symbol list ) list)
- | G_RULE_PREC of unit -> (Hdr.symbol option)
- | G_RULE_LIST of unit -> (Hdr.rule list)
- | G_RULE of unit -> (Hdr.rule list)
- | RHS_LIST of unit -> ({ rhs:Hdr.symbol list,code:string,prec:Hdr.symbol option } list)
- | RECORD_LIST of unit -> (string) | QUAL_ID of unit -> (string)
- | MPC_DECLS of unit -> (Hdr.declData)
- | MPC_DECL of unit -> (Hdr.declData) | LABEL of unit -> (string)
- | ID_LIST of unit -> (Hdr.symbol list)
- | CONSTR_LIST of unit -> ( ( Hdr.symbol * Hdr.ty option ) list)
- | BEGIN of unit -> (string*Hdr.declData* ( Hdr.rule list ) )
-end
-type svalue = MlyValue.svalue
-type result = string*Hdr.declData* ( Hdr.rule list )
-end
-structure EC=
-struct
-open LrTable
-infix 5 $$
-fun x $$ y = y::x
-val is_keyword =
-fn _ => false
-val preferred_change : (term list * term list) list =
-nil
-val noShift =
-fn (T 8) => true | _ => false
-val showTerminal =
-fn (T 0) => "ARROW"
- | (T 1) => "ASTERISK"
- | (T 2) => "BLOCK"
- | (T 3) => "BAR"
- | (T 4) => "CHANGE"
- | (T 5) => "COLON"
- | (T 6) => "COMMA"
- | (T 7) => "DELIMITER"
- | (T 8) => "EOF"
- | (T 9) => "FOR"
- | (T 10) => "HEADER"
- | (T 11) => "ID"
- | (T 12) => "IDDOT"
- | (T 13) => "PERCENT_HEADER"
- | (T 14) => "INT"
- | (T 15) => "KEYWORD"
- | (T 16) => "LBRACE"
- | (T 17) => "LPAREN"
- | (T 18) => "NAME"
- | (T 19) => "NODEFAULT"
- | (T 20) => "NONTERM"
- | (T 21) => "NOSHIFT"
- | (T 22) => "OF"
- | (T 23) => "PERCENT_EOP"
- | (T 24) => "PERCENT_PURE"
- | (T 25) => "PERCENT_POS"
- | (T 26) => "PERCENT_ARG"
- | (T 27) => "PERCENT_TOKEN_SIG_INFO"
- | (T 28) => "PREC"
- | (T 29) => "PREC_TAG"
- | (T 30) => "PREFER"
- | (T 31) => "PROG"
- | (T 32) => "RBRACE"
- | (T 33) => "RPAREN"
- | (T 34) => "SUBST"
- | (T 35) => "START"
- | (T 36) => "TERM"
- | (T 37) => "TYVAR"
- | (T 38) => "VERBOSE"
- | (T 39) => "VALUE"
- | (T 40) => "UNKNOWN"
- | (T 41) => "BOGUS_VALUE"
- | _ => "bogus-term"
-local open Header in
-val errtermvalue=
-fn _ => MlyValue.VOID
-end
-val terms : term list = nil
- $$ (T 41) $$ (T 39) $$ (T 38) $$ (T 36) $$ (T 35) $$ (T 34) $$ (T 33)
- $$ (T 32) $$ (T 30) $$ (T 29) $$ (T 27) $$ (T 26) $$ (T 25) $$ (T 24)
- $$ (T 23) $$ (T 22) $$ (T 21) $$ (T 20) $$ (T 19) $$ (T 18) $$ (T 17)
- $$ (T 16) $$ (T 15) $$ (T 13) $$ (T 9) $$ (T 8) $$ (T 7) $$ (T 6) $$
-(T 5) $$ (T 4) $$ (T 3) $$ (T 2) $$ (T 1) $$ (T 0)end
-structure Actions =
-struct
-type int = Int.int
-exception mlyAction of int
-local open Header in
-val actions =
-fn (i392:int,defaultPos,stack,
- (inputSource):arg) =>
-case (i392,stack)
-of ( 0, ( ( _, ( MlyValue.G_RULE_LIST G_RULE_LIST1, _,
-G_RULE_LIST1right)) :: _ :: ( _, ( MlyValue.MPC_DECLS MPC_DECLS1, _, _
-)) :: ( _, ( MlyValue.HEADER HEADER1, HEADER1left, _)) :: rest671)) =>
- let val result = MlyValue.BEGIN (fn _ => let val (HEADER as HEADER1
-) = HEADER1 ()
- val (MPC_DECLS as MPC_DECLS1) = MPC_DECLS1 ()
- val (G_RULE_LIST as G_RULE_LIST1) = G_RULE_LIST1 ()
- in (HEADER,MPC_DECLS,rev G_RULE_LIST)
-end)
- in ( LrTable.NT 0, ( result, HEADER1left, G_RULE_LIST1right), rest671
-)
-end
-| ( 1, ( ( _, ( MlyValue.MPC_DECL MPC_DECL1, MPC_DECLleft,
-MPC_DECL1right)) :: ( _, ( MlyValue.MPC_DECLS MPC_DECLS1,
-MPC_DECLS1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECLS (fn _ => let val (MPC_DECLS as MPC_DECLS1) =
-MPC_DECLS1 ()
- val (MPC_DECL as MPC_DECL1) = MPC_DECL1 ()
- in (join_decls(MPC_DECLS,MPC_DECL,inputSource,MPC_DECLleft))
-end)
- in ( LrTable.NT 5, ( result, MPC_DECLS1left, MPC_DECL1right), rest671
-)
-end
-| ( 2, ( rest671)) => let val result = MlyValue.MPC_DECLS (fn _ => (
-DECL {prec=nil,nonterm=NONE,term=NONE,eop=nil,control=nil,
- keyword=nil,change=nil,
- value=nil}
-))
- in ( LrTable.NT 5, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 3, ( ( _, ( MlyValue.CONSTR_LIST CONSTR_LIST1, _,
-CONSTR_LIST1right)) :: ( _, ( _, TERM1left, _)) :: rest671)) => let
- val result = MlyValue.MPC_DECL (fn _ => let val (CONSTR_LIST as
-CONSTR_LIST1) = CONSTR_LIST1 ()
- in (
-DECL { prec=nil,nonterm=NONE,
- term = SOME CONSTR_LIST, eop =nil,control=nil,
- change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, TERM1left, CONSTR_LIST1right), rest671)
-
-end
-| ( 4, ( ( _, ( MlyValue.CONSTR_LIST CONSTR_LIST1, _,
-CONSTR_LIST1right)) :: ( _, ( _, NONTERM1left, _)) :: rest671)) => let
- val result = MlyValue.MPC_DECL (fn _ => let val (CONSTR_LIST as
-CONSTR_LIST1) = CONSTR_LIST1 ()
- in (
-DECL { prec=nil,control=nil,nonterm= SOME CONSTR_LIST,
- term = NONE, eop=nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, NONTERM1left, CONSTR_LIST1right),
-rest671)
-end
-| ( 5, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _,
- ( MlyValue.PREC PREC1, PREC1left, _)) :: rest671)) => let val result
- = MlyValue.MPC_DECL (fn _ => let val (PREC as PREC1) = PREC1 ()
- val (ID_LIST as ID_LIST1) = ID_LIST1 ()
- in (
-DECL {prec= [(PREC,ID_LIST)],control=nil,
- nonterm=NONE,term=NONE,eop=nil,change=nil,
- keyword=nil,value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PREC1left, ID_LIST1right), rest671)
-end
-| ( 6, ( ( _, ( MlyValue.ID ID1, _, ID1right)) :: ( _, ( _,
-START1left, _)) :: rest671)) => let val result = MlyValue.MPC_DECL
- (fn _ => let val (ID as ID1) = ID1 ()
- in (
-DECL {prec=nil,control=[START_SYM (symbolMake ID)],nonterm=NONE,
- term = NONE, eop = nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, START1left, ID1right), rest671)
-end
-| ( 7, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _,
- ( _, PERCENT_EOP1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (ID_LIST as ID_LIST1) = ID_LIST1
- ()
- in (
-DECL {prec=nil,control=nil,nonterm=NONE,term=NONE,
- eop=ID_LIST, change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PERCENT_EOP1left, ID_LIST1right),
-rest671)
-end
-| ( 8, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _,
- ( _, KEYWORD1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (ID_LIST as ID_LIST1) = ID_LIST1
- ()
- in (
-DECL {prec=nil,control=nil,nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=ID_LIST,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, KEYWORD1left, ID_LIST1right), rest671)
-
-end
-| ( 9, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _,
- ( _, PREFER1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (ID_LIST as ID_LIST1) = ID_LIST1
- ()
- in (
-DECL {prec=nil,control=nil,nonterm=NONE,term=NONE,eop=nil,
- change=map (fn i=>([],[i])) ID_LIST,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PREFER1left, ID_LIST1right), rest671)
-
-end
-| ( 10, ( ( _, ( MlyValue.CHANGE_DECL CHANGE_DECL1, _,
-CHANGE_DECL1right)) :: ( _, ( _, CHANGE1left, _)) :: rest671)) => let
- val result = MlyValue.MPC_DECL (fn _ => let val (CHANGE_DECL as
-CHANGE_DECL1) = CHANGE_DECL1 ()
- in (
-DECL {prec=nil,control=nil,nonterm=NONE,term=NONE,eop=nil,
- change=CHANGE_DECL,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, CHANGE1left, CHANGE_DECL1right), rest671
-)
-end
-| ( 11, ( ( _, ( MlyValue.SUBST_DECL SUBST_DECL1, _, SUBST_DECL1right
-)) :: ( _, ( _, SUBST1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (SUBST_DECL as SUBST_DECL1) =
-SUBST_DECL1 ()
- in (
-DECL {prec=nil,control=nil,nonterm=NONE,term=NONE,eop=nil,
- change=SUBST_DECL,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, SUBST1left, SUBST_DECL1right), rest671)
-
-end
-| ( 12, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _
-, ( _, NOSHIFT1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (ID_LIST as ID_LIST1) = ID_LIST1
- ()
- in (
-DECL {prec=nil,control=[NSHIFT ID_LIST],nonterm=NONE,term=NONE,
- eop=nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, NOSHIFT1left, ID_LIST1right), rest671)
-
-end
-| ( 13, ( ( _, ( MlyValue.PROG PROG1, _, PROG1right)) :: ( _, ( _,
-PERCENT_HEADER1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (PROG as PROG1) = PROG1 ()
- in (
-DECL {prec=nil,control=[FUNCTOR PROG],nonterm=NONE,term=NONE,
- eop=nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PERCENT_HEADER1left, PROG1right),
-rest671)
-end
-| ( 14, ( ( _, ( MlyValue.PROG PROG1, _, PROG1right)) :: ( _, ( _,
-PERCENT_TOKEN_SIG_INFO1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (PROG as PROG1) = PROG1 ()
- in (
-DECL {prec=nil,control=[TOKEN_SIG_INFO PROG],
- nonterm=NONE,term=NONE,
- eop=nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PERCENT_TOKEN_SIG_INFO1left, PROG1right)
-, rest671)
-end
-| ( 15, ( ( _, ( MlyValue.ID ID1, _, ID1right)) :: ( _, ( _,
-NAME1left, _)) :: rest671)) => let val result = MlyValue.MPC_DECL (fn
- _ => let val (ID as ID1) = ID1 ()
- in (
-DECL {prec=nil,control=[PARSER_NAME (symbolMake ID)],
- nonterm=NONE,term=NONE,
- eop=nil,change=nil,keyword=nil, value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, NAME1left, ID1right), rest671)
-end
-| ( 16, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: _ :: ( _, (
-MlyValue.PROG PROG1, _, _)) :: ( _, ( _, PERCENT_ARG1left, _)) ::
-rest671)) => let val result = MlyValue.MPC_DECL (fn _ => let val (
-PROG as PROG1) = PROG1 ()
- val (TY as TY1) = TY1 ()
- in (
-DECL {prec=nil,control=[PARSE_ARG(PROG,TY)],nonterm=NONE,
- term=NONE,eop=nil,change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PERCENT_ARG1left, TY1right), rest671)
-
-end
-| ( 17, ( ( _, ( _, VERBOSE1left, VERBOSE1right)) :: rest671)) => let
- val result = MlyValue.MPC_DECL (fn _ => (
-DECL {prec=nil,control=[Hdr.VERBOSE],
- nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=nil,
- value=nil}
-))
- in ( LrTable.NT 4, ( result, VERBOSE1left, VERBOSE1right), rest671)
-
-end
-| ( 18, ( ( _, ( _, NODEFAULT1left, NODEFAULT1right)) :: rest671)) =>
- let val result = MlyValue.MPC_DECL (fn _ => (
-DECL {prec=nil,control=[Hdr.NODEFAULT],
- nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=nil,
- value=nil}
-))
- in ( LrTable.NT 4, ( result, NODEFAULT1left, NODEFAULT1right),
-rest671)
-end
-| ( 19, ( ( _, ( _, PERCENT_PURE1left, PERCENT_PURE1right)) ::
-rest671)) => let val result = MlyValue.MPC_DECL (fn _ => (
-DECL {prec=nil,control=[Hdr.PURE],
- nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=nil,
- value=nil}
-))
- in ( LrTable.NT 4, ( result, PERCENT_PURE1left, PERCENT_PURE1right),
-rest671)
-end
-| ( 20, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: ( _, ( _,
-PERCENT_POS1left, _)) :: rest671)) => let val result =
-MlyValue.MPC_DECL (fn _ => let val (TY as TY1) = TY1 ()
- in (
-DECL {prec=nil,control=[Hdr.POS TY],
- nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=nil,
- value=nil}
-)
-end)
- in ( LrTable.NT 4, ( result, PERCENT_POS1left, TY1right), rest671)
-
-end
-| ( 21, ( ( _, ( MlyValue.PROG PROG1, _, PROG1right)) :: ( _, (
-MlyValue.ID ID1, _, _)) :: ( _, ( _, VALUE1left, _)) :: rest671)) =>
- let val result = MlyValue.MPC_DECL (fn _ => let val (ID as ID1) =
-ID1 ()
- val (PROG as PROG1) = PROG1 ()
- in (
-DECL {prec=nil,control=nil,
- nonterm=NONE,term=NONE,eop=nil,
- change=nil,keyword=nil,
- value=[(symbolMake ID,PROG)]}
-)
-end)
- in ( LrTable.NT 4, ( result, VALUE1left, PROG1right), rest671)
-end
-| ( 22, ( ( _, ( MlyValue.CHANGE_DECL CHANGE_DECL1, _,
-CHANGE_DECL1right)) :: _ :: ( _, ( MlyValue.CHANGE_DEC CHANGE_DEC1,
-CHANGE_DEC1left, _)) :: rest671)) => let val result =
-MlyValue.CHANGE_DECL (fn _ => let val (CHANGE_DEC as CHANGE_DEC1) =
-CHANGE_DEC1 ()
- val (CHANGE_DECL as CHANGE_DECL1) = CHANGE_DECL1 ()
- in (CHANGE_DEC :: CHANGE_DECL)
-end)
- in ( LrTable.NT 14, ( result, CHANGE_DEC1left, CHANGE_DECL1right),
-rest671)
-end
-| ( 23, ( ( _, ( MlyValue.CHANGE_DEC CHANGE_DEC1, CHANGE_DEC1left,
-CHANGE_DEC1right)) :: rest671)) => let val result =
-MlyValue.CHANGE_DECL (fn _ => let val (CHANGE_DEC as CHANGE_DEC1) =
-CHANGE_DEC1 ()
- in ([CHANGE_DEC])
-end)
- in ( LrTable.NT 14, ( result, CHANGE_DEC1left, CHANGE_DEC1right),
-rest671)
-end
-| ( 24, ( ( _, ( MlyValue.ID_LIST ID_LIST2, _, ID_LIST2right)) :: _
- :: ( _, ( MlyValue.ID_LIST ID_LIST1, ID_LIST1left, _)) :: rest671))
- => let val result = MlyValue.CHANGE_DEC (fn _ => let val ID_LIST1 =
- ID_LIST1 ()
- val ID_LIST2 = ID_LIST2 ()
- in (ID_LIST1, ID_LIST2)
-end)
- in ( LrTable.NT 15, ( result, ID_LIST1left, ID_LIST2right), rest671)
-
-end
-| ( 25, ( ( _, ( MlyValue.SUBST_DECL SUBST_DECL1, _, SUBST_DECL1right
-)) :: _ :: ( _, ( MlyValue.SUBST_DEC SUBST_DEC1, SUBST_DEC1left, _))
- :: rest671)) => let val result = MlyValue.SUBST_DECL (fn _ => let
- val (SUBST_DEC as SUBST_DEC1) = SUBST_DEC1 ()
- val (SUBST_DECL as SUBST_DECL1) = SUBST_DECL1 ()
- in (SUBST_DEC :: SUBST_DECL)
-end)
- in ( LrTable.NT 12, ( result, SUBST_DEC1left, SUBST_DECL1right),
-rest671)
-end
-| ( 26, ( ( _, ( MlyValue.SUBST_DEC SUBST_DEC1, SUBST_DEC1left,
-SUBST_DEC1right)) :: rest671)) => let val result =
-MlyValue.SUBST_DECL (fn _ => let val (SUBST_DEC as SUBST_DEC1) =
-SUBST_DEC1 ()
- in ([SUBST_DEC])
-end)
- in ( LrTable.NT 12, ( result, SUBST_DEC1left, SUBST_DEC1right),
-rest671)
-end
-| ( 27, ( ( _, ( MlyValue.ID ID2, _, ID2right)) :: _ :: ( _, (
-MlyValue.ID ID1, ID1left, _)) :: rest671)) => let val result =
-MlyValue.SUBST_DEC (fn _ => let val ID1 = ID1 ()
- val ID2 = ID2 ()
- in ([symbolMake ID2],[symbolMake ID1])
-end)
- in ( LrTable.NT 13, ( result, ID1left, ID2right), rest671)
-end
-| ( 28, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: _ :: ( _, (
-MlyValue.ID ID1, _, _)) :: _ :: ( _, ( MlyValue.CONSTR_LIST
-CONSTR_LIST1, CONSTR_LIST1left, _)) :: rest671)) => let val result =
-MlyValue.CONSTR_LIST (fn _ => let val (CONSTR_LIST as CONSTR_LIST1) =
- CONSTR_LIST1 ()
- val (ID as ID1) = ID1 ()
- val (TY as TY1) = TY1 ()
- in ((symbolMake ID,SOME (tyMake TY))::CONSTR_LIST)
-end)
- in ( LrTable.NT 1, ( result, CONSTR_LIST1left, TY1right), rest671)
-
-end
-| ( 29, ( ( _, ( MlyValue.ID ID1, _, ID1right)) :: _ :: ( _, (
-MlyValue.CONSTR_LIST CONSTR_LIST1, CONSTR_LIST1left, _)) :: rest671))
- => let val result = MlyValue.CONSTR_LIST (fn _ => let val (
-CONSTR_LIST as CONSTR_LIST1) = CONSTR_LIST1 ()
- val (ID as ID1) = ID1 ()
- in ((symbolMake ID,NONE)::CONSTR_LIST)
-end)
- in ( LrTable.NT 1, ( result, CONSTR_LIST1left, ID1right), rest671)
-
-end
-| ( 30, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: _ :: ( _, (
-MlyValue.ID ID1, ID1left, _)) :: rest671)) => let val result =
-MlyValue.CONSTR_LIST (fn _ => let val (ID as ID1) = ID1 ()
- val (TY as TY1) = TY1 ()
- in ([(symbolMake ID,SOME (tyMake TY))])
-end)
- in ( LrTable.NT 1, ( result, ID1left, TY1right), rest671)
-end
-| ( 31, ( ( _, ( MlyValue.ID ID1, ID1left, ID1right)) :: rest671)) =>
- let val result = MlyValue.CONSTR_LIST (fn _ => let val (ID as ID1)
- = ID1 ()
- in ([(symbolMake ID,NONE)])
-end)
- in ( LrTable.NT 1, ( result, ID1left, ID1right), rest671)
-end
-| ( 32, ( ( _, ( MlyValue.RHS_LIST RHS_LIST1, _, RHS_LIST1right)) ::
- _ :: ( _, ( MlyValue.ID ID1, ID1left, _)) :: rest671)) => let val
-result = MlyValue.G_RULE (fn _ => let val (ID as ID1) = ID1 ()
- val (RHS_LIST as RHS_LIST1) = RHS_LIST1 ()
- in (
-map (fn {rhs,code,prec} =>
- Hdr.RULE {lhs=symbolMake ID,rhs=rhs,
- code=code,prec=prec})
- RHS_LIST
-)
-end)
- in ( LrTable.NT 9, ( result, ID1left, RHS_LIST1right), rest671)
-end
-| ( 33, ( ( _, ( MlyValue.G_RULE G_RULE1, _, G_RULE1right)) :: ( _, (
- MlyValue.G_RULE_LIST G_RULE_LIST1, G_RULE_LIST1left, _)) :: rest671))
- => let val result = MlyValue.G_RULE_LIST (fn _ => let val (
-G_RULE_LIST as G_RULE_LIST1) = G_RULE_LIST1 ()
- val (G_RULE as G_RULE1) = G_RULE1 ()
- in (G_RULE@G_RULE_LIST)
-end)
- in ( LrTable.NT 10, ( result, G_RULE_LIST1left, G_RULE1right),
-rest671)
-end
-| ( 34, ( ( _, ( MlyValue.G_RULE G_RULE1, G_RULE1left, G_RULE1right))
- :: rest671)) => let val result = MlyValue.G_RULE_LIST (fn _ => let
- val (G_RULE as G_RULE1) = G_RULE1 ()
- in (G_RULE)
-end)
- in ( LrTable.NT 10, ( result, G_RULE1left, G_RULE1right), rest671)
-
-end
-| ( 35, ( ( _, ( MlyValue.ID_LIST ID_LIST1, _, ID_LIST1right)) :: ( _
-, ( MlyValue.ID ID1, ID1left, _)) :: rest671)) => let val result =
-MlyValue.ID_LIST (fn _ => let val (ID as ID1) = ID1 ()
- val (ID_LIST as ID_LIST1) = ID_LIST1 ()
- in (symbolMake ID :: ID_LIST)
-end)
- in ( LrTable.NT 2, ( result, ID1left, ID_LIST1right), rest671)
-end
-| ( 36, ( rest671)) => let val result = MlyValue.ID_LIST (fn _ => (
-nil))
- in ( LrTable.NT 2, ( result, defaultPos, defaultPos), rest671)
-end
-| ( 37, ( ( _, ( MlyValue.PROG PROG1, _, PROG1right)) :: ( _, (
-MlyValue.G_RULE_PREC G_RULE_PREC1, _, _)) :: ( _, ( MlyValue.ID_LIST
-ID_LIST1, ID_LIST1left, _)) :: rest671)) => let val result =
-MlyValue.RHS_LIST (fn _ => let val (ID_LIST as ID_LIST1) = ID_LIST1
- ()
- val (G_RULE_PREC as G_RULE_PREC1) = G_RULE_PREC1 ()
- val (PROG as PROG1) = PROG1 ()
- in ([{rhs=ID_LIST,code=PROG,prec=G_RULE_PREC}])
-end)
- in ( LrTable.NT 8, ( result, ID_LIST1left, PROG1right), rest671)
-end
-| ( 38, ( ( _, ( MlyValue.PROG PROG1, _, PROG1right)) :: ( _, (
-MlyValue.G_RULE_PREC G_RULE_PREC1, _, _)) :: ( _, ( MlyValue.ID_LIST
-ID_LIST1, _, _)) :: _ :: ( _, ( MlyValue.RHS_LIST RHS_LIST1,
-RHS_LIST1left, _)) :: rest671)) => let val result = MlyValue.RHS_LIST
- (fn _ => let val (RHS_LIST as RHS_LIST1) = RHS_LIST1 ()
- val (ID_LIST as ID_LIST1) = ID_LIST1 ()
- val (G_RULE_PREC as G_RULE_PREC1) = G_RULE_PREC1 ()
- val (PROG as PROG1) = PROG1 ()
- in ({rhs=ID_LIST,code=PROG,prec=G_RULE_PREC}::RHS_LIST)
-end)
- in ( LrTable.NT 8, ( result, RHS_LIST1left, PROG1right), rest671)
-end
-| ( 39, ( ( _, ( MlyValue.TYVAR TYVAR1, TYVAR1left, TYVAR1right)) ::
-rest671)) => let val result = MlyValue.TY (fn _ => let val (TYVAR
- as TYVAR1) = TYVAR1 ()
- in (TYVAR)
-end)
- in ( LrTable.NT 16, ( result, TYVAR1left, TYVAR1right), rest671)
-end
-| ( 40, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( MlyValue.RECORD_LIST
-RECORD_LIST1, _, _)) :: ( _, ( _, LBRACE1left, _)) :: rest671)) => let
- val result = MlyValue.TY (fn _ => let val (RECORD_LIST as
-RECORD_LIST1) = RECORD_LIST1 ()
- in ("{ "^RECORD_LIST^" } ")
-end)
- in ( LrTable.NT 16, ( result, LBRACE1left, RBRACE1right), rest671)
-
-end
-| ( 41, ( ( _, ( _, _, RBRACE1right)) :: ( _, ( _, LBRACE1left, _))
- :: rest671)) => let val result = MlyValue.TY (fn _ => ("{}"))
- in ( LrTable.NT 16, ( result, LBRACE1left, RBRACE1right), rest671)
-
-end
-| ( 42, ( ( _, ( MlyValue.PROG PROG1, PROG1left, PROG1right)) ::
-rest671)) => let val result = MlyValue.TY (fn _ => let val (PROG as
-PROG1) = PROG1 ()
- in (" ( "^PROG^" ) ")
-end)
- in ( LrTable.NT 16, ( result, PROG1left, PROG1right), rest671)
-end
-| ( 43, ( ( _, ( MlyValue.QUAL_ID QUAL_ID1, _, QUAL_ID1right)) :: ( _
-, ( MlyValue.TY TY1, TY1left, _)) :: rest671)) => let val result =
-MlyValue.TY (fn _ => let val (TY as TY1) = TY1 ()
- val (QUAL_ID as QUAL_ID1) = QUAL_ID1 ()
- in (TY^" "^QUAL_ID)
-end)
- in ( LrTable.NT 16, ( result, TY1left, QUAL_ID1right), rest671)
-end
-| ( 44, ( ( _, ( MlyValue.QUAL_ID QUAL_ID1, QUAL_ID1left,
-QUAL_ID1right)) :: rest671)) => let val result = MlyValue.TY (fn _ =>
- let val (QUAL_ID as QUAL_ID1) = QUAL_ID1 ()
- in (QUAL_ID)
-end)
- in ( LrTable.NT 16, ( result, QUAL_ID1left, QUAL_ID1right), rest671)
-
-end
-| ( 45, ( ( _, ( MlyValue.TY TY2, _, TY2right)) :: _ :: ( _, (
-MlyValue.TY TY1, TY1left, _)) :: rest671)) => let val result =
-MlyValue.TY (fn _ => let val TY1 = TY1 ()
- val TY2 = TY2 ()
- in (TY1^"*"^TY2)
-end)
- in ( LrTable.NT 16, ( result, TY1left, TY2right), rest671)
-end
-| ( 46, ( ( _, ( MlyValue.TY TY2, _, TY2right)) :: _ :: ( _, (
-MlyValue.TY TY1, TY1left, _)) :: rest671)) => let val result =
-MlyValue.TY (fn _ => let val TY1 = TY1 ()
- val TY2 = TY2 ()
- in (TY1 ^ " -> " ^ TY2)
-end)
- in ( LrTable.NT 16, ( result, TY1left, TY2right), rest671)
-end
-| ( 47, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: _ :: ( _, (
-MlyValue.LABEL LABEL1, _, _)) :: _ :: ( _, ( MlyValue.RECORD_LIST
-RECORD_LIST1, RECORD_LIST1left, _)) :: rest671)) => let val result =
-MlyValue.RECORD_LIST (fn _ => let val (RECORD_LIST as RECORD_LIST1) =
- RECORD_LIST1 ()
- val (LABEL as LABEL1) = LABEL1 ()
- val (TY as TY1) = TY1 ()
- in (RECORD_LIST^","^LABEL^":"^TY)
-end)
- in ( LrTable.NT 7, ( result, RECORD_LIST1left, TY1right), rest671)
-
-end
-| ( 48, ( ( _, ( MlyValue.TY TY1, _, TY1right)) :: _ :: ( _, (
-MlyValue.LABEL LABEL1, LABEL1left, _)) :: rest671)) => let val result
- = MlyValue.RECORD_LIST (fn _ => let val (LABEL as LABEL1) = LABEL1
- ()
- val (TY as TY1) = TY1 ()
- in (LABEL^":"^TY)
-end)
- in ( LrTable.NT 7, ( result, LABEL1left, TY1right), rest671)
-end
-| ( 49, ( ( _, ( MlyValue.ID ID1, ID1left, ID1right)) :: rest671)) =>
- let val result = MlyValue.QUAL_ID (fn _ => let val (ID as ID1) =
-ID1 ()
- in ((fn (a,_) => a) ID)
-end)
- in ( LrTable.NT 6, ( result, ID1left, ID1right), rest671)
-end
-| ( 50, ( ( _, ( MlyValue.QUAL_ID QUAL_ID1, _, QUAL_ID1right)) :: ( _
-, ( MlyValue.IDDOT IDDOT1, IDDOT1left, _)) :: rest671)) => let val
-result = MlyValue.QUAL_ID (fn _ => let val (IDDOT as IDDOT1) = IDDOT1
- ()
- val (QUAL_ID as QUAL_ID1) = QUAL_ID1 ()
- in (IDDOT^QUAL_ID)
-end)
- in ( LrTable.NT 6, ( result, IDDOT1left, QUAL_ID1right), rest671)
-end
-| ( 51, ( ( _, ( MlyValue.ID ID1, ID1left, ID1right)) :: rest671)) =>
- let val result = MlyValue.LABEL (fn _ => let val (ID as ID1) = ID1
- ()
- in ((fn (a,_) => a) ID)
-end)
- in ( LrTable.NT 3, ( result, ID1left, ID1right), rest671)
-end
-| ( 52, ( ( _, ( MlyValue.INT INT1, INT1left, INT1right)) :: rest671)
-) => let val result = MlyValue.LABEL (fn _ => let val (INT as INT1)
- = INT1 ()
- in (INT)
-end)
- in ( LrTable.NT 3, ( result, INT1left, INT1right), rest671)
-end
-| ( 53, ( ( _, ( MlyValue.ID ID1, _, ID1right)) :: ( _, ( _,
-PREC_TAG1left, _)) :: rest671)) => let val result =
-MlyValue.G_RULE_PREC (fn _ => let val (ID as ID1) = ID1 ()
- in (SOME (symbolMake ID))
-end)
- in ( LrTable.NT 11, ( result, PREC_TAG1left, ID1right), rest671)
-end
-| ( 54, ( rest671)) => let val result = MlyValue.G_RULE_PREC (fn _
- => (NONE))
- in ( LrTable.NT 11, ( result, defaultPos, defaultPos), rest671)
-end
-| _ => raise (mlyAction i392)
-end
-val void = MlyValue.VOID
-val extract = fn a => (fn MlyValue.BEGIN x => x
-| _ => let exception ParseInternal
- in raise ParseInternal end) a ()
-end
-end
-structure Tokens : Mlyacc_TOKENS =
-struct
-type svalue = ParserData.svalue
-type ('a,'b) token = ('a,'b) Token.token
-fun ARROW (p1,p2) = Token.TOKEN (ParserData.LrTable.T 0,(
-ParserData.MlyValue.VOID,p1,p2))
-fun ASTERISK (p1,p2) = Token.TOKEN (ParserData.LrTable.T 1,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BLOCK (p1,p2) = Token.TOKEN (ParserData.LrTable.T 2,(
-ParserData.MlyValue.VOID,p1,p2))
-fun BAR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 3,(
-ParserData.MlyValue.VOID,p1,p2))
-fun CHANGE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 4,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COLON (p1,p2) = Token.TOKEN (ParserData.LrTable.T 5,(
-ParserData.MlyValue.VOID,p1,p2))
-fun COMMA (p1,p2) = Token.TOKEN (ParserData.LrTable.T 6,(
-ParserData.MlyValue.VOID,p1,p2))
-fun DELIMITER (p1,p2) = Token.TOKEN (ParserData.LrTable.T 7,(
-ParserData.MlyValue.VOID,p1,p2))
-fun EOF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 8,(
-ParserData.MlyValue.VOID,p1,p2))
-fun FOR (p1,p2) = Token.TOKEN (ParserData.LrTable.T 9,(
-ParserData.MlyValue.VOID,p1,p2))
-fun HEADER (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 10,(
-ParserData.MlyValue.HEADER (fn () => i),p1,p2))
-fun ID (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 11,(
-ParserData.MlyValue.ID (fn () => i),p1,p2))
-fun IDDOT (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 12,(
-ParserData.MlyValue.IDDOT (fn () => i),p1,p2))
-fun PERCENT_HEADER (p1,p2) = Token.TOKEN (ParserData.LrTable.T 13,(
-ParserData.MlyValue.VOID,p1,p2))
-fun INT (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 14,(
-ParserData.MlyValue.INT (fn () => i),p1,p2))
-fun KEYWORD (p1,p2) = Token.TOKEN (ParserData.LrTable.T 15,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LBRACE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 16,(
-ParserData.MlyValue.VOID,p1,p2))
-fun LPAREN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 17,(
-ParserData.MlyValue.VOID,p1,p2))
-fun NAME (p1,p2) = Token.TOKEN (ParserData.LrTable.T 18,(
-ParserData.MlyValue.VOID,p1,p2))
-fun NODEFAULT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 19,(
-ParserData.MlyValue.VOID,p1,p2))
-fun NONTERM (p1,p2) = Token.TOKEN (ParserData.LrTable.T 20,(
-ParserData.MlyValue.VOID,p1,p2))
-fun NOSHIFT (p1,p2) = Token.TOKEN (ParserData.LrTable.T 21,(
-ParserData.MlyValue.VOID,p1,p2))
-fun OF (p1,p2) = Token.TOKEN (ParserData.LrTable.T 22,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PERCENT_EOP (p1,p2) = Token.TOKEN (ParserData.LrTable.T 23,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PERCENT_PURE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 24,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PERCENT_POS (p1,p2) = Token.TOKEN (ParserData.LrTable.T 25,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PERCENT_ARG (p1,p2) = Token.TOKEN (ParserData.LrTable.T 26,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PERCENT_TOKEN_SIG_INFO (p1,p2) = Token.TOKEN (
-ParserData.LrTable.T 27,(ParserData.MlyValue.VOID,p1,p2))
-fun PREC (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 28,(
-ParserData.MlyValue.PREC (fn () => i),p1,p2))
-fun PREC_TAG (p1,p2) = Token.TOKEN (ParserData.LrTable.T 29,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PREFER (p1,p2) = Token.TOKEN (ParserData.LrTable.T 30,(
-ParserData.MlyValue.VOID,p1,p2))
-fun PROG (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 31,(
-ParserData.MlyValue.PROG (fn () => i),p1,p2))
-fun RBRACE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 32,(
-ParserData.MlyValue.VOID,p1,p2))
-fun RPAREN (p1,p2) = Token.TOKEN (ParserData.LrTable.T 33,(
-ParserData.MlyValue.VOID,p1,p2))
-fun SUBST (p1,p2) = Token.TOKEN (ParserData.LrTable.T 34,(
-ParserData.MlyValue.VOID,p1,p2))
-fun START (p1,p2) = Token.TOKEN (ParserData.LrTable.T 35,(
-ParserData.MlyValue.VOID,p1,p2))
-fun TERM (p1,p2) = Token.TOKEN (ParserData.LrTable.T 36,(
-ParserData.MlyValue.VOID,p1,p2))
-fun TYVAR (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 37,(
-ParserData.MlyValue.TYVAR (fn () => i),p1,p2))
-fun VERBOSE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 38,(
-ParserData.MlyValue.VOID,p1,p2))
-fun VALUE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 39,(
-ParserData.MlyValue.VOID,p1,p2))
-fun UNKNOWN (i,p1,p2) = Token.TOKEN (ParserData.LrTable.T 40,(
-ParserData.MlyValue.UNKNOWN (fn () => i),p1,p2))
-fun BOGUS_VALUE (p1,p2) = Token.TOKEN (ParserData.LrTable.T 41,(
-ParserData.MlyValue.VOID,p1,p2))
-end
-end
diff --git a/lang/mlton/files/yacc.lex.sml b/lang/mlton/files/yacc.lex.sml
deleted file mode 100644
index 6c78e2b26cb0..000000000000
--- a/lang/mlton/files/yacc.lex.sml
+++ /dev/null
@@ -1,901 +0,0 @@
-type int = Int.int
-
-functor LexMLYACC(structure Tokens : Mlyacc_TOKENS
- structure Hdr : HEADER (* = Header *)
- where type prec = Header.prec
- and type inputSource = Header.inputSource) : ARG_LEXER
-=
- struct
- structure UserDeclarations =
- struct
-(* Modified by mfluet@acm.org on 2005-8-01.
- * Update with SML/NJ 110.55+.
- *)
-(* Modified by sweeks@acm.org on 2000-8-24.
- * Ported to MLton.
- *)
-
-(* ML-Yacc Parser Generator (c) 1989 Andrew W. Appel, David R. Tarditi
-
- yacc.lex: Lexer specification
- *)
-
-structure Tokens = Tokens
-type svalue = Tokens.svalue
-type pos = int
-type ('a,'b) token = ('a,'b) Tokens.token
-type lexresult = (svalue,pos) token
-
-type lexarg = Hdr.inputSource
-type arg = lexarg
-
-open Tokens
-val error = Hdr.error
-val lineno = Hdr.lineno
-val text = Hdr.text
-
-val pcount: int ref = ref 0
-val commentLevel: int ref = ref 0
-val actionstart: int ref = ref 0
-
-val eof = fn i => (if (!pcount)>0 then
- error i (!actionstart)
- " eof encountered in action beginning here !"
- else (); EOF(!lineno,!lineno))
-
-val Add = fn s => (text := s::(!text))
-
-
-local val dict = [("%prec",PREC_TAG),("%term",TERM),
- ("%nonterm",NONTERM), ("%eop",PERCENT_EOP),("%start",START),
- ("%prefer",PREFER),("%subst",SUBST),("%change",CHANGE),
- ("%keyword",KEYWORD),("%name",NAME),
- ("%verbose",VERBOSE), ("%nodefault",NODEFAULT),
- ("%value",VALUE), ("%noshift",NOSHIFT),
- ("%header",PERCENT_HEADER),("%pure",PERCENT_PURE),
- ("%token_sig_info",PERCENT_TOKEN_SIG_INFO),
- ("%arg",PERCENT_ARG),
- ("%pos",PERCENT_POS)]
-in
-fun lookup (s,left,right) = let
- fun f ((a,d)::b) = if a=s then d(left,right) else f b
- | f nil = UNKNOWN(s,left,right)
- in
- f dict
- end
-end
-
-fun inc (ri as ref i : int ref) = (ri := i+1)
-fun dec (ri as ref i : int ref) = (ri := i-1)
-
-end (* end of user routines *)
-exception LexError (* raised if illegal leaf action tried *)
-structure Internal =
- struct
-
-datatype yyfinstate = N of int
-type statedata = {fin : yyfinstate list, trans: string}
-(* transition & final state table *)
-val tab = let
-val s = [
- (0,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (1,
-"\015\015\015\015\015\015\015\015\015\015\022\015\015\021\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015\015\015\015\015\019\015\015\017\015\015\015\015\015\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\015\
-\\015"
-),
- (3,
-"\023\023\023\023\023\023\023\023\023\066\069\023\023\068\023\023\
-\\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\023\
-\\066\023\023\023\023\046\023\044\042\023\041\023\040\038\023\023\
-\\036\036\036\036\036\036\036\036\036\036\035\023\023\023\023\023\
-\\023\027\027\027\027\027\027\027\027\027\027\027\027\027\027\027\
-\\027\027\027\027\027\027\027\027\027\027\027\023\023\023\023\023\
-\\023\027\027\027\027\027\032\027\027\027\027\027\027\027\027\030\
-\\027\027\027\027\027\027\027\027\027\027\027\026\025\024\023\023\
-\\023"
-),
- (5,
-"\070\070\070\070\070\070\070\070\070\070\022\070\070\075\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\074\070\070\070\070\070\072\071\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070"
-),
- (7,
-"\076\076\076\076\076\076\076\076\076\078\022\076\076\080\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\078\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\077\076\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\076\
-\\076"
-),
- (9,
-"\081\081\081\081\081\081\081\081\081\081\022\081\081\075\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\085\084\082\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081"
-),
- (11,
-"\087\087\087\087\087\087\087\087\087\087\095\087\087\094\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\093\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\088\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087"
-),
- (13,
-"\096\096\096\096\096\096\096\096\096\096\022\096\096\075\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\100\099\097\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096"
-),
- (15,
-"\016\016\016\016\016\016\016\016\016\016\000\016\016\000\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\000\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016"
-),
- (17,
-"\016\016\016\016\016\016\016\016\016\016\000\016\016\000\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\000\016\016\016\016\018\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\016\
-\\016"
-),
- (19,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (21,
-"\000\000\000\000\000\000\000\000\000\000\022\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (27,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\028\000\000\000\000\000\000\029\000\
-\\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\000\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\028\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\
-\\000"
-),
- (30,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\028\000\000\000\000\000\000\029\000\
-\\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\000\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\028\
-\\000\028\028\028\028\028\031\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\
-\\000"
-),
- (32,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\028\000\000\000\000\000\000\029\000\
-\\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\000\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\028\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\033\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\
-\\000"
-),
- (33,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\028\000\000\000\000\000\000\029\000\
-\\028\028\028\028\028\028\028\028\028\028\000\000\000\000\000\000\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\028\028\028\028\028\028\028\028\028\000\000\000\000\028\
-\\000\028\028\028\028\028\028\028\028\028\028\028\028\028\028\028\
-\\028\028\034\028\028\028\028\028\028\028\028\000\000\000\000\000\
-\\000"
-),
- (36,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\037\037\037\037\037\037\037\037\037\037\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (38,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\039\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (42,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\043\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (44,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\045\000\000\000\000\000\000\000\000\
-\\045\045\045\045\045\045\045\045\045\045\000\000\000\000\000\000\
-\\000\045\045\045\045\045\045\045\045\045\045\045\045\045\045\045\
-\\045\045\045\045\045\045\045\045\045\045\045\000\000\000\000\045\
-\\000\045\045\045\045\045\045\045\045\045\045\045\045\045\045\045\
-\\045\045\045\045\045\045\045\045\045\045\045\000\000\000\000\000\
-\\000"
-),
- (46,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\065\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\061\047\053\047\
-\\047\047\048\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (47,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (48,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\049\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (49,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\050\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (50,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\051\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (51,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\052\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (53,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\054\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (54,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\055\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (55,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\056\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (56,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\057\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (57,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\058\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (58,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\059\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (59,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\060\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (61,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\062\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (62,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\063\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\047\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (63,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\047\
-\\000\047\047\047\047\047\047\047\047\047\047\047\047\047\047\047\
-\\047\047\047\047\064\047\047\047\047\047\047\000\000\000\000\000\
-\\000"
-),
- (66,
-"\000\000\000\000\000\000\000\000\000\067\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\067\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (68,
-"\000\000\000\000\000\000\000\000\000\000\069\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (70,
-"\070\070\070\070\070\070\070\070\070\070\000\070\070\000\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\000\070\070\070\070\070\000\000\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\070\
-\\070"
-),
- (72,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\073\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (78,
-"\000\000\000\000\000\000\000\000\000\079\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\079\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (81,
-"\081\081\081\081\081\081\081\081\081\081\000\081\081\000\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\000\000\000\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\081\
-\\081"
-),
- (82,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\083\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (85,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\086\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (87,
-"\087\087\087\087\087\087\087\087\087\087\000\087\087\000\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\000\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\000\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\087\
-\\087"
-),
- (88,
-"\000\000\000\000\000\000\000\000\000\090\092\000\000\091\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\090\000\089\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (91,
-"\000\000\000\000\000\000\000\000\000\000\092\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (94,
-"\000\000\000\000\000\000\000\000\000\000\095\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (96,
-"\096\096\096\096\096\096\096\096\096\096\000\096\096\000\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\000\000\000\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\096\
-\\096"
-),
- (97,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\098\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
- (100,
-"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\101\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
-\\000"
-),
-(0, "")]
-fun f x = x
-val s = map f (rev (tl (rev s)))
-exception LexHackingError
-fun look ((j,x)::r, i) = if i = j then x else look(r, i)
- | look ([], i) = raise LexHackingError
-fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
-in Vector.fromList(map g
-[{fin = [], trans = 0},
-{fin = [], trans = 1},
-{fin = [], trans = 1},
-{fin = [], trans = 3},
-{fin = [], trans = 3},
-{fin = [], trans = 5},
-{fin = [], trans = 5},
-{fin = [], trans = 7},
-{fin = [], trans = 7},
-{fin = [], trans = 9},
-{fin = [], trans = 9},
-{fin = [], trans = 11},
-{fin = [], trans = 11},
-{fin = [], trans = 13},
-{fin = [], trans = 13},
-{fin = [(N 11),(N 21)], trans = 15},
-{fin = [(N 11)], trans = 15},
-{fin = [(N 11),(N 21)], trans = 17},
-{fin = [(N 2),(N 11)], trans = 15},
-{fin = [(N 21)], trans = 19},
-{fin = [(N 14)], trans = 0},
-{fin = [(N 19),(N 21)], trans = 21},
-{fin = [(N 19)], trans = 0},
-{fin = [(N 100)], trans = 0},
-{fin = [(N 42),(N 100)], trans = 0},
-{fin = [(N 93),(N 100)], trans = 0},
-{fin = [(N 40),(N 100)], trans = 0},
-{fin = [(N 96),(N 100)], trans = 27},
-{fin = [(N 96)], trans = 27},
-{fin = [(N 83)], trans = 0},
-{fin = [(N 96),(N 100)], trans = 30},
-{fin = [(N 34),(N 96)], trans = 27},
-{fin = [(N 96),(N 100)], trans = 32},
-{fin = [(N 96)], trans = 33},
-{fin = [(N 38),(N 96)], trans = 27},
-{fin = [(N 91),(N 100)], trans = 0},
-{fin = [(N 86),(N 100)], trans = 36},
-{fin = [(N 86)], trans = 36},
-{fin = [(N 100)], trans = 38},
-{fin = [(N 49)], trans = 0},
-{fin = [(N 44),(N 100)], trans = 0},
-{fin = [(N 46),(N 100)], trans = 0},
-{fin = [(N 98),(N 100)], trans = 42},
-{fin = [(N 5)], trans = 0},
-{fin = [(N 79),(N 100)], trans = 44},
-{fin = [(N 79)], trans = 44},
-{fin = [(N 100)], trans = 46},
-{fin = [(N 76)], trans = 47},
-{fin = [(N 76)], trans = 48},
-{fin = [(N 76)], trans = 49},
-{fin = [(N 76)], trans = 50},
-{fin = [(N 76)], trans = 51},
-{fin = [(N 62),(N 76)], trans = 47},
-{fin = [(N 76)], trans = 53},
-{fin = [(N 76)], trans = 54},
-{fin = [(N 76)], trans = 55},
-{fin = [(N 76)], trans = 56},
-{fin = [(N 76)], trans = 57},
-{fin = [(N 76)], trans = 58},
-{fin = [(N 76)], trans = 59},
-{fin = [(N 72),(N 76)], trans = 47},
-{fin = [(N 76)], trans = 61},
-{fin = [(N 76)], trans = 62},
-{fin = [(N 76)], trans = 63},
-{fin = [(N 55),(N 76)], trans = 47},
-{fin = [(N 89)], trans = 0},
-{fin = [(N 31),(N 100)], trans = 66},
-{fin = [(N 31)], trans = 66},
-{fin = [(N 26),(N 100)], trans = 68},
-{fin = [(N 26)], trans = 0},
-{fin = [(N 109)], trans = 70},
-{fin = [(N 104)], trans = 0},
-{fin = [(N 102)], trans = 72},
-{fin = [(N 8)], trans = 0},
-{fin = [(N 106)], trans = 0},
-{fin = [(N 19)], trans = 21},
-{fin = [(N 162)], trans = 0},
-{fin = [(N 160),(N 162)], trans = 0},
-{fin = [(N 158),(N 162)], trans = 78},
-{fin = [(N 158)], trans = 78},
-{fin = [(N 19),(N 162)], trans = 21},
-{fin = [(N 120)], trans = 81},
-{fin = [(N 111)], trans = 82},
-{fin = [(N 114)], trans = 0},
-{fin = [(N 111)], trans = 0},
-{fin = [(N 111)], trans = 85},
-{fin = [(N 117)], trans = 0},
-{fin = [(N 143)], trans = 87},
-{fin = [(N 135)], trans = 88},
-{fin = [(N 146)], trans = 0},
-{fin = [(N 155)], trans = 0},
-{fin = [(N 152)], trans = 91},
-{fin = [(N 152)], trans = 0},
-{fin = [(N 133)], trans = 0},
-{fin = [(N 140)], trans = 94},
-{fin = [(N 140)], trans = 0},
-{fin = [(N 131)], trans = 96},
-{fin = [(N 122)], trans = 97},
-{fin = [(N 125)], trans = 0},
-{fin = [(N 122)], trans = 0},
-{fin = [(N 122)], trans = 100},
-{fin = [(N 128)], trans = 0}])
-end
-structure StartStates =
- struct
- datatype yystartstate = STARTSTATE of int
-
-(* start state definitions *)
-
-val A = STARTSTATE 3;
-val CODE = STARTSTATE 5;
-val COMMENT = STARTSTATE 9;
-val EMPTYCOMMENT = STARTSTATE 13;
-val F = STARTSTATE 7;
-val INITIAL = STARTSTATE 1;
-val STRING = STARTSTATE 11;
-
-end
-type result = UserDeclarations.lexresult
- exception LexerError (* raised if illegal leaf action tried *)
-end
-
-type int = Int.int
-fun makeLexer (yyinput: int -> string) =
-let val yygone0:int= ~1
- val yyb = ref "\n" (* buffer *)
- val yybl: int ref = ref 1 (*buffer length *)
- val yybufpos: int ref = ref 1 (* location of next character to use *)
- val yygone: int ref = ref yygone0 (* position in file of beginning of buffer *)
- val yydone = ref false (* eof found yet? *)
- val yybegin: int ref = ref 1 (*Current 'start state' for lexer *)
-
- val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
- yybegin := x
-
-fun lex (yyarg as (inputSource)) =
-let fun continue() : Internal.result =
- let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0: int) =
- let fun action (i: int,nil) = raise LexError
- | action (i,nil::l) = action (i-1,l)
- | action (i,(node::acts)::l) =
- case node of
- Internal.N yyk =>
- (let fun yymktext() = String.substring(!yyb,i0,i-i0)
- val yypos: int = i0+ !yygone
- open UserDeclarations Internal.StartStates
- in (yybufpos := i; case yyk of
-
- (* Application actions *)
-
- 100 => let val yytext=yymktext() in UNKNOWN(yytext,!lineno,!lineno) end
-| 102 => let val yytext=yymktext() in inc pcount; Add yytext; continue() end
-| 104 => let val yytext=yymktext() in dec pcount;
- if !pcount = 0 then
- PROG (concat (rev (!text)),!lineno,!lineno)
- else (Add yytext; continue()) end
-| 106 => let val yytext=yymktext() in Add yytext; YYBEGIN STRING; continue() end
-| 109 => let val yytext=yymktext() in Add yytext; continue() end
-| 11 => let val yytext=yymktext() in Add yytext; continue() end
-| 111 => let val yytext=yymktext() in Add yytext; continue() end
-| 114 => let val yytext=yymktext() in Add yytext; dec commentLevel;
- if !commentLevel=0
- then BOGUS_VALUE(!lineno,!lineno)
- else continue()
- end
-| 117 => let val yytext=yymktext() in Add yytext; inc commentLevel; continue() end
-| 120 => let val yytext=yymktext() in Add yytext; continue() end
-| 122 => (continue())
-| 125 => (dec commentLevel;
- if !commentLevel=0 then YYBEGIN A else ();
- continue ())
-| 128 => (inc commentLevel; continue())
-| 131 => (continue())
-| 133 => let val yytext=yymktext() in Add yytext; YYBEGIN CODE; continue() end
-| 135 => let val yytext=yymktext() in Add yytext; continue() end
-| 14 => (YYBEGIN A; HEADER (concat (rev (!text)),!lineno,!lineno))
-| 140 => let val yytext=yymktext() in Add yytext; error inputSource (!lineno) "unclosed string";
- inc lineno; YYBEGIN CODE; continue() end
-| 143 => let val yytext=yymktext() in Add yytext; continue() end
-| 146 => let val yytext=yymktext() in Add yytext; continue() end
-| 152 => let val yytext=yymktext() in Add yytext; inc lineno; YYBEGIN F; continue() end
-| 155 => let val yytext=yymktext() in Add yytext; YYBEGIN F; continue() end
-| 158 => let val yytext=yymktext() in Add yytext; continue() end
-| 160 => let val yytext=yymktext() in Add yytext; YYBEGIN STRING; continue() end
-| 162 => let val yytext=yymktext() in Add yytext; error inputSource (!lineno) "unclosed string";
- YYBEGIN CODE; continue() end
-| 19 => let val yytext=yymktext() in Add yytext; inc lineno; continue() end
-| 2 => let val yytext=yymktext() in Add yytext; YYBEGIN COMMENT; commentLevel := 1;
- continue() before YYBEGIN INITIAL end
-| 21 => let val yytext=yymktext() in Add yytext; continue() end
-| 26 => (inc lineno; continue ())
-| 31 => (continue())
-| 34 => (OF(!lineno,!lineno))
-| 38 => (FOR(!lineno,!lineno))
-| 40 => (LBRACE(!lineno,!lineno))
-| 42 => (RBRACE(!lineno,!lineno))
-| 44 => (COMMA(!lineno,!lineno))
-| 46 => (ASTERISK(!lineno,!lineno))
-| 49 => (ARROW(!lineno,!lineno))
-| 5 => (YYBEGIN EMPTYCOMMENT; commentLevel := 1; continue())
-| 55 => (PREC(Hdr.LEFT,!lineno,!lineno))
-| 62 => (PREC(Hdr.RIGHT,!lineno,!lineno))
-| 72 => (PREC(Hdr.NONASSOC,!lineno,!lineno))
-| 76 => let val yytext=yymktext() in lookup(yytext,!lineno,!lineno) end
-| 79 => let val yytext=yymktext() in TYVAR(yytext,!lineno,!lineno) end
-| 8 => let val yytext=yymktext() in Add yytext; YYBEGIN COMMENT; commentLevel := 1;
- continue() before YYBEGIN CODE end
-| 83 => let val yytext=yymktext() in IDDOT(yytext,!lineno,!lineno) end
-| 86 => let val yytext=yymktext() in INT (yytext,!lineno,!lineno) end
-| 89 => (DELIMITER(!lineno,!lineno))
-| 91 => (COLON(!lineno,!lineno))
-| 93 => (BAR(!lineno,!lineno))
-| 96 => let val yytext=yymktext() in ID ((yytext,!lineno),!lineno,!lineno) end
-| 98 => (pcount := 1; actionstart := (!lineno);
- text := nil; YYBEGIN CODE; continue() before YYBEGIN A)
-| _ => raise Internal.LexerError
-
- ) end )
-
- val {fin,trans} = Vector.sub (Internal.tab, s)
- val NewAcceptingLeaves = fin::AcceptingLeaves
- in if l = !yybl then
- if trans = #trans(Vector.sub(Internal.tab,0))
- then action(l,NewAcceptingLeaves
-) else let val newchars= if !yydone then "" else yyinput 1024
- in if (String.size newchars)=0
- then (yydone := true;
- if (l=i0) then UserDeclarations.eof yyarg
- else action(l,NewAcceptingLeaves))
- else (if i0=l then yyb := newchars
- else yyb := String.substring(!yyb,i0,l-i0)^newchars;
- yygone := !yygone+i0;
- yybl := String.size (!yyb);
- scan (s,AcceptingLeaves,l-i0,0))
- end
- else let val NewChar = Char.ord (CharVector.sub (!yyb,l))
- val NewChar = if NewChar<128 then NewChar else 128
- val NewState = Char.ord (CharVector.sub (trans,NewChar))
- in if NewState=0 then action(l,NewAcceptingLeaves)
- else scan(NewState,NewAcceptingLeaves,l+1,i0)
- end
- end
-(*
- val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
-then !yybegin+1 else !yybegin
-*)
- in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
- end
-in continue end
- in lex
- end
-end
diff --git a/lang/mlton/pkg-plist b/lang/mlton/pkg-plist
index 5a06047b2c67..e5044385b115 100644
--- a/lang/mlton/pkg-plist
+++ b/lang/mlton/pkg-plist
@@ -5,15 +5,10 @@ bin/mlton
bin/mlyacc
lib/mlton/include/amd64-main.h
lib/mlton/include/basis-ffi.h
-lib/mlton/include/basis/Real/Math-fns.h
lib/mlton/include/basis/Real/Real-ops.h
-lib/mlton/include/basis/Word/Word-check.h
-lib/mlton/include/basis/Word/Word-consts.h
lib/mlton/include/basis/Word/Word-ops.h
lib/mlton/include/basis/coerce.h
lib/mlton/include/basis/cpointer.h
-lib/mlton/include/bytecode-main.h
-lib/mlton/include/bytecode.h
lib/mlton/include/c-chunk.h
lib/mlton/include/c-common.h
lib/mlton/include/c-main.h
@@ -22,8 +17,6 @@ lib/mlton/include/common-main.h
lib/mlton/include/export.h
lib/mlton/include/gc.h
lib/mlton/include/gc/align.h
-lib/mlton/include/gc/array-allocate.h
-lib/mlton/include/gc/array.h
lib/mlton/include/gc/atomic.h
lib/mlton/include/gc/call-stack.h
lib/mlton/include/gc/cheney-copy.h
@@ -58,11 +51,14 @@ lib/mlton/include/gc/pack.h
lib/mlton/include/gc/pointer.h
lib/mlton/include/gc/profiling.h
lib/mlton/include/gc/rusage.h
+lib/mlton/include/gc/sequence-allocate.h
+lib/mlton/include/gc/sequence.h
lib/mlton/include/gc/share.h
lib/mlton/include/gc/signals.h
lib/mlton/include/gc/size.h
lib/mlton/include/gc/sources.h
lib/mlton/include/gc/stack.h
+lib/mlton/include/gc/static-heaps.h
lib/mlton/include/gc/statistics.h
lib/mlton/include/gc/string.h
lib/mlton/include/gc/switch-thread.h
@@ -71,17 +67,17 @@ lib/mlton/include/gc/thread.h
lib/mlton/include/gc/translate.h
lib/mlton/include/gc/weak.h
lib/mlton/include/gc/world.h
-lib/mlton/include/interpret.h
lib/mlton/include/ml-types.h
lib/mlton/include/mlton-main.h
lib/mlton/include/platform.h
lib/mlton/include/platform/aix.h
lib/mlton/include/platform/alpha.h
lib/mlton/include/platform/amd64.h
+lib/mlton/include/platform/android_ucontext.h
lib/mlton/include/platform/arm.h
+lib/mlton/include/platform/arm64.h
lib/mlton/include/platform/cygwin.h
lib/mlton/include/platform/darwin.h
-lib/mlton/include/platform/float-math.h
lib/mlton/include/platform/freebsd.h
lib/mlton/include/platform/hppa.h
lib/mlton/include/platform/hpux.h
@@ -95,6 +91,7 @@ lib/mlton/include/platform/netbsd.h
lib/mlton/include/platform/openbsd.h
lib/mlton/include/platform/powerpc.h
lib/mlton/include/platform/powerpc64.h
+lib/mlton/include/platform/riscv.h
lib/mlton/include/platform/s390.h
lib/mlton/include/platform/setenv.h
lib/mlton/include/platform/solaris.h
@@ -109,11 +106,7 @@ lib/mlton/include/util/read_write.h
lib/mlton/include/util/safe.h
lib/mlton/include/util/to-string.h
lib/mlton/include/x86-main.h
-lib/mlton/mlb-path-map
lib/mlton/mlton-compile
-lib/mlton/opcodes
-lib/mlton/platform
-lib/mlton/sml/basis/Makefile
lib/mlton/sml/basis/arrays-and-vectors/array-slice.sig
lib/mlton/sml/basis/arrays-and-vectors/array.sig
lib/mlton/sml/basis/arrays-and-vectors/array.sml
@@ -130,7 +123,10 @@ lib/mlton/sml/basis/arrays-and-vectors/mono-vector.sig
lib/mlton/sml/basis/arrays-and-vectors/mono.sml
lib/mlton/sml/basis/arrays-and-vectors/sequence.fun
lib/mlton/sml/basis/arrays-and-vectors/sequence.sig
+lib/mlton/sml/basis/arrays-and-vectors/sequence0.sig
+lib/mlton/sml/basis/arrays-and-vectors/sequence0.sml
lib/mlton/sml/basis/arrays-and-vectors/slice.sig
+lib/mlton/sml/basis/arrays-and-vectors/slice0.sig
lib/mlton/sml/basis/arrays-and-vectors/vector-slice.sig
lib/mlton/sml/basis/arrays-and-vectors/vector.sig
lib/mlton/sml/basis/arrays-and-vectors/vector.sml
@@ -178,8 +174,13 @@ lib/mlton/sml/basis/config/default/fixed-int.sml
lib/mlton/sml/basis/config/default/large-int.sml
lib/mlton/sml/basis/config/default/large-real.sml
lib/mlton/sml/basis/config/default/large-word.sml
-lib/mlton/sml/basis/config/header/header-word32.sml
-lib/mlton/sml/basis/config/header/header-word64.sml
+lib/mlton/sml/basis/config/metadata/normal-metadata-size128.sml
+lib/mlton/sml/basis/config/metadata/normal-metadata-size32.sml
+lib/mlton/sml/basis/config/metadata/normal-metadata-size64.sml
+lib/mlton/sml/basis/config/metadata/sequence-metadata-size128.sml
+lib/mlton/sml/basis/config/metadata/sequence-metadata-size192.sml
+lib/mlton/sml/basis/config/metadata/sequence-metadata-size256.sml
+lib/mlton/sml/basis/config/metadata/sequence-metadata-size96.sml
lib/mlton/sml/basis/config/objptr/objptr-rep32.sml
lib/mlton/sml/basis/config/objptr/objptr-rep64.sml
lib/mlton/sml/basis/config/seqindex/seqindex-int32.sml
@@ -201,9 +202,7 @@ lib/mlton/sml/basis/integer/int-global.sml
lib/mlton/sml/basis/integer/int-inf.sig
lib/mlton/sml/basis/integer/int-inf.sml
lib/mlton/sml/basis/integer/int-inf0.sml
-lib/mlton/sml/basis/integer/int-inf1.sml
lib/mlton/sml/basis/integer/int.sml
-lib/mlton/sml/basis/integer/int1.sml
lib/mlton/sml/basis/integer/integer.sig
lib/mlton/sml/basis/integer/iwconv0.sml
lib/mlton/sml/basis/integer/num0.sml
@@ -213,7 +212,6 @@ lib/mlton/sml/basis/integer/pack-word.sml
lib/mlton/sml/basis/integer/word-global.sml
lib/mlton/sml/basis/integer/word.sig
lib/mlton/sml/basis/integer/word.sml
-lib/mlton/sml/basis/integer/word1.sml
lib/mlton/sml/basis/io/bin-io.sig
lib/mlton/sml/basis/io/bin-io.sml
lib/mlton/sml/basis/io/bin-prim-io.sml
@@ -289,7 +287,6 @@ lib/mlton/sml/basis/libs/basis-1997/top-level/overloads.sml
lib/mlton/sml/basis/libs/basis-1997/top-level/top-level.sml
lib/mlton/sml/basis/libs/basis-2002-strict/top-level/top-level.sml
lib/mlton/sml/basis/libs/basis-2002/basis-2002.mlb
-lib/mlton/sml/basis/libs/basis-2002/top-level/Makefile
lib/mlton/sml/basis/libs/basis-2002/top-level/basis-equal.sig
lib/mlton/sml/basis/libs/basis-2002/top-level/basis-exns.sig
lib/mlton/sml/basis/libs/basis-2002/top-level/basis-funs.sml
@@ -320,12 +317,6 @@ lib/mlton/sml/basis/list/list-pair.sig
lib/mlton/sml/basis/list/list-pair.sml
lib/mlton/sml/basis/list/list.sig
lib/mlton/sml/basis/list/list.sml
-lib/mlton/sml/basis/maps/header-word32.map
-lib/mlton/sml/basis/maps/header-word64.map
-lib/mlton/sml/basis/maps/objptr-rep32.map
-lib/mlton/sml/basis/maps/objptr-rep64.map
-lib/mlton/sml/basis/maps/seqindex-int32.map
-lib/mlton/sml/basis/maps/seqindex-int64.map
lib/mlton/sml/basis/mlton.mlb
lib/mlton/sml/basis/mlton/array.sig
lib/mlton/sml/basis/mlton/bin-io.sig
@@ -372,8 +363,6 @@ lib/mlton/sml/basis/mlton/rusage.sig
lib/mlton/sml/basis/mlton/rusage.sml
lib/mlton/sml/basis/mlton/signal.sig
lib/mlton/sml/basis/mlton/signal.sml
-lib/mlton/sml/basis/mlton/socket.sig
-lib/mlton/sml/basis/mlton/socket.sml
lib/mlton/sml/basis/mlton/syslog.sig
lib/mlton/sml/basis/mlton/syslog.sml
lib/mlton/sml/basis/mlton/text-io.sig
@@ -401,7 +390,6 @@ lib/mlton/sml/basis/net/socket.sig
lib/mlton/sml/basis/net/socket.sml
lib/mlton/sml/basis/net/unix-sock.sig
lib/mlton/sml/basis/net/unix-sock.sml
-lib/mlton/sml/basis/notes.txt
lib/mlton/sml/basis/overloads.mlb
lib/mlton/sml/basis/pervasive-exns.mlb
lib/mlton/sml/basis/pervasive-types.mlb
@@ -526,437 +514,82 @@ lib/mlton/sml/basis/util/real-comparisons.sml
lib/mlton/sml/basis/util/string-comparisons.sml
lib/mlton/sml/basis/util/unique-id.fun
lib/mlton/sml/basis/util/unique-id.sig
-lib/mlton/sml/ckit-lib/BUGS
-lib/mlton/sml/ckit-lib/HISTORY
+lib/mlton/sml/ckit-lib/ast-utils/copy/copy-ast-sig.sml
+lib/mlton/sml/ckit-lib/ast-utils/copy/copy-ast.sml
+lib/mlton/sml/ckit-lib/ast-utils/equality/eq-ast-ext-sig.sml
+lib/mlton/sml/ckit-lib/ast-utils/equality/eq-ast.sml
+lib/mlton/sml/ckit-lib/ast-utils/equality/eq-ctype.sml
+lib/mlton/sml/ckit-lib/ast-utils/simplifier/extensions/c/copy-ast-ext.sml
+lib/mlton/sml/ckit-lib/ast-utils/simplifier/extensions/c/simplify-ast-ext.sml
+lib/mlton/sml/ckit-lib/ast-utils/simplifier/simplify-ast-sig.sml
+lib/mlton/sml/ckit-lib/ast-utils/simplifier/simplify-ast.sml
+lib/mlton/sml/ckit-lib/ast/aid.sml
+lib/mlton/sml/ckit-lib/ast/aidtab.sml
+lib/mlton/sml/ckit-lib/ast/anonymous-structs.sml
+lib/mlton/sml/ckit-lib/ast/ast-sig.sml
+lib/mlton/sml/ckit-lib/ast/ast.sml
+lib/mlton/sml/ckit-lib/ast/bindings.sml
+lib/mlton/sml/ckit-lib/ast/build-ast-sig.sml
+lib/mlton/sml/ckit-lib/ast/build-ast.sml
+lib/mlton/sml/ckit-lib/ast/cnv-ext-sig.sml
+lib/mlton/sml/ckit-lib/ast/ctype-eq.sml
+lib/mlton/sml/ckit-lib/ast/extensions/c/ast-ext-sig.sml
+lib/mlton/sml/ckit-lib/ast/extensions/c/ast-ext.sml
+lib/mlton/sml/ckit-lib/ast/extensions/c/cnv-ext.sml
+lib/mlton/sml/ckit-lib/ast/extensions/c/eq-ast-ext.sml
+lib/mlton/sml/ckit-lib/ast/extensions/c/pp-ast-ext-fn.sml
+lib/mlton/sml/ckit-lib/ast/initializer-normalizer-sig.sml
+lib/mlton/sml/ckit-lib/ast/initializer-normalizer.sml
+lib/mlton/sml/ckit-lib/ast/parse-to-ast-sig.sml
+lib/mlton/sml/ckit-lib/ast/parse-to-ast.sml
+lib/mlton/sml/ckit-lib/ast/pid.sml
+lib/mlton/sml/ckit-lib/ast/pidtab.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-ast-adornment-sig.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-ast-ext-sig.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-ast-fn.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-ast-sig.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-ast.sml
+lib/mlton/sml/ckit-lib/ast/pp/pp-lib.sml
+lib/mlton/sml/ckit-lib/ast/simplify-assign-ops.sml
+lib/mlton/sml/ckit-lib/ast/sizeof-sig.sml
+lib/mlton/sml/ckit-lib/ast/sizeof.sml
+lib/mlton/sml/ckit-lib/ast/sizes-sig.sml
+lib/mlton/sml/ckit-lib/ast/sizes.sml
+lib/mlton/sml/ckit-lib/ast/state-sig.sml
+lib/mlton/sml/ckit-lib/ast/state.sml
+lib/mlton/sml/ckit-lib/ast/symbol-sig.sml
+lib/mlton/sml/ckit-lib/ast/symbol.sml
+lib/mlton/sml/ckit-lib/ast/tables.sml
+lib/mlton/sml/ckit-lib/ast/tid.sml
+lib/mlton/sml/ckit-lib/ast/tidtab.sml
+lib/mlton/sml/ckit-lib/ast/type-util-sig.sml
+lib/mlton/sml/ckit-lib/ast/type-util.sml
+lib/mlton/sml/ckit-lib/ast/uid-fn.sml
+lib/mlton/sml/ckit-lib/ast/uid-sig.sml
+lib/mlton/sml/ckit-lib/ast/uidtabimp-fn.sml
+lib/mlton/sml/ckit-lib/ast/uidtabimp-sig.sml
lib/mlton/sml/ckit-lib/ckit-lib.mlb
-lib/mlton/sml/ckit-lib/ckit-lib.mlb.orig
-lib/mlton/sml/ckit-lib/regression/README
-lib/mlton/sml/ckit-lib/regression/invalid-programs/a208.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/a37.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/counter-example.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r1.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r10.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r11.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r12.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r13.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r14.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r15.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r16.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r17.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r18.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r19.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r2.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r20.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r21.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r22.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r23.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r24.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r25.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r26.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r27.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r28.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r29.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r3.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r30.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r31.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r32.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r33.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r34.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r35.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r36.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r37.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r38.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r39.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r4.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r40.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r41.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r42.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r43.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r44.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r45.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r46.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r47.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r48.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r49.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r5.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r50.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r51.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r52.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r53.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r54.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r55.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r56.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r57.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r59.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r6.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r60.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r61.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r62.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r63.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r64.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r65.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r66.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r7.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r8.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/r9.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/t15.c
-lib/mlton/sml/ckit-lib/regression/invalid-programs/t2.c
-lib/mlton/sml/ckit-lib/regression/output/a1.c
-lib/mlton/sml/ckit-lib/regression/output/a10.c
-lib/mlton/sml/ckit-lib/regression/output/a100.c
-lib/mlton/sml/ckit-lib/regression/output/a101.c
-lib/mlton/sml/ckit-lib/regression/output/a102.c
-lib/mlton/sml/ckit-lib/regression/output/a103.c
-lib/mlton/sml/ckit-lib/regression/output/a104.c
-lib/mlton/sml/ckit-lib/regression/output/a105.c
-lib/mlton/sml/ckit-lib/regression/output/a106.c
-lib/mlton/sml/ckit-lib/regression/output/a107.c
-lib/mlton/sml/ckit-lib/regression/output/a108.c
-lib/mlton/sml/ckit-lib/regression/output/a109.c
-lib/mlton/sml/ckit-lib/regression/output/a11.c
-lib/mlton/sml/ckit-lib/regression/output/a110.c
-lib/mlton/sml/ckit-lib/regression/output/a111.c
-lib/mlton/sml/ckit-lib/regression/output/a112.c
-lib/mlton/sml/ckit-lib/regression/output/a113.c
-lib/mlton/sml/ckit-lib/regression/output/a114.c
-lib/mlton/sml/ckit-lib/regression/output/a115.c
-lib/mlton/sml/ckit-lib/regression/output/a116.c
-lib/mlton/sml/ckit-lib/regression/output/a117.c
-lib/mlton/sml/ckit-lib/regression/output/a118.c
-lib/mlton/sml/ckit-lib/regression/output/a12.c
-lib/mlton/sml/ckit-lib/regression/output/a13.c
-lib/mlton/sml/ckit-lib/regression/output/a14.c
-lib/mlton/sml/ckit-lib/regression/output/a15.c
-lib/mlton/sml/ckit-lib/regression/output/a16.c
-lib/mlton/sml/ckit-lib/regression/output/a17.c
-lib/mlton/sml/ckit-lib/regression/output/a18.c
-lib/mlton/sml/ckit-lib/regression/output/a19.c
-lib/mlton/sml/ckit-lib/regression/output/a2.c
-lib/mlton/sml/ckit-lib/regression/output/a20.c
-lib/mlton/sml/ckit-lib/regression/output/a200.c
-lib/mlton/sml/ckit-lib/regression/output/a201.c
-lib/mlton/sml/ckit-lib/regression/output/a202.c
-lib/mlton/sml/ckit-lib/regression/output/a203.c
-lib/mlton/sml/ckit-lib/regression/output/a204.c
-lib/mlton/sml/ckit-lib/regression/output/a205.c
-lib/mlton/sml/ckit-lib/regression/output/a206.c
-lib/mlton/sml/ckit-lib/regression/output/a207.c
-lib/mlton/sml/ckit-lib/regression/output/a208.c
-lib/mlton/sml/ckit-lib/regression/output/a209.c
-lib/mlton/sml/ckit-lib/regression/output/a21.c
-lib/mlton/sml/ckit-lib/regression/output/a210.c
-lib/mlton/sml/ckit-lib/regression/output/a22.c
-lib/mlton/sml/ckit-lib/regression/output/a23.c
-lib/mlton/sml/ckit-lib/regression/output/a24.c
-lib/mlton/sml/ckit-lib/regression/output/a25.c
-lib/mlton/sml/ckit-lib/regression/output/a26.c
-lib/mlton/sml/ckit-lib/regression/output/a27.c
-lib/mlton/sml/ckit-lib/regression/output/a28.c
-lib/mlton/sml/ckit-lib/regression/output/a29.c
-lib/mlton/sml/ckit-lib/regression/output/a3.c
-lib/mlton/sml/ckit-lib/regression/output/a30.c
-lib/mlton/sml/ckit-lib/regression/output/a31.c
-lib/mlton/sml/ckit-lib/regression/output/a32.c
-lib/mlton/sml/ckit-lib/regression/output/a33.c
-lib/mlton/sml/ckit-lib/regression/output/a34.c
-lib/mlton/sml/ckit-lib/regression/output/a35.c
-lib/mlton/sml/ckit-lib/regression/output/a36.c
-lib/mlton/sml/ckit-lib/regression/output/a37.c
-lib/mlton/sml/ckit-lib/regression/output/a38.c
-lib/mlton/sml/ckit-lib/regression/output/a39.c
-lib/mlton/sml/ckit-lib/regression/output/a4.c
-lib/mlton/sml/ckit-lib/regression/output/a40.c
-lib/mlton/sml/ckit-lib/regression/output/a43.c
-lib/mlton/sml/ckit-lib/regression/output/a44.c
-lib/mlton/sml/ckit-lib/regression/output/a5.c
-lib/mlton/sml/ckit-lib/regression/output/a50.c
-lib/mlton/sml/ckit-lib/regression/output/a6.c
-lib/mlton/sml/ckit-lib/regression/output/a7.c
-lib/mlton/sml/ckit-lib/regression/output/a8.c
-lib/mlton/sml/ckit-lib/regression/output/a9.c
-lib/mlton/sml/ckit-lib/regression/output/b2.c
-lib/mlton/sml/ckit-lib/regression/output/b3.c
-lib/mlton/sml/ckit-lib/regression/output/c100.c.c
-lib/mlton/sml/ckit-lib/regression/output/fact1.c
-lib/mlton/sml/ckit-lib/regression/output/i100.c.c
-lib/mlton/sml/ckit-lib/regression/output/kf.c
-lib/mlton/sml/ckit-lib/regression/output/primes.c.c
-lib/mlton/sml/ckit-lib/regression/output/ps2ascii.c.c
-lib/mlton/sml/ckit-lib/regression/output/summary
-lib/mlton/sml/ckit-lib/regression/output/t1.c
-lib/mlton/sml/ckit-lib/regression/output/t10.c
-lib/mlton/sml/ckit-lib/regression/output/t11.c
-lib/mlton/sml/ckit-lib/regression/output/t12.c
-lib/mlton/sml/ckit-lib/regression/output/t13.c
-lib/mlton/sml/ckit-lib/regression/output/t14.c
-lib/mlton/sml/ckit-lib/regression/output/t15.c
-lib/mlton/sml/ckit-lib/regression/output/t22.c
-lib/mlton/sml/ckit-lib/regression/output/t3.c
-lib/mlton/sml/ckit-lib/regression/output/t4.c
-lib/mlton/sml/ckit-lib/regression/output/t5.c
-lib/mlton/sml/ckit-lib/regression/output/t6.c
-lib/mlton/sml/ckit-lib/regression/output/t7.c
-lib/mlton/sml/ckit-lib/regression/output/t8.c
-lib/mlton/sml/ckit-lib/regression/output/t9.c
-lib/mlton/sml/ckit-lib/regression/output/test.c
-lib/mlton/sml/ckit-lib/regression/output/test1.c
-lib/mlton/sml/ckit-lib/regression/output/test10.c
-lib/mlton/sml/ckit-lib/regression/output/test2.c
-lib/mlton/sml/ckit-lib/regression/output/test4.c
-lib/mlton/sml/ckit-lib/regression/output/test5.c
-lib/mlton/sml/ckit-lib/regression/output/typedef.c
-lib/mlton/sml/ckit-lib/regression/output/typedef2.c
-lib/mlton/sml/ckit-lib/regression/output/words.c.c
-lib/mlton/sml/ckit-lib/regression/sources.cm
-lib/mlton/sml/ckit-lib/regression/test-fn.sml
-lib/mlton/sml/ckit-lib/regression/tests/simplify/simplify-test.sml
-lib/mlton/sml/ckit-lib/regression/tests/simplify/sources.cm
-lib/mlton/sml/ckit-lib/regression/tests/typecheck/sources.cm
-lib/mlton/sml/ckit-lib/regression/tests/typecheck/typecheck-test.sml
-lib/mlton/sml/ckit-lib/regression/valid-programs.obs/c100.c.c
-lib/mlton/sml/ckit-lib/regression/valid-programs.obs/i100.c.c
-lib/mlton/sml/ckit-lib/regression/valid-programs.obs/ps2ascii.c.c
-lib/mlton/sml/ckit-lib/regression/valid-programs.obs/t22.c
-lib/mlton/sml/ckit-lib/regression/valid-programs.obs/t7.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a1.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a10.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a100.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a101.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a102.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a103.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a104.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a105.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a106.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a107.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a108.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a109.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a11.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a110.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a111.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a112.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a113.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a114.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a115.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a116.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a117.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a118.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a12.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a13.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a14.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a15.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a16.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a17.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a18.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a19.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a2.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a20.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a200.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a201.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a202.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a203.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a204.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a205.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a206.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a207.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a209.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a21.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a210.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a211.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a212.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a213.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a214.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a215.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a216.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a217.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a22.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a220.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a221.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a222.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a223.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a224.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a225.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a226.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a227.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a228.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a229.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a23.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a230.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a231.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a232.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a233.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a234.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a235.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a236.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a237.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a238.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a239.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a24.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a25.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a26.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a27.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a28.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a29.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a3.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a30.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a31.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a32.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a33.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a34.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a35.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a36.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a37.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a38.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a39.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a4.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a40.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a43.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a44.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a45.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a5.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a50.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a6.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a60.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a61.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a62.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a63.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a64.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a65.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a66.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a67.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a7.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a8.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/a9.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/b2.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/b3.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/fact1.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/kf.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/primes.c.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t1.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t10.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t11.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t12.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t13.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t14.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t3.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t4.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t5.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t6.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t8.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/t9.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test1.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test10.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test2.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test4.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/test5.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/typedef.c
-lib/mlton/sml/ckit-lib/regression/valid-programs/typedef2.c
-lib/mlton/sml/ckit-lib/src/ast-utils/copy/copy-ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/copy/copy-ast.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/equality/eq-ast-ext-sig.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/equality/eq-ast.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/equality/eq-ctype.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/simplifier/extensions/c/copy-ast-ext.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/simplifier/extensions/c/simplify-ast-ext.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/simplifier/simplify-ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/simplifier/simplify-ast.sml
-lib/mlton/sml/ckit-lib/src/ast-utils/simplifier/sources.cm
-lib/mlton/sml/ckit-lib/src/ast/aid.sml
-lib/mlton/sml/ckit-lib/src/ast/aidtab.sml
-lib/mlton/sml/ckit-lib/src/ast/anonymous-structs.sml
-lib/mlton/sml/ckit-lib/src/ast/ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/ast-sig.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/ast.sml
-lib/mlton/sml/ckit-lib/src/ast/bindings.sml
-lib/mlton/sml/ckit-lib/src/ast/build-ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/build-ast.sml
-lib/mlton/sml/ckit-lib/src/ast/build-ast.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/cnv-ext-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/ctype-eq.sml
-lib/mlton/sml/ckit-lib/src/ast/extensions/c/ast-ext-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/extensions/c/ast-ext.sml
-lib/mlton/sml/ckit-lib/src/ast/extensions/c/cnv-ext.sml
-lib/mlton/sml/ckit-lib/src/ast/extensions/c/eq-ast-ext.sml
-lib/mlton/sml/ckit-lib/src/ast/extensions/c/pp-ast-ext-fn.sml
-lib/mlton/sml/ckit-lib/src/ast/group.cm
-lib/mlton/sml/ckit-lib/src/ast/initializer-normalizer-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/initializer-normalizer.sml
-lib/mlton/sml/ckit-lib/src/ast/initializer-normalizer.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/parse-to-ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/parse-to-ast.sml
-lib/mlton/sml/ckit-lib/src/ast/pid.sml
-lib/mlton/sml/ckit-lib/src/ast/pidtab.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-adornment-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-adornment-sig.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-ext-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-ext-sig.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-fn.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-ast.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-lib.sml
-lib/mlton/sml/ckit-lib/src/ast/pp/pp-lib.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/simplify-assign-ops.sml
-lib/mlton/sml/ckit-lib/src/ast/sizeof-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/sizeof.sml
-lib/mlton/sml/ckit-lib/src/ast/sizeof.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/sizes-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/sizes.sml
-lib/mlton/sml/ckit-lib/src/ast/sources.cm
-lib/mlton/sml/ckit-lib/src/ast/state-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/state.sml
-lib/mlton/sml/ckit-lib/src/ast/symbol-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/symbol.sml
-lib/mlton/sml/ckit-lib/src/ast/tables.sml
-lib/mlton/sml/ckit-lib/src/ast/tid.sml
-lib/mlton/sml/ckit-lib/src/ast/tidtab.sml
-lib/mlton/sml/ckit-lib/src/ast/type-util-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/type-util-sig.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/type-util.sml
-lib/mlton/sml/ckit-lib/src/ast/type-util.sml.orig
-lib/mlton/sml/ckit-lib/src/ast/uid-fn.sml
-lib/mlton/sml/ckit-lib/src/ast/uid-sig.sml
-lib/mlton/sml/ckit-lib/src/ast/uidtabimp-fn.sml
-lib/mlton/sml/ckit-lib/src/ast/uidtabimp-sig.sml
-lib/mlton/sml/ckit-lib/src/c-util/sizes.c
-lib/mlton/sml/ckit-lib/src/ckit-lib.cm
-lib/mlton/sml/ckit-lib/src/ckit-lib.mlb
-lib/mlton/sml/ckit-lib/src/ckit-lib.mlb.orig
-lib/mlton/sml/ckit-lib/src/ckit.cm
-lib/mlton/sml/ckit-lib/src/parser/extensions/c/parse-tree-ext-sig.sml
-lib/mlton/sml/ckit-lib/src/parser/extensions/c/parse-tree-ext.sml
-lib/mlton/sml/ckit-lib/src/parser/grammar/Makefile
-lib/mlton/sml/ckit-lib/src/parser/grammar/README
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.grm
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.grm.sig
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.grm.sml
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.lex
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.lex.sml
-lib/mlton/sml/ckit-lib/src/parser/grammar/c.lex.sml.orig
-lib/mlton/sml/ckit-lib/src/parser/grammar/tdefs.sml
-lib/mlton/sml/ckit-lib/src/parser/grammar/tokentable.sml
-lib/mlton/sml/ckit-lib/src/parser/group.cm
-lib/mlton/sml/ckit-lib/src/parser/parse-tree-sig.sml
-lib/mlton/sml/ckit-lib/src/parser/parse-tree-sig.sml.orig
-lib/mlton/sml/ckit-lib/src/parser/parse-tree.sml
-lib/mlton/sml/ckit-lib/src/parser/parse-tree.sml.orig
-lib/mlton/sml/ckit-lib/src/parser/parser-sig.sml
-lib/mlton/sml/ckit-lib/src/parser/parser.sml
-lib/mlton/sml/ckit-lib/src/parser/sources.cm
-lib/mlton/sml/ckit-lib/src/parser/util/ascii.sml
-lib/mlton/sml/ckit-lib/src/parser/util/error-sig.sml
-lib/mlton/sml/ckit-lib/src/parser/util/error.sml
-lib/mlton/sml/ckit-lib/src/parser/util/old-pp.sml
-lib/mlton/sml/ckit-lib/src/parser/util/sourcemap-sig.sml
-lib/mlton/sml/ckit-lib/src/parser/util/sourcemap.sml
-lib/mlton/sml/ckit-lib/src/sources.cm
-lib/mlton/sml/ckit-lib/src/test.c
-lib/mlton/sml/ckit-lib/src/variants/ansic/config.sml
-lib/mlton/sml/ckit-lib/src/variants/config-sig.sml
-lib/mlton/sml/ckit-lib/src/variants/group.cm
-lib/mlton/sml/ckit-lib/src/variants/parse-control-sig.sml
-lib/mlton/sml/ckit-lib/src/variants/sources.cm
-lib/mlton/sml/ckit-lib/src/variants/type-check-control-sig.sml
-lib/mlton/sml/cml/TODO
+lib/mlton/sml/ckit-lib/parser/extensions/c/parse-tree-ext-sig.sml
+lib/mlton/sml/ckit-lib/parser/extensions/c/parse-tree-ext.sml
+lib/mlton/sml/ckit-lib/parser/grammar/c.grm.sig
+lib/mlton/sml/ckit-lib/parser/grammar/c.grm.sml
+lib/mlton/sml/ckit-lib/parser/grammar/c.lex.sml
+lib/mlton/sml/ckit-lib/parser/grammar/tdefs.sml
+lib/mlton/sml/ckit-lib/parser/grammar/tokentable.sml
+lib/mlton/sml/ckit-lib/parser/parse-tree-sig.sml
+lib/mlton/sml/ckit-lib/parser/parse-tree.sml
+lib/mlton/sml/ckit-lib/parser/parser-sig.sml
+lib/mlton/sml/ckit-lib/parser/parser.sml
+lib/mlton/sml/ckit-lib/parser/util/ascii.sml
+lib/mlton/sml/ckit-lib/parser/util/error-sig.sml
+lib/mlton/sml/ckit-lib/parser/util/error.sml
+lib/mlton/sml/ckit-lib/parser/util/old-pp.sml
+lib/mlton/sml/ckit-lib/parser/util/sourcemap-sig.sml
+lib/mlton/sml/ckit-lib/parser/util/sourcemap.sml
+lib/mlton/sml/ckit-lib/variants/ansic/config.sml
+lib/mlton/sml/ckit-lib/variants/config-sig.sml
+lib/mlton/sml/ckit-lib/variants/parse-control-sig.sml
+lib/mlton/sml/ckit-lib/variants/type-check-control-sig.sml
lib/mlton/sml/cml/cml-lib/cml-lib.mlb
lib/mlton/sml/cml/cml-lib/multicast.sig
lib/mlton/sml/cml/cml-lib/multicast.sml
@@ -964,7 +597,6 @@ lib/mlton/sml/cml/cml-lib/result.sig
lib/mlton/sml/cml/cml-lib/result.sml
lib/mlton/sml/cml/cml-lib/simple-rpc.sig
lib/mlton/sml/cml/cml-lib/simple-rpc.sml
-lib/mlton/sml/cml/cml-lib/trace-cml.cm
lib/mlton/sml/cml/cml-lib/trace-cml.sig
lib/mlton/sml/cml/cml-lib/trace-cml.sml
lib/mlton/sml/cml/cml.mlb
@@ -1000,24 +632,6 @@ lib/mlton/sml/cml/core-cml/trans-id.sig
lib/mlton/sml/cml/core-cml/trans-id.sml
lib/mlton/sml/cml/core-cml/version.sig
lib/mlton/sml/cml/core-cml/version.sml
-lib/mlton/sml/cml/tests/exit.cm
-lib/mlton/sml/cml/tests/exit.mlb
-lib/mlton/sml/cml/tests/exit.sml
-lib/mlton/sml/cml/tests/ping-pong.cm
-lib/mlton/sml/cml/tests/ping-pong.mlb
-lib/mlton/sml/cml/tests/ping-pong.sml
-lib/mlton/sml/cml/tests/primes-multicast.cm
-lib/mlton/sml/cml/tests/primes-multicast.mlb
-lib/mlton/sml/cml/tests/primes-multicast.sml
-lib/mlton/sml/cml/tests/primes.cm
-lib/mlton/sml/cml/tests/primes.mlb
-lib/mlton/sml/cml/tests/primes.sml
-lib/mlton/sml/cml/tests/print.mlb
-lib/mlton/sml/cml/tests/print.sml
-lib/mlton/sml/cml/tests/run-main.sml
-lib/mlton/sml/cml/tests/timeout.cm
-lib/mlton/sml/cml/tests/timeout.mlb
-lib/mlton/sml/cml/tests/timeout.sml
lib/mlton/sml/cml/util/assert.sig
lib/mlton/sml/cml/util/assert.sml
lib/mlton/sml/cml/util/critical.sig
@@ -1035,16 +649,23 @@ lib/mlton/sml/cml/util/local-debug.fun
lib/mlton/sml/cml/util/timeit.sig
lib/mlton/sml/cml/util/timeit.sml
lib/mlton/sml/cml/util/util.mlb
-lib/mlton/sml/mlnlffi-lib/Makefile
+lib/mlton/sml/mllpt-lib/antlr-lexer-sig.sml
+lib/mlton/sml/mllpt-lib/antlr-stream-pos.sml
+lib/mlton/sml/mllpt-lib/antlr-tokens-sig.sml
+lib/mlton/sml/mllpt-lib/ebnf.sml
+lib/mlton/sml/mllpt-lib/err-handler.sml
+lib/mlton/sml/mllpt-lib/ml-lpt-lib.mlb
+lib/mlton/sml/mllpt-lib/mllpt-lib.mlb
+lib/mlton/sml/mllpt-lib/repair.sml
+lib/mlton/sml/mllpt-lib/ulex-buffer.sml
+lib/mlton/sml/mllpt-lib/wrapped-strm.sml
lib/mlton/sml/mlnlffi-lib/c-debug.sig
lib/mlton/sml/mlnlffi-lib/c.mlb
lib/mlton/sml/mlnlffi-lib/c.sig
-lib/mlton/sml/mlnlffi-lib/gen-rtld-flags.c
lib/mlton/sml/mlnlffi-lib/internals/c-debug.sml
lib/mlton/sml/mlnlffi-lib/internals/c-int.mlb
lib/mlton/sml/mlnlffi-lib/internals/c-int.sig
lib/mlton/sml/mlnlffi-lib/internals/c-int.sml
-lib/mlton/sml/mlnlffi-lib/internals/c-int.x86-linux.mlb
lib/mlton/sml/mlnlffi-lib/internals/c.sml
lib/mlton/sml/mlnlffi-lib/internals/tag.sml
lib/mlton/sml/mlnlffi-lib/internals/zstring.sml
@@ -1078,7 +699,6 @@ lib/mlton/sml/mlrisc-lib/Glue/mlrisc-glue.sig
lib/mlton/sml/mlrisc-lib/Glue/mlrisc-glue.sml
lib/mlton/sml/mlrisc-lib/Glue/mlrisc-ssa-optimizer.sig
lib/mlton/sml/mlrisc-lib/Glue/mlrisc-ssa-optimizer.sml
-lib/mlton/sml/mlrisc-lib/IR/README
lib/mlton/sml/mlrisc-lib/IR/dataflow.sig
lib/mlton/sml/mlrisc-lib/IR/dataflow.sml
lib/mlton/sml/mlrisc-lib/IR/mlrisc-branch-chaining.sml
@@ -1104,10 +724,8 @@ lib/mlton/sml/mlrisc-lib/IR/mlrisc-preheaders.sig
lib/mlton/sml/mlrisc-lib/IR/mlrisc-preheaders.sml
lib/mlton/sml/mlrisc-lib/IR/mlrisc-reshape-branches.sig
lib/mlton/sml/mlrisc-lib/IR/mlrisc-reshape-branches.sml
-lib/mlton/sml/mlrisc-lib/IR/sources.cm
lib/mlton/sml/mlrisc-lib/IR/static-branch-prediction.sig
lib/mlton/sml/mlrisc-lib/IR/static-branch-prediction.sml
-lib/mlton/sml/mlrisc-lib/SSA/SSA.cm
lib/mlton/sml/mlrisc-lib/SSA/bitmap.sml
lib/mlton/sml/mlrisc-lib/SSA/cfg2ssa.sig
lib/mlton/sml/mlrisc-lib/SSA/cfg2ssa.sml
@@ -1137,395 +755,133 @@ lib/mlton/sml/mlrisc-lib/SSA/ssa.sig
lib/mlton/sml/mlrisc-lib/SSA/ssa.sml
lib/mlton/sml/mlrisc-lib/SSA/ssa2cfg.sig
lib/mlton/sml/mlrisc-lib/SSA/ssa2cfg.sml
-lib/mlton/sml/mlrisc-lib/Tools/Doc/Makefile
-lib/mlton/sml/mlrisc-lib/Tools/Doc/nowhere.tex
-lib/mlton/sml/mlrisc-lib/Tools/Doc/rewrite-gen.tex
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-consts.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-consts.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-pp.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-pp.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-rewrite.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-rewrite.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-trans.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-trans.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-util.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast-util.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast.sig
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/ast.sml
-lib/mlton/sml/mlrisc-lib/Tools/FakeSMLAst/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/MDL/env.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-compile.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-compile.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-dummygen.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-env.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-env.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-asm.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-cells.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-delay.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-insnprops.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-instr.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-mc.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-rewrite.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-rtlprops.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-schedprops.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen-ssaprops.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-gen.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-glue.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-glue0.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-rtl-comp.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-rtl-comp.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-rtl-tools.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-rtl-tools.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-rtl.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-type-utils.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-type-utils.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-typing.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mdl-typing.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mlrisc-defs.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mlrisc-defs.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mlrisc-types.sig
-lib/mlton/sml/mlrisc-lib/Tools/MDL/mlrisc-types.sml
-lib/mlton/sml/mlrisc-lib/Tools/MDL/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/match-compiler.sig
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/match-compiler.sml
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/match-gen.sig
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/match-gen.sml
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/MatchCompiler/test-match-gen.sml
-lib/mlton/sml/mlrisc-lib/Tools/PP/README
-lib/mlton/sml/mlrisc-lib/Tools/PP/pp.sig
-lib/mlton/sml/mlrisc-lib/Tools/PP/pp.sml
-lib/mlton/sml/mlrisc-lib/Tools/PP/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.grm
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.grm.desc
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.grm.desc.orig
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.grm.sig
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.grm.sml
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.lex
-lib/mlton/sml/mlrisc-lib/Tools/Parser/mdl.lex.sml
-lib/mlton/sml/mlrisc-lib/Tools/Parser/parser.sml
-lib/mlton/sml/mlrisc-lib/Tools/Parser/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/PrecParser/prec-parse.sml
-lib/mlton/sml/mlrisc-lib/Tools/PrecParser/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/README
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/README
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/build.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/glue.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/make.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/poly-gen.sig
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/poly-gen.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/rewrite-gen.sig
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/rewrite-gen.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/test.sml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/wff.gsml
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/wff.sig
-lib/mlton/sml/mlrisc-lib/Tools/RewriteGen/wff.sml
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/error.sig
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/error.sml
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/gen-file.sig
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/gen-file.sml
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/sourceMap.sig
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/sourceMap.sml
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/sources.cm
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/symbol.sig
-lib/mlton/sml/mlrisc-lib/Tools/SourceMap/symbol.sml
-lib/mlton/sml/mlrisc-lib/Tools/basis.mdl
-lib/mlton/sml/mlrisc-lib/Tools/match-compiler.cm
-lib/mlton/sml/mlrisc-lib/Tools/mdl.vim
-lib/mlton/sml/mlrisc-lib/Tools/nowhere/README
-lib/mlton/sml/mlrisc-lib/Tools/nowhere/build
-lib/mlton/sml/mlrisc-lib/Tools/nowhere/build.bat
-lib/mlton/sml/mlrisc-lib/Tools/nowhere/nowhere.cm
-lib/mlton/sml/mlrisc-lib/Tools/nowhere/nowhere.sml
-lib/mlton/sml/mlrisc-lib/Tools/parser.cm
-lib/mlton/sml/mlrisc-lib/Tools/pp.cm
-lib/mlton/sml/mlrisc-lib/Tools/prec-parser.cm
-lib/mlton/sml/mlrisc-lib/Tools/sml-ast.cm
-lib/mlton/sml/mlrisc-lib/Tools/source-map.cm
-lib/mlton/sml/mlrisc-lib/aliasing/README
lib/mlton/sml/mlrisc-lib/aliasing/mlriscRegion.sig
lib/mlton/sml/mlrisc-lib/aliasing/mlriscRegion.sml
lib/mlton/sml/mlrisc-lib/aliasing/pointsTo.sig
-lib/mlton/sml/mlrisc-lib/aliasing/pointsTo.sig.orig
lib/mlton/sml/mlrisc-lib/aliasing/pointsTo.sml
-lib/mlton/sml/mlrisc-lib/aliasing/pointsTo.sml.orig
-lib/mlton/sml/mlrisc-lib/alpha/README.alpha
-lib/mlton/sml/mlrisc-lib/alpha/alpha.mdl
lib/mlton/sml/mlrisc-lib/alpha/backpatch/alphaJumps.sml
-lib/mlton/sml/mlrisc-lib/alpha/backpatch/alphaJumps.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/emit/alphaAsm.sml
-lib/mlton/sml/mlrisc-lib/alpha/emit/alphaAsm.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/emit/alphaMC.sml
-lib/mlton/sml/mlrisc-lib/alpha/emit/alphaMC.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/flowgraph/alphaGasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/alpha/flowgraph/alphaGasPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaCells.sml
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaFreqProps.sml
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaInstr.sml
-lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaInstr.sml.orig
-lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaPeephole.peep
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaPeephole.sml
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaProps.sml
-lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaProps.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaShuffle.sig
lib/mlton/sml/mlrisc-lib/alpha/instructions/alphaShuffle.sml
lib/mlton/sml/mlrisc-lib/alpha/mltree/alpha.sml
-lib/mlton/sml/mlrisc-lib/alpha/mltree/alpha.sml.orig
lib/mlton/sml/mlrisc-lib/alpha/mltree/alphaPseudoInstr.sig
-lib/mlton/sml/mlrisc-lib/alpha/mltree/alphaPseudoInstr.sig.orig
lib/mlton/sml/mlrisc-lib/alpha/mltree/alphaUtil.sml
lib/mlton/sml/mlrisc-lib/alpha/ra/alphaRegAlloc.sml
lib/mlton/sml/mlrisc-lib/alpha/ra/alphaRewrite.sml
lib/mlton/sml/mlrisc-lib/alpha/ra/alphaSpillInstr.sml
-lib/mlton/sml/mlrisc-lib/amd64/amd64.mdl
-lib/mlton/sml/mlrisc-lib/amd64/amd64.mdl.orig
lib/mlton/sml/mlrisc-lib/amd64/amd64MC.sml
-lib/mlton/sml/mlrisc-lib/amd64/amd64MC.sml.orig
-lib/mlton/sml/mlrisc-lib/amd64/amd64MCFn.sml
-lib/mlton/sml/mlrisc-lib/amd64/amd64MCFn.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/backpatch/amd64Jumps.sml
-lib/mlton/sml/mlrisc-lib/amd64/backpatch/amd64Jumps.sml.orig
+lib/mlton/sml/mlrisc-lib/amd64/c-calls/amd64-svid.sml
lib/mlton/sml/mlrisc-lib/amd64/emit/amd64Asm.sml
-lib/mlton/sml/mlrisc-lib/amd64/emit/amd64Asm.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/flowgraph/amd64-darwin-pseudo-ops.sml
-lib/mlton/sml/mlrisc-lib/amd64/flowgraph/amd64-darwin-pseudo-ops.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/flowgraph/amd64GasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/amd64/flowgraph/amd64GasPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Cells.sml
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64CompInstrExt.sml
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64CompInstrExt.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Instr.sml
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Instr.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64InstrExt.sml
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Peephole.peep
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Peephole.peep.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Peephole.sml
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Peephole.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Props.sml
-lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Props.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/instructions/amd64Shuffle.sml
lib/mlton/sml/mlrisc-lib/amd64/mltree/amd64-gen.sml
-lib/mlton/sml/mlrisc-lib/amd64/mltree/amd64-gen.sml.orig
lib/mlton/sml/mlrisc-lib/amd64/mltree/amd64-opcodes.sml
+lib/mlton/sml/mlrisc-lib/amd64/omit-frameptr/amd64omit-frameptr.sml
lib/mlton/sml/mlrisc-lib/amd64/ra/amd64RegAlloc.sml
-lib/mlton/sml/mlrisc-lib/amd64/ra/amd64RegAlloc.sml.orig
+lib/mlton/sml/mlrisc-lib/amd64/ra/amd64Rewrite.sml
lib/mlton/sml/mlrisc-lib/amd64/ra/amd64SpillInstr.sml
-lib/mlton/sml/mlrisc-lib/amd64/ra/amd64SpillInstr.sml.orig
-lib/mlton/sml/mlrisc-lib/autoload.sml
lib/mlton/sml/mlrisc-lib/backpatch/backpatch.sml
-lib/mlton/sml/mlrisc-lib/backpatch/backpatch.sml.orig
lib/mlton/sml/mlrisc-lib/backpatch/bbsched.sig
lib/mlton/sml/mlrisc-lib/backpatch/delaySlotProps.sig
lib/mlton/sml/mlrisc-lib/backpatch/noDelaySlots.sml
lib/mlton/sml/mlrisc-lib/backpatch/sdi-jumps.sig
-lib/mlton/sml/mlrisc-lib/backpatch/sdi-jumps.sig.orig
lib/mlton/sml/mlrisc-lib/backpatch/spanDep.sml
-lib/mlton/sml/mlrisc-lib/backpatch/spanDep.sml.orig
lib/mlton/sml/mlrisc-lib/backpatch/vlBackPatch.sml
-lib/mlton/sml/mlrisc-lib/backpatch/vlBackPatch.sml.orig
lib/mlton/sml/mlrisc-lib/block-placement/block-placement.sig
lib/mlton/sml/mlrisc-lib/block-placement/block-placement.sml
-lib/mlton/sml/mlrisc-lib/block-placement/block-placement.sml.orig
lib/mlton/sml/mlrisc-lib/block-placement/check-placement-fn.sml
-lib/mlton/sml/mlrisc-lib/block-placement/check-placement-fn.sml.orig
lib/mlton/sml/mlrisc-lib/block-placement/default-block-placement.sml
lib/mlton/sml/mlrisc-lib/block-placement/jump-chain-elim-fn.sml
-lib/mlton/sml/mlrisc-lib/block-placement/jump-chain-elim-fn.sml.orig
lib/mlton/sml/mlrisc-lib/block-placement/weighted-block-placement-fn.sml
-lib/mlton/sml/mlrisc-lib/block-placement/weighted-block-placement-fn.sml.orig
-lib/mlton/sml/mlrisc-lib/c-call/README
-lib/mlton/sml/mlrisc-lib/c-call/archs/sources.cm
lib/mlton/sml/mlrisc-lib/c-call/archs/sparc-c-call-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/archs/sparc-c-call-fn.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/archs/sparc-c-sizes.sml
-lib/mlton/sml/mlrisc-lib/c-call/archs/sparc-c-sizes.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/archs/x86-64-c-sizes.sml
lib/mlton/sml/mlrisc-lib/c-call/archs/x86-64-svid-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/archs/x86-64-svid-fn.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/archs/x86-c-sizes.sml
lib/mlton/sml/mlrisc-lib/c-call/archs/x86-svid-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/archs/x86-svid-fn.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/gen/c-call-gen-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/gen/c-call-gen-fn.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/gen/c-call-gen-sig.sml
lib/mlton/sml/mlrisc-lib/c-call/gen/c-call-sig.sml
-lib/mlton/sml/mlrisc-lib/c-call/gen/c-call-sig.sml.orig
lib/mlton/sml/mlrisc-lib/c-call/gen/c-type.sml
-lib/mlton/sml/mlrisc-lib/c-call/gen/c-type.sml.orig
-lib/mlton/sml/mlrisc-lib/c-call/test/Makefile
lib/mlton/sml/mlrisc-lib/c-call/test/c-sparc-test.sml
lib/mlton/sml/mlrisc-lib/c-call/test/c-test-gen.sml
lib/mlton/sml/mlrisc-lib/c-call/test/c-x86-64-test.sml
lib/mlton/sml/mlrisc-lib/c-call/test/c-x86-test.sml
-lib/mlton/sml/mlrisc-lib/c-call/test/group.cm
-lib/mlton/sml/mlrisc-lib/c-call/test/sources.cm
lib/mlton/sml/mlrisc-lib/c-call/test/spill-table.sml
lib/mlton/sml/mlrisc-lib/c-call/test/test-varargs.sml
-lib/mlton/sml/mlrisc-lib/c-call/test/wrapper.cm
lib/mlton/sml/mlrisc-lib/c-call/test/x86-64-elf.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/located-arg-fn.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/marshal.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/smlnj-prim-c-call.sml
-lib/mlton/sml/mlrisc-lib/c-call/varargs/call/sources.cm
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/vararg-call-fn.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/vararg-call.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/vararg-constants.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/call/vararg.sml
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/Makefile
lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/gen-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/located-arg.h
lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/mlrisc-gen-sig.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/sparc-gen-fn.sml
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/test-interp.c
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/test.c
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/util.c
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/vararg-interp-sparc.s
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/vararg-interp-x86-darwin.s
-lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/vararg-interp-x86-linux.s
lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/x86-64-gen-fn.sml
lib/mlton/sml/mlrisc-lib/c-call/varargs/interp/x86-gen-fn.sml
lib/mlton/sml/mlrisc-lib/c-calls/c-calls.sig
lib/mlton/sml/mlrisc-lib/c-calls/c-types.sml
-lib/mlton/sml/mlrisc-lib/c-calls/c-types.sml.orig
lib/mlton/sml/mlrisc-lib/c-calls/unimplemented-c-calls.sml
-lib/mlton/sml/mlrisc-lib/c-calls/unimplemented-c-calls.sml.orig
lib/mlton/sml/mlrisc-lib/cluster/clusterGraph.sig
lib/mlton/sml/mlrisc-lib/cluster/clusterGraph.sml
lib/mlton/sml/mlrisc-lib/cluster/clusterViewer.sig
lib/mlton/sml/mlrisc-lib/cluster/clusterViewer.sml
-lib/mlton/sml/mlrisc-lib/cm/ALL.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA-Peephole.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA-RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA-SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/ALPHA.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64-Peephole.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64-RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64-SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/AMD64.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-Vararg.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-VarargCall.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-VarargInterp.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-sparc.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-x86-64.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall-x86.cm
-lib/mlton/sml/mlrisc-lib/cm/CCall.cm
-lib/mlton/sml/mlrisc-lib/cm/Control.cm
-lib/mlton/sml/mlrisc-lib/cm/GC.cm
-lib/mlton/sml/mlrisc-lib/cm/Graphs.cm
-lib/mlton/sml/mlrisc-lib/cm/HPPA-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/HPPA-RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/HPPA-SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/HPPA-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/HPPA.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32-Peephole.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32-RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32-SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/IA32.cm
-lib/mlton/sml/mlrisc-lib/cm/IR.cm
-lib/mlton/sml/mlrisc-lib/cm/Lib.cm
-lib/mlton/sml/mlrisc-lib/cm/MIPS.cm
-lib/mlton/sml/mlrisc-lib/cm/MLRISC.cm
-lib/mlton/sml/mlrisc-lib/cm/MLTREE.cm
-lib/mlton/sml/mlrisc-lib/cm/Opt.cm
-lib/mlton/sml/mlrisc-lib/cm/PPC-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/PPC-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/PPC.cm
-lib/mlton/sml/mlrisc-lib/cm/Peephole.cm
-lib/mlton/sml/mlrisc-lib/cm/RA.cm
-lib/mlton/sml/mlrisc-lib/cm/RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/Region.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC-GC.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC-Peephole.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC-RTL.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC-SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC-Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/SPARC.cm
-lib/mlton/sml/mlrisc-lib/cm/SSA.cm
-lib/mlton/sml/mlrisc-lib/cm/Sched.cm
-lib/mlton/sml/mlrisc-lib/cm/StagedAlloc.cm
-lib/mlton/sml/mlrisc-lib/cm/VLIW.cm
-lib/mlton/sml/mlrisc-lib/cm/Visual.cm
-lib/mlton/sml/mlrisc-lib/cm/ir-archive.cm
-lib/mlton/sml/mlrisc-lib/cm/makeallcm
-lib/mlton/sml/mlrisc-lib/cm/makecm
-lib/mlton/sml/mlrisc-lib/cm/proxyLib.cm
-lib/mlton/sml/mlrisc-lib/cm/proxyLib.cm.orig
lib/mlton/sml/mlrisc-lib/control/mlrisc-control.sml
lib/mlton/sml/mlrisc-lib/control/mlrisc-timing.sml
lib/mlton/sml/mlrisc-lib/control/mlriscErrormsg.sml
-lib/mlton/sml/mlrisc-lib/demo/README
-lib/mlton/sml/mlrisc-lib/demo/build-110.0.6.sml
-lib/mlton/sml/mlrisc-lib/demo/build-110.25.sml
-lib/mlton/sml/mlrisc-lib/demo/build-110.29.sml
-lib/mlton/sml/mlrisc-lib/demo/demo-alpha.sml
-lib/mlton/sml/mlrisc-lib/demo/demo-amd64.sml
-lib/mlton/sml/mlrisc-lib/demo/demo-backend.sml
-lib/mlton/sml/mlrisc-lib/demo/demo-sparc.sml
-lib/mlton/sml/mlrisc-lib/demo/demo-types.sml
-lib/mlton/sml/mlrisc-lib/demo/eg-alpha.sml
-lib/mlton/sml/mlrisc-lib/demo/eg-amd64.sml
-lib/mlton/sml/mlrisc-lib/demo/eg-sparc.sml
-lib/mlton/sml/mlrisc-lib/demo/group.cm
-lib/mlton/sml/mlrisc-lib/demo/sources-amd64.cm
-lib/mlton/sml/mlrisc-lib/demo/sources.cm
-lib/mlton/sml/mlrisc-lib/demo/spill-table.sml
-lib/mlton/sml/mlrisc-lib/demo/wrapper.cm
lib/mlton/sml/mlrisc-lib/emit/asm-flags.sml
lib/mlton/sml/mlrisc-lib/emit/asmEmit.sig
lib/mlton/sml/mlrisc-lib/emit/asmStream.sml
lib/mlton/sml/mlrisc-lib/emit/asmUtil.sml
lib/mlton/sml/mlrisc-lib/emit/cfgEmit.sml
-lib/mlton/sml/mlrisc-lib/emit/cfgEmit.sml.orig
lib/mlton/sml/mlrisc-lib/emit/code-string.sig
lib/mlton/sml/mlrisc-lib/emit/emitterNEW.sig
lib/mlton/sml/mlrisc-lib/emit/instruction-emitter.sig
lib/mlton/sml/mlrisc-lib/emit/mc-emit.sig
lib/mlton/sml/mlrisc-lib/flowgraph/as-pseudo-ops.sig
lib/mlton/sml/mlrisc-lib/flowgraph/buildFlowgraph.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/buildFlowgraph.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/cfg-optimization.sig
lib/mlton/sml/mlrisc-lib/flowgraph/cfg.sig
lib/mlton/sml/mlrisc-lib/flowgraph/cfg.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/cfg.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/cfgCountCopies.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/cfgCountCopies.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/cfgExpandCopies.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/cfgExpandCopies.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/cfgPeephole.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/cfgPeephole.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/cfgView.sig
lib/mlton/sml/mlrisc-lib/flowgraph/cfgView.sml
lib/mlton/sml/mlrisc-lib/flowgraph/client-pseudo-ops.sig
lib/mlton/sml/mlrisc-lib/flowgraph/darwin-pseudo-ops.sml
lib/mlton/sml/mlrisc-lib/flowgraph/gasPseudoOps.sml
lib/mlton/sml/mlrisc-lib/flowgraph/printFlowgraph.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/printFlowgraph.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-basis-typ.sml
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-basis.sig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-big.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-big.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-endian.sig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-little.sml
-lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops-little.sml.orig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops.sig
-lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops.sig.orig
lib/mlton/sml/mlrisc-lib/flowgraph/pseudo-ops.sml
lib/mlton/sml/mlrisc-lib/frequencies/complete-probs-fn.sml
lib/mlton/sml/mlrisc-lib/frequencies/compute-execution-freqs.sig
lib/mlton/sml/mlrisc-lib/frequencies/compute-freqs-fn.sml
-lib/mlton/sml/mlrisc-lib/frequencies/compute-freqs-fn.sml.orig
lib/mlton/sml/mlrisc-lib/frequencies/estimate-loop-probs-fn.sml
-lib/mlton/sml/mlrisc-lib/gc-safety/README
lib/mlton/sml/mlrisc-lib/gc-safety/gc-cells.sig
-lib/mlton/sml/mlrisc-lib/gc-safety/gc-cells.sig.orig
lib/mlton/sml/mlrisc-lib/gc-safety/gc-cells.sml
lib/mlton/sml/mlrisc-lib/gc-safety/gc-code-motion.sig
lib/mlton/sml/mlrisc-lib/gc-safety/gc-code-motion.sml
@@ -1550,10 +906,8 @@ lib/mlton/sml/mlrisc-lib/gc-safety/gc-typing.sml
lib/mlton/sml/mlrisc-lib/graphs/acyclic-graph.sml
lib/mlton/sml/mlrisc-lib/graphs/bellman-ford.sml
lib/mlton/sml/mlrisc-lib/graphs/bigraph.sig
-lib/mlton/sml/mlrisc-lib/graphs/bigraph.sig.orig
lib/mlton/sml/mlrisc-lib/graphs/closed-semi-ring.sig
lib/mlton/sml/mlrisc-lib/graphs/digraph.sml
-lib/mlton/sml/mlrisc-lib/graphs/digraph.sml.orig
lib/mlton/sml/mlrisc-lib/graphs/dijkstra.sml
lib/mlton/sml/mlrisc-lib/graphs/floyd-warshall.sml
lib/mlton/sml/mlrisc-lib/graphs/graph-bcc.sig
@@ -1575,7 +929,6 @@ lib/mlton/sml/mlrisc-lib/graphs/graph-scc.sml
lib/mlton/sml/mlrisc-lib/graphs/graph-topsort.sig
lib/mlton/sml/mlrisc-lib/graphs/graph-topsort.sml
lib/mlton/sml/mlrisc-lib/graphs/graph.sig
-lib/mlton/sml/mlrisc-lib/graphs/graph.sig.orig
lib/mlton/sml/mlrisc-lib/graphs/graph.sml
lib/mlton/sml/mlrisc-lib/graphs/graphimpl.sig
lib/mlton/sml/mlrisc-lib/graphs/group.sig
@@ -1623,32 +976,21 @@ lib/mlton/sml/mlrisc-lib/graphs/ugraph.sml
lib/mlton/sml/mlrisc-lib/graphs/uniongraph.sml
lib/mlton/sml/mlrisc-lib/graphs/update-graph-info.sml
lib/mlton/sml/mlrisc-lib/graphs/wrappers.sml
-lib/mlton/sml/mlrisc-lib/hppa/README.hppa
lib/mlton/sml/mlrisc-lib/hppa/backpatch/hppaDelaySlotProps.sml
-lib/mlton/sml/mlrisc-lib/hppa/backpatch/hppaDelaySlotProps.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/backpatch/hppaDelaySlots.sml
lib/mlton/sml/mlrisc-lib/hppa/backpatch/hppaJumps.sml
-lib/mlton/sml/mlrisc-lib/hppa/backpatch/hppaJumps.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/emit/hppaAsm.sml
-lib/mlton/sml/mlrisc-lib/hppa/emit/hppaAsm.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/emit/hppaMC.sml
-lib/mlton/sml/mlrisc-lib/hppa/emit/hppaMC.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/flowgraph/hppaGasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/hppa/flowgraph/hppaGasPseudoOps.sml.orig
-lib/mlton/sml/mlrisc-lib/hppa/hppa.mdl
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaCells.sml
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaFreqProps.sml
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaInstr.sml
-lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaInstr.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaProps.sml
-lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaProps.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaShuffle.sig
lib/mlton/sml/mlrisc-lib/hppa/instructions/hppaShuffle.sml
lib/mlton/sml/mlrisc-lib/hppa/mltree/hppa.sml
-lib/mlton/sml/mlrisc-lib/hppa/mltree/hppa.sml.orig
lib/mlton/sml/mlrisc-lib/hppa/mltree/hppaLabelComp.sig
lib/mlton/sml/mlrisc-lib/hppa/mltree/hppaMillicode.sig
-lib/mlton/sml/mlrisc-lib/hppa/mltree/hppaMillicode.sig.orig
lib/mlton/sml/mlrisc-lib/hppa/ra/hppaRegAlloc.sml
lib/mlton/sml/mlrisc-lib/hppa/ra/hppaRewrite.sml
lib/mlton/sml/mlrisc-lib/hppa/ra/hppaSpillInstr.sml
@@ -1662,13 +1004,10 @@ lib/mlton/sml/mlrisc-lib/instructions/expandCopies.sig
lib/mlton/sml/mlrisc-lib/instructions/freqProps.sig
lib/mlton/sml/mlrisc-lib/instructions/freqProps.sml
lib/mlton/sml/mlrisc-lib/instructions/insnProps.sig
-lib/mlton/sml/mlrisc-lib/instructions/insnProps.sig.orig
lib/mlton/sml/mlrisc-lib/instructions/instructions.sig
-lib/mlton/sml/mlrisc-lib/instructions/instructions.sig.orig
lib/mlton/sml/mlrisc-lib/instructions/label-sig.sml
lib/mlton/sml/mlrisc-lib/instructions/label.sml
lib/mlton/sml/mlrisc-lib/instructions/mlriscAnnotations.sig
-lib/mlton/sml/mlrisc-lib/instructions/mlriscAnnotations.sig.orig
lib/mlton/sml/mlrisc-lib/instructions/mlriscAnnotations.sml
lib/mlton/sml/mlrisc-lib/instructions/mlriscOptimization.sig
lib/mlton/sml/mlrisc-lib/instructions/peephole.sig
@@ -1713,25 +1052,23 @@ lib/mlton/sml/mlrisc-lib/ir-archive/reducibility.sml
lib/mlton/sml/mlrisc-lib/ir-archive/ssa.sig
lib/mlton/sml/mlrisc-lib/ir-archive/ssa.sml
lib/mlton/sml/mlrisc-lib/ir-archive/test-all.sml
-lib/mlton/sml/mlrisc-lib/ir-archive/test.cm
lib/mlton/sml/mlrisc-lib/ir-archive/test1.sml
lib/mlton/sml/mlrisc-lib/ir-archive/test2.sml
lib/mlton/sml/mlrisc-lib/ir-archive/test3.sml
lib/mlton/sml/mlrisc-lib/library/annotations.sig
lib/mlton/sml/mlrisc-lib/library/annotations.sml
+lib/mlton/sml/mlrisc-lib/library/array-noneq.sig
lib/mlton/sml/mlrisc-lib/library/bitset.sig
lib/mlton/sml/mlrisc-lib/library/bitset.sml
lib/mlton/sml/mlrisc-lib/library/cache.sml
lib/mlton/sml/mlrisc-lib/library/catlist.sml
lib/mlton/sml/mlrisc-lib/library/dynamic-array.sml
-lib/mlton/sml/mlrisc-lib/library/dynamic-array.sml.orig
lib/mlton/sml/mlrisc-lib/library/dynamic-bitset.sml
lib/mlton/sml/mlrisc-lib/library/fixed-point.sig
lib/mlton/sml/mlrisc-lib/library/fixed-point.sml
lib/mlton/sml/mlrisc-lib/library/freq.sig
lib/mlton/sml/mlrisc-lib/library/freq.sml
lib/mlton/sml/mlrisc-lib/library/hash-array.sml
-lib/mlton/sml/mlrisc-lib/library/hash-array.sml.orig
lib/mlton/sml/mlrisc-lib/library/hash-table.sig
lib/mlton/sml/mlrisc-lib/library/hash-table.sml
lib/mlton/sml/mlrisc-lib/library/hashBag.sig
@@ -1758,7 +1095,6 @@ lib/mlton/sml/mlrisc-lib/library/regset.sml
lib/mlton/sml/mlrisc-lib/library/sortedlist.sml
lib/mlton/sml/mlrisc-lib/library/sorting.sml
lib/mlton/sml/mlrisc-lib/library/sorting2.sml
-lib/mlton/sml/mlrisc-lib/library/sources.cm
lib/mlton/sml/mlrisc-lib/library/stringOutStream.sig
lib/mlton/sml/mlrisc-lib/library/stringOutStream.sml
lib/mlton/sml/mlrisc-lib/library/susp.sml
@@ -1773,11 +1109,6 @@ lib/mlton/sml/mlrisc-lib/library/undoable-ref.sml
lib/mlton/sml/mlrisc-lib/library/union-find.sml
lib/mlton/sml/mlrisc-lib/library/uref.sml
lib/mlton/sml/mlrisc-lib/library/word64.sml
-lib/mlton/sml/mlrisc-lib/make.sml
-lib/mlton/sml/mlrisc-lib/makeall-110.0.6.sml
-lib/mlton/sml/mlrisc-lib/makeall-110.25.sml
-lib/mlton/sml/mlrisc-lib/makeall-new.sml
-lib/mlton/sml/mlrisc-lib/makeall.sml
lib/mlton/sml/mlrisc-lib/mips/backpatch/mipsDelaySlotProps.sml
lib/mlton/sml/mlrisc-lib/mips/backpatch/mipsDelaySlots.sml
lib/mlton/sml/mlrisc-lib/mips/backpatch/mipsJumps.sml
@@ -1790,205 +1121,136 @@ lib/mlton/sml/mlrisc-lib/mips/instructions/mipsInstr.sml
lib/mlton/sml/mlrisc-lib/mips/instructions/mipsProps.sml
lib/mlton/sml/mlrisc-lib/mips/instructions/mipsShuffle.sig
lib/mlton/sml/mlrisc-lib/mips/instructions/mipsShuffle.sml
-lib/mlton/sml/mlrisc-lib/mips/mips.mdl
lib/mlton/sml/mlrisc-lib/mips/mltree/mips.sml
lib/mlton/sml/mlrisc-lib/mips/mltree/mipsPseudoInstr.sig
lib/mlton/sml/mlrisc-lib/mips/mltree/mipsRTL.sml
lib/mlton/sml/mlrisc-lib/mips/mltree/mipsRTLProps.sml
lib/mlton/sml/mlrisc-lib/mips/ra/mipsRewrite.sml
lib/mlton/sml/mlrisc-lib/mlb/ALPHA.mlb
-lib/mlton/sml/mlrisc-lib/mlb/ALPHA.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/AMD64-Peephole.mlb
-lib/mlton/sml/mlrisc-lib/mlb/AMD64-Peephole.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/AMD64.mlb
-lib/mlton/sml/mlrisc-lib/mlb/AMD64.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/CCall-sparc.mlb
-lib/mlton/sml/mlrisc-lib/mlb/CCall-sparc.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/CCall-x86-64.mlb
-lib/mlton/sml/mlrisc-lib/mlb/CCall-x86-64.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/CCall-x86.mlb
-lib/mlton/sml/mlrisc-lib/mlb/CCall-x86.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/CCall.mlb
-lib/mlton/sml/mlrisc-lib/mlb/CCall.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/Control.mlb
-lib/mlton/sml/mlrisc-lib/mlb/Control.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/Graphs.mlb
-lib/mlton/sml/mlrisc-lib/mlb/Graphs.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/HPPA.mlb
-lib/mlton/sml/mlrisc-lib/mlb/HPPA.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/IA32-Peephole.mlb
-lib/mlton/sml/mlrisc-lib/mlb/IA32-Peephole.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/IA32.mlb
-lib/mlton/sml/mlrisc-lib/mlb/IA32.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/Lib.mlb
-lib/mlton/sml/mlrisc-lib/mlb/Lib.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/MLRISC.mlb
-lib/mlton/sml/mlrisc-lib/mlb/MLRISC.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/MLTREE.mlb
-lib/mlton/sml/mlrisc-lib/mlb/MLTREE.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/PPC.mlb
-lib/mlton/sml/mlrisc-lib/mlb/PPC.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/Peephole.mlb
-lib/mlton/sml/mlrisc-lib/mlb/Peephole.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/RA.mlb
-lib/mlton/sml/mlrisc-lib/mlb/RA.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/SPARC.mlb
-lib/mlton/sml/mlrisc-lib/mlb/SPARC.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/StagedAlloc.mlb
-lib/mlton/sml/mlrisc-lib/mlb/StagedAlloc.mlb.orig
lib/mlton/sml/mlrisc-lib/mlb/Visual.mlb
-lib/mlton/sml/mlrisc-lib/mlb/Visual.mlb.orig
lib/mlton/sml/mlrisc-lib/mlrisc-lib.mlb
-lib/mlton/sml/mlrisc-lib/mlrisc-lib.mlb.orig
lib/mlton/sml/mlrisc-lib/mltree/build-rtl.sig
lib/mlton/sml/mlrisc-lib/mltree/build-rtl.sml
lib/mlton/sml/mlrisc-lib/mltree/instr-gen.sig
-lib/mlton/sml/mlrisc-lib/mltree/instr-gen.sig.orig
lib/mlton/sml/mlrisc-lib/mltree/instr-gen.sml
-lib/mlton/sml/mlrisc-lib/mltree/instr-gen.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/machine-int.sig
lib/mlton/sml/mlrisc-lib/mltree/machine-int.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-basis.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-basis.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-check-ty.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree-check-ty.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-eval.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-eval.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-extension.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-fold.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-fold.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-gen.sig
-lib/mlton/sml/mlrisc-lib/mltree/mltree-gen.sig.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-gen.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-hash.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-hash.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-labexp.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-labexp.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-mult.sig
-lib/mlton/sml/mlrisc-lib/mltree/mltree-mult.sig.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-mult.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree-mult.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-rewrite.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-rewrite.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-rtl.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-rtl.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree-simplify.in
-lib/mlton/sml/mlrisc-lib/mltree/mltree-simplify.in.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-simplify.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-simplify.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree-simplify.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree-size.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-size.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-stream.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-stream.sml
lib/mlton/sml/mlrisc-lib/mltree/mltree-utils.sig
lib/mlton/sml/mlrisc-lib/mltree/mltree-utils.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree-utils.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree.sig
-lib/mlton/sml/mlrisc-lib/mltree/mltree.sig.orig
lib/mlton/sml/mlrisc-lib/mltree/mltree.sml
-lib/mlton/sml/mlrisc-lib/mltree/mltree.sml.orig
lib/mlton/sml/mlrisc-lib/mltree/mltreecomp.sig
-lib/mlton/sml/mlrisc-lib/mltree/mltreecomp.sig.orig
lib/mlton/sml/mlrisc-lib/mltree/operand-table.sig
lib/mlton/sml/mlrisc-lib/mltree/operand-table.sml
lib/mlton/sml/mlrisc-lib/mltree/rtl-build.sig
lib/mlton/sml/mlrisc-lib/mltree/rtl-build.sml
lib/mlton/sml/mlrisc-lib/mltree/rtl-props.sig
lib/mlton/sml/mlrisc-lib/omit-frameptr/omit-frame-pointer.sig
-lib/mlton/sml/mlrisc-lib/omit-frameptr/omit-frame-pointer.sig.orig
-lib/mlton/sml/mlrisc-lib/ppc/README.ppc
lib/mlton/sml/mlrisc-lib/ppc/backpatch/ppcDelaySlots.sml
-lib/mlton/sml/mlrisc-lib/ppc/backpatch/ppcDelaySlots.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/backpatch/ppcJumps.sml
-lib/mlton/sml/mlrisc-lib/ppc/backpatch/ppcJumps.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/c-calls/ppc-macosx.sml
-lib/mlton/sml/mlrisc-lib/ppc/c-calls/ppc-macosx.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/emit/ppcAsm.sml
-lib/mlton/sml/mlrisc-lib/ppc/emit/ppcAsm.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/emit/ppcAsmSyntax.sml
lib/mlton/sml/mlrisc-lib/ppc/emit/ppcMC.sml
-lib/mlton/sml/mlrisc-lib/ppc/emit/ppcMC.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/flowgraph/ppcDarwinPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/ppc/flowgraph/ppcDarwinPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/flowgraph/ppcGasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/ppc/flowgraph/ppcGasPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcCells.sml
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcCompInstrExt.sml
-lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcCompInstrExt.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcFreqProps.sml
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcInstr.sml
-lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcInstr.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcInstrExt.sml
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcProps.sml
-lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcProps.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcShuffle.sig
lib/mlton/sml/mlrisc-lib/ppc/instructions/ppcShuffle.sml
lib/mlton/sml/mlrisc-lib/ppc/mltree/ppc.sml
-lib/mlton/sml/mlrisc-lib/ppc/mltree/ppc.sml.orig
lib/mlton/sml/mlrisc-lib/ppc/mltree/ppcPseudoInstr.sig
-lib/mlton/sml/mlrisc-lib/ppc/ppc.mdl
lib/mlton/sml/mlrisc-lib/ppc/ra/ppcRegAlloc.sml
lib/mlton/sml/mlrisc-lib/ppc/ra/ppcRewrite.sml
lib/mlton/sml/mlrisc-lib/ppc/ra/ppcSpillInstr.sml
lib/mlton/sml/mlrisc-lib/ra/arch-spill-instr.sig
-lib/mlton/sml/mlrisc-lib/ra/arch-spill-instr.sig.orig
lib/mlton/sml/mlrisc-lib/ra/chaitin-spillheur.sml
lib/mlton/sml/mlrisc-lib/ra/chaitin-spillheur2.sml
-lib/mlton/sml/mlrisc-lib/ra/chaitin-spillheur2.sml.orig
lib/mlton/sml/mlrisc-lib/ra/chow-hennessy-spillheur.sml
lib/mlton/sml/mlrisc-lib/ra/chow-hennessy-spillheur2.sml
-lib/mlton/sml/mlrisc-lib/ra/chow-hennessy-spillheur2.sml.orig
lib/mlton/sml/mlrisc-lib/ra/cluster-partitioner.sml
lib/mlton/sml/mlrisc-lib/ra/cluster-ra.sml
-lib/mlton/sml/mlrisc-lib/ra/cluster-ra.sml.orig
lib/mlton/sml/mlrisc-lib/ra/getreg.sig
lib/mlton/sml/mlrisc-lib/ra/getreg.sml
lib/mlton/sml/mlrisc-lib/ra/getreg2.sml
lib/mlton/sml/mlrisc-lib/ra/liveness.sml
lib/mlton/sml/mlrisc-lib/ra/mem-ra.sml
-lib/mlton/sml/mlrisc-lib/ra/mem-ra.sml.orig
lib/mlton/sml/mlrisc-lib/ra/ra-bitmatrix.sig
lib/mlton/sml/mlrisc-lib/ra/ra-core.sig
-lib/mlton/sml/mlrisc-lib/ra/ra-core.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra-core.sml
-lib/mlton/sml/mlrisc-lib/ra/ra-core.sml.orig
lib/mlton/sml/mlrisc-lib/ra/ra-deadCodeE.sml
-lib/mlton/sml/mlrisc-lib/ra/ra-deadCodeE.sml.orig
lib/mlton/sml/mlrisc-lib/ra/ra-flowgraph-part.sig
lib/mlton/sml/mlrisc-lib/ra/ra-flowgraph.sig
-lib/mlton/sml/mlrisc-lib/ra/ra-flowgraph.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra-graph.sig
-lib/mlton/sml/mlrisc-lib/ra/ra-graph.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra-graph.sml
lib/mlton/sml/mlrisc-lib/ra/ra-iteratedCoalescing.sml
lib/mlton/sml/mlrisc-lib/ra/ra-params.sig
lib/mlton/sml/mlrisc-lib/ra/ra-priqueue.sig
lib/mlton/sml/mlrisc-lib/ra/ra-spill-types.sml
lib/mlton/sml/mlrisc-lib/ra/ra-spill-with-renaming.sml
-lib/mlton/sml/mlrisc-lib/ra/ra-spill-with-renaming.sml.orig
lib/mlton/sml/mlrisc-lib/ra/ra-spill.sig
-lib/mlton/sml/mlrisc-lib/ra/ra-spill.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra-spill.sml
-lib/mlton/sml/mlrisc-lib/ra/ra-spill.sml.orig
lib/mlton/sml/mlrisc-lib/ra/ra-spillheur.sig
-lib/mlton/sml/mlrisc-lib/ra/ra-spillheur.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra.sig
-lib/mlton/sml/mlrisc-lib/ra/ra.sig.orig
lib/mlton/sml/mlrisc-lib/ra/ra.sml
-lib/mlton/sml/mlrisc-lib/ra/ra.sml.orig
lib/mlton/sml/mlrisc-lib/ra/raBitmatrix.sml
lib/mlton/sml/mlrisc-lib/ra/raBitset.sml
lib/mlton/sml/mlrisc-lib/ra/raPriQueue.sml
lib/mlton/sml/mlrisc-lib/ra/region-based-ra.sml
-lib/mlton/sml/mlrisc-lib/ra/region-based-ra.sml.orig
lib/mlton/sml/mlrisc-lib/ra/risc-ra.sml
-lib/mlton/sml/mlrisc-lib/ra/risc-ra.sml.orig
lib/mlton/sml/mlrisc-lib/scheduling/LeungPalemPnueli.sig
lib/mlton/sml/mlrisc-lib/scheduling/LeungPalemPnueli.sml
lib/mlton/sml/mlrisc-lib/scheduling/PalemSimons.sig
lib/mlton/sml/mlrisc-lib/scheduling/PalemSimons.sml
-lib/mlton/sml/mlrisc-lib/scheduling/Sched.cm
lib/mlton/sml/mlrisc-lib/scheduling/bbAliasing.sig
lib/mlton/sml/mlrisc-lib/scheduling/bbDDGViewer.sig
lib/mlton/sml/mlrisc-lib/scheduling/bbDDGViewer.sml
@@ -2017,45 +1279,30 @@ lib/mlton/sml/mlrisc-lib/scheduling/schedulerDDG.sml
lib/mlton/sml/mlrisc-lib/scheduling/schedulingAliasing.sig
lib/mlton/sml/mlrisc-lib/scheduling/schedulingProps.sig
lib/mlton/sml/mlrisc-lib/scheduling/schedulingRanks.sig
-lib/mlton/sml/mlrisc-lib/scheduling/sources.cm
lib/mlton/sml/mlrisc-lib/scheduling/test1.sml
lib/mlton/sml/mlrisc-lib/scheduling/test2.sml
lib/mlton/sml/mlrisc-lib/scheduling/wuhui.sml
-lib/mlton/sml/mlrisc-lib/sparc/README.sparc
lib/mlton/sml/mlrisc-lib/sparc/backpatch/sparcDelaySlotProps.sml
-lib/mlton/sml/mlrisc-lib/sparc/backpatch/sparcDelaySlotProps.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/backpatch/sparcDelaySlots.sml
lib/mlton/sml/mlrisc-lib/sparc/backpatch/sparcJumps.sml
-lib/mlton/sml/mlrisc-lib/sparc/backpatch/sparcJumps.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/c-calls/sparc-c-calls.sml
-lib/mlton/sml/mlrisc-lib/sparc/c-calls/sparc-c-calls.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/emit/sparcAsm.sml
-lib/mlton/sml/mlrisc-lib/sparc/emit/sparcAsm.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/emit/sparcMC.sml
-lib/mlton/sml/mlrisc-lib/sparc/emit/sparcMC.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/flowgraph/sparcGasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/sparc/flowgraph/sparcGasPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcCells.sml
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcFreqProps.sml
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcInstr.sml
-lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcInstr.sml.orig
-lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcPeephole.peep
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcPeephole.sml
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcProps.sml
-lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcProps.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcShuffle.sig
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcShuffle.sml
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparccomp-instr-ext.sml
-lib/mlton/sml/mlrisc-lib/sparc/instructions/sparccomp-instr-ext.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/instructions/sparcinstr-ext.sml
lib/mlton/sml/mlrisc-lib/sparc/mltree/sparc.sml
-lib/mlton/sml/mlrisc-lib/sparc/mltree/sparc.sml.orig
lib/mlton/sml/mlrisc-lib/sparc/mltree/sparcPseudoInstr.sig
lib/mlton/sml/mlrisc-lib/sparc/ra/sparcRegAlloc.sml
lib/mlton/sml/mlrisc-lib/sparc/ra/sparcRewrite.sml
lib/mlton/sml/mlrisc-lib/sparc/ra/sparcSpillInstr.sml
-lib/mlton/sml/mlrisc-lib/sparc/sparc.mdl
-lib/mlton/sml/mlrisc-lib/staged-alloc/README
lib/mlton/sml/mlrisc-lib/staged-alloc/allocator/staged-allocation-fn.sml
lib/mlton/sml/mlrisc-lib/staged-alloc/allocator/staged-allocation-sig.sml
lib/mlton/sml/mlrisc-lib/staged-alloc/conventions/c-loc-kind.sml
@@ -2065,7 +1312,6 @@ lib/mlton/sml/mlrisc-lib/staged-alloc/conventions/x86-64-c-fn.sml
lib/mlton/sml/mlrisc-lib/staged-alloc/conventions/x86-c-fn.sml
lib/mlton/sml/mlrisc-lib/visualization/allDisplays.sml
lib/mlton/sml/mlrisc-lib/visualization/cfgViewer.sml
-lib/mlton/sml/mlrisc-lib/visualization/cfgViewer.sml.orig
lib/mlton/sml/mlrisc-lib/visualization/daVinci.sml
lib/mlton/sml/mlrisc-lib/visualization/dot.sml
lib/mlton/sml/mlrisc-lib/visualization/graphDisplay.sig
@@ -2073,117 +1319,101 @@ lib/mlton/sml/mlrisc-lib/visualization/graphLayout.sml
lib/mlton/sml/mlrisc-lib/visualization/graphViewer.sig
lib/mlton/sml/mlrisc-lib/visualization/graphViewer.sml
lib/mlton/sml/mlrisc-lib/visualization/mlrisc-format-insn.sml
-lib/mlton/sml/mlrisc-lib/visualization/sources.cm
lib/mlton/sml/mlrisc-lib/visualization/vcg.sml
-lib/mlton/sml/mlrisc-lib/x86/README.x86
lib/mlton/sml/mlrisc-lib/x86/backpatch/x86Jumps.sml
-lib/mlton/sml/mlrisc-lib/x86/backpatch/x86Jumps.sml.orig
lib/mlton/sml/mlrisc-lib/x86/c-calls/ia32-svid.sml
-lib/mlton/sml/mlrisc-lib/x86/c-calls/ia32-svid.sml.orig
lib/mlton/sml/mlrisc-lib/x86/emit/x86Asm.sml
-lib/mlton/sml/mlrisc-lib/x86/emit/x86Asm.sml.orig
lib/mlton/sml/mlrisc-lib/x86/emit/x86MC.sml
lib/mlton/sml/mlrisc-lib/x86/flowgraph/x86-darwin-pseudo-ops.sml
-lib/mlton/sml/mlrisc-lib/x86/flowgraph/x86-darwin-pseudo-ops.sml.orig
lib/mlton/sml/mlrisc-lib/x86/flowgraph/x86GasPseudoOps.sml
-lib/mlton/sml/mlrisc-lib/x86/flowgraph/x86GasPseudoOps.sml.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86-leaf-opt.sml
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Cells.sml
lib/mlton/sml/mlrisc-lib/x86/instructions/x86FreqProps.sml
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Instr.sml
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86Instr.sml.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86MemRegs.sig
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86Peephole.peep
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86Peephole.peep.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Peephole.sml
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86Peephole.sml.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Props.sml
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86Props.sml.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Shuffle.sig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86Shuffle.sml
lib/mlton/sml/mlrisc-lib/x86/instructions/x86comp-instr-ext.sml
-lib/mlton/sml/mlrisc-lib/x86/instructions/x86comp-instr-ext.sml.orig
lib/mlton/sml/mlrisc-lib/x86/instructions/x86instr-ext.sml
lib/mlton/sml/mlrisc-lib/x86/mltree/orig-x86-fp.sml
lib/mlton/sml/mlrisc-lib/x86/mltree/x86-fp.sml
-lib/mlton/sml/mlrisc-lib/x86/mltree/x86-fp.sml.orig
lib/mlton/sml/mlrisc-lib/x86/mltree/x86.sml
-lib/mlton/sml/mlrisc-lib/x86/mltree/x86.sml.orig
lib/mlton/sml/mlrisc-lib/x86/mltree/x86RA.sml
lib/mlton/sml/mlrisc-lib/x86/omit-frameptr/x86omit-frameptr.sml
-lib/mlton/sml/mlrisc-lib/x86/omit-frameptr/x86omit-frameptr.sml.orig
lib/mlton/sml/mlrisc-lib/x86/ra/x86PseudoR.sml
lib/mlton/sml/mlrisc-lib/x86/ra/x86RA.sml
-lib/mlton/sml/mlrisc-lib/x86/ra/x86RA.sml.orig
lib/mlton/sml/mlrisc-lib/x86/ra/x86RegAlloc.sml
lib/mlton/sml/mlrisc-lib/x86/ra/x86Rewrite.sig
-lib/mlton/sml/mlrisc-lib/x86/ra/x86Rewrite.sig.orig
lib/mlton/sml/mlrisc-lib/x86/ra/x86Rewrite.sml
lib/mlton/sml/mlrisc-lib/x86/ra/x86SpillInstr.sml
-lib/mlton/sml/mlrisc-lib/x86/ra/x86SpillInstr.sml.orig
-lib/mlton/sml/mlrisc-lib/x86/x86.mdl
-lib/mlton/sml/mlrisc-lib/x86/x86.mdl.orig
lib/mlton/sml/mlrisc-lib/x86/x86MC.sml
-lib/mlton/sml/mlrisc-lib/x86/x86MC.sml.orig
lib/mlton/sml/mlyacc-lib/base.sig
lib/mlton/sml/mlyacc-lib/join.sml
lib/mlton/sml/mlyacc-lib/lrtable.sml
-lib/mlton/sml/mlyacc-lib/ml-yacc-lib.cm
lib/mlton/sml/mlyacc-lib/mlyacc-lib.mlb
lib/mlton/sml/mlyacc-lib/parser1.sml
lib/mlton/sml/mlyacc-lib/parser2.sml
lib/mlton/sml/mlyacc-lib/stream.sml
-lib/mlton/sml/smlnj-lib/CHANGES
-lib/mlton/sml/smlnj-lib/CPP/README
-lib/mlton/sml/smlnj-lib/Controls/README
+lib/mlton/sml/smlnj-lib/Controls/control-registry-sig.sml
+lib/mlton/sml/smlnj-lib/Controls/control-registry.sml
lib/mlton/sml/smlnj-lib/Controls/control-reps.sml
lib/mlton/sml/smlnj-lib/Controls/control-set-sig.sml
lib/mlton/sml/smlnj-lib/Controls/control-set.sml
lib/mlton/sml/smlnj-lib/Controls/control-util-sig.sml
lib/mlton/sml/smlnj-lib/Controls/control-util.sml
-lib/mlton/sml/smlnj-lib/Controls/controls-lib.cm
lib/mlton/sml/smlnj-lib/Controls/controls-lib.mlb
-lib/mlton/sml/smlnj-lib/Controls/controls-lib.mlb.orig
lib/mlton/sml/smlnj-lib/Controls/controls-sig.sml
lib/mlton/sml/smlnj-lib/Controls/controls.sml
-lib/mlton/sml/smlnj-lib/Controls/registry-sig.sml
-lib/mlton/sml/smlnj-lib/Controls/registry.sml
-lib/mlton/sml/smlnj-lib/HTML/HTML32.dtd
-lib/mlton/sml/smlnj-lib/HTML/README
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/copy-file.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/gen-toc.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/main.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/options.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/run-asciidoctor.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-pages/util.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/gen-toc/gen-toc.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/index/extract-index.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/index/file-tree.sml
+lib/mlton/sml/smlnj-lib/Doc/tools/make-index/make-index.sml
lib/mlton/sml/smlnj-lib/HTML/check-html-fn.sml
lib/mlton/sml/smlnj-lib/HTML/html-attr-vals.sml
lib/mlton/sml/smlnj-lib/HTML/html-attrs-fn.sml
-lib/mlton/sml/smlnj-lib/HTML/html-attrs-fn.sml.orig
lib/mlton/sml/smlnj-lib/HTML/html-attrs-sig.sml
lib/mlton/sml/smlnj-lib/HTML/html-defaults.sml
lib/mlton/sml/smlnj-lib/HTML/html-elements-fn.sml
-lib/mlton/sml/smlnj-lib/HTML/html-elements-fn.sml.orig
lib/mlton/sml/smlnj-lib/HTML/html-error-sig.sml
-lib/mlton/sml/smlnj-lib/HTML/html-gram
-lib/mlton/sml/smlnj-lib/HTML/html-gram.desc
-lib/mlton/sml/smlnj-lib/HTML/html-gram.desc.orig
lib/mlton/sml/smlnj-lib/HTML/html-gram.sig
-lib/mlton/sml/smlnj-lib/HTML/html-gram.sig.orig
lib/mlton/sml/smlnj-lib/HTML/html-gram.sml
-lib/mlton/sml/smlnj-lib/HTML/html-gram.sml.orig
-lib/mlton/sml/smlnj-lib/HTML/html-lex
lib/mlton/sml/smlnj-lib/HTML/html-lex.sml
-lib/mlton/sml/smlnj-lib/HTML/html-lex.sml.orig
-lib/mlton/sml/smlnj-lib/HTML/html-lib.cm
lib/mlton/sml/smlnj-lib/HTML/html-lib.mlb
-lib/mlton/sml/smlnj-lib/HTML/html-lib.mlb.orig
lib/mlton/sml/smlnj-lib/HTML/html-parser-fn.sml
lib/mlton/sml/smlnj-lib/HTML/html-sig.sml
lib/mlton/sml/smlnj-lib/HTML/html.sml
lib/mlton/sml/smlnj-lib/HTML/make-html.sml
lib/mlton/sml/smlnj-lib/HTML/pr-html.sml
lib/mlton/sml/smlnj-lib/HTML/test-parser.sml
-lib/mlton/sml/smlnj-lib/HashCons/README
+lib/mlton/sml/smlnj-lib/HTML4/html4-attr.g.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-attr.l.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-attrs.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-entities.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-lex-test-toks.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-lex-test.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-lib.mlb
+lib/mlton/sml/smlnj-lib/HTML4/html4-parser.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-print.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-printer.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-test.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-token-utils.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4-utils.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4.g.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4.l.sml
+lib/mlton/sml/smlnj-lib/HTML4/html4.sig
+lib/mlton/sml/smlnj-lib/HTML4/html4.sml
+lib/mlton/sml/smlnj-lib/HTML4/pp-init.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-atom.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-ground-fn.sml
-lib/mlton/sml/smlnj-lib/HashCons/hash-cons-lib.cm
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-lib.mlb
-lib/mlton/sml/smlnj-lib/HashCons/hash-cons-lib.mlb.orig
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-map-sig.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-map.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-set-sig.sml
@@ -2191,38 +1421,35 @@ lib/mlton/sml/smlnj-lib/HashCons/hash-cons-set.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-sig.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons-string.sml
lib/mlton/sml/smlnj-lib/HashCons/hash-cons.sml
-lib/mlton/sml/smlnj-lib/INet/inet-lib.cm
lib/mlton/sml/smlnj-lib/INet/inet-lib.mlb
-lib/mlton/sml/smlnj-lib/INet/inet-lib.mlb.orig
lib/mlton/sml/smlnj-lib/INet/sock-util-sig.sml
lib/mlton/sml/smlnj-lib/INet/sock-util.sml
lib/mlton/sml/smlnj-lib/INet/unix-sock-util.sml
-lib/mlton/sml/smlnj-lib/JSON/README
-lib/mlton/sml/smlnj-lib/JSON/json-lib.cm
lib/mlton/sml/smlnj-lib/JSON/json-lib.mlb
-lib/mlton/sml/smlnj-lib/JSON/json-lib.mlb.orig
lib/mlton/sml/smlnj-lib/JSON/json-parser.sml
lib/mlton/sml/smlnj-lib/JSON/json-printer.sml
+lib/mlton/sml/smlnj-lib/JSON/json-source.sml
lib/mlton/sml/smlnj-lib/JSON/json-stream-parser.sml
lib/mlton/sml/smlnj-lib/JSON/json-stream-printer.sml
lib/mlton/sml/smlnj-lib/JSON/json-tokens.sml
-lib/mlton/sml/smlnj-lib/JSON/json.lex
+lib/mlton/sml/smlnj-lib/JSON/json-util.sml
lib/mlton/sml/smlnj-lib/JSON/json.lex.sml
lib/mlton/sml/smlnj-lib/JSON/json.sml
-lib/mlton/sml/smlnj-lib/PORTING
-lib/mlton/sml/smlnj-lib/PP/README
lib/mlton/sml/smlnj-lib/PP/devices/ansi-term-dev.sml
lib/mlton/sml/smlnj-lib/PP/devices/ansi-term-pp.sml
-lib/mlton/sml/smlnj-lib/PP/devices/html-dev.sml
+lib/mlton/sml/smlnj-lib/PP/devices/char-buffer-dev.sml
+lib/mlton/sml/smlnj-lib/PP/devices/char-buffer-pp.sml
+lib/mlton/sml/smlnj-lib/PP/devices/default-device-fn.sml
+lib/mlton/sml/smlnj-lib/PP/devices/html3-dev.sml
lib/mlton/sml/smlnj-lib/PP/devices/simple-textio-dev.sml
-lib/mlton/sml/smlnj-lib/PP/devices/sources.cm
lib/mlton/sml/smlnj-lib/PP/devices/string-token.sml
+lib/mlton/sml/smlnj-lib/PP/devices/text-pp.sml
lib/mlton/sml/smlnj-lib/PP/devices/textio-pp.sml
-lib/mlton/sml/smlnj-lib/PP/examples/old-pp.sml
-lib/mlton/sml/smlnj-lib/PP/pp-lib.cm
+lib/mlton/sml/smlnj-lib/PP/mono-buffer/mono-buffer.fun
+lib/mlton/sml/smlnj-lib/PP/mono-buffer/mono-buffer.mlb
+lib/mlton/sml/smlnj-lib/PP/mono-buffer/mono-buffer.sig
+lib/mlton/sml/smlnj-lib/PP/mono-buffer/mono-buffer.sml
lib/mlton/sml/smlnj-lib/PP/pp-lib.mlb
-lib/mlton/sml/smlnj-lib/PP/pp-lib.mlb.orig
-lib/mlton/sml/smlnj-lib/PP/src/FORMAT
lib/mlton/sml/smlnj-lib/PP/src/pp-debug-fn.sml
lib/mlton/sml/smlnj-lib/PP/src/pp-desc-fn.sml
lib/mlton/sml/smlnj-lib/PP/src/pp-desc-sig.sml
@@ -2230,19 +1457,9 @@ lib/mlton/sml/smlnj-lib/PP/src/pp-device-sig.sml
lib/mlton/sml/smlnj-lib/PP/src/pp-stream-fn.sml
lib/mlton/sml/smlnj-lib/PP/src/pp-stream-sig.sml
lib/mlton/sml/smlnj-lib/PP/src/pp-token-sig.sml
-lib/mlton/sml/smlnj-lib/PP/src/sources.cm
-lib/mlton/sml/smlnj-lib/PP/tests/base.sml
-lib/mlton/sml/smlnj-lib/PP/tests/out
-lib/mlton/sml/smlnj-lib/PP/tests/sources.cm
-lib/mlton/sml/smlnj-lib/PP/tests/test-html.sml
-lib/mlton/sml/smlnj-lib/PP/tests/test.sml
-lib/mlton/sml/smlnj-lib/PP/tests/typp.sml
-lib/mlton/sml/smlnj-lib/Reactive/README
lib/mlton/sml/smlnj-lib/Reactive/instruction.sml
lib/mlton/sml/smlnj-lib/Reactive/machine.sml
-lib/mlton/sml/smlnj-lib/Reactive/reactive-lib.cm
lib/mlton/sml/smlnj-lib/Reactive/reactive-lib.mlb
-lib/mlton/sml/smlnj-lib/Reactive/reactive-lib.mlb.orig
lib/mlton/sml/smlnj-lib/Reactive/reactive-sig.sml
lib/mlton/sml/smlnj-lib/Reactive/reactive.sml
lib/mlton/sml/smlnj-lib/RegExp/BackEnd/bt-engine.sml
@@ -2257,30 +1474,28 @@ lib/mlton/sml/smlnj-lib/RegExp/FrontEnd/syntax.sml
lib/mlton/sml/smlnj-lib/RegExp/Glue/match-tree.sml
lib/mlton/sml/smlnj-lib/RegExp/Glue/regexp-fn.sml
lib/mlton/sml/smlnj-lib/RegExp/Glue/regexp-sig.sml
-lib/mlton/sml/smlnj-lib/RegExp/README
-lib/mlton/sml/smlnj-lib/RegExp/Tests/engines.sml
-lib/mlton/sml/smlnj-lib/RegExp/Tests/run.sh
-lib/mlton/sml/smlnj-lib/RegExp/Tests/sources.cm
-lib/mlton/sml/smlnj-lib/RegExp/Tests/test-fn.sml
-lib/mlton/sml/smlnj-lib/RegExp/regexp-lib.cm
lib/mlton/sml/smlnj-lib/RegExp/regexp-lib.mlb
-lib/mlton/sml/smlnj-lib/RegExp/regexp-lib.mlb.orig
-lib/mlton/sml/smlnj-lib/TODO
+lib/mlton/sml/smlnj-lib/SExp/sexp-lib.mlb
+lib/mlton/sml/smlnj-lib/SExp/sexp-parser.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp-pp.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp-printer.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp-tests.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp-tokens.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp.lex.sml
+lib/mlton/sml/smlnj-lib/SExp/sexp.sml
+lib/mlton/sml/smlnj-lib/SExp/test-pp.sml
+lib/mlton/sml/smlnj-lib/UUID/gen-uuid.sml
+lib/mlton/sml/smlnj-lib/UUID/uuid-lib.mlb
+lib/mlton/sml/smlnj-lib/UUID/uuid.sml
lib/mlton/sml/smlnj-lib/Unix/unix-env-sig.sml
lib/mlton/sml/smlnj-lib/Unix/unix-env.sml
-lib/mlton/sml/smlnj-lib/Unix/unix-lib.cm
lib/mlton/sml/smlnj-lib/Unix/unix-lib.mlb
-lib/mlton/sml/smlnj-lib/Unix/unix-lib.mlb.orig
lib/mlton/sml/smlnj-lib/Unix/unix-path-sig.sml
lib/mlton/sml/smlnj-lib/Unix/unix-path.sml
-lib/mlton/sml/smlnj-lib/Util/README
-lib/mlton/sml/smlnj-lib/Util/TODO
lib/mlton/sml/smlnj-lib/Util/ansi-term.sml
lib/mlton/sml/smlnj-lib/Util/array-qsort-fn.sml
lib/mlton/sml/smlnj-lib/Util/array-qsort.sml
lib/mlton/sml/smlnj-lib/Util/array-sort-sig.sml
-lib/mlton/sml/smlnj-lib/Util/array2-sig.sml
-lib/mlton/sml/smlnj-lib/Util/array2.sml
lib/mlton/sml/smlnj-lib/Util/atom-binary-map.sml
lib/mlton/sml/smlnj-lib/Util/atom-binary-set.sml
lib/mlton/sml/smlnj-lib/Util/atom-map.sml
@@ -2290,13 +1505,12 @@ lib/mlton/sml/smlnj-lib/Util/atom-set.sml
lib/mlton/sml/smlnj-lib/Util/atom-sig.sml
lib/mlton/sml/smlnj-lib/Util/atom-table.sml
lib/mlton/sml/smlnj-lib/Util/atom.sml
+lib/mlton/sml/smlnj-lib/Util/base64-sig.sml
+lib/mlton/sml/smlnj-lib/Util/base64.sml
lib/mlton/sml/smlnj-lib/Util/binary-map-fn.sml
lib/mlton/sml/smlnj-lib/Util/binary-set-fn.sml
lib/mlton/sml/smlnj-lib/Util/bit-array-sig.sml
lib/mlton/sml/smlnj-lib/Util/bit-array.sml
-lib/mlton/sml/smlnj-lib/Util/bit-array.sml.orig
-lib/mlton/sml/smlnj-lib/Util/bit-vector-sig.sml
-lib/mlton/sml/smlnj-lib/Util/bit-vector.sml
lib/mlton/sml/smlnj-lib/Util/bsearch-fn.sml
lib/mlton/sml/smlnj-lib/Util/char-map-sig.sml
lib/mlton/sml/smlnj-lib/Util/char-map.sml
@@ -2304,10 +1518,10 @@ lib/mlton/sml/smlnj-lib/Util/dynamic-array-fn.sml
lib/mlton/sml/smlnj-lib/Util/dynamic-array-sig.sml
lib/mlton/sml/smlnj-lib/Util/dynamic-array.sml
lib/mlton/sml/smlnj-lib/Util/engine.mlton.sml
-lib/mlton/sml/smlnj-lib/Util/engine.mlton.sml.orig
lib/mlton/sml/smlnj-lib/Util/fifo-sig.sml
lib/mlton/sml/smlnj-lib/Util/fifo.sml
lib/mlton/sml/smlnj-lib/Util/fmt-fields.sml
+lib/mlton/sml/smlnj-lib/Util/fnv-hash.sml
lib/mlton/sml/smlnj-lib/Util/format-comb-sig.sml
lib/mlton/sml/smlnj-lib/Util/format-comb.sml
lib/mlton/sml/smlnj-lib/Util/format-sig.sml
@@ -2315,9 +1529,9 @@ lib/mlton/sml/smlnj-lib/Util/format.sml
lib/mlton/sml/smlnj-lib/Util/getopt-sig.sml
lib/mlton/sml/smlnj-lib/Util/getopt.sml
lib/mlton/sml/smlnj-lib/Util/graph-scc-fn.sml
-lib/mlton/sml/smlnj-lib/Util/graph-scc-fn.sml.orig
lib/mlton/sml/smlnj-lib/Util/graph-scc-sig.sml
lib/mlton/sml/smlnj-lib/Util/hash-key-sig.sml
+lib/mlton/sml/smlnj-lib/Util/hash-set-fn.sml
lib/mlton/sml/smlnj-lib/Util/hash-string.sml
lib/mlton/sml/smlnj-lib/Util/hash-table-fn.sml
lib/mlton/sml/smlnj-lib/Util/hash-table-rep.sml
@@ -2350,10 +1564,10 @@ lib/mlton/sml/smlnj-lib/Util/list-set-fn.sml
lib/mlton/sml/smlnj-lib/Util/list-xprod-sig.sml
lib/mlton/sml/smlnj-lib/Util/list-xprod.sml
lib/mlton/sml/smlnj-lib/Util/listsort-sig.sml
-lib/mlton/sml/smlnj-lib/Util/load
lib/mlton/sml/smlnj-lib/Util/mono-array-fn.sml
lib/mlton/sml/smlnj-lib/Util/mono-array-sort-sig.sml
lib/mlton/sml/smlnj-lib/Util/mono-dynamic-array-sig.sml
+lib/mlton/sml/smlnj-lib/Util/mono-hash-set-sig.sml
lib/mlton/sml/smlnj-lib/Util/mono-hash-table-sig.sml
lib/mlton/sml/smlnj-lib/Util/mono-hash2-table-sig.sml
lib/mlton/sml/smlnj-lib/Util/mono-priorityq-sig.sml
@@ -2366,7 +1580,6 @@ lib/mlton/sml/smlnj-lib/Util/path-util-sig.sml
lib/mlton/sml/smlnj-lib/Util/path-util.sml
lib/mlton/sml/smlnj-lib/Util/plist-sig.sml
lib/mlton/sml/smlnj-lib/Util/plist.sml
-lib/mlton/sml/smlnj-lib/Util/prime-sizes.sml
lib/mlton/sml/smlnj-lib/Util/priority-sig.sml
lib/mlton/sml/smlnj-lib/Util/queue-sig.sml
lib/mlton/sml/smlnj-lib/Util/queue.sml
@@ -2376,25 +1589,20 @@ lib/mlton/sml/smlnj-lib/Util/random-sig.sml
lib/mlton/sml/smlnj-lib/Util/random.sml
lib/mlton/sml/smlnj-lib/Util/real-format.sml
lib/mlton/sml/smlnj-lib/Util/real-order-stats.sml
-lib/mlton/sml/smlnj-lib/Util/real-order-stats.sml.orig
lib/mlton/sml/smlnj-lib/Util/redblack-map-fn.sml
-lib/mlton/sml/smlnj-lib/Util/redblack-map-fn.sml.orig
lib/mlton/sml/smlnj-lib/Util/redblack-set-fn.sml
-lib/mlton/sml/smlnj-lib/Util/redblack-set-fn.sml.orig
lib/mlton/sml/smlnj-lib/Util/scan-sig.sml
lib/mlton/sml/smlnj-lib/Util/scan.sml
lib/mlton/sml/smlnj-lib/Util/simple-uref.sml
-lib/mlton/sml/smlnj-lib/Util/smlnj-lib.cm
lib/mlton/sml/smlnj-lib/Util/smlnj-lib.mlb
-lib/mlton/sml/smlnj-lib/Util/smlnj-lib.mlb.orig
lib/mlton/sml/smlnj-lib/Util/splay-map-fn.sml
lib/mlton/sml/smlnj-lib/Util/splay-set-fn.sml
lib/mlton/sml/smlnj-lib/Util/splaytree-sig.sml
lib/mlton/sml/smlnj-lib/Util/splaytree.sml
+lib/mlton/sml/smlnj-lib/Util/target32-prime-sizes.sml
+lib/mlton/sml/smlnj-lib/Util/target64-prime-sizes.sml
lib/mlton/sml/smlnj-lib/Util/time-limit.mlb
-lib/mlton/sml/smlnj-lib/Util/time-limit.mlb.orig
lib/mlton/sml/smlnj-lib/Util/time-limit.mlton.sml
-lib/mlton/sml/smlnj-lib/Util/time-limit.mlton.sml.orig
lib/mlton/sml/smlnj-lib/Util/time-limit.sml
lib/mlton/sml/smlnj-lib/Util/univariate-stats.sml
lib/mlton/sml/smlnj-lib/Util/uref-sig.sml
@@ -2404,445 +1612,36 @@ lib/mlton/sml/smlnj-lib/Util/utf8.sml
lib/mlton/sml/smlnj-lib/Util/word-hash-table.sml
lib/mlton/sml/smlnj-lib/Util/word-redblack-map.sml
lib/mlton/sml/smlnj-lib/Util/word-redblack-set.sml
-lib/mlton/sml/smlnj-lib/XML/README
-lib/mlton/sml/smlnj-lib/XML/xml-lib.cm
-lib/mlton/sml/smlnj-lib/XML/xml-sig.sml
+lib/mlton/sml/smlnj-lib/XML/generic-xml-tree.sml
+lib/mlton/sml/smlnj-lib/XML/xml-lexer.lex.sml
+lib/mlton/sml/smlnj-lib/XML/xml-lib.mlb
+lib/mlton/sml/smlnj-lib/XML/xml-parser-fn.sml
+lib/mlton/sml/smlnj-lib/XML/xml-schema-sig.sml
+lib/mlton/sml/smlnj-lib/XML/xml-tokens.sml
+lib/mlton/sml/smlnj-lib/XML/xml-tree-fn.sml
+lib/mlton/sml/smlnj-lib/XML/xml-tree-sig.sml
lib/mlton/sml/smlnj-lib/smlnj-lib.mlb
-lib/mlton/sml/smlnj-lib/smlnj-lib.mlb.orig
lib/mlton/static-library
lib/mlton/targets/self/arch
lib/mlton/targets/self/constants
lib/mlton/targets/self/include/c-types.h
-lib/mlton/targets/self/libgdtoa-gdb.a
-lib/mlton/targets/self/libgdtoa-pic.a
+lib/mlton/targets/self/libgdtoa-dbg-npi.a
+lib/mlton/targets/self/libgdtoa-dbg.a
+lib/mlton/targets/self/libgdtoa-npi.a
lib/mlton/targets/self/libgdtoa.a
-lib/mlton/targets/self/libmlton-gdb.a
-lib/mlton/targets/self/libmlton-pic.a
+lib/mlton/targets/self/libmlton-dbg-npi.a
+lib/mlton/targets/self/libmlton-dbg.a
+lib/mlton/targets/self/libmlton-npi.a
lib/mlton/targets/self/libmlton.a
lib/mlton/targets/self/os
-lib/mlton/targets/self/sizes
lib/mlton/targets/self/sml/c-types.sml
-man/man1/mllex.1.gz
-man/man1/mlprof.1.gz
-man/man1/mlton.1.gz
-man/man1/mlyacc.1.gz
-man/man1/mlnlffigen.1.gz
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/arch
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/constants
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/include/c-types.h
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libgdtoa-gdb.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libgdtoa-pic.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libmlton-gdb.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libgdtoa.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libmlton-pic.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/libmlton.a
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/os
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/sizes
-%%MINGW32CROSS%%lib/mlton/targets/mingw32/sml/c-types.sml
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/basis/README
-%%PORTDOCS%%%%DOCSDIR%%/changelog
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/README
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/README.mlton
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/README.mlton.orig
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/doc/overview
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/doc/overview.html
-%%PORTDOCS%%%%DOCSDIR%%/ckit-lib/doc/todo
+%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.adoc
+%%PORTDOCS%%%%DOCSDIR%%/README.adoc
%%PORTDOCS%%%%DOCSDIR%%/cm2mlb/Makefile
%%PORTDOCS%%%%DOCSDIR%%/cm2mlb/cm2mlb-map
%%PORTDOCS%%%%DOCSDIR%%/cm2mlb/cm2mlb.cm
%%PORTDOCS%%%%DOCSDIR%%/cm2mlb/cm2mlb.sml
%%PORTDOCS%%%%DOCSDIR%%/cm2mlb/gen-mlb.sml
-%%PORTDOCS%%%%DOCSDIR%%/cmcat/cmcat.sml
-%%PORTDOCS%%%%DOCSDIR%%/cmcat/sources.cm
-%%PORTDOCS%%%%DOCSDIR%%/examples/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/examples/callcc.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/command-line.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/c_quot.c
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/export.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/ffi-export.c
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/ffi-import.c
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/iimport.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/import.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/import2.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/ffi/test_quot.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/finalizable/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/examples/finalizable/cons.c
-%%PORTDOCS%%%%DOCSDIR%%/examples/finalizable/finalizable.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/hello-world.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/profiling/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/examples/profiling/fib-tak.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/profiling/list-rev.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/profiling/tak.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/same-fringe.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/save-world/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/examples/save-world/save-world.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/signals.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/size.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/taut.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/thread-switch.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/thread1.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/thread2.sml
-%%PORTDOCS%%%%DOCSDIR%%/examples/timeout.sml
-%%PORTDOCS%%%%DOCSDIR%%/guide/AST
-%%PORTDOCS%%%%DOCSDIR%%/guide/AccessControl
-%%PORTDOCS%%%%DOCSDIR%%/guide/AdamGoode
-%%PORTDOCS%%%%DOCSDIR%%/guide/AdmitsEquality
-%%PORTDOCS%%%%DOCSDIR%%/guide/Alice
-%%PORTDOCS%%%%DOCSDIR%%/guide/AllocateRegisters
-%%PORTDOCS%%%%DOCSDIR%%/guide/AndreiFormiga
-%%PORTDOCS%%%%DOCSDIR%%/guide/ArrayLiteral
-%%PORTDOCS%%%%DOCSDIR%%/guide/BasisLibrary
-%%PORTDOCS%%%%DOCSDIR%%/guide/Bug
-%%PORTDOCS%%%%DOCSDIR%%/guide/Bugs20041109
-%%PORTDOCS%%%%DOCSDIR%%/guide/Bugs20051202
-%%PORTDOCS%%%%DOCSDIR%%/guide/Bugs20070826
-%%PORTDOCS%%%%DOCSDIR%%/guide/Bugs20100608
-%%PORTDOCS%%%%DOCSDIR%%/guide/CKitLibrary
-%%PORTDOCS%%%%DOCSDIR%%/guide/CMinusMinus
-%%PORTDOCS%%%%DOCSDIR%%/guide/CallGraph
-%%PORTDOCS%%%%DOCSDIR%%/guide/CallingFromCToSML
-%%PORTDOCS%%%%DOCSDIR%%/guide/CallingFromSMLToC
-%%PORTDOCS%%%%DOCSDIR%%/guide/CallingFromSMLToCFunctionPointer
-%%PORTDOCS%%%%DOCSDIR%%/guide/Changelog
-%%PORTDOCS%%%%DOCSDIR%%/guide/ChrisClearwater
-%%PORTDOCS%%%%DOCSDIR%%/guide/Chunkify
-%%PORTDOCS%%%%DOCSDIR%%/guide/Closure
-%%PORTDOCS%%%%DOCSDIR%%/guide/ClosureConvert
-%%PORTDOCS%%%%DOCSDIR%%/guide/CombineConversions
-%%PORTDOCS%%%%DOCSDIR%%/guide/CommonArg
-%%PORTDOCS%%%%DOCSDIR%%/guide/CommonBlock
-%%PORTDOCS%%%%DOCSDIR%%/guide/CommonSubexp
-%%PORTDOCS%%%%DOCSDIR%%/guide/CompilationManager
-%%PORTDOCS%%%%DOCSDIR%%/guide/CompileTimeOptions
-%%PORTDOCS%%%%DOCSDIR%%/guide/CompilerOverview
-%%PORTDOCS%%%%DOCSDIR%%/guide/CompilerPassTemplate
-%%PORTDOCS%%%%DOCSDIR%%/guide/CompilingWithSMLNJ
-%%PORTDOCS%%%%DOCSDIR%%/guide/ConcurrentML
-%%PORTDOCS%%%%DOCSDIR%%/guide/ConcurrentMLImplementation
-%%PORTDOCS%%%%DOCSDIR%%/guide/ConstantPropagation
-%%PORTDOCS%%%%DOCSDIR%%/guide/Contact
-%%PORTDOCS%%%%DOCSDIR%%/guide/Contify
-%%PORTDOCS%%%%DOCSDIR%%/guide/CoreML
-%%PORTDOCS%%%%DOCSDIR%%/guide/CoreMLSimplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/CreatingPages
-%%PORTDOCS%%%%DOCSDIR%%/guide/Credits
-%%PORTDOCS%%%%DOCSDIR%%/guide/CrossCompiling
-%%PORTDOCS%%%%DOCSDIR%%/guide/DeadCode
-%%PORTDOCS%%%%DOCSDIR%%/guide/DeepFlatten
-%%PORTDOCS%%%%DOCSDIR%%/guide/DefineTypeBeforeUse
-%%PORTDOCS%%%%DOCSDIR%%/guide/DefinitionOfStandardML
-%%PORTDOCS%%%%DOCSDIR%%/guide/Defunctorize
-%%PORTDOCS%%%%DOCSDIR%%/guide/Developers
-%%PORTDOCS%%%%DOCSDIR%%/guide/Development
-%%PORTDOCS%%%%DOCSDIR%%/guide/Documentation
-%%PORTDOCS%%%%DOCSDIR%%/guide/Drawbacks
-%%PORTDOCS%%%%DOCSDIR%%/guide/Eclipse
-%%PORTDOCS%%%%DOCSDIR%%/guide/EditingPages
-%%PORTDOCS%%%%DOCSDIR%%/guide/Elaborate
-%%PORTDOCS%%%%DOCSDIR%%/guide/Emacs
-%%PORTDOCS%%%%DOCSDIR%%/guide/EmacsBgBuildMode
-%%PORTDOCS%%%%DOCSDIR%%/guide/EmacsDefUseMode
-%%PORTDOCS%%%%DOCSDIR%%/guide/Enscript
-%%PORTDOCS%%%%DOCSDIR%%/guide/EqualityType
-%%PORTDOCS%%%%DOCSDIR%%/guide/EqualityTypeVariable
-%%PORTDOCS%%%%DOCSDIR%%/guide/EtaExpansion
-%%PORTDOCS%%%%DOCSDIR%%/guide/FAQ
-%%PORTDOCS%%%%DOCSDIR%%/guide/FSharp
-%%PORTDOCS%%%%DOCSDIR%%/guide/Features
-%%PORTDOCS%%%%DOCSDIR%%/guide/FirstClassPolymorphism
-%%PORTDOCS%%%%DOCSDIR%%/guide/Fixpoints
-%%PORTDOCS%%%%DOCSDIR%%/guide/Flatten
-%%PORTDOCS%%%%DOCSDIR%%/guide/Fold
-%%PORTDOCS%%%%DOCSDIR%%/guide/Fold01N
-%%PORTDOCS%%%%DOCSDIR%%/guide/ForLoops
-%%PORTDOCS%%%%DOCSDIR%%/guide/ForeignFunctionInterface
-%%PORTDOCS%%%%DOCSDIR%%/guide/ForeignFunctionInterfaceSyntax
-%%PORTDOCS%%%%DOCSDIR%%/guide/ForeignFunctionInterfaceTypes
-%%PORTDOCS%%%%DOCSDIR%%/guide/FrontEnd
-%%PORTDOCS%%%%DOCSDIR%%/guide/FunctionalRecordUpdate
-%%PORTDOCS%%%%DOCSDIR%%/guide/GarbageCollection
-%%PORTDOCS%%%%DOCSDIR%%/guide/GenerativeDatatype
-%%PORTDOCS%%%%DOCSDIR%%/guide/GenerativeException
-%%PORTDOCS%%%%DOCSDIR%%/guide/Glade
-%%PORTDOCS%%%%DOCSDIR%%/guide/Globalize
-%%PORTDOCS%%%%DOCSDIR%%/guide/GnuMP
-%%PORTDOCS%%%%DOCSDIR%%/guide/HaMLet
-%%PORTDOCS%%%%DOCSDIR%%/guide/HenryCejtin
-%%PORTDOCS%%%%DOCSDIR%%/guide/History
-%%PORTDOCS%%%%DOCSDIR%%/guide/Home
-%%PORTDOCS%%%%DOCSDIR%%/guide/HowProfilingWorks
-%%PORTDOCS%%%%DOCSDIR%%/guide/HowToAttachFile
-%%PORTDOCS%%%%DOCSDIR%%/guide/Identifier
-%%PORTDOCS%%%%DOCSDIR%%/guide/Immutable
-%%PORTDOCS%%%%DOCSDIR%%/guide/ImperativeTypeVariable
-%%PORTDOCS%%%%DOCSDIR%%/guide/ImplementExceptions
-%%PORTDOCS%%%%DOCSDIR%%/guide/ImplementHandlers
-%%PORTDOCS%%%%DOCSDIR%%/guide/ImplementProfiling
-%%PORTDOCS%%%%DOCSDIR%%/guide/ImplementSuffix
-%%PORTDOCS%%%%DOCSDIR%%/guide/Index
-%%PORTDOCS%%%%DOCSDIR%%/guide/InfixingOperators
-%%PORTDOCS%%%%DOCSDIR%%/guide/Inline
-%%PORTDOCS%%%%DOCSDIR%%/guide/InsertLimitChecks
-%%PORTDOCS%%%%DOCSDIR%%/guide/InsertSignalChecks
-%%PORTDOCS%%%%DOCSDIR%%/guide/Installation
-%%PORTDOCS%%%%DOCSDIR%%/guide/IntermediateLanguage
-%%PORTDOCS%%%%DOCSDIR%%/guide/IntroduceLoops
-%%PORTDOCS%%%%DOCSDIR%%/guide/JesperLouisAndersen
-%%PORTDOCS%%%%DOCSDIR%%/guide/JohnnyAndersen
-%%PORTDOCS%%%%DOCSDIR%%/guide/KnownCase
-%%PORTDOCS%%%%DOCSDIR%%/guide/LLVM
-%%PORTDOCS%%%%DOCSDIR%%/guide/LambdaCalculus
-%%PORTDOCS%%%%DOCSDIR%%/guide/LambdaFree
-%%PORTDOCS%%%%DOCSDIR%%/guide/LanguageChanges
-%%PORTDOCS%%%%DOCSDIR%%/guide/Lazy
-%%PORTDOCS%%%%DOCSDIR%%/guide/Libraries
-%%PORTDOCS%%%%DOCSDIR%%/guide/LibrarySupport
-%%PORTDOCS%%%%DOCSDIR%%/guide/License
-%%PORTDOCS%%%%DOCSDIR%%/guide/LineDirective
-%%PORTDOCS%%%%DOCSDIR%%/guide/LocalFlatten
-%%PORTDOCS%%%%DOCSDIR%%/guide/LocalRef
-%%PORTDOCS%%%%DOCSDIR%%/guide/LoopInvariant
-%%PORTDOCS%%%%DOCSDIR%%/guide/ML
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasis
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisAnnotationExamples
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisAnnotations
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisAvailableLibraries
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisExamples
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisPathMap
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLBasisSyntaxAndSemantics
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLKit
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLLex
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLNLFFI
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLNLFFIGen
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLNLFFIImplementation
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLRISCLibrary
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLTONWIKIVERSION
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLYacc
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLj
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLmon
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonArray
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonBinIO
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonCont
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonContIsolateImplementation
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonExn
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonFinalizable
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonGC
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonIO
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonIntInf
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonItimer
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonMonoArray
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonMonoVector
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonPlatform
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonPointer
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonProcEnv
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonProcess
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonProfile
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonRandom
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonReal
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonRlimit
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonRusage
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonSignal
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonSocket
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonStructure
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonSyslog
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonTextIO
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonThread
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonVector
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonWeak
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonWord
-%%PORTDOCS%%%%DOCSDIR%%/guide/MLtonWorld
-%%PORTDOCS%%%%DOCSDIR%%/guide/Machine
-%%PORTDOCS%%%%DOCSDIR%%/guide/ManualPage
-%%PORTDOCS%%%%DOCSDIR%%/guide/MatchCompilation
-%%PORTDOCS%%%%DOCSDIR%%/guide/MatchCompile
-%%PORTDOCS%%%%DOCSDIR%%/guide/MatthewFluet
-%%PORTDOCS%%%%DOCSDIR%%/guide/MichaelNorrish
-%%PORTDOCS%%%%DOCSDIR%%/guide/MikeThomas
-%%PORTDOCS%%%%DOCSDIR%%/guide/MoinMoin
-%%PORTDOCS%%%%DOCSDIR%%/guide/Monomorphise
-%%PORTDOCS%%%%DOCSDIR%%/guide/MoscowML
-%%PORTDOCS%%%%DOCSDIR%%/guide/Multi
-%%PORTDOCS%%%%DOCSDIR%%/guide/Mutable
-%%PORTDOCS%%%%DOCSDIR%%/guide/NeedsReview
-%%PORTDOCS%%%%DOCSDIR%%/guide/NumericLiteral
-%%PORTDOCS%%%%DOCSDIR%%/guide/OCaml
-%%PORTDOCS%%%%DOCSDIR%%/guide/ObjectOrientedProgramming
-%%PORTDOCS%%%%DOCSDIR%%/guide/OpenGL
-%%PORTDOCS%%%%DOCSDIR%%/guide/OperatorPrecedence
-%%PORTDOCS%%%%DOCSDIR%%/guide/OptionalArguments
-%%PORTDOCS%%%%DOCSDIR%%/guide/OrphanedPages
-%%PORTDOCS%%%%DOCSDIR%%/guide/OtherSites
-%%PORTDOCS%%%%DOCSDIR%%/guide/Overloading
-%%PORTDOCS%%%%DOCSDIR%%/guide/PackedRepresentation
-%%PORTDOCS%%%%DOCSDIR%%/guide/PageSize
-%%PORTDOCS%%%%DOCSDIR%%/guide/ParallelMove
-%%PORTDOCS%%%%DOCSDIR%%/guide/Performance
-%%PORTDOCS%%%%DOCSDIR%%/guide/PhantomType
-%%PORTDOCS%%%%DOCSDIR%%/guide/PlatformSpecificNotes
-%%PORTDOCS%%%%DOCSDIR%%/guide/PolyEqual
-%%PORTDOCS%%%%DOCSDIR%%/guide/PolyHash
-%%PORTDOCS%%%%DOCSDIR%%/guide/PolyML
-%%PORTDOCS%%%%DOCSDIR%%/guide/PolymorphicEquality
-%%PORTDOCS%%%%DOCSDIR%%/guide/Polyvariance
-%%PORTDOCS%%%%DOCSDIR%%/guide/Poplog
-%%PORTDOCS%%%%DOCSDIR%%/guide/PortingMLton
-%%PORTDOCS%%%%DOCSDIR%%/guide/PrecedenceParse
-%%PORTDOCS%%%%DOCSDIR%%/guide/Printf
-%%PORTDOCS%%%%DOCSDIR%%/guide/PrintfGentle
-%%PORTDOCS%%%%DOCSDIR%%/guide/ProductType
-%%PORTDOCS%%%%DOCSDIR%%/guide/Profiling
-%%PORTDOCS%%%%DOCSDIR%%/guide/ProfilingAllocation
-%%PORTDOCS%%%%DOCSDIR%%/guide/ProfilingCounts
-%%PORTDOCS%%%%DOCSDIR%%/guide/ProfilingTheStack
-%%PORTDOCS%%%%DOCSDIR%%/guide/ProfilingTime
-%%PORTDOCS%%%%DOCSDIR%%/guide/Projects
-%%PORTDOCS%%%%DOCSDIR%%/guide/Pronounce
-%%PORTDOCS%%%%DOCSDIR%%/guide/PropertyList
-%%PORTDOCS%%%%DOCSDIR%%/guide/RSSA
-%%PORTDOCS%%%%DOCSDIR%%/guide/RSSAShrink
-%%PORTDOCS%%%%DOCSDIR%%/guide/RSSASimplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/RayRacine
-%%PORTDOCS%%%%DOCSDIR%%/guide/Reachability
-%%PORTDOCS%%%%DOCSDIR%%/guide/Redundant
-%%PORTDOCS%%%%DOCSDIR%%/guide/RedundantTests
-%%PORTDOCS%%%%DOCSDIR%%/guide/RefFlatten
-%%PORTDOCS%%%%DOCSDIR%%/guide/References
-%%PORTDOCS%%%%DOCSDIR%%/guide/Regions
-%%PORTDOCS%%%%DOCSDIR%%/guide/Release20041109
-%%PORTDOCS%%%%DOCSDIR%%/guide/Release20051202
-%%PORTDOCS%%%%DOCSDIR%%/guide/Release20070826
-%%PORTDOCS%%%%DOCSDIR%%/guide/Release20100608
-%%PORTDOCS%%%%DOCSDIR%%/guide/ReleaseChecklist
-%%PORTDOCS%%%%DOCSDIR%%/guide/RemoveUnused
-%%PORTDOCS%%%%DOCSDIR%%/guide/Restore
-%%PORTDOCS%%%%DOCSDIR%%/guide/ReturnStatement
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunTimeOptions
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnAIX
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnAMD64
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnARM
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnAlpha
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnCygwin
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnDarwin
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnFreeBSD
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnHPPA
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnHPUX
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnIA64
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnLinux
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnMinGW
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnNetBSD
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnOpenBSD
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnPowerPC
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnPowerPC64
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnS390
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnSolaris
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnSparc
-%%PORTDOCS%%%%DOCSDIR%%/guide/RunningOnX86
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLNET
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLNJ
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLNJDeviations
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLNJLibrary
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLSharp
-%%PORTDOCS%%%%DOCSDIR%%/guide/SMLofNJStructure
-%%PORTDOCS%%%%DOCSDIR%%/guide/SSA
-%%PORTDOCS%%%%DOCSDIR%%/guide/SSA2
-%%PORTDOCS%%%%DOCSDIR%%/guide/SSA2Simplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/SSASimplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/SXML
-%%PORTDOCS%%%%DOCSDIR%%/guide/SXMLShrink
-%%PORTDOCS%%%%DOCSDIR%%/guide/SXMLSimplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/ScopeInference
-%%PORTDOCS%%%%DOCSDIR%%/guide/SelfCompiling
-%%PORTDOCS%%%%DOCSDIR%%/guide/Serialization
-%%PORTDOCS%%%%DOCSDIR%%/guide/ShowBasis
-%%PORTDOCS%%%%DOCSDIR%%/guide/ShowProf
-%%PORTDOCS%%%%DOCSDIR%%/guide/Shrink
-%%PORTDOCS%%%%DOCSDIR%%/guide/SimplifyTypes
-%%PORTDOCS%%%%DOCSDIR%%/guide/Sources
-%%PORTDOCS%%%%DOCSDIR%%/guide/SpaceSafety
-%%PORTDOCS%%%%DOCSDIR%%/guide/Stabilizers
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardML
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLBooks
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLGotchas
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLHistory
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLImplementations
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLPortability
-%%PORTDOCS%%%%DOCSDIR%%/guide/StandardMLTutorials
-%%PORTDOCS%%%%DOCSDIR%%/guide/StaticSum
-%%PORTDOCS%%%%DOCSDIR%%/guide/StephenWeeks
-%%PORTDOCS%%%%DOCSDIR%%/guide/StyleGuide
-%%PORTDOCS%%%%DOCSDIR%%/guide/Subversion
-%%PORTDOCS%%%%DOCSDIR%%/guide/SuccessorML
-%%PORTDOCS%%%%DOCSDIR%%/guide/SureshJagannathan
-%%PORTDOCS%%%%DOCSDIR%%/guide/Swerve
-%%PORTDOCS%%%%DOCSDIR%%/guide/SyntacticConventions
-%%PORTDOCS%%%%DOCSDIR%%/guide/SystemInfo
-%%PORTDOCS%%%%DOCSDIR%%/guide/TILT
-%%PORTDOCS%%%%DOCSDIR%%/guide/Talk
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkDiveIn
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkFolkLore
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkFromSMLTo
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkHowHigherOrder
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkHowModules
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkHowPolymorphism
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkMLtonApproach
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkMLtonFeatures
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkMLtonHistory
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkStandardML
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkTemplate
-%%PORTDOCS%%%%DOCSDIR%%/guide/TalkWholeProgram
-%%PORTDOCS%%%%DOCSDIR%%/guide/TipsForWritingConciseSML
-%%PORTDOCS%%%%DOCSDIR%%/guide/TitleIndex
-%%PORTDOCS%%%%DOCSDIR%%/guide/ToMachine
-%%PORTDOCS%%%%DOCSDIR%%/guide/ToRSSA
-%%PORTDOCS%%%%DOCSDIR%%/guide/ToSSA2
-%%PORTDOCS%%%%DOCSDIR%%/guide/TomMurphy
-%%PORTDOCS%%%%DOCSDIR%%/guide/TrustedGroup
-%%PORTDOCS%%%%DOCSDIR%%/guide/TypeChecking
-%%PORTDOCS%%%%DOCSDIR%%/guide/TypeConstructor
-%%PORTDOCS%%%%DOCSDIR%%/guide/TypeIndexedValues
-%%PORTDOCS%%%%DOCSDIR%%/guide/TypeVariableScope
-%%PORTDOCS%%%%DOCSDIR%%/guide/Unicode
-%%PORTDOCS%%%%DOCSDIR%%/guide/UniversalType
-%%PORTDOCS%%%%DOCSDIR%%/guide/UnresolvedBugs
-%%PORTDOCS%%%%DOCSDIR%%/guide/UnsafeStructure
-%%PORTDOCS%%%%DOCSDIR%%/guide/Useless
-%%PORTDOCS%%%%DOCSDIR%%/guide/Users
-%%PORTDOCS%%%%DOCSDIR%%/guide/Utilities
-%%PORTDOCS%%%%DOCSDIR%%/guide/ValueRestriction
-%%PORTDOCS%%%%DOCSDIR%%/guide/VariableArityPolymorphism
-%%PORTDOCS%%%%DOCSDIR%%/guide/Variant
-%%PORTDOCS%%%%DOCSDIR%%/guide/VesaKarvonen
-%%PORTDOCS%%%%DOCSDIR%%/guide/WantedPages
-%%PORTDOCS%%%%DOCSDIR%%/guide/WarnUnusedAnomalies
-%%PORTDOCS%%%%DOCSDIR%%/guide/WebSite
-%%PORTDOCS%%%%DOCSDIR%%/guide/WesleyTerpstra
-%%PORTDOCS%%%%DOCSDIR%%/guide/WholeProgramOptimization
-%%PORTDOCS%%%%DOCSDIR%%/guide/WikiMacros
-%%PORTDOCS%%%%DOCSDIR%%/guide/WikiName
-%%PORTDOCS%%%%DOCSDIR%%/guide/WikiTool
-%%PORTDOCS%%%%DOCSDIR%%/guide/WishList
-%%PORTDOCS%%%%DOCSDIR%%/guide/XML
-%%PORTDOCS%%%%DOCSDIR%%/guide/XMLShrink
-%%PORTDOCS%%%%DOCSDIR%%/guide/XMLSimplify
-%%PORTDOCS%%%%DOCSDIR%%/guide/XMLSimplifyTypes
-%%PORTDOCS%%%%DOCSDIR%%/guide/ZZZOrphanedPages
-%%PORTDOCS%%%%DOCSDIR%%/guide/Zone
-%%PORTDOCS%%%%DOCSDIR%%/guide/common.css
-%%PORTDOCS%%%%DOCSDIR%%/guide/eXene
-%%PORTDOCS%%%%DOCSDIR%%/guide/fxp
-%%PORTDOCS%%%%DOCSDIR%%/guide/index.html
-%%PORTDOCS%%%%DOCSDIR%%/guide/mGTK
-%%PORTDOCS%%%%DOCSDIR%%/guide/mlton-guide.pdf
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-bottom.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-email.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-ftp.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-news.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-top.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/moin-www.png
-%%PORTDOCS%%%%DOCSDIR%%/guide/print.css
-%%PORTDOCS%%%%DOCSDIR%%/guide/screen.css
%%PORTDOCS%%%%DOCSDIR%%/license/MLKit-LICENSE
%%PORTDOCS%%%%DOCSDIR%%/license/MLton-LICENSE
%%PORTDOCS%%%%DOCSDIR%%/license/NEC-LICENSE
@@ -2850,198 +1649,42 @@ man/man1/mlnlffigen.1.gz
%%PORTDOCS%%%%DOCSDIR%%/license/README
%%PORTDOCS%%%%DOCSDIR%%/license/SMLNJ-LIB-LICENSE
%%PORTDOCS%%%%DOCSDIR%%/license/gdtoa-LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/license/gmp-LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/mllex.pdf
-%%PORTDOCS%%%%DOCSDIR%%/mlnlffi-lib/README
-%%PORTDOCS%%%%DOCSDIR%%/mlnlffi-lib/README.mlton
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/README
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/fun-ssa-value-graph.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-cdg-survey.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-cfg-survey.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-ddg.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-dom-survey.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-loop-nesting.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-opt.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-region-survey.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/mandelbrot-ssa.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/smlnj.jpg
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/vh32.png
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/graphics/vh401.gif
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/html/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/html/mltex.thm
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/html/mltex2html
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/html/mltex2html.orig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/C6.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/ILP.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/INTRO.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/SSA.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/VLIW.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/alpha.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/annotations.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/asm.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/availability.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/backend-opt.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/cells.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/cluster.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/compiler-graphs.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/constants.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/contributions.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/contributors.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/delayslots.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/freq.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/future-work.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/gc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/graphics.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/graphs.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/hppa.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/instrsel.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/instructions.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/labelexp.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/labels.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/line-counts.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/md.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mips.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-arch.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-compiler.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-gen.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-graphics.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-ir-rep.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-ir.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-md.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc-ra.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc.bib
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mlrisc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltex.sty
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltex.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltexdoc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltree-ext.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltree-util.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/mltree.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/optimizations.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/ppc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/problem.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/pseudo-ops.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/ra.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/regions.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/regmap.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/requirements.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/sml.sty
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/sml.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/span-dep.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/sparc.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/streams.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/sys-integration.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/systems.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/latex/x86.tex
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/big-pict.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/big-pict2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/cdg.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/cfg-rev.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/cfg.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/compiler-1.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/compiler-2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/compiler.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/compiler2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/dom.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/hof-1.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/hof-2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/hyperblock-formation.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/if-conversion.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/layers.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/mlrisc-IR.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/mlrisc-ir-archive.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/optimization.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/pdom.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/phg.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/region-builder.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/sharing1.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/sharing2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/sharing3.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/subgraph.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/tail-dupl.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/tail-duplication.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/trace.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/uncol.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/uncol1.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/uncol2.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/Doc/pictures/fig/viewer.fig
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/README.mlton
-%%PORTDOCS%%%%DOCSDIR%%/mlrisc-lib/README.mlton.orig
-%%PORTDOCS%%%%DOCSDIR%%/mlton-guide.pdf
-%%PORTDOCS%%%%DOCSDIR%%/mlyacc.pdf
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/BasisInfo/HTML.info
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/CATALOG
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/Config.cfg
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/Entities.sgml
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Controls/control-registry.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Controls/control-set.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Controls/control-util.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Controls/controls-lib-part.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Controls/controls.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/HashCons/hash-cons.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/engine-sig.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/match-tree.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/parser-sig.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/regexp-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/regexp-intro.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/regexp-lib-part.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/regexp-sig.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/RegExp/syntax.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Unix/unix-env.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Unix/unix-lib-part.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Unix/unix-path.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/array-qsort-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/array-qsort.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/array-sort.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/atom.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/binary-map-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/binary-set-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/bit-array.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/bit-vector.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/bsearch.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/char-map.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/dynamic-array.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/fifo.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/iterate.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/lib-base.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/list-format.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/list-map-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/list-set-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/list-xprod.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/listsort.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/mono-array-sort.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/mono-dynamic-array.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/ord-key.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/ord-map.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/ord-set.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/queue.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/rand.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/random.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/splay-map-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/splay-set-fn.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/splaytree.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/uref.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/Util/util-lib-part.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/intro-part.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/ML-Doc/smlnj-lib.mldoc
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/config.sh
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/index.template
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/input
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/page.template
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/Doc/toc.template
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/README
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/README.mlton
-%%PORTDOCS%%%%DOCSDIR%%/smlnj-lib/README.mlton.orig
-%%PORTDOCS%%@dir %%DOCSDIR%%/mlyacc-lib
-%%PORTDOCS%%@dir %%DOCSDIR%%/cml
-@dir lib/mlton/sml/mlrisc-lib/util
-@dir lib/mlton/sml/mlrisc-lib/extensions
-@dir lib/mlton/sml/mlrisc-lib/alpha32/ra
-@dir lib/mlton/sml/mlrisc-lib/alpha32/mltree
-@dir lib/mlton/sml/mlrisc-lib/alpha32/instructions
-@dir lib/mlton/sml/mlrisc-lib/alpha32/emit
-@dir lib/mlton/sml/mlrisc-lib/alpha32/backpatch
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/callcc.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/command-line.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/c_quot.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/export.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/ffi-export.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/ffi-import.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/iimport.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/import.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/import2.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi/test_quot.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/finalizable/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/finalizable/cons.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/finalizable/finalizable.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello-world.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/profiling/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/profiling/fib-tak.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/profiling/list-rev.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/profiling/tak.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/same-fringe.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/save-world/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/save-world/save-world.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/signals.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/size.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/size/size.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/taut.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thread-switch.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thread/non-preemptive-threads.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thread/preemptive-threads.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thread1.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/thread2.sml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timeout.sml
+share/man/man1/mllex.1.gz
+share/man/man1/mlnlffigen.1.gz
+share/man/man1/mlprof.1.gz
+share/man/man1/mlton.1.gz
+share/man/man1/mlyacc.1.gz
+%%PORTDOCS%%@dir %%DOCSDIR%%/examples