diff options
119 files changed, 12067 insertions, 5131 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 06a49814d2..7526dff65e 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -315,7 +315,9 @@ oe_libinstall() { # stop libtool using the final directory name for libraries # in staging: __runcmd rm -f $destpath/$libname.la - __runcmd sed -e 's/^installed=yes$/installed=no/' -e '/^dependency_libs=/s,${WORKDIR}[[:alnum:]/\._+-]*/\([[:alnum:]\._+-]*\),${STAGING_LIBDIR}/\1,g' $dotlai >$destpath/$libname.la + __runcmd sed -e 's/^installed=yes$/installed=no/' \ + -e '/^dependency_libs=/s,${WORKDIR}[[:alnum:]/\._+-]*/\([[:alnum:]\._+-]*\),${STAGING_LIBDIR}/\1,g' \ + $dotlai >$destpath/$libname.la else __runcmd install -m 0644 $dotlai $destpath/$libname.la fi @@ -508,6 +510,13 @@ base_do_fetchall() { : } +addtask buildall after do_build +do_buildall[recrdeptask] = "do_build" +base_do_buildall() { + : +} + + def oe_unpack_file(file, data, url = None): import bb, os if not url: @@ -695,7 +704,7 @@ do_populate_staging[dirs] = "${STAGING_DIR_TARGET}/${layout_bindir} ${STAGING_DI addtask populate_staging after do_install python do_populate_staging () { - bb.build.exec_func('do_stage', d) + bb.build.exec_func('do_stage', d) } addtask install after do_compile @@ -737,7 +746,7 @@ def explode_deps(s): def packaged(pkg, d): import os, bb - return os.access(bb.data.expand('${PKGDATA_DIR}/runtime/%s.packaged' % pkg, d), os.R_OK) + return os.access(get_subpkgedata_fn(pkg, d) + '.packaged', os.R_OK) def read_pkgdatafile(fn): pkgdata = {} @@ -761,16 +770,23 @@ def read_pkgdatafile(fn): return pkgdata +def get_subpkgedata_fn(pkg, d): + import bb, os + archs = bb.data.expand("${PACKAGE_ARCHS}", d).split(" ") + archs.reverse() + for arch in archs: + fn = bb.data.expand('${STAGING_DIR}/pkgdata/' + arch + '${TARGET_VENDOR}-${TARGET_OS}/runtime/%s' % pkg, d) + if os.path.exists(fn): + return fn + return bb.data.expand('${PKGDATA_DIR}/runtime/%s' % pkg, d) + def has_subpkgdata(pkg, d): import bb, os - fn = bb.data.expand('${PKGDATA_DIR}/runtime/%s' % pkg, d) - return os.access(fn, os.R_OK) + return os.access(get_subpkgedata_fn(pkg, d), os.R_OK) def read_subpkgdata(pkg, d): import bb, os - fn = bb.data.expand('${PKGDATA_DIR}/runtime/%s' % pkg, d) - return read_pkgdatafile(fn) - + return read_pkgdatafile(get_subpkgedata_fn(pkg, d)) def has_pkgdata(pn, d): import bb, os diff --git a/classes/cross.bbclass b/classes/cross.bbclass index 6e5480a2a0..89cb3e9569 100644 --- a/classes/cross.bbclass +++ b/classes/cross.bbclass @@ -20,6 +20,8 @@ CXXFLAGS = "${BUILD_CFLAGS}" LDFLAGS = "${BUILD_LDFLAGS}" LDFLAGS_build-darwin = "-L${STAGING_LIBDIR_NATIVE}" +TOOLCHAIN_OPTIONS = "" + # Overrides for paths # Path prefixes diff --git a/classes/debian.bbclass b/classes/debian.bbclass index a38f10d629..dd0789adae 100644 --- a/classes/debian.bbclass +++ b/classes/debian.bbclass @@ -1,5 +1,3 @@ -STAGING_PKGMAPS_DIR = "${STAGING_DIR}/pkgmaps/debian" - # Debian package renaming only occurs when a package is built # We therefore have to make sure we build all runtime packages # before building the current package to make the packages runtime diff --git a/classes/nslu2-image.bbclass b/classes/nslu2-image.bbclass index 33caa54b21..8be1fa762f 100644 --- a/classes/nslu2-image.bbclass +++ b/classes/nslu2-image.bbclass @@ -19,5 +19,5 @@ nslu2_pack_image () { -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}-nslu2-16mb.bin } -EXTRA_IMAGEDEPENDS += 'slugimage-native nslu2-linksys-firmware ixp4xx-npe upslug2-native apex-nslu2 apex-nslu2-16mb' +EXTRA_IMAGEDEPENDS += 'slugimage-native nslu2-linksys-firmware ixp4xx-npe apex-nslu2 apex-nslu2-16mb' IMAGE_POSTPROCESS_COMMAND += "nslu2_pack_image; " diff --git a/classes/package.bbclass b/classes/package.bbclass index 6c61f7bdda..67aeb33a13 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -34,9 +34,6 @@ def do_split_packages(d, root, file_regex, output_pattern, description, postinst return packages = bb.data.getVar('PACKAGES', d, 1).split() - if not packages: - # nothing to do - return if postinst: postinst = '#!/bin/sh\n' + postinst + '\n' @@ -189,42 +186,15 @@ def runstrip(file, d): # Package data handling routines # -STAGING_PKGMAPS_DIR ?= "${STAGING_DIR}/pkgmaps" - -def add_package_mapping (pkg, new_name, d): - import bb, os - - def encode(str): - import codecs - c = codecs.getencoder("string_escape") - return c(str)[0] - - pmap_dir = bb.data.getVar('STAGING_PKGMAPS_DIR', d, 1) - - bb.mkdirhier(pmap_dir) - - data_file = os.path.join(pmap_dir, pkg) - - f = open(data_file, 'w') - f.write("%s\n" % encode(new_name)) - f.close() - def get_package_mapping (pkg, d): import bb, os - def decode(str): - import codecs - c = codecs.getdecoder("string_escape") - return c(str)[0] + data = read_subpkgdata(pkg, d) + key = "PKG_%s" % pkg - data_file = bb.data.expand("${STAGING_PKGMAPS_DIR}/%s" % pkg, d) + if key in data: + return data[key] - if os.access(data_file, os.R_OK): - f = file(data_file, 'r') - lines = f.readlines() - f.close() - for l in lines: - return decode(l).strip() return pkg def runtime_mapping_rename (varname, d): @@ -258,9 +228,6 @@ python package_do_split_locales() { return packages = (bb.data.getVar('PACKAGES', d, 1) or "").split() - if not packages: - bb.debug(1, "no packages to build; not splitting locales") - return datadir = bb.data.getVar('datadir', d, 1) if not datadir: @@ -410,9 +377,6 @@ python populate_packages () { bb.mkdirhier(dvar) packages = bb.data.getVar('PACKAGES', d, 1) - if not packages: - bb.debug(1, "PACKAGES not defined, nothing to package") - return pn = bb.data.getVar('PN', d, 1) if not pn: @@ -516,8 +480,6 @@ python populate_packages () { pkgname = bb.data.getVar('PKG_%s' % pkg, d, 1) if pkgname is None: bb.data.setVar('PKG_%s' % pkg, pkg, d) - else: - add_package_mapping(pkg, pkgname, d) dangling_links = {} pkg_files = {} @@ -604,6 +566,8 @@ python emit_pkgdata() { sf.close() allow_empty = bb.data.getVar('ALLOW_EMPTY_%s' % pkg, d, 1) + if not allow_empty: + allow_empty = bb.data.getVar('ALLOW_EMPTY', d, 1) root = "%s/install/%s" % (workdir, pkg) os.chdir(root) g = glob('*') @@ -903,10 +867,7 @@ python package_depchains() { prefixes = (bb.data.getVar('DEPCHAIN_PRE', d, 1) or '').split() def pkg_addrrecs(pkg, base, suffix, getname, rdepends, d): - def packaged(pkg, d): - return os.access(bb.data.expand('${PKGDATA_DIR}/runtime/%s.packaged' % pkg, d), os.R_OK) - - #bb.note('rdepends for %s is %s' % (base, rdepends)) + #bb.note('rdepends for %s is %s' % (base, rdepends)) rreclist = explode_deps(bb.data.getVar('RRECOMMENDS_' + pkg, d, 1) or bb.data.getVar('RRECOMMENDS', d, 1) or "") diff --git a/classes/packaged-staging2.bbclass b/classes/packaged-staging2.bbclass new file mode 100644 index 0000000000..29ce72d65c --- /dev/null +++ b/classes/packaged-staging2.bbclass @@ -0,0 +1,229 @@ +# +# Populate builds using prebuilt packages where possible to speed up builds +# and allow staging to be reconstructed. +# +# To use it add that line to conf/local.conf: +# +# INHERIT = "packaged-staging" + +python () { + import bb + if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('image', d) and not bb.data.inherits_class('cross', d) and not bb.data.inherits_class('sdk', d): + deps = bb.data.getVarFlag('do_populate_staging', 'depends', d) or "" + deps += " stagemanager-native:do_populate_staging" + bb.data.setVarFlag('do_populate_staging', 'depends', deps, d) + + deps = bb.data.getVarFlag('do_prepackaged_stage', 'depends', d) or "" + deps += " ipkg-native:do_populate_staging ipkg-utils-native:do_populate_staging" + bb.data.setVarFlag('do_prepackaged_stage', 'depends', deps, d) + else: + bb.data.setVar("PSTAGING_DISABLED", "1", d) +} + +export PSTAGING_DISABLED = "0" + +DEPLOY_DIR_PSTAGE = "${DEPLOY_DIR}/pstage" + +PSTAGE_BUILD_CMD = "${IPKGBUILDCMD}" +PSTAGE_INSTALL_CMD = "ipkg-cl install -force-depends -f ${DEPLOY_DIR_PSTAGE}/ipkg-${MACHINE}.conf -o ${TMPDIR}" +PSTAGE_UPDATE_CMD = "ipkg-cl update -f ${DEPLOY_DIR_PSTAGE}/ipkg-${MACHINE}.conf -o ${TMPDIR}" +PSTAGE_REMOVE_CMD = "ipkg-cl remove -force-depends -f ${DEPLOY_DIR_PSTAGE}/ipkg-${MACHINE}.conf -o ${TMPDIR}" +PSTAGE_LIST_CMD = "ipkg-cl list_installed -f ${DEPLOY_DIR_PSTAGE}/ipkg-${MACHINE}.conf -o ${TMPDIR}" +PSTAGE_PKGNAME = "staging-${PN}_${PV}-${PR}_${MULTIMACH_ARCH}.ipk" + +PSTAGE_TMPDIR_STAGE = "${WORKDIR}/staging-pkg" + +do_clean_append() { + """ + Clear the build and temp directories + """ + bb.note("Uninstalling package from staging...") + path = bb.data.getVar("PATH", d, 1) + removecmd = bb.data.getVar("PSTAGE_REMOVE_CMD", d, 1) + removepkg = bb.data.expand("staging-${PN}", d) + ret = os.system("PATH=\"%s\" %s %s" % (path, removecmd, removepkg)) + if ret != 0: + bb.note("Failure removing staging package") + + stagepkg = bb.data.expand("${DEPLOY_DIR_PSTAGE}/${PSTAGE_PKGNAME}", d) + bb.note("Removing staging package %s" % stagepkg) + #os.system('rm -rf ' + stagepkg) +} + +staging_helper () { + #assemble appropriate ipkg.conf + conffile=${DEPLOY_DIR_PSTAGE}/ipkg-${MACHINE}.conf + mkdir -p ${DEPLOY_DIR_PSTAGE}/pstaging_lists + if [ ! -e $conffile ]; then + ipkgarchs="${BUILD_ARCH} all any noarch ${TARGET_ARCH} ${PACKAGE_ARCHS} ${PACKAGE_EXTRA_ARCHS} ${MACHINE}" + priority=1 + for arch in $ipkgarchs; do + echo "arch $arch $priority" >> $conffile + priority=$(expr $priority + 5) + done + echo "src oe-staging file:${DEPLOY_DIR_PSTAGE}" >> $conffile + + OLD_PWD=`pwd` + cd ${DEPLOY_DIR_PSTAGE} + ipkg-make-index -p Packages . + cd ${OLD_PWD} + + ${PSTAGE_UPDATE_CMD} + fi +} + +python do_prepackaged_stage () { + import os + + if bb.data.getVar("PSTAGING_DISABLED", d, 1) == "1": + bb.build.make_stamp("do_prepackaged_stage", d) + return + + bb.note("Uninstalling any existing package from staging...") + path = bb.data.getVar("PATH", d, 1) + removecmd = bb.data.getVar("PSTAGE_REMOVE_CMD", d, 1) + removepkg = bb.data.expand("staging-${PN}", d) + lf = bb.utils.lockfile(bb.data.expand("${STAGING_DIR}/staging.lock", d)) + ret = os.system("PATH=\"%s\" %s %s" % (path, removecmd, removepkg)) + bb.utils.unlockfile(lf) + if ret != 0: + bb.note("Failure attempting to remove staging package") + + stagepkg = bb.data.expand("${DEPLOY_DIR_PSTAGE}/${PSTAGE_PKGNAME}", d) + + if os.path.exists(stagepkg): + bb.note("Following speedup\n") + path = bb.data.getVar("PATH", d, 1) + installcmd = bb.data.getVar("PSTAGE_INSTALL_CMD", d, 1) + + bb.build.exec_func("staging_helper", d) + + bb.debug(1, "Staging stuff already packaged, using that instead") + lf = bb.utils.lockfile(bb.data.expand("${STAGING_DIR}/staging.lock", d)) + ret = os.system("PATH=\"%s\" %s %s" % (path, installcmd, stagepkg)) + bb.utils.unlockfile(lf) + if ret != 0: + bb.note("Failure installing prestage package") + + bb.build.make_stamp("do_prepackaged_stage", d) + bb.build.make_stamp("do_fetch", d) + bb.build.make_stamp("do_unpack", d) + bb.build.make_stamp("do_munge", d) + bb.build.make_stamp("do_patch", d) + bb.build.make_stamp("do_configure", d) + bb.build.make_stamp("do_qa_configure", d) + bb.build.make_stamp("do_rig_locales", d) + bb.build.make_stamp("do_compile", d) + bb.build.make_stamp("do_install", d) + bb.build.make_stamp("do_deploy", d) + bb.build.make_stamp("do_package", d) + bb.build.make_stamp("do_populate_staging", d) + bb.build.make_stamp("do_package_write_deb", d) + bb.build.make_stamp("do_package_write_ipk", d) + bb.build.make_stamp("do_package_write", d) + bb.build.make_stamp("do_package_stage", d) + bb.build.make_stamp("do_qa_staging", d) + + else: + bb.build.make_stamp("do_prepackaged_stage", d) +} +do_prepackaged_stage[cleandirs] = "${PSTAGE_TMPDIR_STAGE}" +do_prepackaged_stage[selfstamp] = "1" +addtask prepackaged_stage before do_fetch + +populate_staging_preamble () { + if [ "$PSTAGING_DISABLED" != "1" ]; then + #mkdir -p ${DEPLOY_DIR_PSTAGE} + + stage-manager -p ${STAGING_DIR} -c ${DEPLOY_DIR_PSTAGE}/stamp-cache-staging -u + stage-manager -p ${CROSS_DIR} -c ${DEPLOY_DIR_PSTAGE}/stamp-cache-cross -u + fi +} + +populate_staging_postamble () { + if [ "$PSTAGING_DISABLED" != "1" ]; then + # list the packages currently installed in staging + ${PSTAGE_LIST_CMD} | awk '{print $1}' > ${DEPLOY_DIR_PSTAGE}/installed-list + + set +e + stage-manager -p ${STAGING_DIR} -c ${DEPLOY_DIR_PSTAGE}/stamp-cache-staging -u -d ${PSTAGE_TMPDIR_STAGE}/staging + stage-manager -p ${CROSS_DIR} -c ${DEPLOY_DIR_PSTAGE}/stamp-cache-cross -u -d ${PSTAGE_TMPDIR_STAGE}/cross + set -e + fi +} + +do_populate_staging[lockfiles] = "${STAGING_DIR}/staging.lock" +do_populate_staging[dirs] =+ "${DEPLOY_DIR_PSTAGE}" +python do_populate_staging_prepend() { + bb.build.exec_func("populate_staging_preamble", d) +} + +python do_populate_staging_append() { + bb.build.exec_func("populate_staging_postamble", d) +} + + +staging_packager () { + + mkdir -p ${PSTAGE_TMPDIR_STAGE}/CONTROL + + echo "Package: staging-${PN}" > ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Version: ${PV}-${PR}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Description: ${DESCRIPTION}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Section: ${SECTION}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Priority: Optional" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Maintainer: ${MAINTAINER}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Architecture: ${MULTIMACH_ARCH}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + echo "Source: ${SRC_URI}" >> ${PSTAGE_TMPDIR_STAGE}/CONTROL/control + + ${PSTAGE_BUILD_CMD} ${PSTAGE_TMPDIR_STAGE} ${DEPLOY_DIR_PSTAGE} + ${PSTAGE_INSTALL_CMD} ${DEPLOY_DIR_PSTAGE}/${PSTAGE_PKGNAME} +} + +python do_package_stage () { + if bb.data.getVar("PSTAGING_DISABLED", d, 1) == "1": + return + + bb.build.exec_func("read_subpackage_metadata", d) + packages = (bb.data.getVar('PACKAGES', d, 1) or "").split() + if len(packages) > 0: + stagepath = bb.data.getVar("PSTAGE_TMPDIR_STAGE", d, 1) + if bb.data.inherits_class('package_ipk', d): + ipkpath = os.path.join(stagepath, "deploy", "ipk") + bb.mkdirhier(ipkpath) + if bb.data.inherits_class('package_deb', d): + debpath = os.path.join(stagepath, "deploy", "deb") + bb.mkdirhier(debpath) + + for pkg in packages: + pkgname = bb.data.getVar('PKG_%s' % pkg, d, 1) + if not pkgname: + pkgname = pkg + arch = bb.data.getVar('PACKAGE_ARCH_%s' % pkg, d, 1) + if not arch: + arch = bb.data.getVar('PACKAGE_ARCH', d, 1) + if not packaged(pkg, d): + continue + if bb.data.inherits_class('package_ipk', d): + srcname = bb.data.expand(pkgname + "_${PV}-${PR}_" + arch + ".ipk", d) + srcfile = bb.data.expand("${DEPLOY_DIR_IPK}/" + arch + "/" + srcname, d) + if not os.path.exists(srcfile): + bb.fatal("Package %s does not exist yet it should" % srcfile) + bb.copyfile(srcfile, ipkpath + "/" + srcname) + if bb.data.inherits_class('package_deb', d): + if arch == 'all': + srcname = bb.data.expand(pkgname + "_${PV}-${PR}_all.deb", d) + else: + srcname = bb.data.expand(pkgname + "_${PV}-${PR}_${DPKG_ARCH}.deb", d) + srcfile = bb.data.expand("${DEPLOY_DIR_DEB}/" + arch + "/" + srcname, d) + if not os.path.exists(srcfile): + bb.fatal("Package %s does not exist yet it should" % srcfile) + bb.copyfile(srcfile, debpath + "/" + srcname) + bb.build.exec_func("staging_helper", d) + lf = bb.utils.lockfile(bb.data.expand("${STAGING_DIR}/staging.lock", d)) + bb.build.exec_func("staging_packager", d) + bb.utils.unlockfile(lf) +} + +addtask package_stage after do_package_write_ipk do_package_write_deb do_package_write do_populate_staging before do_build + diff --git a/classes/siteinfo.bbclass b/classes/siteinfo.bbclass index c41a3ff369..a3b67b5798 100644 --- a/classes/siteinfo.bbclass +++ b/classes/siteinfo.bbclass @@ -25,6 +25,7 @@ def get_siteinfo_list(d): "armeb-linux-gnueabi": "endian-big bit-32 common-glibc arm-common armeb-linux",\ "armeb-linux-uclibc": "endian-big bit-32 common-uclibc arm-common",\ "armeb-linux-uclibcgnueabi": "endian-big bit-32 common-uclibc arm-common armeb-linux-uclibc",\ + "arm-darwin": "endian-little bit-32 common-darwin",\ "arm-linux": "endian-little bit-32 common-glibc arm-common",\ "arm-linux-gnueabi": "endian-little bit-32 common-glibc arm-common arm-linux",\ "arm-linux-uclibc": "endian-little bit-32 common-uclibc arm-common",\ diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 9d5d54bfb8..123d9ce7a7 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -311,12 +311,13 @@ export PATH_prepend = "${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${layout_sbi ################################################################## CCACHE = "${@bb.which(bb.data.getVar('PATH', d), 'ccache') and 'ccache '}" +TOOLCHAIN_OPTIONS = "" -export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" -export CXX = "${CCACHE}${HOST_PREFIX}g++ ${HOST_CC_ARCH}" -export F77 = "${CCACHE}${HOST_PREFIX}g77 ${HOST_CC_ARCH}" -export CPP = "${HOST_PREFIX}gcc -E" -export LD = "${HOST_PREFIX}ld" +export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" +export CXX = "${CCACHE}${HOST_PREFIX}g++ ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" +export F77 = "${CCACHE}${HOST_PREFIX}g77 ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" +export CPP = "${HOST_PREFIX}gcc -E${TOOLCHAIN_OPTIONS}" +export LD = "${HOST_PREFIX}ld${TOOLCHAIN_OPTIONS}" export CCLD = "${CC}" export AR = "${HOST_PREFIX}ar" export AS = "${HOST_PREFIX}as" diff --git a/conf/distro/angstrom-2007.1.conf b/conf/distro/angstrom-2007.1.conf index bba0891ecf..ead957f1ba 100644 --- a/conf/distro/angstrom-2007.1.conf +++ b/conf/distro/angstrom-2007.1.conf @@ -29,6 +29,7 @@ DISTRO_TYPE ?= "debug" # Also, it appears that no locales fit in 16Mb for now. "C" locale rules! IMAGE_LINGUAS = '${@base_less_or_equal("ROOT_FLASH_SIZE", "16", "", "en-gb", d)}' +# These will be put under package management soon FEED_URIS += " \ no-arch##${ANGSTROM_URI}/unstable/feed/all \ base##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/base \ @@ -41,6 +42,11 @@ FEED_URIS += " \ # ${MACHINE}##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${FEED_ARCH}/machine/${MACHINE} \ # updates##${ANGSTROM_URI}/releases/${DISTRO_VERSION}/feed/${FEED_ARCH}/updates" + +# set feed path variables +FEED_BASEPATH = "feeds/2007/${ANGSTROM_PKG_FORMAT}/${ANGSTROM_MODE}/" + + #The angstrom-mirrors.bbclass should have everything, but we can use this as a fallback CVS_TARBALL_STASH ?= "\ http://www.angstrom-distribution.org/unstable/sources/ \ @@ -55,6 +61,7 @@ PCMCIA_MANAGER = "pcmciautils" #Preferred version for the kernel on various machines PREFERRED_VERSION_linux-handhelds-2.6 ?= "2.6.21-hh18" +PREFERRED_VERSION_linux-ixp4xx ?= "2.6.21.6+svnr${SRCREV}" RDEPENDS_kernel-base_hx4700 = "" RDEPENDS_kernel-base_htcuniversal = "" diff --git a/conf/distro/angstrom-2008.1.conf b/conf/distro/angstrom-2008.1.conf index 9614581ffc..0159c7dd0b 100644 --- a/conf/distro/angstrom-2008.1.conf +++ b/conf/distro/angstrom-2008.1.conf @@ -44,6 +44,10 @@ FEED_URIS += " \ gstreamer##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/gstreamer \ ${MACHINE}##${ANGSTROM_URI}/unstable/feed/${FEED_ARCH}/machine/${MACHINE}" +# set feed path variables +FEED_BASEPATH = "feeds/2008/${ANGSTROM_PKG_FORMAT}/${ANGSTROM_MODE}/" + + #The angstrom-mirrors.bbclass should have everything, but we can use this as a fallback CVS_TARBALL_STASH ?= "\ http://www.angstrom-distribution.org/unstable/sources/ \ diff --git a/conf/distro/include/insane-srcrevs.inc b/conf/distro/include/insane-srcrevs.inc index 7c675087ab..e039a144d3 100644 --- a/conf/distro/include/insane-srcrevs.inc +++ b/conf/distro/include/insane-srcrevs.inc @@ -62,6 +62,7 @@ SRCREV_pn-openmoko-panel-gsm ?= "${AUTOREV}" SRCREV_pn-openmoko-panel-mainmenu ?= "${AUTOREV}" SRCREV_pn-openmoko-panel-usb ?= "${AUTOREV}" SRCREV_pn-openmoko-session ?= "${AUTOREV}" +SRCREV_pn-openmoko-sample2 ?= "${AUTOREV}" SRCREV_pn-openmoko-simplemediaplayer ?= "${AUTOREV}" SRCREV_pn-openmoko-sound-theme-standard ?= "${AUTOREV}" SRCREV_pn-openmoko-stylus-demo ?= "${AUTOREV}" diff --git a/conf/distro/include/moko-autorev.inc b/conf/distro/include/moko-autorev.inc index 0e29c19c5c..316fc5a4de 100644 --- a/conf/distro/include/moko-autorev.inc +++ b/conf/distro/include/moko-autorev.inc @@ -45,6 +45,7 @@ SRCREV_pn-openmoko-panel-gps ?= "${AUTOREV}" SRCREV_pn-openmoko-panel-gsm ?= "${AUTOREV}" SRCREV_pn-openmoko-panel-mainmenu ?= "${AUTOREV}" SRCREV_pn-openmoko-panel-usb ?= "${AUTOREV}" +SRCREV_pn-openmoko-sample2 ?= "${AUTOREV}" SRCREV_pn-openmoko-session ?= "${AUTOREV}" SRCREV_pn-openmoko-simplemediaplayer ?= "${AUTOREV}" SRCREV_pn-openmoko-sound-theme-standard ?= "${AUTOREV}" diff --git a/conf/distro/include/sane-srcrevs.inc b/conf/distro/include/sane-srcrevs.inc index 8fee94e9d9..a65f477296 100644 --- a/conf/distro/include/sane-srcrevs.inc +++ b/conf/distro/include/sane-srcrevs.inc @@ -95,6 +95,7 @@ SRCREV_pn-openmoko-panel-gsm ?= "3256" SRCREV_pn-openmoko-panel-mainmenu ?= "2567" SRCREV_pn-openmoko-panel-usb ?= "3360" SRCREV_pn-openmoko-session ?= "152" +SRCREV_pn-openmoko-sample2 ?= "3537" SRCREV_pn-openmoko-simplemediaplayer ?= "1688" SRCREV_pn-openmoko-sound-theme-standard2 ?= "3192" SRCREV_pn-openmoko-stylus-demo ?= "2324" diff --git a/conf/machine/include/ixp4xx.inc b/conf/machine/include/ixp4xx.inc index 04b6542470..6e7d303586 100644 --- a/conf/machine/include/ixp4xx.inc +++ b/conf/machine/include/ixp4xx.inc @@ -2,20 +2,24 @@ #@NAME: ixp4xx #@DESCRIPTION: genric machine configuration for ixp4xx platforms -# Set default for nslu2 - can be overridden for machines with other features. -MACHINE_FEATURES ?= "kernel26 usbhost ext2" +# Set default for common ixp4xx-based machines +MACHINE_FEATURES ?= "kernel26 usbhost ext2 redboot apex" -# Set defaults for nslu2 - can be overridden for machines with other requirements. -MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "ixp4xx-npe" -MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= "" +# Select an appropriate default kernel +PREFERRED_PROVIDER_virtual/kernel ?= "linux-ixp4xx" +PREFERRED_VERSION_linux-ixp4xx ?= "2.6.21.6+svnr${SRCREV}" + +# Add packages required for basic networking support +MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "ixp4xx-npe" -# Set default for nslu2 - can be overridden for machines with more flash. +# Set default for 16MB machines - can be overridden for more or less flash. ROOT_FLASH_SIZE ?= "12" -# Set default for nslu2, nas100d, dsmg600 -EXTRA_IMAGECMD_jffs2 = "--pad --eraseblock=0x20000 -n" +# Allow for rootfs loaded direct from internal hard disk +IMAGE_FSTYPES ?= "jffs2 tar.gz" -PREFERRED_PROVIDER_virtual/kernel ?= "linux-ixp4xx" +# Set default for common ixp4xx-based machines +EXTRA_IMAGECMD_jffs2 = "--pad --eraseblock=0x20000 -n" require conf/machine/include/tune-xscale.inc require conf/machine/include/tune-thumb.inc diff --git a/conf/machine/mpc8313e-rdb.conf b/conf/machine/mpc8313e-rdb.conf index 3c47b53b56..81c3e29e91 100644 --- a/conf/machine/mpc8313e-rdb.conf +++ b/conf/machine/mpc8313e-rdb.conf @@ -13,6 +13,9 @@ MACHINE_FEATURES = "kernel26 usbhost ext2" PREFERRED_VERSION_u-boot = "1.3.0" UBOOT_MACHINE = "MPC8313ERDB_33_config" +#rootfs on NAND flash +EXTRA_IMAGECMD_jffs2 = "--pad --big-endian --eraseblock=0x4000 --no-cleanmarkers" + #don't try to access tty1 USE_VT = "0" diff --git a/contrib/angstrom/.mtn2git_empty b/contrib/angstrom/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/contrib/angstrom/.mtn2git_empty diff --git a/contrib/angstrom/angstrom.png b/contrib/angstrom/angstrom.png Binary files differnew file mode 100644 index 0000000000..cdb84ae12b --- /dev/null +++ b/contrib/angstrom/angstrom.png diff --git a/contrib/angstrom/angstrom.svg b/contrib/angstrom/angstrom.svg new file mode 100644 index 0000000000..1cce5a547d --- /dev/null +++ b/contrib/angstrom/angstrom.svg @@ -0,0 +1,639 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="300" + height="300" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.45.1" + version="1.0" + sodipodi:docbase="/home/pfalcon/linux-ppc/org.openembedded.dev/contrib/angstrom" + sodipodi:docname="angstrom.svg" + inkscape:export-filename="/mnt/MultimediaA/passer_s.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ecece1" + bordercolor="#666666" + borderopacity="1.0" + gridtolerance="10000" + guidetolerance="10" + objecttolerance="10" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="0.5" + inkscape:cx="305.99401" + inkscape:cy="-129.81925" + inkscape:document-units="px" + inkscape:current-layer="layer2" + width="300px" + height="300px" + showgrid="true" + gridspacingx="1px" + gridspacingy="1px" + inkscape:grid-bbox="true" + inkscape:grid-points="true" + gridoriginy="0px" + gridoriginx="0px" + inkscape:window-width="1590" + inkscape:window-height="961" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:object-points="true" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:1;color:black;fill:#1c2422;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.47713897;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect17263" + width="46.672043" + height="39.924259" + x="-176.07109" + y="-55.51947" + ry="11.246277" + rx="11.246277" /> + <rect + style="opacity:1;color:black;fill:#93aca7;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.47713897;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect17265" + width="46.672043" + height="39.924259" + x="-176.07109" + y="-3.3768997" + ry="11.246277" + rx="11.246277" /> + <rect + style="opacity:1;color:black;fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.47713897;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect17267" + width="46.672043" + height="39.924259" + x="-176.07109" + y="100.90823" + ry="11.246277" + rx="11.246277" /> + <rect + style="opacity:1;color:black;fill:#dbe3e2;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.47713897;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect17269" + width="46.672043" + height="39.924259" + x="-176.07109" + y="153.05081" + ry="11.246277" + rx="11.246277" /> + <text + xml:space="preserve" + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Garamond" + x="-219" + y="222" + id="text1929" + sodipodi:linespacing="100%"><tspan + sodipodi:role="line" + id="tspan1931" + x="-219" + y="222">Colour scheme</tspan></text> + <rect + style="opacity:1;color:black;fill:#6f918a;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:0.47713897;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect4585" + width="46.672043" + height="39.924259" + x="-176.07109" + y="48.765663" + ry="11.246277" + rx="11.246277" /> + <g + id="g1927" + transform="matrix(2.146701,0,0,2.146701,-398.0853,376.2692)" + inkscape:export-filename="/home/pfalcon/linux-ppc/org.openembedded.dev/contrib/angstrom/angstrom.png" + inkscape:export-xdpi="95.910004" + inkscape:export-ydpi="95.910004"> + <text + transform="matrix(0,-1,1,0,0,0)" + sodipodi:linespacing="100%" + id="text1930" + y="94.3358" + x="-86.595512" + style="font-size:20.16246986px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#536c67;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Serif" + xml:space="preserve"><tspan + y="94.3358" + x="-86.595512" + id="tspan1932" + sodipodi:role="line">ngström</tspan></text> + <path + id="path1934" + d="M 78.016636,93.581841 C 77.603166,93.58185 77.252031,93.729524 76.963231,94.024864 C 76.667895,94.313657 76.520222,94.664793 76.520212,95.078274 C 76.520222,95.498333 76.664617,95.852751 76.953385,96.14153 C 77.235627,96.423757 77.590041,96.564868 78.016636,96.564863 C 78.430148,96.564868 78.781283,96.423757 79.070052,96.14153 C 79.358851,95.852751 79.503246,95.498333 79.503225,95.078274 C 79.503246,94.664793 79.358851,94.313657 79.070052,94.024864 C 78.781283,93.729524 78.430148,93.58185 78.016636,93.581841 M 88.698417,98.277885 L 88.698417,92.902539 L 81.708498,95.580367 L 88.698417,98.277885 M 94.024538,102.43246 L 92.980973,102.43246 L 92.980973,101.14276 L 80.399121,96.328584 C 80.156295,96.801147 79.834688,97.162129 79.434312,97.411529 C 79.033966,97.654375 78.561408,97.775797 78.016636,97.775793 C 77.268445,97.775797 76.631799,97.513265 76.106721,96.988195 C 75.575105,96.463137 75.309298,95.826498 75.309277,95.078274 C 75.309298,94.330066 75.575105,93.693426 76.106721,93.168353 C 76.631799,92.636735 77.268445,92.370921 78.016636,92.370912 C 78.541715,92.370921 79.014274,92.498906 79.434312,92.754865 C 79.847813,93.010843 80.16942,93.375106 80.399121,93.847655 L 92.980973,89.003937 L 92.980973,87.556728 L 94.024538,87.556728 L 94.024538,92.902539 L 92.980973,92.902539 L 92.980973,91.268276 L 89.751828,92.498895 L 89.751828,98.681529 L 92.980973,99.912148 L 92.980973,98.297575 L 94.024538,98.297575 L 94.024538,102.43246" + style="font-size:19.43293762px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#536c67;fill-opacity:1;stroke:#536c67;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:DejaVu Serif" /> + </g> + <g + id="g1936" + transform="matrix(2.052686,0,0,2.052686,-404.4489,380.2516)" + inkscape:export-filename="/home/pfalcon/linux-ppc/org.openembedded.dev/contrib/angstrom/angstrom.png" + inkscape:export-xdpi="95.910004" + inkscape:export-ydpi="95.910004"> + <path + sodipodi:nodetypes="cc" + id="path1938" + d="M 12.999066,47.703463 L 55.357092,47.703463" + style="fill:#374845;fill-rule:evenodd;stroke:#6f918a;stroke-width:2.15206432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(0.794213,0,0,0.794213,161.2522,0.580159)" + d="M -150 26 A 10 10 0 1 1 -170,26 A 10 10 0 1 1 -150 26 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="26" + sodipodi:cx="-160" + id="path1940" + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#6f918a;stroke-width:1.56876302;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cccccccczc" + id="path1942" + d="M 32.589654,1.1096339 L 32.589654,2.6980598 L 32.589654,11.752088 L 33.330918,14.50536 L 35.02524,14.50536 L 35.766506,11.752088 L 35.766506,2.6980598 L 35.766506,1.1096339 C 35.23703,1.021388 34.707554,0.84489625 34.178079,0.84489625 C 33.648604,0.84489625 33.119128,1.021388 32.589654,1.1096339 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + id="path1944" + d="M 3.4488346,94.677852 L 1.9959014,102.74656 L 2.3485637,105.51135 L 3.6040027,103.02868 L 5.0569359,94.988187 L 3.4488346,94.677852 z " + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(1.601179,0,0,1.601179,218.9345,-53.31984)" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + sodipodi:ry="1.8125" + sodipodi:rx="1.8125" + sodipodi:cy="91.8125" + sodipodi:cx="-133.0625" + id="path1946" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.42443681;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccccc" + id="path1948" + d="M 65.113385,96.296589 L 66.285516,103.16021 L 65.262411,104.69422 L 63.809478,96.653724 L 65.113385,96.296589 z " + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:#536c67;stroke-width:0.33979961;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path1950" + d="M 58.810986,73.853337 L 56.19236,74.95143 L 58.810986,73.853337" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.79286575;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path1952" + d="M 31.100503,25.233854 L 1.7477151,95.190781 L 2.0124527,101.51139 L 3.9979853,101.84231 L 34.178079,29.899855 L 64.358173,101.84231 L 66.343705,101.51139 L 66.608443,95.190781 L 37.255655,25.233854 L 34.906107,26.22662 L 34.178079,29.171827 L 33.450051,26.22662 L 31.100503,25.233854 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path1954" + d="M 50.955828,69.908335 L 55.257816,80.133827 L 59.526711,78.346848 L 56.316767,70.669455 L 50.955828,69.908335 z " + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.5663327;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + transform="matrix(1.601179,0,0,1.601179,275.5363,-51.72735)" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + sodipodi:ry="1.8125" + sodipodi:rx="1.8125" + sodipodi:cy="91.8125" + sodipodi:cx="-133.0625" + id="path1956" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.42443681;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path1958" + d="M 14.322754,46.379775 L 14.322754,49.027151" + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:3.28472996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + id="path1960" + d="M 54.033404,46.379775 L 54.033404,49.027151" + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:3.28472996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path1962" + d="M 57.375198,79.240556 L 54.805887,73.113512 L 57.375198,79.240556" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.67959929;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path1964" + d="M 57.721094,71.214665 L 59.929123,76.480163 L 57.721094,71.214665" + style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + transform="matrix(0.881113,0,0,0.881113,166.3452,-0.181653)" + d="M -147.5 33.5 A 2.5 2.5 0 1 1 -152.5,33.5 A 2.5 2.5 0 1 1 -147.5 33.5 z" + sodipodi:ry="2.5" + sodipodi:rx="2.5" + sodipodi:cy="33.5" + sodipodi:cx="-150" + id="path1966" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.77129638;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + id="path1968" + d="M 34.012618,42.938185 C 33.639517,43.017596 33.375542,43.351026 33.383866,43.732398 L 33.383866,51.674528 C 33.37981,51.960951 33.530297,52.227368 33.77769,52.371761 C 34.025092,52.516155 34.331066,52.516155 34.578468,52.371761 C 34.825861,52.227368 34.976348,51.960951 34.972292,51.674528 L 34.972292,43.732398 C 34.977598,43.489694 34.871628,43.257887 34.684607,43.10311 C 34.497586,42.948333 34.250045,42.887581 34.012618,42.938185 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.67959929;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(1.058951,0,0,1.058951,192.2794,-7.626709)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path1970" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.64176649;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + transform="matrix(1.058951,0,0,1.058951,212.2935,-7.626709)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path1972" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.64176649;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccc" + id="path1974" + d="M 10.404637,86.686084 L 42.735724,9.6143312 L 10.404637,86.686084 z " + style="fill:white;fill-opacity:0;fill-rule:evenodd;stroke:black;stroke-width:0.56633264;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" /> + <path + transform="matrix(0.422478,0,0,0.422478,72.47005,73.2379)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path1976" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:1.60860264;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + </g> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="tekst"> + <g + id="g18321" + transform="matrix(4.972105,0,0,4.972105,472.6639,-140.1673)"> + <path + sodipodi:nodetypes="cc" + id="path18323" + d="M 12.76643,48.872248 L 54.26807,48.872248" + style="fill:#374845;fill-rule:evenodd;stroke:#6f918a;stroke-width:1.60260403;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(0.778156,0,0,0.778156,158.0222,2.701674)" + d="M -150 26 A 10 10 0 1 1 -170,26 A 10 10 0 1 1 -150 26 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="26" + sodipodi:cx="-160" + id="path18325" + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#6f918a;stroke-width:1.45228577;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cccccccczc" + id="path18327" + d="M 31.960939,3.220444 L 31.960939,4.7767555 L 31.960939,13.647731 L 32.687217,16.345338 L 34.347283,16.345338 L 35.073562,13.647731 L 35.073562,4.7767555 L 35.073562,3.220444 C 34.554791,3.1339823 34.03602,2.9610588 33.51725,2.9610588 C 32.99848,2.9610588 32.479709,3.1339823 31.960939,3.220444 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.53420138;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + id="path18329" + d="M 3.4092835,94.896918 L 1.9857254,102.80249 L 2.3312576,105.51139 L 3.5613144,103.07891 L 4.9848725,95.200979 L 3.4092835,94.896918 z " + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(1.568807,0,0,1.568807,214.5383,-50.10859)" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + sodipodi:ry="1.8125" + sodipodi:rx="1.8125" + sodipodi:cy="91.8125" + sodipodi:cx="-133.0625" + id="path18331" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.20430867;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccccc" + id="path18333" + d="M 63.80795,96.501979 L 64.956383,103.22684 L 63.953963,104.72984 L 62.530405,96.851893 L 63.80795,96.501979 z " + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:#536c67;stroke-width:0.32052082;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path18335" + d="M 57.652134,74.493429 L 55.086451,75.569321 L 57.652134,74.493429" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.74788189;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path18337" + d="M 30.501896,26.856925 L 1.7425569,95.399477 L 2.0019421,101.5923 L 3.9473315,101.91653 L 33.51725,31.42859 L 63.087169,101.91653 L 65.032558,101.5923 L 65.291943,95.399477 L 36.532604,26.856925 L 34.230559,27.82962 L 33.51725,30.715281 L 32.803941,27.82962 L 30.501896,26.856925 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.53420138;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path18339" + d="M 49.95579,70.628186 L 54.170801,80.646941 L 58.353388,78.896091 L 55.208342,71.373918 L 49.95579,70.628186 z " + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.32052094;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + transform="matrix(1.568807,0,0,1.568807,269.9957,-48.54829)" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + sodipodi:ry="1.8125" + sodipodi:rx="1.8125" + sodipodi:cy="91.8125" + sodipodi:cx="-133.0625" + id="path18341" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.20430867;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cc" + id="path18343" + d="M 14.063356,47.575322 L 14.063356,50.169174" + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:2.67100668;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + id="path18345" + d="M 52.971144,47.575322 L 52.971144,50.169174" + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:2.67100668;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path18347" + d="M 56.245374,79.77173 L 53.728009,73.768562 L 56.245374,79.77173" + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.32052082;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path18349" + d="M 56.584277,71.908105 L 58.747664,77.067146 L 56.584277,71.908105" + style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.74788189;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" /> + <path + transform="matrix(0.863299,0,0,0.863299,163.0122,1.955264)" + d="M -147.5 33.5 A 2.5 2.5 0 1 1 -152.5,33.5 A 2.5 2.5 0 1 1 -147.5 33.5 z" + sodipodi:ry="2.5" + sodipodi:rx="2.5" + sodipodi:cy="33.5" + sodipodi:cx="-150" + id="path18351" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.37127414;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + id="path18353" + d="M 33.355134,44.203314 C 32.989577,44.281119 32.730939,44.607808 32.739094,44.981469 L 32.739094,52.763027 C 32.73512,53.043659 32.882565,53.30469 33.124956,53.446163 C 33.367356,53.587638 33.667144,53.587638 33.909544,53.446163 C 34.151935,53.30469 34.29938,53.043659 34.295406,52.763027 L 34.295406,44.981469 C 34.300604,44.743672 34.196777,44.516552 34.013537,44.364904 C 33.830297,44.213256 33.587761,44.153733 33.355134,44.203314 z " + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.32052082;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + transform="matrix(1.037541,0,0,1.037541,188.4221,-5.339269)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path18355" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.30892351;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + transform="matrix(1.037541,0,0,1.037541,208.0316,-5.339269)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path18357" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.30892351;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccc" + id="path18359" + d="M 10.224455,87.066726 L 41.901878,11.553195 L 10.224455,87.066726 z " + style="fill:white;fill-opacity:0;fill-rule:evenodd;stroke:black;stroke-width:0.53420138;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" /> + <path + transform="matrix(0.413936,0,0,0.413936,71.03504,73.89043)" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + sodipodi:ry="1.25" + sodipodi:rx="1.25" + sodipodi:cy="52.25" + sodipodi:cx="-158.75" + id="path18361" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.77432352;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + </g> + <text + xml:space="preserve" + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Garamond" + x="505.65808" + y="413.98828" + id="text1921" + sodipodi:linespacing="100%"><tspan + sodipodi:role="line" + id="tspan1923" + x="505.65808" + y="413.98828">Large version, thinner lines</tspan></text> + <text + xml:space="preserve" + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Garamond" + x="-423.13144" + y="648.26971" + id="text1925" + sodipodi:linespacing="100%"><tspan + sodipodi:role="line" + id="tspan1927" + x="-423.13144" + y="648.26971">Small version for psplash</tspan></text> + <text + xml:space="preserve" + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Garamond" + x="-20" + y="360" + id="text1978" + sodipodi:linespacing="100%"><tspan + sodipodi:role="line" + x="-20" + y="360" + id="tspan1982">Small version for psplash (300×300)</tspan></text> + <g + id="g2936" + transform="translate(-476.8848,-138.3898)"> + <g + transform="matrix(2.942637,0,0,2.942637,481.8975,134.4777)" + id="g21062"> + <text + xml:space="preserve" + style="font-size:20.16246986px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#536c67;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Serif" + x="-86.595512" + y="94.3358" + id="text1941" + sodipodi:linespacing="100%" + transform="matrix(0,-1,1,0,0,0)"><tspan + sodipodi:role="line" + id="tspan1943" + x="-86.595512" + y="94.3358">ngström</tspan></text> + <path + style="font-size:19.43293762px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#536c67;fill-opacity:1;stroke:none;stroke-width:0.10194937;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:DejaVu Serif" + d="M 78.016636,93.581841 C 77.603166,93.58185 77.252031,93.729524 76.963231,94.024864 C 76.667895,94.313657 76.520222,94.664793 76.520212,95.078274 C 76.520222,95.498333 76.664617,95.852751 76.953385,96.14153 C 77.235627,96.423757 77.590041,96.564868 78.016636,96.564863 C 78.430148,96.564868 78.781283,96.423757 79.070052,96.14153 C 79.358851,95.852751 79.503246,95.498333 79.503225,95.078274 C 79.503246,94.664793 79.358851,94.313657 79.070052,94.024864 C 78.781283,93.729524 78.430148,93.58185 78.016636,93.581841 M 94.024538,102.43246 L 92.980973,102.43246 L 92.980973,101.14276 L 80.399121,96.328584 C 80.156295,96.801147 79.834688,97.162129 79.434312,97.411529 C 79.033966,97.654375 78.561408,97.775797 78.016636,97.775793 C 77.268445,97.775797 76.631799,97.513265 76.106721,96.988195 C 75.575105,96.463137 75.309298,95.826498 75.309277,95.078274 C 75.309298,94.330066 75.575105,93.693426 76.106721,93.168353 C 76.631799,92.636735 77.268445,92.370921 78.016636,92.370912 C 78.541715,92.370921 79.014274,92.498906 79.434312,92.754865 C 79.847813,93.010843 80.16942,93.375106 80.399121,93.847655 L 92.980973,89.003937 L 92.980973,87.556728 L 94.024538,87.556728 L 94.024538,92.902539 L 92.980973,92.902539 L 92.980973,91.268276 L 81.708498,95.580367 L 92.980973,99.912148 L 92.980973,98.297575 L 94.024538,98.297575 L 94.024538,102.43246" + id="text17274" + sodipodi:nodetypes="ccssscsccccccccscscscccccccccccc" /> + </g> + <g + transform="matrix(2.813764,0,0,2.813764,476.4644,139.9367)" + id="g21067"> + <path + style="fill:#374845;fill-rule:evenodd;stroke:#6f918a;stroke-width:2.15206432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 12.999066,47.703463 L 55.357092,47.703463" + id="path1945" + sodipodi:nodetypes="cc" /> + <path + sodipodi:type="arc" + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#6f918a;stroke-width:1.56876302;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path1947" + sodipodi:cx="-160" + sodipodi:cy="26" + sodipodi:rx="10" + sodipodi:ry="10" + d="M -150 26 A 10 10 0 1 1 -170,26 A 10 10 0 1 1 -150 26 z" + transform="matrix(0.794213,0,0,0.794213,161.2522,0.580159)" /> + <path + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 32.589654,1.1096339 L 32.589654,2.6980598 L 32.589654,11.752088 L 33.330918,14.50536 L 35.02524,14.50536 L 35.766506,11.752088 L 35.766506,2.6980598 L 35.766506,1.1096339 C 35.23703,1.021388 34.707554,0.84489625 34.178079,0.84489625 C 33.648604,0.84489625 33.119128,1.021388 32.589654,1.1096339 z " + id="path1949" + sodipodi:nodetypes="cccccccczc" /> + <path + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 3.4488346,94.677852 L 1.9959014,102.74656 L 2.3485637,105.51135 L 3.6040027,103.02868 L 5.0569359,94.988187 L 3.4488346,94.677852 z " + id="path2854" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.42443681;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path3767" + sodipodi:cx="-133.0625" + sodipodi:cy="91.8125" + sodipodi:rx="1.8125" + sodipodi:ry="1.8125" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + transform="matrix(1.601179,0,0,1.601179,218.9345,-53.31984)" /> + <path + style="fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:#536c67;stroke-width:0.33979961;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 65.113385,96.296589 L 66.285516,103.16021 L 65.262411,104.69422 L 63.809478,96.653724 L 65.113385,96.296589 z " + id="path2878" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.79286575;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 58.810986,73.853337 L 56.19236,74.95143 L 58.810986,73.853337" + id="path10016" + sodipodi:nodetypes="ccc" /> + <path + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 31.100503,25.233854 L 1.7477151,95.190781 L 2.0124527,101.51139 L 3.9979853,101.84231 L 34.178079,29.899855 L 64.358173,101.84231 L 66.343705,101.51139 L 66.608443,95.190781 L 37.255655,25.233854 L 34.906107,26.22662 L 34.178079,29.171827 L 33.450051,26.22662 L 31.100503,25.233854 z " + id="path1951" /> + <path + style="color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.5663327;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 50.955828,69.908335 L 55.257816,80.133827 L 59.526711,78.346848 L 56.316767,70.669455 L 50.955828,69.908335 z " + id="rect6452" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:#93aca7;stroke-width:0.42443681;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path3765" + sodipodi:cx="-133.0625" + sodipodi:cy="91.8125" + sodipodi:rx="1.8125" + sodipodi:ry="1.8125" + d="M -131.25 91.8125 A 1.8125 1.8125 0 1 1 -134.875,91.8125 A 1.8125 1.8125 0 1 1 -131.25 91.8125 z" + transform="matrix(1.601179,0,0,1.601179,275.5363,-51.72735)" /> + <path + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:3.28472996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 14.322754,46.379775 L 14.322754,49.027151" + id="path5559" + sodipodi:nodetypes="cc" /> + <path + style="fill:#4d4d4d;fill-rule:evenodd;stroke:#6f918a;stroke-width:3.28472996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 54.033404,46.379775 L 54.033404,49.027151" + id="path5561" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.67959929;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 57.375198,79.240556 L 54.805887,73.113512 L 57.375198,79.240556" + id="path8228" + sodipodi:nodetypes="ccc" /> + <path + style="color:black;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.9061324;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + d="M 57.721094,71.214665 L 59.929123,76.480163 L 57.721094,71.214665" + id="path9123" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.77129638;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path13689" + sodipodi:cx="-150" + sodipodi:cy="33.5" + sodipodi:rx="2.5" + sodipodi:ry="2.5" + d="M -147.5 33.5 A 2.5 2.5 0 1 1 -152.5,33.5 A 2.5 2.5 0 1 1 -147.5 33.5 z" + transform="matrix(0.881113,0,0,0.881113,166.3452,-0.181653)" /> + <path + style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.67959929;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 34.012618,42.938185 C 33.639517,43.017596 33.375542,43.351026 33.383866,43.732398 L 33.383866,51.674528 C 33.37981,51.960951 33.530297,52.227368 33.77769,52.371761 C 34.025092,52.516155 34.331066,52.516155 34.578468,52.371761 C 34.825861,52.227368 34.976348,51.960951 34.972292,51.674528 L 34.972292,43.732398 C 34.977598,43.489694 34.871628,43.257887 34.684607,43.10311 C 34.497586,42.948333 34.250045,42.887581 34.012618,42.938185 z " + id="path4672" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.64176649;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path11020" + sodipodi:cx="-158.75" + sodipodi:cy="52.25" + sodipodi:rx="1.25" + sodipodi:ry="1.25" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + transform="matrix(1.058951,0,0,1.058951,192.2794,-7.626709)" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:0.64176649;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path11907" + sodipodi:cx="-158.75" + sodipodi:cy="52.25" + sodipodi:rx="1.25" + sodipodi:ry="1.25" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + transform="matrix(1.058951,0,0,1.058951,212.2935,-7.626709)" /> + <path + style="fill:white;fill-opacity:0;fill-rule:evenodd;stroke:black;stroke-width:0.56633264;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0" + d="M 10.404637,86.686084 L 42.735724,9.6143312 L 10.404637,86.686084 z " + id="path3777" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:type="arc" + style="color:black;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:#93aca7;stroke-width:1.60860264;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="path11909" + sodipodi:cx="-158.75" + sodipodi:cy="52.25" + sodipodi:rx="1.25" + sodipodi:ry="1.25" + d="M -157.5 52.25 A 1.25 1.25 0 1 1 -160,52.25 A 1.25 1.25 0 1 1 -157.5 52.25 z" + transform="matrix(0.422478,0,0,0.422478,72.47005,73.2379)" /> + </g> + </g> + <rect + style="opacity:1;color:black;fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:#536c67;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect2964" + width="0" + height="15.817692" + x="436.01993" + y="359.46634" + rx="2.2974668" + ry="4.2123618" /> + <rect + style="opacity:1;color:black;fill:#536c67;fill-opacity:1;fill-rule:evenodd;stroke:#536c67;stroke-width:0.46281698;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" + id="rect2966" + width="2.6431277" + height="13.088069" + x="255.23138" + y="270.68051" /> + </g> +</svg> diff --git a/packages/angstrom/angstrom-feed-configs.bb b/packages/angstrom/angstrom-feed-configs.bb index 6730b6a044..9d94747179 100644 --- a/packages/angstrom/angstrom-feed-configs.bb +++ b/packages/angstrom/angstrom-feed-configs.bb @@ -1,6 +1,7 @@ DESCRIPTION = "Configuration files for online package repositories aka feeds" -PR = "1" +#PV = "${DISTRO_VERSION}" +PR = "r2" PACKAGE_ARCH = "${MACHINE_ARCH}" FEED_BASEPATH ?= "unstable/feed/" @@ -11,7 +12,7 @@ do_compile() { echo "src/gz ${feed} ${ANGSTROM_URI}/${FEED_BASEPATH}${FEED_ARCH}/${feed}" > ${S}/${sysconfdir}/ipkg/${feed}-feed.conf done - echo "src/gz ${MACHINE_ARCH} ${ANGSTROM_URI}/${FEED_BASEPATH}${FEED_ARCH}/${MACHINE_ARCH}" > ${S}/${sysconfdir}/ipkg/${MACHINE_ARCH}-feed.conf + echo "src/gz ${MACHINE_ARCH} ${ANGSTROM_URI}/${FEED_BASEPATH}${FEED_ARCH}/machine/${MACHINE_ARCH}" > ${S}/${sysconfdir}/ipkg/${MACHINE_ARCH}-feed.conf echo "src/gz no-arch ${ANGSTROM_URI}/${FEED_BASEPATH}/all" > ${S}/${sysconfdir}/ipkg/noarch-feed.conf } diff --git a/packages/angstrom/angstrom-gpe-task-base.bb b/packages/angstrom/angstrom-gpe-task-base.bb index 265f51863d..cc3d08972f 100644 --- a/packages/angstrom/angstrom-gpe-task-base.bb +++ b/packages/angstrom/angstrom-gpe-task-base.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Task packages for the Angstrom distribution" -PR = "r32" +PR = "r33" inherit task @@ -12,6 +12,8 @@ RDEPENDS_${PN} = "\ rxvt-unicode \ gpe-terminal \ matchbox-keyboard \ + xkbd \ + xkbd-layout-ru \ gpe-theme-clearlooks \ xst \ xhost \ diff --git a/packages/angstrom/angstrom-gpe-task-settings.bb b/packages/angstrom/angstrom-gpe-task-settings.bb index a9463fdbe5..adc4bb0756 100644 --- a/packages/angstrom/angstrom-gpe-task-settings.bb +++ b/packages/angstrom/angstrom-gpe-task-settings.bb @@ -1,10 +1,11 @@ DESCRIPTION = "Task packages for the Angstrom distribution" -PR = "r32" +PR = "r33" inherit task RDEPENDS_${PN} = "\ matchbox-panel-manager \ + mboxkbd-layouts-gui \ gpe-su \ gpe-conf \ gpe-package \ diff --git a/packages/devmem2/devmem2.bb b/packages/devmem2/devmem2.bb index 64de9fcbf3..56095f5c99 100644 --- a/packages/devmem2/devmem2.bb +++ b/packages/devmem2/devmem2.bb @@ -1,3 +1,4 @@ +DESCRIPTION = "Simple program to read/write from/to any location in memory." SRC_URI = "http://www.abcsinc.com/small-linux/devmem2.c" LICENSE = "GPL" diff --git a/packages/directfb/directfb-examples_1.0.0.bb b/packages/directfb/directfb-examples_1.0.0.bb index 8a792b4ae4..064a808273 100644 --- a/packages/directfb/directfb-examples_1.0.0.bb +++ b/packages/directfb/directfb-examples_1.0.0.bb @@ -3,8 +3,10 @@ DEPENDS = "directfb" SECTION = "libs" LICENSE = "GPL" -SRC_URI = "http://www.directfb.org/downloads/Extras/DirectFB-extra-${PV}.tar.gz" -S = "${WORKDIR}/DirectFB-extra-${PV}" +SRC_URI = " \ + http://www.directfb.org/downloads/Extras/DirectFB-examples-${PV}.tar.gz \ + " +S = "${WORKDIR}/DirectFB-examples-${PV}" inherit autotools diff --git a/packages/directfb/directfb_1.1.0.bb b/packages/directfb/directfb_1.1.0.bb index 84772b6a25..2c600b409f 100644 --- a/packages/directfb/directfb_1.1.0.bb +++ b/packages/directfb/directfb_1.1.0.bb @@ -10,12 +10,15 @@ DEPENDS = "jpeg libpng freetype zlib tslib" PR = "r1" RV = "1.1-0" -SRC_URI = "http://www.directfb.org/download/DirectFB/DirectFB-${PV}.tar.gz \ - file://fix-pkgconfig-cflags.patch;patch=1 \ - file://fix-font-missing-char.patch;patch=1 \ - file://getpagesize.patch;patch=1 \ - file://fix-includes.patch;patch=1 \ - file://mkdfiff.patch;patch=1" +SRC_URI = " \ + http://www.directfb.org/download/DirectFB/DirectFB-${PV}.tar.gz \ + file://fix-configure-include-path.patch;patch=1 \ + file://fix-pkgconfig-cflags.patch;patch=1 \ + file://fix-font-missing-char.patch;patch=1 \ + file://getpagesize.patch;patch=1 \ + file://fix-includes.patch;patch=1 \ + file://mkdfiff.patch;patch=1 \ + " S = "${WORKDIR}/DirectFB-${PV}" @@ -23,11 +26,12 @@ LDFLAGS_append =" -lts -lm" inherit autotools pkgconfig -EXTRA_OECONF = "--with-gfxdrivers=none \ +EXTRA_OECONF = " \ + --with-gfxdrivers=none \ --enable-libmpeg3=no \ --enable-freetype=yes \ --enable-sdl=no \ - --enable-vnc=no \ + --enable-vnc=no \ --disable-x11 \ " diff --git a/packages/directfb/files/fix-configure-include-path.patch b/packages/directfb/files/fix-configure-include-path.patch new file mode 100644 index 0000000000..f9bbff8b00 --- /dev/null +++ b/packages/directfb/files/fix-configure-include-path.patch @@ -0,0 +1,13 @@ +--- DirectFB-1.1.0/configure.in-orig 2007-08-27 00:07:00.000000000 -0700 ++++ DirectFB-1.1.0/configure.in 2007-11-26 12:05:52.000000000 -0800 +@@ -1380,8 +1380,8 @@ + + MODULEDIR=$libdir/$MODULEDIRNAME + DATADIR=$datadir/directfb-$VERSION +-INCLUDEDIR=$includedir/directfb +-INTERNALINCLUDEDIR=$includedir/directfb-internal ++INCLUDEDIR=$includedir/ ++INTERNALINCLUDEDIR=$includedir/ + + SOPATH=$libdir/libdirectfb-$LT_RELEASE.so.$LT_CURRENT + AC_SUBST(SOPATH) diff --git a/packages/dropbear/dropbear-early/.mtn2git_empty b/packages/dropbear/dropbear-early/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/dropbear/dropbear-early/.mtn2git_empty diff --git a/packages/dropbear/dropbear-early/dropbear-early b/packages/dropbear/dropbear-early/dropbear-early new file mode 100644 index 0000000000..fa06a93003 --- /dev/null +++ b/packages/dropbear/dropbear-early/dropbear-early @@ -0,0 +1,10 @@ +#!/bin/sh + +for x in $(cat /proc/cmdline); do + case $x in + dropbear=early) + echo "Starting dropbear early" + exec /etc/init.d/dropbear $* + ;; + esac +done diff --git a/packages/dropbear/dropbear-early_1.0.bb b/packages/dropbear/dropbear-early_1.0.bb new file mode 100644 index 0000000000..651d1327ca --- /dev/null +++ b/packages/dropbear/dropbear-early_1.0.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Allow to start dropbear soon after boot, depending on kernel command line option." +SECTION = "devel" +PR = "r1" + +SRC_URI = "file://dropbear-early" + +inherit update-rc.d + +do_install() { + install -d ${D}${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/ +} + +PACKAGE_ARCH = "all" + +INITSCRIPT_NAME = "dropbear-early" +INITSCRIPT_PARAMS = "start 00 S ." diff --git a/packages/dtc/dtc-native_1.0.0.bb b/packages/dtc/dtc-native_1.0.0.bb new file mode 100644 index 0000000000..35c9b1161c --- /dev/null +++ b/packages/dtc/dtc-native_1.0.0.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels." +SECTION = "bootloader" +PRIORITY = "optional" +LICENSE = "GPL" + +DEFAULT_PREFERENCE = "1" + +SRC_URI = "http://www.jdl.com/pub/software/dtc-${PV}.tgz" + +S = "${WORKDIR}/dtc" + +inherit autotools native + +do_stage() { + install -m 755 dtc ${STAGING_BINDIR}/dtc +} diff --git a/packages/e2fsprogs/e2fsprogs-native_1.38.bb b/packages/e2fsprogs/e2fsprogs-native_1.38.bb index dcb5c412d0..e111ac9b61 100644 --- a/packages/e2fsprogs/e2fsprogs-native_1.38.bb +++ b/packages/e2fsprogs/e2fsprogs-native_1.38.bb @@ -2,6 +2,8 @@ SECTION = "base" require e2fsprogs.inc inherit native +PR = "r1" + EXTRA_OECONF = "" FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/e2fsprogs-${PV}', '${FILE_DIRNAME}/e2fsprogs', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" diff --git a/packages/e2fsprogs/e2fsprogs.inc b/packages/e2fsprogs/e2fsprogs.inc index f209baf3b4..7673d49e21 100644 --- a/packages/e2fsprogs/e2fsprogs.inc +++ b/packages/e2fsprogs/e2fsprogs.inc @@ -9,6 +9,7 @@ S = "${WORKDIR}/e2fsprogs-${PV}" inherit autotools -EXTRA_OECONF = " --enable-dynamic-e2fsck" +EXTRA_OECONF_linux-uclibc = "--disable-nls" +EXTRA_OECONF += " --enable-dynamic-e2fsck" PARALLEL_MAKE = "" diff --git a/packages/e2fsprogs/e2fsprogs_1.38.bb b/packages/e2fsprogs/e2fsprogs_1.38.bb index 2e8bf3d219..4f6f62bb12 100644 --- a/packages/e2fsprogs/e2fsprogs_1.38.bb +++ b/packages/e2fsprogs/e2fsprogs_1.38.bb @@ -1,6 +1,6 @@ require e2fsprogs.inc -PR = "r8" +PR = "r10" SRC_URI += "file://no-hardlinks.patch;patch=1" diff --git a/packages/flite/flite-1.2/flite-1.2-alsa_support-1.2.diff b/packages/flite/flite-1.2/flite-1.2-alsa_support-1.2.diff new file mode 100644 index 0000000000..3d2753a01f --- /dev/null +++ b/packages/flite/flite-1.2/flite-1.2-alsa_support-1.2.diff @@ -0,0 +1,512 @@ +Index: configure +=================================================================== +--- flite-1.2-release/configure (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/configure (.../release-v1.2) (revision 10) +@@ -1415,16 +1415,16 @@ + echo "$ac_t""no" 1>&6 + fi + +-ac_safe=`echo "sys/asoundlib.h" | sed 'y%./+-%__p_%'` +-echo $ac_n "checking for sys/asoundlib.h""... $ac_c" 1>&6 +-echo "configure:1421: checking for sys/asoundlib.h" >&5 ++ac_safe=`echo "alsa/asoundlib.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for alsa/asoundlib.h""... $ac_c" 1>&6 ++echo "configure:1421: checking for alsa/asoundlib.h" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <<EOF + #line 1426 "configure" + #include "confdefs.h" +-#include <sys/asoundlib.h> ++#include <alsa/asoundlib.h> + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" + { (eval echo configure:1431: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +@@ -1445,23 +1445,24 @@ + echo "$ac_t""yes" 1>&6 + AUDIODRIVER="alsa" + AUDIODEFS=-DCST_AUDIO_ALSA ++ AUDIOLIBS=-lasound + else + echo "$ac_t""no" 1>&6 + fi + + ac_safe=`echo "mmsystem.h" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for mmsystem.h""... $ac_c" 1>&6 +-echo "configure:1455: checking for mmsystem.h" >&5 ++echo "configure:1456: checking for mmsystem.h" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext <<EOF +-#line 1460 "configure" ++#line 1461 "configure" + #include "confdefs.h" + #include <mmsystem.h> + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:1465: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:1466: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +Index: include/cst_sts.h +=================================================================== +--- flite-1.2-release/include/cst_sts.h (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/include/cst_sts.h (.../release-v1.2) (revision 10) +@@ -47,9 +47,9 @@ + /* else where, this information plus the indexes in the Unit relation */ + /* allow reconstruction of the signal itself */ + struct cst_sts_struct { +- const unsigned short *frame; +- const int size; /* in samples */ +- const unsigned char *residual; ++ unsigned short *frame; ++ int size; /* in samples */ ++ unsigned char *residual; + }; + typedef struct cst_sts_struct cst_sts; + +Index: configure.in +=================================================================== +--- flite-1.2-release/configure.in (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/configure.in (.../release-v1.2) (revision 10) +@@ -131,9 +131,10 @@ + AC_CHECK_HEADER(sys/audioio.h, + [AUDIODRIVER="sun" + AUDIODEFS=-DCST_AUDIO_SUNOS]) +-AC_CHECK_HEADER(sys/asoundlib.h, ++AC_CHECK_HEADER(alsa/asoundlib.h, + [AUDIODRIVER="alsa" +- AUDIODEFS=-DCST_AUDIO_ALSA]) ++ AUDIODEFS=-DCST_AUDIO_ALSA ++ AUDIOLIBS=-lasound]) + AC_CHECK_HEADER(mmsystem.h, + [AUDIODRIVER="wince" + AUDIODEFS=-DCST_AUDIO_WINCE +Index: src/audio/au_alsa.c +=================================================================== +--- flite-1.2-release/src/audio/au_alsa.c (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/src/audio/au_alsa.c (.../release-v1.2) (revision 10) +@@ -2,7 +2,7 @@ + /* */ + /* Language Technologies Institute */ + /* Carnegie Mellon University */ +-/* Copyright (c) 2001 */ ++/* Copyright (c) 2000 */ + /* All Rights Reserved. */ + /* */ + /* Permission is hereby granted, free of charge, to use and distribute */ +@@ -29,158 +29,283 @@ + /* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF */ + /* THIS SOFTWARE. */ + /* */ ++/*********************************************************************** */ ++/* Author: Lukas Loehrer ( */ ++/* Date: January 2005 */ + /*************************************************************************/ +-/* Author: Geoff Harrison (mandrake@cepstral.com) */ +-/* Date: Sepetember 2001 */ +-/*************************************************************************/ + /* */ +-/* Access to ALSA audio devices */ +-/* */ ++/* Native access to alsa audio devices on Linux */ ++/* Tested with libasound version 1.0.10 */ + /*************************************************************************/ + +-#include <stdio.h> + #include <stdlib.h> + #include <unistd.h> + #include <sys/types.h> ++#include <assert.h> ++#include <errno.h> ++ + #include "cst_string.h" + #include "cst_wave.h" + #include "cst_audio.h" + +-#include <sys/asoundlib.h> ++#include <alsa/asoundlib.h> + +-#include <sys/stat.h> +-#include <fcntl.h> + +-static int alsa_card = 0, alsa_device = 0; ++/*static char *pcm_dev_name = "hw:0,0"; */ ++static char *pcm_dev_name ="default"; + ++static inline void print_pcm_state(snd_pcm_t *handle, char *msg) ++{ ++ fprintf(stderr, "PCM state at %s = %s\n", msg, ++ snd_pcm_state_name(snd_pcm_state(handle))); ++} ++ + cst_audiodev *audio_open_alsa(int sps, int channels, cst_audiofmt fmt) + { +- snd_pcm_channel_info_t pinfo; +- snd_pcm_channel_params_t params; +- snd_pcm_channel_setup_t setup; +- snd_pcm_t *pcm; +- cst_audiodev *ad; +- int err; ++ cst_audiodev *ad; ++ unsigned int real_rate; ++ int err; + +-#ifdef __QNXNTO__ +- if (snd_pcm_open_preferred(&pcm,&alsa_card,&alsa_device,SND_PCM_OPEN_PLAYBACK) < 0) +- { +- cst_errmsg("alsa_audio: failed to open audio device\n"); +- cst_error(); +- } +- if (snd_pcm_plugin_set_disable(pcm,PLUGIN_DISABLE_MMAP) < 0) +- { +- cst_errmsg("alsa_audio: failed to disable mmap\n"); +- snd_pcm_close(pcm); +- cst_error(); +- } +-#else +- if (snd_pcm_open(&pcm,alsa_card,alsa_device,SND_PCM_OPEN_PLAYBACK) < 0) +- { +- cst_errmsg("alsa_audio: failed to open audio device\n"); +- cst_error(); +- } +-#endif ++ /* alsa specific stuff */ ++ snd_pcm_t *pcm_handle; ++ snd_pcm_stream_t stream = SND_PCM_STREAM_PLAYBACK; ++ snd_pcm_hw_params_t *hwparams; ++ snd_pcm_format_t format; ++ snd_pcm_access_t access = SND_PCM_ACCESS_RW_INTERLEAVED; + ++ /* Allocate the snd_pcm_hw_params_t structure on the stack. */ ++ snd_pcm_hw_params_alloca(&hwparams); + +- memset(&pinfo, 0, sizeof(pinfo)); +- memset(¶ms, 0, sizeof(params)); +- memset(&setup, 0, sizeof(setup)); ++ /* Open pcm device */ ++ err = snd_pcm_open(&pcm_handle, pcm_dev_name, stream, 0); ++ if (err < 0) ++ { ++ cst_errmsg("audio_open_alsa: failed to open audio device %s. %s\n", ++ pcm_dev_name, snd_strerror(err)); ++ return NULL; ++ } + +- pinfo.channel = SND_PCM_CHANNEL_PLAYBACK; +- snd_pcm_plugin_info(pcm,&pinfo); ++ /* Init hwparams with full configuration space */ ++ err = snd_pcm_hw_params_any(pcm_handle, hwparams); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to get hardware parameters from audio device. %s\n", snd_strerror(err)); ++ return NULL; ++ } + +- params.mode = SND_PCM_MODE_BLOCK; +- params.channel = SND_PCM_CHANNEL_PLAYBACK; +- params.start_mode = SND_PCM_START_DATA; +- params.stop_mode = SND_PCM_STOP_STOP; ++ /* Set access mode */ ++ err = snd_pcm_hw_params_set_access(pcm_handle, hwparams, access); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set access mode. %s.\n", snd_strerror(err)); ++ return NULL; ++ } + +- params.buf.block.frag_size = pinfo.max_fragment_size; +- params.buf.block.frags_max = 1; +- params.buf.block.frags_min = 1; +- +- params.format.interleave = 1; +- params.format.rate = sps; +- params.format.voices = channels; +- +- switch (fmt) +- { +- case CST_AUDIO_LINEAR16: ++ /* Determine matching alsa sample format */ ++ /* This could be implemented in a more */ ++ /* flexible way (byte order conversion). */ ++ switch (fmt) ++ { ++ case CST_AUDIO_LINEAR16: + if (CST_LITTLE_ENDIAN) +- params.format.format = SND_PCM_SFMT_S16_LE; ++ format = SND_PCM_FORMAT_S16_LE; + else +- params.format.format = SND_PCM_SFMT_S16_BE; ++ format = SND_PCM_FORMAT_S16_BE; + break; +- case CST_AUDIO_LINEAR8: +- params.format.format = SND_PCM_SFMT_U8; ++ case CST_AUDIO_LINEAR8: ++ format = SND_PCM_FORMAT_U8; + break; +- case CST_AUDIO_MULAW: +- params.format.format = SND_PCM_SFMT_MU_LAW; ++ case CST_AUDIO_MULAW: ++ format = SND_PCM_FORMAT_MU_LAW; + break; +- } ++ default: ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to find suitable format.\n"); ++ return NULL; ++ break; ++ } + +- if((err = snd_pcm_plugin_params(pcm,¶ms)) < 0) +- { +- cst_errmsg("alsa_audio params setting failed: %s\n",snd_strerror(err)); +- snd_pcm_close(pcm); +- cst_error(); +- } +- if((err = snd_pcm_plugin_setup(pcm,SND_PCM_CHANNEL_PLAYBACK)) > 0) { +- cst_errmsg("alsa_audio sound prepare setting failed: %s\n",snd_strerror(err)); +- snd_pcm_close(pcm); +- cst_error(); +- } +- if((err = snd_pcm_plugin_prepare(pcm,SND_PCM_CHANNEL_PLAYBACK)) > 0) { +- cst_errmsg("alsa_audio sound prepare setting failed: %s\n",snd_strerror(err)); +- snd_pcm_close(pcm); +- cst_error(); +- } ++ /* Set samble format */ ++ err = snd_pcm_hw_params_set_format(pcm_handle, hwparams, format); ++ if (err <0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set format. %s.\n", snd_strerror(err)); ++ return NULL; ++ } + +- pinfo.channel = SND_PCM_CHANNEL_PLAYBACK; +- snd_pcm_plugin_info(pcm,&pinfo); ++ /* Set sample rate near the disired rate */ ++ real_rate = sps; ++ err = snd_pcm_hw_params_set_rate_near(pcm_handle, hwparams, &real_rate, 0); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set sample rate near %d. %s.\n", sps, snd_strerror(err)); ++ return NULL; ++ } ++ /*FIXME: This is probably too strict */ ++ assert(sps == real_rate); + +- ad = cst_alloc(cst_audiodev, 1); +- ad->platform_data = pcm; +- ad->sps = ad->real_sps = sps; +- ad->channels = ad->real_channels = channels; +- ad->fmt = ad->real_fmt = fmt; ++ /* Set number of channels */ ++ assert(channels >0); ++ err = snd_pcm_hw_params_set_channels(pcm_handle, hwparams, channels); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set number of channels to %d. %s.\n", channels, snd_strerror(err)); ++ return NULL; ++ } + +- return ad; ++ /* Commit hardware parameters */ ++ err = snd_pcm_hw_params(pcm_handle, hwparams); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set hw parameters. %s.\n", snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Make sure the device is ready to accept data */ ++ assert(snd_pcm_state(pcm_handle) == SND_PCM_STATE_PREPARED); ++ ++ /* Write hardware parameters to flite audio device data structure */ ++ ad = cst_alloc(cst_audiodev, 1); ++ assert(ad != NULL); ++ ad->real_sps = ad->sps = sps; ++ ad->real_channels = ad->channels = channels; ++ ad->real_fmt = ad->fmt = fmt; ++ ad->platform_data = (void *) pcm_handle; ++ ++ return ad; + } + + int audio_close_alsa(cst_audiodev *ad) + { +- snd_pcm_t *pcm; ++ int result; ++ snd_pcm_t *pcm_handle; + +- if (ad == NULL) +- return 0; ++ if (ad == NULL) ++ return 0; + +- pcm = ad->platform_data; +- snd_pcm_plugin_flush(pcm,0); +- snd_pcm_close(pcm); +- cst_free(ad); ++ pcm_handle = (snd_pcm_t *) ad->platform_data; ++ result = snd_pcm_close(pcm_handle); ++ if (result < 0) ++ { ++ cst_errmsg("audio_close_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ cst_free(ad); ++ return result; ++} + +- return 0; ++/* Returns zero if recovery was successful. */ ++static int recover_from_error(snd_pcm_t *pcm_handle, ssize_t res) ++{ ++ if (res == -EPIPE) /* xrun */ ++ { ++ res = snd_pcm_prepare(pcm_handle); ++ if (res < 0) ++ { ++ /* Failed to recover from xrun */ ++ cst_errmsg("recover_from_write_error: failed to recover from xrun. %s\n.", snd_strerror(res)); ++ return res; ++ } ++ } ++ else if (res == -ESTRPIPE) /* Suspend */ ++ { ++ while ((res = snd_pcm_resume(pcm_handle)) == -EAGAIN) ++ { ++ snd_pcm_wait(pcm_handle, 1000); ++ } ++ if (res < 0) ++ { ++ res = snd_pcm_prepare(pcm_handle); ++ if (res <0) ++ { ++ /* Resume failed */ ++ cst_errmsg("audio_recover_from_write_error: failed to resume after suspend. %s\n.", snd_strerror(res)); ++ return res; ++ } ++ } ++ } ++ else if (res < 0) ++ { ++ /* Unknown failure */ ++ cst_errmsg("audio_recover_from_write_error: %s.\n", snd_strerror(res)); ++ return res; ++ } ++ return 0; + } + + int audio_write_alsa(cst_audiodev *ad, void *samples, int num_bytes) + { +- snd_pcm_t *pcm = ad->platform_data; ++ size_t frame_size; ++ ssize_t num_frames, res; ++ snd_pcm_t *pcm_handle; ++ char *buf = (char *) samples; + +- return snd_pcm_plugin_write(pcm,samples,num_bytes); ++ /* Determine frame size in bytes */ ++ frame_size = audio_bps(ad->real_fmt) * ad->real_channels; ++ /* Require that only complete frames are handed in */ ++ assert((num_bytes % frame_size) == 0); ++ num_frames = num_bytes / frame_size; ++ pcm_handle = (snd_pcm_t *) ad->platform_data; ++ ++ while (num_frames > 0) ++ { ++ res = snd_pcm_writei(pcm_handle, buf, num_frames); ++ if (res != num_frames) ++ { ++ if (res == -EAGAIN || (res > 0 && res < num_frames)) ++ { ++ snd_pcm_wait(pcm_handle, 100); ++ } ++ else if (recover_from_error(pcm_handle, res) < 0) ++ { ++ return -1; ++ } ++ } ++ ++ if (res >0) ++ { ++ num_frames -= res; ++ buf += res * frame_size; ++ } ++ } ++ return num_bytes; + } + + int audio_flush_alsa(cst_audiodev *ad) + { +- snd_pcm_t *pcm = ad->platform_data; +- +- return snd_pcm_plugin_flush(pcm,0); ++ int result; ++ result = snd_pcm_drain((snd_pcm_t *) ad->platform_data); ++ if (result < 0) ++ { ++ cst_errmsg("audio_flush_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ /* Prepare device for more data */ ++ result = snd_pcm_prepare((snd_pcm_t *) ad->platform_data); ++if (result < 0) ++ { ++ cst_errmsg("audio_flush_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ return result; + } + + int audio_drain_alsa(cst_audiodev *ad) + { +- snd_pcm_t *pcm = ad->platform_data; +- +- return snd_pcm_plugin_playback_drain(pcm); ++ int result; ++ result = snd_pcm_drop((snd_pcm_t *) ad->platform_data); ++ if (result < 0) ++ { ++ cst_errmsg("audio_drain_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++/* Prepare device for more data */ ++ result = snd_pcm_prepare((snd_pcm_t *) ad->platform_data); ++if (result < 0) ++ { ++ cst_errmsg("audio_drain_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ return result; + } +- +Index: doc/Makefile +=================================================================== +--- flite-1.2-release/doc/Makefile (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/doc/Makefile (.../release-v1.2) (revision 10) +@@ -53,6 +53,7 @@ + @ if [ ! -d html ] ; \ + then mkdir -p html ; fi + (cd html; texi2html -number -split_chapter ../flite.texi) ++ mv html/flite/*.html html/ && rmdir html/flite + @ for i in html/*.html ; \ + do \ + sed 's/<BODY>/<BODY bgcolor="#ffffff">/' $$i >ttt.html; \ +Index: config/common_make_rules +=================================================================== +--- flite-1.2-release/config/common_make_rules (.../flite-1.2-orig) (revision 10) ++++ flite-1.2-release/config/common_make_rules (.../release-v1.2) (revision 10) +@@ -88,7 +88,7 @@ + @ rm -rf shared_os && mkdir shared_os + @ rm -f $@ $(LIBDIR)/$@.${PROJECT_VERSION} $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} + @ (cd shared_os && ar x ../$<) +- @ (cd shared_os && $(CC) -shared -Wl,-soname,$@.${PROJECT_SHLIB_VERSION} -o ../$@.${PROJECT_VERSION} *.os) ++ @ (cd shared_os && $(CC) -shared -Wl,-soname,$@.${PROJECT_SHLIB_VERSION} -o ../$@.${PROJECT_VERSION} *.os $(AUDIOLIBS)) + @ ln -s $(LIBDIR)/$@.${PROJECT_VERSION} $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} + @ ln -s $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} $(LIBDIR)/$@ + @ rm -rf shared_os diff --git a/packages/flite/flite-1.3/.mtn2git_empty b/packages/flite/flite-1.3/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/flite/flite-1.3/.mtn2git_empty diff --git a/packages/flite/flite-1.3/flite-1.3-alsa_support-1.2.diff b/packages/flite/flite-1.3/flite-1.3-alsa_support-1.2.diff new file mode 100644 index 0000000000..b3e4b7aae4 --- /dev/null +++ b/packages/flite/flite-1.3/flite-1.3-alsa_support-1.2.diff @@ -0,0 +1,6615 @@ +Index: lang/usenglish/Makefile +=================================================================== +--- flite-1.3-release/lang/usenglish/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/lang/usenglish/Makefile (.../release-1.2) (revision 7) +@@ -38,6 +38,7 @@ + DIRNAME=lang/usenglish + BUILD_DIRS = + ALL_DIRS= ++include $(TOP)/config/config + H = usenglish.h us_int_accent_cart.h us_int_tone_cart.h us_durz_cart.h \ + us_ffeatures.h us_phrasing_cart.h us_text.h us_f0.h us_nums_cart.h + SRCS = us_int_accent_cart.c us_int_tone_cart.c us_f0_model.c \ +@@ -45,7 +46,11 @@ + us_phoneset.c us_ffeatures.c us_phrasing_cart.c \ + us_gpos.c us_text.c us_expand.c us_postlex.c \ + us_nums_cart.c us_aswd.c usenglish.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + SCM= + FILES = Makefile $(SCM) $(SRCS) $(H) + LIBNAME = flite_usenglish +Index: lang/cmu_us_kal/Makefile +=================================================================== +--- flite-1.3-release/lang/cmu_us_kal/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/lang/cmu_us_kal/Makefile (.../release-1.2) (revision 7) +@@ -43,7 +43,12 @@ + cmu_us_kal_lpc.c \ + cmu_us_kal_res.c \ + cmu_us_kal_residx.c +-OBJS = $(SRCS:.c=.o) ++include $(TOP)/config/config ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + SCM= + FILES = Makefile $(SCM) $(SRCS) $(H) + LIBNAME = flite_cmu_us_kal +Index: lang/cmu_us_kal16/Makefile +=================================================================== +--- flite-1.3-release/lang/cmu_us_kal16/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/lang/cmu_us_kal16/Makefile (.../release-1.2) (revision 7) +@@ -44,7 +44,12 @@ + cmu_us_kal16_lpc.c \ + cmu_us_kal16_res.c \ + cmu_us_kal16_residx.c +-OBJS = $(SRCS:.c=.o) ++include $(TOP)/config/config ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + SCM= + FILES = Makefile $(SCM) $(SRCS) $(H) + LIBNAME = flite_cmu_us_kal16 +Index: lang/cmu_time_awb/Makefile +=================================================================== +--- flite-1.3-release/lang/cmu_time_awb/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/lang/cmu_time_awb/Makefile (.../release-1.2) (revision 7) +@@ -45,7 +45,12 @@ + cmu_time_awb_mcep.c \ + cmu_time_awb_lpc.c \ + cmu_time_awb_lex_entry.c +-OBJS = $(SRCS:.c=.o) ++include $(TOP)/config/config ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + SCM= + FILES = Makefile $(SCM) $(SRCS) $(H) + LIBNAME = flite_cmu_time_awb +Index: lang/cmulex/Makefile +=================================================================== +--- flite-1.3-release/lang/cmulex/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/lang/cmulex/Makefile (.../release-1.2) (revision 7) +@@ -38,13 +38,20 @@ + DIRNAME=lang/cmulex + BUILD_DIRS = + ALL_DIRS= ++ + H = cmu_lts_model.h cmulex.h + SRCS = cmu_lts_rules.c cmu_lts_model.c \ + cmu_lex.c cmu_lex_entries.c cmu_lex_data.c + LEX_DATA_INCLUDES = cmu_lex_data_raw.c cmu_lex_num_bytes.c \ + cmu_lex_phones_huff_table.c cmu_lex_entries_huff_table.c + +-OBJS = $(SRCS:.c=.o) ++include $(TOP)/config/config ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif ++ + SCRIPTS=make_cmulex + + SCM= +Index: configure +=================================================================== +--- flite-1.3-release/configure (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/configure (.../release-1.2) (revision 7) +@@ -1,324 +1,38 @@ + #! /bin/sh ++ + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.57. ++# Generated automatically using autoconf version 2.13 ++# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. + # +-# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 +-# Free Software Foundation, Inc. + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## + +-# Be Bourne compatible +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then +- set -o posix +-fi +- +-# Support unset when possible. +-if (FOO=FOO; unset FOO) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- +- +-# Work around bugs in pre-3.0 UWIN ksh. +-$as_unset ENV MAIL MAILPATH +-PS1='$ ' +-PS2='> ' +-PS4='+ ' +- +-# NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME +-do +- if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- $as_unset $as_var +- fi +-done +- +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then +- as_basename=basename +-else +- as_basename=false +-fi +- +- +-# Name of the executable. +-as_me=`$as_basename "$0" || +-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)$' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } +- /^X\/\(\/\/\)$/{ s//\1/; q; } +- /^X\/\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` +- +- +-# PATH needs CR, and LINENO needs CR and PATH. +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- +-# The user is always right. +-if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' +- else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh +-fi +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" || { +- # Find who we are. Look in the path if we contain no path at all +- # relative or not. +- case $0 in +- *[\\/]* ) as_myself=$0 ;; +- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done +- +- ;; +- esac +- # We did not find ourselves, most probably we were run as `sh COMMAND' +- # in which case we are not to be found in the path. +- if test "x$as_myself" = x; then +- as_myself=$0 +- fi +- if test ! -f "$as_myself"; then +- { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 +- { (exit 1); exit 1; }; } +- fi +- case $CONFIG_SHELL in +- '') +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for as_base in sh bash ksh sh5; do +- case $as_dir in +- /*) +- if ("$as_dir/$as_base" -c ' +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then +- $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } +- $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } +- CONFIG_SHELL=$as_dir/$as_base +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$0" ${1+"$@"} +- fi;; +- esac +- done +-done +-;; +- esac +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line before each line; the second 'sed' does the real +- # work. The second script uses 'N' to pair each line-number line +- # with the numbered line, and appends trailing '-' during +- # substitution so that $LINENO is not a special case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) +- sed '=' <$as_myself | +- sed ' +- N +- s,$,-, +- : loop +- s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, +- t loop +- s,-$,, +- s,^['$as_cr_digits']*\n,, +- ' >$as_me.lineno && +- chmod +x $as_me.lineno || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensible to this). +- . ./$as_me.lineno +- # Exit status is that of the last command. +- exit +-} +- +- +-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in +- *c*,-n*) ECHO_N= ECHO_C=' +-' ECHO_T=' ' ;; +- *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; +- *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +-esac +- +-if expr a : '\(a\)' >/dev/null 2>&1; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-rm -f conf$$ conf$$.exe conf$$.file +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- # We could just check for DJGPP; but this test a) works b) is more generic +- # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). +- if test -f conf$$.exe; then +- # Don't use ln at all; we don't have any links +- as_ln_s='cp -p' +- else +- as_ln_s='ln -s' +- fi +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +-else +- as_ln_s='cp -p' +-fi +-rm -f conf$$ conf$$.exe conf$$.file +- +-if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: +-else +- as_mkdir_p=false +-fi +- +-as_executable_p="test -f" +- +-# Sed expression to map a string onto a valid CPP name. +-as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" +- +-# Sed expression to map a string onto a valid variable name. +-as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" +- +- +-# IFS +-# We need space, tab and new line, in precisely that order. +-as_nl=' +-' +-IFS=" $as_nl" +- +-# CDPATH. +-$as_unset CDPATH +- +- +-# Name of the host. +-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +-# so uname gets run too. +-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` +- +-exec 6>&1 +- +-# +-# Initializations. +-# ++# Defaults: ++ac_help= + ac_default_prefix=/usr/local +-ac_config_libobj_dir=. +-cross_compiling=no +-subdirs= +-MFLAGS= +-MAKEFLAGS= +-SHELL=${CONFIG_SHELL-/bin/sh} ++# Any additions from configure.in: ++ac_help="$ac_help ++ --disable-shared without shared library support" ++ac_help="$ac_help ++ --disable-sockets without socket support" ++ac_help="$ac_help ++ --with-audio with specific audio support (none linux freebsd etc) " ++ac_help="$ac_help ++ --with-lang with language " ++ac_help="$ac_help ++ --with-vox with vox " ++ac_help="$ac_help ++ --with-lex with lexicon " + +-# Maximum number of lines to put in a shell here document. +-# This variable seems obsolete. It should probably be removed, and +-# only ac_max_sed_lines should be used. +-: ${ac_max_here_lines=38} +- +-# Identity of this package. +-PACKAGE_NAME= +-PACKAGE_TARNAME= +-PACKAGE_VERSION= +-PACKAGE_STRING= +-PACKAGE_BUGREPORT= +- +-ac_unique_file="include/flite.h" +-# Factoring default headers for most tests. +-ac_includes_default="\ +-#include <stdio.h> +-#if HAVE_SYS_TYPES_H +-# include <sys/types.h> +-#endif +-#if HAVE_SYS_STAT_H +-# include <sys/stat.h> +-#endif +-#if STDC_HEADERS +-# include <stdlib.h> +-# include <stddef.h> +-#else +-# if HAVE_STDLIB_H +-# include <stdlib.h> +-# endif +-#endif +-#if HAVE_STRING_H +-# if !STDC_HEADERS && HAVE_MEMORY_H +-# include <memory.h> +-# endif +-# include <string.h> +-#endif +-#if HAVE_STRINGS_H +-# include <strings.h> +-#endif +-#if HAVE_INTTYPES_H +-# include <inttypes.h> +-#else +-# if HAVE_STDINT_H +-# include <stdint.h> +-# endif +-#endif +-#if HAVE_UNISTD_H +-# include <unistd.h> +-#endif" +- +-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT RANLIB ac_ct_RANLIB INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA AR ac_ct_AR TARGET_OS TARGET_CPU M68KCC LEXDEFS VOXDEFS HOST_OS HOST_CPU OTHERLIBS SHFLAGS MMAPTYPE STDIOTYPE CPP EGREP AUDIODRIVER AUDIODEFS AUDIOLIBS FL_LANG FL_VOX FL_LEX LIBOBJS LTLIBOBJS' +-ac_subst_files='' +- + # Initialize some variables set by options. +-ac_init_help= +-ac_init_version=false + # The variables have the same names as the options, with + # dashes changed to underlines. +-cache_file=/dev/null ++build=NONE ++cache_file=./config.cache + exec_prefix=NONE ++host=NONE + no_create= ++nonopt=NONE + no_recursion= + prefix=NONE + program_prefix=NONE +@@ -327,15 +41,10 @@ + silent= + site= + srcdir= ++target=NONE + verbose= + x_includes=NONE + x_libraries=NONE +- +-# Installation directory options. +-# These are left unexpanded so users can "make install exec_prefix=/foo" +-# and all the variables that are supposed to be based on exec_prefix +-# by default will actually change. +-# Use braces instead of parens because sh, perl, etc. also accept them. + bindir='${exec_prefix}/bin' + sbindir='${exec_prefix}/sbin' + libexecdir='${exec_prefix}/libexec' +@@ -349,9 +58,17 @@ + infodir='${prefix}/info' + mandir='${prefix}/man' + ++# Initialize some other variables. ++subdirs= ++MFLAGS= MAKEFLAGS= ++SHELL=${CONFIG_SHELL-/bin/sh} ++# Maximum number of lines to put in a shell here document. ++ac_max_here_lines=12 ++ + ac_prev= + for ac_option + do ++ + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval "$ac_prev=\$ac_option" +@@ -359,59 +76,59 @@ + continue + fi + +- ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` ++ case "$ac_option" in ++ -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; ++ *) ac_optarg= ;; ++ esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + +- case $ac_option in ++ case "$ac_option" in + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) +- bindir=$ac_optarg ;; ++ bindir="$ac_optarg" ;; + + -build | --build | --buil | --bui | --bu) +- ac_prev=build_alias ;; ++ ac_prev=build ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) +- build_alias=$ac_optarg ;; ++ build="$ac_optarg" ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) +- cache_file=$ac_optarg ;; ++ cache_file="$ac_optarg" ;; + +- --config-cache | -C) +- cache_file=config.cache ;; +- + -datadir | --datadir | --datadi | --datad | --data | --dat | --da) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ + | --da=*) +- datadir=$ac_optarg ;; ++ datadir="$ac_optarg" ;; + + -disable-* | --disable-*) +- ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` +- eval "enable_$ac_feature=no" ;; ++ if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then ++ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } ++ fi ++ ac_feature=`echo $ac_feature| sed 's/-/_/g'` ++ eval "enable_${ac_feature}=no" ;; + + -enable-* | --enable-*) +- ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` +- case $ac_option in +- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; ++ if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then ++ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } ++ fi ++ ac_feature=`echo $ac_feature| sed 's/-/_/g'` ++ case "$ac_option" in ++ *=*) ;; + *) ac_optarg=yes ;; + esac +- eval "enable_$ac_feature='$ac_optarg'" ;; ++ eval "enable_${ac_feature}='$ac_optarg'" ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ +@@ -420,47 +137,95 @@ + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) +- exec_prefix=$ac_optarg ;; ++ exec_prefix="$ac_optarg" ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + +- -help | --help | --hel | --he | -h) +- ac_init_help=long ;; +- -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) +- ac_init_help=recursive ;; +- -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) +- ac_init_help=short ;; ++ -help | --help | --hel | --he) ++ # Omit some internal or obsolete options to make the list less imposing. ++ # This message is too long to be a string in the A/UX 3.1 sh. ++ cat << EOF ++Usage: configure [options] [host] ++Options: [defaults in brackets after descriptions] ++Configuration: ++ --cache-file=FILE cache test results in FILE ++ --help print this message ++ --no-create do not create output files ++ --quiet, --silent do not print \`checking...' messages ++ --version print the version of autoconf that created configure ++Directory and file names: ++ --prefix=PREFIX install architecture-independent files in PREFIX ++ [$ac_default_prefix] ++ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX ++ [same as prefix] ++ --bindir=DIR user executables in DIR [EPREFIX/bin] ++ --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] ++ --libexecdir=DIR program executables in DIR [EPREFIX/libexec] ++ --datadir=DIR read-only architecture-independent data in DIR ++ [PREFIX/share] ++ --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data in DIR ++ [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] ++ --libdir=DIR object code libraries in DIR [EPREFIX/lib] ++ --includedir=DIR C header files in DIR [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] ++ --infodir=DIR info documentation in DIR [PREFIX/info] ++ --mandir=DIR man documentation in DIR [PREFIX/man] ++ --srcdir=DIR find the sources in DIR [configure dir or ..] ++ --program-prefix=PREFIX prepend PREFIX to installed program names ++ --program-suffix=SUFFIX append SUFFIX to installed program names ++ --program-transform-name=PROGRAM ++ run sed PROGRAM on installed program names ++EOF ++ cat << EOF ++Host type: ++ --build=BUILD configure for building on BUILD [BUILD=HOST] ++ --host=HOST configure for HOST [guessed] ++ --target=TARGET configure for TARGET [TARGET=HOST] ++Features and packages: ++ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) ++ --enable-FEATURE[=ARG] include FEATURE [ARG=yes] ++ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] ++ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) ++ --x-includes=DIR X include files are in DIR ++ --x-libraries=DIR X library files are in DIR ++EOF ++ if test -n "$ac_help"; then ++ echo "--enable and --with options recognized:$ac_help" ++ fi ++ exit 0 ;; + + -host | --host | --hos | --ho) +- ac_prev=host_alias ;; ++ ac_prev=host ;; + -host=* | --host=* | --hos=* | --ho=*) +- host_alias=$ac_optarg ;; ++ host="$ac_optarg" ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) +- includedir=$ac_optarg ;; ++ includedir="$ac_optarg" ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) +- infodir=$ac_optarg ;; ++ infodir="$ac_optarg" ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) +- libdir=$ac_optarg ;; ++ libdir="$ac_optarg" ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) +- libexecdir=$ac_optarg ;; ++ libexecdir="$ac_optarg" ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst \ +@@ -469,19 +234,19 @@ + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* \ + | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) +- localstatedir=$ac_optarg ;; ++ localstatedir="$ac_optarg" ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) +- mandir=$ac_optarg ;; ++ mandir="$ac_optarg" ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ +- | --no-cr | --no-c | -n) ++ | --no-cr | --no-c) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ +@@ -495,26 +260,26 @@ + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) +- oldincludedir=$ac_optarg ;; ++ oldincludedir="$ac_optarg" ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) +- prefix=$ac_optarg ;; ++ prefix="$ac_optarg" ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) +- program_prefix=$ac_optarg ;; ++ program_prefix="$ac_optarg" ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) +- program_suffix=$ac_optarg ;; ++ program_suffix="$ac_optarg" ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ +@@ -531,7 +296,7 @@ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) +- program_transform_name=$ac_optarg ;; ++ program_transform_name="$ac_optarg" ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) +@@ -541,7 +306,7 @@ + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) +- sbindir=$ac_optarg ;; ++ sbindir="$ac_optarg" ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ +@@ -552,57 +317,58 @@ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) +- sharedstatedir=$ac_optarg ;; ++ sharedstatedir="$ac_optarg" ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) +- site=$ac_optarg ;; ++ site="$ac_optarg" ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) +- srcdir=$ac_optarg ;; ++ srcdir="$ac_optarg" ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) +- sysconfdir=$ac_optarg ;; ++ sysconfdir="$ac_optarg" ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) +- ac_prev=target_alias ;; ++ ac_prev=target ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) +- target_alias=$ac_optarg ;; ++ target="$ac_optarg" ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + +- -version | --version | --versio | --versi | --vers | -V) +- ac_init_version=: ;; ++ -version | --version | --versio | --versi | --vers) ++ echo "configure generated by autoconf version 2.13" ++ exit 0 ;; + + -with-* | --with-*) +- ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } ++ if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then ++ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } ++ fi + ac_package=`echo $ac_package| sed 's/-/_/g'` +- case $ac_option in +- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; ++ case "$ac_option" in ++ *=*) ;; + *) ac_optarg=yes ;; + esac +- eval "with_$ac_package='$ac_optarg'" ;; ++ eval "with_${ac_package}='$ac_optarg'" ;; + + -without-* | --without-*) +- ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ ac_package=`echo $ac_option|sed -e 's/-*without-//'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/-/_/g'` +- eval "with_$ac_package=no" ;; ++ if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then ++ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } ++ fi ++ ac_package=`echo $ac_package| sed 's/-/_/g'` ++ eval "with_${ac_package}=no" ;; + + --x) + # Obsolete; use --with-x. +@@ -613,110 +379,99 @@ + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) +- x_includes=$ac_optarg ;; ++ x_includes="$ac_optarg" ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) +- x_libraries=$ac_optarg ;; ++ x_libraries="$ac_optarg" ;; + +- -*) { echo "$as_me: error: unrecognized option: $ac_option +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ++ -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } + ;; + +- *=*) +- ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` +- # Reject names that are not valid shell variable names. +- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 +- { (exit 1); exit 1; }; } +- ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` +- eval "$ac_envvar='$ac_optarg'" +- export $ac_envvar ;; +- + *) +- # FIXME: should be removed in autoconf 3.0. +- echo "$as_me: WARNING: you should use --build, --host, --target" >&2 +- expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && +- echo "$as_me: WARNING: invalid host type: $ac_option" >&2 +- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ++ if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then ++ echo "configure: warning: $ac_option: invalid host type" 1>&2 ++ fi ++ if test "x$nonopt" != xNONE; then ++ { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } ++ fi ++ nonopt="$ac_option" + ;; + + esac + done + + if test -n "$ac_prev"; then +- ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { echo "$as_me: error: missing argument to $ac_option" >&2 +- { (exit 1); exit 1; }; } ++ { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } + fi + +-# Be sure to have absolute paths. +-for ac_var in exec_prefix prefix +-do +- eval ac_val=$`echo $ac_var` +- case $ac_val in +- [\\/$]* | ?:[\\/]* | NONE | '' ) ;; +- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; };; +- esac +-done ++trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 + +-# Be sure to have absolute paths. +-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ +- localstatedir libdir includedir oldincludedir infodir mandir ++# File descriptor usage: ++# 0 standard input ++# 1 file creation ++# 2 errors and warnings ++# 3 some systems may open it to /dev/tty ++# 4 used on the Kubota Titan ++# 6 checking for... messages and results ++# 5 compiler messages saved in config.log ++if test "$silent" = yes; then ++ exec 6>/dev/null ++else ++ exec 6>&1 ++fi ++exec 5>./config.log ++ ++echo "\ ++This file contains any messages produced by compilers while ++running configure, to aid debugging if configure makes a mistake. ++" 1>&5 ++ ++# Strip out --no-create and --no-recursion so they do not pile up. ++# Also quote any args containing shell metacharacters. ++ac_configure_args= ++for ac_arg + do +- eval ac_val=$`echo $ac_var` +- case $ac_val in +- [\\/$]* | ?:[\\/]* ) ;; +- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; };; ++ case "$ac_arg" in ++ -no-create | --no-create | --no-creat | --no-crea | --no-cre \ ++ | --no-cr | --no-c) ;; ++ -no-recursion | --no-recursion | --no-recursio | --no-recursi \ ++ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; ++ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) ++ ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ *) ac_configure_args="$ac_configure_args $ac_arg" ;; + esac + done + +-# There might be people who depend on the old broken behavior: `$host' +-# used to hold the argument of --host etc. +-# FIXME: To remove some day. +-build=$build_alias +-host=$host_alias +-target=$target_alias ++# NLS nuisances. ++# Only set these to C if already set. These must not be set unconditionally ++# because not all systems understand e.g. LANG=C (notably SCO). ++# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! ++# Non-C LC_CTYPE values break the ctype check. ++if test "${LANG+set}" = set; then LANG=C; export LANG; fi ++if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi ++if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi ++if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi + +-# FIXME: To remove some day. +-if test "x$host_alias" != x; then +- if test "x$build_alias" = x; then +- cross_compiling=maybe +- echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. +- If a cross compiler is detected then cross compile mode will be used." >&2 +- elif test "x$build_alias" != "x$host_alias"; then +- cross_compiling=yes +- fi +-fi ++# confdefs.h avoids OS command line length limits that DEFS can exceed. ++rm -rf conftest* confdefs.h ++# AIX cpp loses on an empty file, so make sure it contains at least a newline. ++echo > confdefs.h + +-ac_tool_prefix= +-test -n "$host_alias" && ac_tool_prefix=$host_alias- ++# A filename unique to this package, relative to the directory that ++# configure is in, which we can look for to find out if srcdir is correct. ++ac_unique_file=include/flite.h + +-test "$silent" = yes && exec 6>/dev/null +- +- + # Find the source files, if location was not specified. + if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then its parent. +- ac_confdir=`(dirname "$0") 2>/dev/null || +-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$0" : 'X\(//\)[^/]' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X"$0" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } +- /^X\(\/\/\)[^/].*/{ s//\1/; q; } +- /^X\(\/\/\)$/{ s//\1/; q; } +- /^X\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` ++ ac_prog=$0 ++ ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` ++ test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. + srcdir=$ac_confdir + if test ! -r $srcdir/$ac_unique_file; then + srcdir=.. +@@ -726,441 +481,13 @@ + fi + if test ! -r $srcdir/$ac_unique_file; then + if test "$ac_srcdir_defaulted" = yes; then +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 +- { (exit 1); exit 1; }; } ++ { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } + else +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +- { (exit 1); exit 1; }; } ++ { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } + fi + fi +-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || +- { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 +- { (exit 1); exit 1; }; } +-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` +-ac_env_build_alias_set=${build_alias+set} +-ac_env_build_alias_value=$build_alias +-ac_cv_env_build_alias_set=${build_alias+set} +-ac_cv_env_build_alias_value=$build_alias +-ac_env_host_alias_set=${host_alias+set} +-ac_env_host_alias_value=$host_alias +-ac_cv_env_host_alias_set=${host_alias+set} +-ac_cv_env_host_alias_value=$host_alias +-ac_env_target_alias_set=${target_alias+set} +-ac_env_target_alias_value=$target_alias +-ac_cv_env_target_alias_set=${target_alias+set} +-ac_cv_env_target_alias_value=$target_alias +-ac_env_CC_set=${CC+set} +-ac_env_CC_value=$CC +-ac_cv_env_CC_set=${CC+set} +-ac_cv_env_CC_value=$CC +-ac_env_CFLAGS_set=${CFLAGS+set} +-ac_env_CFLAGS_value=$CFLAGS +-ac_cv_env_CFLAGS_set=${CFLAGS+set} +-ac_cv_env_CFLAGS_value=$CFLAGS +-ac_env_LDFLAGS_set=${LDFLAGS+set} +-ac_env_LDFLAGS_value=$LDFLAGS +-ac_cv_env_LDFLAGS_set=${LDFLAGS+set} +-ac_cv_env_LDFLAGS_value=$LDFLAGS +-ac_env_CPPFLAGS_set=${CPPFLAGS+set} +-ac_env_CPPFLAGS_value=$CPPFLAGS +-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} +-ac_cv_env_CPPFLAGS_value=$CPPFLAGS +-ac_env_CPP_set=${CPP+set} +-ac_env_CPP_value=$CPP +-ac_cv_env_CPP_set=${CPP+set} +-ac_cv_env_CPP_value=$CPP ++srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` + +-# +-# Report the --help message. +-# +-if test "$ac_init_help" = "long"; then +- # Omit some internal or obsolete options to make the list less imposing. +- # This message is too long to be a string in the A/UX 3.1 sh. +- cat <<_ACEOF +-\`configure' configures this package to adapt to many kinds of systems. +- +-Usage: $0 [OPTION]... [VAR=VALUE]... +- +-To assign environment variables (e.g., CC, CFLAGS...), specify them as +-VAR=VALUE. See below for descriptions of some of the useful variables. +- +-Defaults for the options are specified in brackets. +- +-Configuration: +- -h, --help display this help and exit +- --help=short display options specific to this package +- --help=recursive display the short help of all the included packages +- -V, --version display version information and exit +- -q, --quiet, --silent do not print \`checking...' messages +- --cache-file=FILE cache test results in FILE [disabled] +- -C, --config-cache alias for \`--cache-file=config.cache' +- -n, --no-create do not create output files +- --srcdir=DIR find the sources in DIR [configure dir or \`..'] +- +-_ACEOF +- +- cat <<_ACEOF +-Installation directories: +- --prefix=PREFIX install architecture-independent files in PREFIX +- [$ac_default_prefix] +- --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +- [PREFIX] +- +-By default, \`make install' will install all the files in +-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +-an installation prefix other than \`$ac_default_prefix' using \`--prefix', +-for instance \`--prefix=\$HOME'. +- +-For better control, use the options below. +- +-Fine tuning of the installation directories: +- --bindir=DIR user executables [EPREFIX/bin] +- --sbindir=DIR system admin executables [EPREFIX/sbin] +- --libexecdir=DIR program executables [EPREFIX/libexec] +- --datadir=DIR read-only architecture-independent data [PREFIX/share] +- --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +- --localstatedir=DIR modifiable single-machine data [PREFIX/var] +- --libdir=DIR object code libraries [EPREFIX/lib] +- --includedir=DIR C header files [PREFIX/include] +- --oldincludedir=DIR C header files for non-gcc [/usr/include] +- --infodir=DIR info documentation [PREFIX/info] +- --mandir=DIR man documentation [PREFIX/man] +-_ACEOF +- +- cat <<\_ACEOF +- +-System types: +- --build=BUILD configure for building on BUILD [guessed] +- --host=HOST cross-compile to build programs to run on HOST [BUILD] +- --target=TARGET configure for building compilers for TARGET [HOST] +-_ACEOF +-fi +- +-if test -n "$ac_init_help"; then +- +- cat <<\_ACEOF +- +-Optional Features: +- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) +- --enable-FEATURE[=ARG] include FEATURE [ARG=yes] +- --disable-shared without shared library support +- --disable-sockets without socket support +- +-Optional Packages: +- --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] +- --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) +- --with-audio with specific audio support (none linux freebsd etc) +- --with-lang with language +- --with-vox with vox +- --with-lex with lexicon +- +-Some influential environment variables: +- CC C compiler command +- CFLAGS C compiler flags +- LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a +- nonstandard directory <lib dir> +- CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have +- headers in a nonstandard directory <include dir> +- CPP C preprocessor +- +-Use these variables to override the choices made by `configure' or to help +-it to find libraries and programs with nonstandard names/locations. +- +-_ACEOF +-fi +- +-if test "$ac_init_help" = "recursive"; then +- # If there are subdirs, report their specific --help. +- ac_popdir=`pwd` +- for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d $ac_dir || continue +- ac_builddir=. +- +-if test "$ac_dir" != .; then +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` +- # A "../" for each directory in $ac_dir_suffix. +- ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +-else +- ac_dir_suffix= ac_top_builddir= +-fi +- +-case $srcdir in +- .) # No --srcdir option. We are building in place. +- ac_srcdir=. +- if test -z "$ac_top_builddir"; then +- ac_top_srcdir=. +- else +- ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` +- fi ;; +- [\\/]* | ?:[\\/]* ) # Absolute path. +- ac_srcdir=$srcdir$ac_dir_suffix; +- ac_top_srcdir=$srcdir ;; +- *) # Relative path. +- ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix +- ac_top_srcdir=$ac_top_builddir$srcdir ;; +-esac +-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be +-# absolute. +-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` +-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` +-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` +-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` +- +- cd $ac_dir +- # Check for guested configure; otherwise get Cygnus style configure. +- if test -f $ac_srcdir/configure.gnu; then +- echo +- $SHELL $ac_srcdir/configure.gnu --help=recursive +- elif test -f $ac_srcdir/configure; then +- echo +- $SHELL $ac_srcdir/configure --help=recursive +- elif test -f $ac_srcdir/configure.ac || +- test -f $ac_srcdir/configure.in; then +- echo +- $ac_configure --help +- else +- echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 +- fi +- cd $ac_popdir +- done +-fi +- +-test -n "$ac_init_help" && exit 0 +-if $ac_init_version; then +- cat <<\_ACEOF +- +-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 +-Free Software Foundation, Inc. +-This configure script is free software; the Free Software Foundation +-gives unlimited permission to copy, distribute and modify it. +-_ACEOF +- exit 0 +-fi +-exec 5>config.log +-cat >&5 <<_ACEOF +-This file contains any messages produced by compilers while +-running configure, to aid debugging if configure makes a mistake. +- +-It was created by $as_me, which was +-generated by GNU Autoconf 2.57. Invocation command line was +- +- $ $0 $@ +- +-_ACEOF +-{ +-cat <<_ASUNAME +-## --------- ## +-## Platform. ## +-## --------- ## +- +-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +-uname -m = `(uname -m) 2>/dev/null || echo unknown` +-uname -r = `(uname -r) 2>/dev/null || echo unknown` +-uname -s = `(uname -s) 2>/dev/null || echo unknown` +-uname -v = `(uname -v) 2>/dev/null || echo unknown` +- +-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +-/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` +- +-/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +-hostinfo = `(hostinfo) 2>/dev/null || echo unknown` +-/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +-/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` +- +-_ASUNAME +- +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- echo "PATH: $as_dir" +-done +- +-} >&5 +- +-cat >&5 <<_ACEOF +- +- +-## ----------- ## +-## Core tests. ## +-## ----------- ## +- +-_ACEOF +- +- +-# Keep a trace of the command line. +-# Strip out --no-create and --no-recursion so they do not pile up. +-# Strip out --silent because we don't want to record it for future runs. +-# Also quote any args containing shell meta-characters. +-# Make two passes to allow for proper duplicate-argument suppression. +-ac_configure_args= +-ac_configure_args0= +-ac_configure_args1= +-ac_sep= +-ac_must_keep_next=false +-for ac_pass in 1 2 +-do +- for ac_arg +- do +- case $ac_arg in +- -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; +- -q | -quiet | --quiet | --quie | --qui | --qu | --q \ +- | -silent | --silent | --silen | --sile | --sil) +- continue ;; +- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) +- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; +- esac +- case $ac_pass in +- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; +- 2) +- ac_configure_args1="$ac_configure_args1 '$ac_arg'" +- if test $ac_must_keep_next = true; then +- ac_must_keep_next=false # Got value, back to normal. +- else +- case $ac_arg in +- *=* | --config-cache | -C | -disable-* | --disable-* \ +- | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ +- | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ +- | -with-* | --with-* | -without-* | --without-* | --x) +- case "$ac_configure_args0 " in +- "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; +- esac +- ;; +- -* ) ac_must_keep_next=true ;; +- esac +- fi +- ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" +- # Get rid of the leading space. +- ac_sep=" " +- ;; +- esac +- done +-done +-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } +- +-# When interrupted or exit'd, cleanup temporary files, and complete +-# config.log. We remove comments because anyway the quotes in there +-# would cause problems or look ugly. +-# WARNING: Be sure not to use single quotes in there, as some shells, +-# such as our DU 5.0 friend, will then `close' the trap. +-trap 'exit_status=$? +- # Save into config.log some information that might help in debugging. +- { +- echo +- +- cat <<\_ASBOX +-## ---------------- ## +-## Cache variables. ## +-## ---------------- ## +-_ASBOX +- echo +- # The following way of writing the cache mishandles newlines in values, +-{ +- (set) 2>&1 | +- case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in +- *ac_space=\ *) +- sed -n \ +- "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; +- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" +- ;; +- *) +- sed -n \ +- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" +- ;; +- esac; +-} +- echo +- +- cat <<\_ASBOX +-## ----------------- ## +-## Output variables. ## +-## ----------------- ## +-_ASBOX +- echo +- for ac_var in $ac_subst_vars +- do +- eval ac_val=$`echo $ac_var` +- echo "$ac_var='"'"'$ac_val'"'"'" +- done | sort +- echo +- +- if test -n "$ac_subst_files"; then +- cat <<\_ASBOX +-## ------------- ## +-## Output files. ## +-## ------------- ## +-_ASBOX +- echo +- for ac_var in $ac_subst_files +- do +- eval ac_val=$`echo $ac_var` +- echo "$ac_var='"'"'$ac_val'"'"'" +- done | sort +- echo +- fi +- +- if test -s confdefs.h; then +- cat <<\_ASBOX +-## ----------- ## +-## confdefs.h. ## +-## ----------- ## +-_ASBOX +- echo +- sed "/^$/d" confdefs.h | sort +- echo +- fi +- test "$ac_signal" != 0 && +- echo "$as_me: caught signal $ac_signal" +- echo "$as_me: exit $exit_status" +- } >&5 +- rm -f core core.* *.core && +- rm -rf conftest* confdefs* conf$$* $ac_clean_files && +- exit $exit_status +- ' 0 +-for ac_signal in 1 2 13 15; do +- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal +-done +-ac_signal=0 +- +-# confdefs.h avoids OS command line length limits that DEFS can exceed. +-rm -rf conftest* confdefs.h +-# AIX cpp loses on an empty file, so make sure it contains at least a newline. +-echo >confdefs.h +- +-# Predefined preprocessor variables. +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_NAME "$PACKAGE_NAME" +-_ACEOF +- +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +-_ACEOF +- +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_VERSION "$PACKAGE_VERSION" +-_ACEOF +- +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_STRING "$PACKAGE_STRING" +-_ACEOF +- +- +-cat >>confdefs.h <<_ACEOF +-#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +-_ACEOF +- +- +-# Let the site file select an alternate cache file if it wants to. + # Prefer explicitly selected file to automatically selected ones. + if test -z "$CONFIG_SITE"; then + if test "x$prefix" != xNONE; then +@@ -1171,106 +498,42 @@ + fi + for ac_site_file in $CONFIG_SITE; do + if test -r "$ac_site_file"; then +- { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-echo "$as_me: loading site script $ac_site_file" >&6;} +- sed 's/^/| /' "$ac_site_file" >&5 ++ echo "loading site script $ac_site_file" + . "$ac_site_file" + fi + done + + if test -r "$cache_file"; then +- # Some versions of bash will fail to source /dev/null (special +- # files actually), so we avoid doing that. +- if test -f "$cache_file"; then +- { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +-echo "$as_me: loading cache $cache_file" >&6;} +- case $cache_file in +- [\\/]* | ?:[\\/]* ) . $cache_file;; +- *) . ./$cache_file;; +- esac +- fi ++ echo "loading cache $cache_file" ++ . $cache_file + else +- { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +-echo "$as_me: creating cache $cache_file" >&6;} +- >$cache_file ++ echo "creating cache $cache_file" ++ > $cache_file + fi + +-# Check that the precious variables saved in the cache have kept the same +-# value. +-ac_cache_corrupted=false +-for ac_var in `(set) 2>&1 | +- sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do +- eval ac_old_set=\$ac_cv_env_${ac_var}_set +- eval ac_new_set=\$ac_env_${ac_var}_set +- eval ac_old_val="\$ac_cv_env_${ac_var}_value" +- eval ac_new_val="\$ac_env_${ac_var}_value" +- case $ac_old_set,$ac_new_set in +- set,) +- { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} +- ac_cache_corrupted=: ;; +- ,set) +- { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} +- ac_cache_corrupted=: ;; +- ,);; +- *) +- if test "x$ac_old_val" != "x$ac_new_val"; then +- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +-echo "$as_me: former value: $ac_old_val" >&2;} +- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +-echo "$as_me: current value: $ac_new_val" >&2;} +- ac_cache_corrupted=: +- fi;; +- esac +- # Pass precious variables to config.status. +- if test "$ac_new_set" = set; then +- case $ac_new_val in +- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) +- ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; +- *) ac_arg=$ac_var=$ac_new_val ;; +- esac +- case " $ac_configure_args " in +- *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. +- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; +- esac +- fi +-done +-if $ac_cache_corrupted; then +- { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} +- { (exit 1); exit 1; }; } +-fi +- + ac_ext=c ++# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. + ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ++ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' ++cross_compiling=$ac_cv_prog_cc_cross + ++ac_exeext= ++ac_objext=o ++if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then ++ # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. ++ if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then ++ ac_n= ac_c=' ++' ac_t=' ' ++ else ++ ac_n=-n ac_c= ac_t= ++ fi ++else ++ ac_n= ac_c='\c' ac_t= ++fi + + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + ac_aux_dir= + for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do + if test -f $ac_dir/install-sh; then +@@ -1281,740 +544,312 @@ + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break +- elif test -f $ac_dir/shtool; then +- ac_aux_dir=$ac_dir +- ac_install_sh="$ac_aux_dir/shtool install -c" +- break + fi + done + if test -z "$ac_aux_dir"; then +- { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 +-echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} +- { (exit 1); exit 1; }; } ++ { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; } + fi +-ac_config_guess="$SHELL $ac_aux_dir/config.guess" +-ac_config_sub="$SHELL $ac_aux_dir/config.sub" +-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. ++ac_config_guess=$ac_aux_dir/config.guess ++ac_config_sub=$ac_aux_dir/config.sub ++ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. + +-# Make sure we can run config.sub. +-$ac_config_sub sun4 >/dev/null 2>&1 || +- { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 +-echo "$as_me: error: cannot run $ac_config_sub" >&2;} +- { (exit 1); exit 1; }; } + +-echo "$as_me:$LINENO: checking build system type" >&5 +-echo $ECHO_N "checking build system type... $ECHO_C" >&6 +-if test "${ac_cv_build+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_build_alias=$build_alias +-test -z "$ac_cv_build_alias" && +- ac_cv_build_alias=`$ac_config_guess` +-test -z "$ac_cv_build_alias" && +- { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +-echo "$as_me: error: cannot guess build type; you must specify one" >&2;} +- { (exit 1); exit 1; }; } +-ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || +- { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 +-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++# Do some error checking and defaulting for the host and target type. ++# The inputs are: ++# configure --host=HOST --target=TARGET --build=BUILD NONOPT ++# ++# The rules are: ++# 1. You are not allowed to specify --host, --target, and nonopt at the ++# same time. ++# 2. Host defaults to nonopt. ++# 3. If nonopt is not specified, then host defaults to the current host, ++# as determined by config.guess. ++# 4. Target and build default to nonopt. ++# 5. If nonopt is not specified, then target and build default to host. + ++# The aliases save the names the user supplied, while $host etc. ++# will get canonicalized. ++case $host---$target---$nonopt in ++NONE---*---* | *---NONE---* | *---*---NONE) ;; ++*) { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } ;; ++esac ++ ++ ++# Make sure we can run config.sub. ++if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then : ++else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } + fi +-echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +-echo "${ECHO_T}$ac_cv_build" >&6 +-build=$ac_cv_build +-build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +-build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +-build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + ++echo $ac_n "checking host system type""... $ac_c" 1>&6 ++echo "configure:585: checking host system type" >&5 + +-echo "$as_me:$LINENO: checking host system type" >&5 +-echo $ECHO_N "checking host system type... $ECHO_C" >&6 +-if test "${ac_cv_host+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_host_alias=$host_alias +-test -z "$ac_cv_host_alias" && +- ac_cv_host_alias=$ac_cv_build_alias +-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || +- { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 +-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++host_alias=$host ++case "$host_alias" in ++NONE) ++ case $nonopt in ++ NONE) ++ if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then : ++ else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; } ++ fi ;; ++ *) host_alias=$nonopt ;; ++ esac ;; ++esac + +-fi +-echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +-echo "${ECHO_T}$ac_cv_host" >&6 +-host=$ac_cv_host +-host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +-host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +-host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ++host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias` ++host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` ++host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` ++host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ++echo "$ac_t""$host" 1>&6 + ++echo $ac_n "checking target system type""... $ac_c" 1>&6 ++echo "configure:606: checking target system type" >&5 + +-echo "$as_me:$LINENO: checking target system type" >&5 +-echo $ECHO_N "checking target system type... $ECHO_C" >&6 +-if test "${ac_cv_target+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_target_alias=$target_alias +-test "x$ac_cv_target_alias" = "x" && +- ac_cv_target_alias=$ac_cv_host_alias +-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || +- { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5 +-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++target_alias=$target ++case "$target_alias" in ++NONE) ++ case $nonopt in ++ NONE) target_alias=$host_alias ;; ++ *) target_alias=$nonopt ;; ++ esac ;; ++esac + +-fi +-echo "$as_me:$LINENO: result: $ac_cv_target" >&5 +-echo "${ECHO_T}$ac_cv_target" >&6 +-target=$ac_cv_target +-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ++target=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $target_alias` ++target_cpu=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` ++target_vendor=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` ++target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ++echo "$ac_t""$target" 1>&6 + ++echo $ac_n "checking build system type""... $ac_c" 1>&6 ++echo "configure:624: checking build system type" >&5 + +-# The aliases save the names the user supplied, while $host etc. +-# will get canonicalized. +-test -n "$target_alias" && ++build_alias=$build ++case "$build_alias" in ++NONE) ++ case $nonopt in ++ NONE) build_alias=$host_alias ;; ++ *) build_alias=$nonopt ;; ++ esac ;; ++esac ++ ++build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias` ++build_cpu=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` ++build_vendor=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` ++build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ++echo "$ac_t""$build" 1>&6 ++ ++test "$host_alias" != "$target_alias" && + test "$program_prefix$program_suffix$program_transform_name" = \ + NONENONEs,x,x, && + program_prefix=${target_alias}- +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +-if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +-set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if test -n "$CC"; then +- ac_cv_prog_CC="$CC" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_CC="${ac_tool_prefix}gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done + +-fi +-fi +-CC=$ac_cv_prog_CC +-if test -n "$CC"; then +- echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi +- +-fi +-if test -z "$ac_cv_prog_CC"; then +- ac_ct_CC=$CC +- # Extract the first word of "gcc", so it can be a program name with args. ++# Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:649: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- if test -n "$ac_ct_CC"; then +- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_ac_ct_CC="gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- +-fi +-fi +-ac_ct_CC=$ac_cv_prog_ac_ct_CC +-if test -n "$ac_ct_CC"; then +- echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi +- +- CC=$ac_ct_CC +-else +- CC="$ac_cv_prog_CC" +-fi +- +-if test -z "$CC"; then +- if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +-set dummy ${ac_tool_prefix}cc; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. + else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_CC="${ac_tool_prefix}cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_CC="gcc" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" + fi + fi +-CC=$ac_cv_prog_CC ++CC="$ac_cv_prog_CC" + if test -n "$CC"; then +- echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6 ++ echo "$ac_t""$CC" 1>&6 + else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 ++ echo "$ac_t""no" 1>&6 + fi + +-fi +-if test -z "$ac_cv_prog_CC"; then +- ac_ct_CC=$CC +- # Extract the first word of "cc", so it can be a program name with args. +-set dummy cc; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if test -n "$ac_ct_CC"; then +- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_ac_ct_CC="cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- +-fi +-fi +-ac_ct_CC=$ac_cv_prog_ac_ct_CC +-if test -n "$ac_ct_CC"; then +- echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi +- +- CC=$ac_ct_CC +-else +- CC="$ac_cv_prog_CC" +-fi +- +-fi + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:679: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. + else ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_prog_rejected=no +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then +- ac_prog_rejected=yes +- continue +- fi +- ac_cv_prog_CC="cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then ++ ac_prog_rejected=yes ++ continue ++ fi ++ ac_cv_prog_CC="cc" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" + if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift +- if test $# != 0; then ++ if test $# -gt 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift +- ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" ++ set dummy "$ac_dir/$ac_word" "$@" ++ shift ++ ac_cv_prog_CC="$@" + fi + fi + fi + fi +-CC=$ac_cv_prog_CC ++CC="$ac_cv_prog_CC" + if test -n "$CC"; then +- echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6 ++ echo "$ac_t""$CC" 1>&6 + else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 ++ echo "$ac_t""no" 1>&6 + fi + +-fi +-if test -z "$CC"; then +- if test -n "$ac_tool_prefix"; then +- for ac_prog in cl +- do +- # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +-set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test -z "$CC"; then ++ case "`uname -s`" in ++ *win32* | *WIN32*) ++ # Extract the first word of "cl", so it can be a program name with args. ++set dummy cl; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:730: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. + else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_CC="cl" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" + fi + fi +-CC=$ac_cv_prog_CC ++CC="$ac_cv_prog_CC" + if test -n "$CC"; then +- echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6 ++ echo "$ac_t""$CC" 1>&6 + else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 ++ echo "$ac_t""no" 1>&6 + fi +- +- test -n "$CC" && break +- done +-fi +-if test -z "$CC"; then +- ac_ct_CC=$CC +- for ac_prog in cl +-do +- # Extract the first word of "$ac_prog", so it can be a program name with args. +-set dummy $ac_prog; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if test -n "$ac_ct_CC"; then +- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_ac_ct_CC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 ++ ;; ++ esac + fi +-done +-done +- ++ test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } + fi +-fi +-ac_ct_CC=$ac_cv_prog_ac_ct_CC +-if test -n "$ac_ct_CC"; then +- echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi + +- test -n "$ac_ct_CC" && break +-done ++echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 ++echo "configure:762: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +- CC=$ac_ct_CC +-fi ++ac_ext=c ++# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ++ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' ++cross_compiling=$ac_cv_prog_cc_cross + +-fi ++cat > conftest.$ac_ext << EOF + ++#line 773 "configure" ++#include "confdefs.h" + +-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&5 +-echo "$as_me: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } +- +-# Provide some information about the compiler. +-echo "$as_me:$LINENO:" \ +- "checking for C compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 +- (eval $ac_compiler --version </dev/null >&5) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 +- (eval $ac_compiler -v </dev/null >&5) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 +- (eval $ac_compiler -V </dev/null >&5) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +- +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files a.out a.exe b.out" +-# Try to create an executable without -o first, disregard a.out. +-# It will help us diagnose broken compilers, and finding out an intuition +-# of exeext. +-echo "$as_me:$LINENO: checking for C compiler default output" >&5 +-echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 +-ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 +- (eval $ac_link_default) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- # Find the output, starting from the most likely. This scheme is +-# not robust to junk in `.', hence go to wildcards (a.*) only as a last +-# resort. +- +-# Be careful to initialize this variable, since it used to be cached. +-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. +-ac_cv_exeext= +-# b.out is created by i960 compilers. +-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out +-do +- test -f "$ac_file" || continue +- case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) +- ;; +- conftest.$ac_ext ) +- # This is the source file. +- ;; +- [ab].out ) +- # We found the default executable, but exeext='' is most +- # certainly right. +- break;; +- *.* ) +- ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` +- # FIXME: I believe we export ac_cv_exeext for Libtool, +- # but it would be cool to find out if it's true. Does anybody +- # maintain Libtool? --akim. +- export ac_cv_exeext +- break;; +- * ) +- break;; +- esac +-done +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C compiler cannot create executables +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; } +-fi +- +-ac_exeext=$ac_cv_exeext +-echo "$as_me:$LINENO: result: $ac_file" >&5 +-echo "${ECHO_T}$ac_file" >&6 +- +-# Check the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 +-# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +-# If not cross compiling, check that we can run a simple program. +-if test "$cross_compiling" != yes; then +- if { ac_try='./$ac_file' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- cross_compiling=no ++main(){return(0);} ++EOF ++if { (eval echo configure:778: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ ac_cv_prog_cc_works=yes ++ # If we can't run a trivial program, we are probably using a cross compiler. ++ if (./conftest; exit) 2>/dev/null; then ++ ac_cv_prog_cc_cross=no + else +- if test "$cross_compiling" = maybe; then +- cross_compiling=yes +- else +- { { echo "$as_me:$LINENO: error: cannot run C compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot run C compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } +- fi ++ ac_cv_prog_cc_cross=yes + fi ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ ac_cv_prog_cc_works=no + fi +-echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6 ++rm -fr conftest* ++ac_ext=c ++# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' ++ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' ++cross_compiling=$ac_cv_prog_cc_cross + +-rm -f a.out a.exe conftest$ac_cv_exeext b.out +-ac_clean_files=$ac_clean_files_save +-# Check the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 +-echo "$as_me:$LINENO: result: $cross_compiling" >&5 +-echo "${ECHO_T}$cross_compiling" >&6 +- +-echo "$as_me:$LINENO: checking for suffix of executables" >&5 +-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- # If both `conftest.exe' and `conftest' are `present' (well, observable) +-# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +-# work properly (i.e., refer to `conftest.exe'), while it won't with +-# `rm'. +-for ac_file in conftest.exe conftest conftest.*; do +- test -f "$ac_file" || continue +- case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; +- *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` +- export ac_cv_exeext +- break;; +- * ) break;; +- esac +-done +-else +- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 ++if test $ac_cv_prog_cc_works = no; then ++ { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } + fi ++echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 ++echo "configure:804: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 ++echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 ++cross_compiling=$ac_cv_prog_cc_cross + +-rm -f conftest$ac_cv_exeext +-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +-echo "${ECHO_T}$ac_cv_exeext" >&6 +- +-rm -f conftest.$ac_ext +-EXEEXT=$ac_cv_exeext +-ac_exeext=$EXEEXT +-echo "$as_me:$LINENO: checking for suffix of object files" >&5 +-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 +-if test "${ac_cv_objext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 ++echo "configure:809: checking whether we are using GNU C" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.o conftest.obj +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do +- case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; +- *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` +- break;; +- esac +-done ++ cat > conftest.c <<EOF ++#ifdef __GNUC__ ++ yes; ++#endif ++EOF ++if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:818: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ++ ac_cv_prog_gcc=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ ac_cv_prog_gcc=no + fi +- +-rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +-echo "${ECHO_T}$ac_cv_objext" >&6 +-OBJEXT=$ac_cv_objext +-ac_objext=$OBJEXT +-echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 +-if test "${ac_cv_c_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ + +-int +-main () +-{ +-#ifndef __GNUC__ +- choke me +-#endif ++echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_compiler_gnu=yes ++if test $ac_cv_prog_gcc = yes; then ++ GCC=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_compiler_gnu=no ++ GCC= + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-ac_cv_c_compiler_gnu=$ac_compiler_gnu + +-fi +-echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 +-GCC=`test $ac_compiler_gnu = yes && echo yes` +-ac_test_CFLAGS=${CFLAGS+set} +-ac_save_CFLAGS=$CFLAGS +-CFLAGS="-g" +-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 +-if test "${ac_cv_prog_cc_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ac_test_CFLAGS="${CFLAGS+set}" ++ac_save_CFLAGS="$CFLAGS" ++CFLAGS= ++echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 ++echo "configure:837: checking whether ${CC-cc} accepts -g" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ echo 'void f(){}' > conftest.c ++if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_prog_cc_g=no ++fi ++rm -f conftest* + +-ac_cv_prog_cc_g=no + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-fi +-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 ++ ++echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 + if test "$ac_test_CFLAGS" = set; then +- CFLAGS=$ac_save_CFLAGS ++ CFLAGS="$ac_save_CFLAGS" + elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" +@@ -2028,304 +863,37 @@ + CFLAGS= + fi + fi +-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 +-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 +-if test "${ac_cv_prog_cc_stdc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_prog_cc_stdc=no +-ac_save_CC=$CC +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdarg.h> +-#include <stdio.h> +-#include <sys/types.h> +-#include <sys/stat.h> +-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +-struct buf { int x; }; +-FILE * (*rcsopen) (struct buf *, struct stat *, int); +-static char *e (p, i) +- char **p; +- int i; +-{ +- return p[i]; +-} +-static char *f (char * (*g) (char **, int), char **p, ...) +-{ +- char *s; +- va_list v; +- va_start (v,p); +- s = g (p, va_arg (v,int)); +- va_end (v); +- return s; +-} +-int test (int i, double x); +-struct s1 {int (*f) (int a);}; +-struct s2 {int (*f) (double a);}; +-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +-int argc; +-char **argv; +-int +-main () +-{ +-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; +- ; +- return 0; +-} +-_ACEOF +-# Don't try gcc -ansi; that turns off useful extensions and +-# breaks some systems' header files. +-# AIX -qlanglvl=ansi +-# Ultrix and OSF/1 -std1 +-# HP-UX 10.20 and later -Ae +-# HP-UX older versions -Aa -D_HPUX_SOURCE +-# SVR4 -Xc -D__EXTENSIONS__ +-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +-do +- CC="$ac_save_CC $ac_arg" +- rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_prog_cc_stdc=$ac_arg +-break +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +-fi +-rm -f conftest.$ac_objext +-done +-rm -f conftest.$ac_ext conftest.$ac_objext +-CC=$ac_save_CC +- +-fi +- +-case "x$ac_cv_prog_cc_stdc" in +- x|xno) +- echo "$as_me:$LINENO: result: none needed" >&5 +-echo "${ECHO_T}none needed" >&6 ;; +- *) +- echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 +- CC="$CC $ac_cv_prog_cc_stdc" ;; +-esac +- +-# Some people use a C++ compiler to compile C. Since we use `exit', +-# in C++ we need to declare it. In case someone uses the same compiler +-# for both compiling C and C++ we need to have the C++ compiler decide +-# the declaration of exit, since it's the most demanding environment. +-cat >conftest.$ac_ext <<_ACEOF +-#ifndef __cplusplus +- choke me +-#endif +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- for ac_declaration in \ +- ''\ +- '#include <stdlib.h>' \ +- 'extern "C" void std::exit (int) throw (); using std::exit;' \ +- 'extern "C" void std::exit (int); using std::exit;' \ +- 'extern "C" void exit (int) throw ();' \ +- 'extern "C" void exit (int);' \ +- 'void exit (int);' +-do +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> +-$ac_declaration +-int +-main () +-{ +-exit (42); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : ++# Extract the first word of "ranlib", so it can be a program name with args. ++set dummy ranlib; ac_word=$2 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:871: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-continue +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_declaration +-int +-main () +-{ +-exit (42); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- break +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-done +-rm -f conftest* +-if test -n "$ac_declaration"; then +- echo '#ifdef __cplusplus' >>confdefs.h +- echo $ac_declaration >>confdefs.h +- echo '#endif' >>confdefs.h +-fi +- +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +-if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +-set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. + else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_RANLIB="ranlib" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":" + fi + fi +-RANLIB=$ac_cv_prog_RANLIB ++RANLIB="$ac_cv_prog_RANLIB" + if test -n "$RANLIB"; then +- echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6 ++ echo "$ac_t""$RANLIB" 1>&6 + else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 ++ echo "$ac_t""no" 1>&6 + fi + +-fi +-if test -z "$ac_cv_prog_RANLIB"; then +- ac_ct_RANLIB=$RANLIB +- # Extract the first word of "ranlib", so it can be a program name with args. +-set dummy ranlib; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if test -n "$ac_ct_RANLIB"; then +- ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- +- test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" +-fi +-fi +-ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +-if test -n "$ac_ct_RANLIB"; then +- echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi +- +- RANLIB=$ac_ct_RANLIB +-else +- RANLIB="$ac_cv_prog_RANLIB" +-fi +- + # Find a good install program. We prefer a C program (faster), + # so one script is as good as another. But avoid the broken or + # incompatible versions: +@@ -2333,306 +901,158 @@ + # SunOS /usr/etc/install + # IRIX /sbin/install + # AIX /bin/install +-# AmigaOS /C/install, which installs bootblocks on floppy discs + # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag + # AFS /usr/afsws/bin/install, which mishandles nonexistent args + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # ./install, which can be erroneously created by make from ./install.sh. +-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 ++echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 ++echo "configure:910: checking for a BSD compatible install" >&5 + if test -z "$INSTALL"; then +-if test "${ac_cv_path_install+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ +- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- /usr/ucb/* ) ;; +- *) +- # OSF1 and SCO ODT 3.0 have their own names for install. +- # Don't use installbsd from OSF since it installs stuff as root +- # by default. +- for ac_prog in ginstall scoinst install; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then +- if test $ac_prog = install && +- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +- # AIX install. It has an incompatible calling convention. +- : +- elif test $ac_prog = install && +- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +- # program-specific install script used by HP pwplus--don't use. +- : +- else +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 +- fi +- fi ++ IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" ++ for ac_dir in $PATH; do ++ # Account for people who put trailing slashes in PATH elements. ++ case "$ac_dir/" in ++ /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; ++ *) ++ # OSF1 and SCO ODT 3.0 have their own names for install. ++ # Don't use installbsd from OSF since it installs stuff as root ++ # by default. ++ for ac_prog in ginstall scoinst install; do ++ if test -f $ac_dir/$ac_prog; then ++ if test $ac_prog = install && ++ grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then ++ # AIX install. It has an incompatible calling convention. ++ : ++ else ++ ac_cv_path_install="$ac_dir/$ac_prog -c" ++ break 2 ++ fi ++ fi + done +- done +- ;; +-esac +-done ++ ;; ++ esac ++ done ++ IFS="$ac_save_IFS" + +- + fi + if test "${ac_cv_path_install+set}" = set; then +- INSTALL=$ac_cv_path_install ++ INSTALL="$ac_cv_path_install" + else + # As a last resort, use the slow shell script. We don't cache a + # path for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the path is relative. +- INSTALL=$ac_install_sh ++ INSTALL="$ac_install_sh" + fi + fi +-echo "$as_me:$LINENO: result: $INSTALL" >&5 +-echo "${ECHO_T}$INSTALL" >&6 ++echo "$ac_t""$INSTALL" 1>&6 + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. + test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' ++test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. ++if test $host != $build; then ++ ac_tool_prefix=${host_alias}- ++else ++ ac_tool_prefix= ++fi ++ ++# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 ++echo "configure:971: checking for $ac_word" >&5 ++if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. + else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_AR="${ac_tool_prefix}ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +- ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" ++ ac_dummy="$PATH" ++ for ac_dir in $ac_dummy; do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ ac_cv_prog_AR="${ac_tool_prefix}ar" ++ break ++ fi ++ done ++ IFS="$ac_save_ifs" ++ test -z "$ac_cv_prog_AR" && ac_cv_prog_AR="ar" + fi + fi +-AR=$ac_cv_prog_AR ++AR="$ac_cv_prog_AR" + if test -n "$AR"; then +- echo "$as_me:$LINENO: result: $AR" >&5 +-echo "${ECHO_T}$AR" >&6 ++ echo "$ac_t""$AR" 1>&6 + else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 ++ echo "$ac_t""no" 1>&6 + fi + +-fi +-if test -z "$ac_cv_prog_AR"; then +- ac_ct_AR=$AR +- # Extract the first word of "ar", so it can be a program name with args. +-set dummy ar; ac_word=$2 +-echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if test -n "$ac_ct_AR"; then +- ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +-else +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_prog_ac_ct_AR="ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done + +-fi +-fi +-ac_ct_AR=$ac_cv_prog_ac_ct_AR +-if test -n "$ac_ct_AR"; then +- echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-echo "${ECHO_T}$ac_ct_AR" >&6 +-else +- echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6 +-fi + +- AR=$ac_ct_AR ++echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 ++echo "configure:1001: checking whether byte ordering is bigendian" >&5 ++if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- AR="$ac_cv_prog_AR" +-fi +- +- +-echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5 +-echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 +-if test "${ac_cv_c_bigendian+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- # See if sys/param.h defines the BYTE_ORDER macro. +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ ac_cv_c_bigendian=unknown ++# See if sys/param.h defines the BYTE_ORDER macro. ++cat > conftest.$ac_ext <<EOF ++#line 1008 "configure" ++#include "confdefs.h" + #include <sys/types.h> + #include <sys/param.h> ++int main() { + +-int +-main () +-{ + #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN + bogus endian macros + #endif +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++; return 0; } ++EOF ++if { (eval echo configure:1019: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* + # It does; now see whether it defined to BIG_ENDIAN or not. +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++cat > conftest.$ac_ext <<EOF ++#line 1023 "configure" ++#include "confdefs.h" + #include <sys/types.h> + #include <sys/param.h> ++int main() { + +-int +-main () +-{ + #if BYTE_ORDER != BIG_ENDIAN + not big endian + #endif +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++; return 0; } ++EOF ++if { (eval echo configure:1034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* + ac_cv_c_bigendian=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_cv_c_bigendian=no ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ ac_cv_c_bigendian=no + fi +-rm -f conftest.$ac_objext conftest.$ac_ext ++rm -f conftest* + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-# It does not; compile a test program. +-if test "$cross_compiling" = yes; then +- # try to guess the endianness by grepping values into an object file +- ac_cv_c_bigendian=unknown +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; +-short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; +-void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } +-short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; +-short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; +-void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } +-int +-main () +-{ +- _ascii (); _ebcdic (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then +- ac_cv_c_bigendian=yes ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 + fi +-if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then +- if test "$ac_cv_c_bigendian" = unknown; then +- ac_cv_c_bigendian=no +- else +- # finding both strings is unlikely to happen, but who knows? +- ac_cv_c_bigendian=unknown +- fi +-fi ++rm -f conftest* ++if test $ac_cv_c_bigendian = unknown; then ++if test "$cross_compiling" = yes; then ++ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-int +-main () +-{ ++ cat > conftest.$ac_ext <<EOF ++#line 1054 "configure" ++#include "confdefs.h" ++main () { + /* Are we little or big endian? From Harbison&Steele. */ + union + { +@@ -2642,52 +1062,31 @@ + u.l = 1; + exit (u.c[sizeof (long) - 1] == 1); + } +-_ACEOF +-rm -f conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++EOF ++if { (eval echo configure:1067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++then + ac_cv_c_bigendian=no + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-ac_cv_c_bigendian=yes ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -fr conftest* ++ ac_cv_c_bigendian=yes + fi +-rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -fr conftest* + fi ++ + fi +-rm -f conftest.$ac_objext conftest.$ac_ext + fi +-echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5 +-echo "${ECHO_T}$ac_cv_c_bigendian" >&6 +-case $ac_cv_c_bigendian in +- yes) + +-cat >>confdefs.h <<\_ACEOF ++echo "$ac_t""$ac_cv_c_bigendian" 1>&6 ++if test $ac_cv_c_bigendian = yes; then ++ cat >> confdefs.h <<\EOF + #define WORDS_BIGENDIAN 1 +-_ACEOF +- ;; +- no) +- ;; +- *) +- { { echo "$as_me:$LINENO: error: unknown endianness +-presetting ac_cv_c_bigendian=no (or yes) will help" >&5 +-echo "$as_me: error: unknown endianness +-presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} +- { (exit 1); exit 1; }; } ;; +-esac ++EOF + ++fi + ++ + if test "x$GCC" = "xyes"; then + CFLAGS="$CFLAGS -Wall" + fi +@@ -2697,14 +1096,13 @@ + case "${enableval}" in + yes) shared=true ;; + no) shared=false ;; +- *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for shared options" >&5 +-echo "$as_me: error: bad value ${enableval} for shared options" >&2;} +- { (exit 1); exit 1; }; } ;; ++ *) { echo "configure: error: bad value ${enableval} for shared options" 1>&2; exit 1; } ;; + esac + else + shared=false +-fi; ++fi + ++ + case "$target_cpu" in + i386|i486|i586|i686) + TARGET_CPU=i386 +@@ -2712,7 +1110,7 @@ + *) + TARGET_CPU=$target_cpu + ;; +-esac ++esac + TARGET_OS=$target_os + + M68KCC= +@@ -2726,7 +1124,7 @@ + M68KCC=/usr/m68k-palmos/bin/gcc + # Generic build is ARM or M68K (probably ARM though) + CC="/usr/$TARGET_CPU-palmos/bin/gcc" +- if test "$target_cpu" = "arm" ++ if test "$target_cpu" = "arm" + then + CC="$CC -fPIC -march=armv4t" + fi +@@ -2762,7 +1160,7 @@ + *) + HOST_CPU=$host_cpu + ;; +-esac ++esac + HOST_OS=$host_os + + +@@ -2800,138 +1198,91 @@ + case "${enableval}" in + yes) sockets=true ;; + no) sockets=false ;; +- *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for sockets options" >&5 +-echo "$as_me: error: bad value ${enableval} for sockets options" >&2;} +- { (exit 1); exit 1; }; } ;; ++ *) { echo "configure: error: bad value ${enableval} for sockets options" 1>&2; exit 1; } ;; + esac + else + sockets=true +-fi; ++fi ++ + if test "$sockets" = false; then +- cat >>confdefs.h <<\_ACEOF ++ cat >> confdefs.h <<\EOF + #define CST_NO_SOCKETS 1 +-_ACEOF ++EOF + + fi + +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++cat > conftest.$ac_ext <<EOF ++#line 1216 "configure" ++#include "confdefs.h" + #include <stdio.h> +-int +-main () +-{ ++int main() { + struct a { union { float b; int c; } d; }; +- const struct a e = { .d={ .b=3.14 } }; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ const struct a e = { .d={ .b=3.14 } }; ++; return 0; } ++EOF ++if { (eval echo configure:1224: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then ++ rm -rf conftest* + unioninit=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-unioninit=no ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ unioninit=no + fi +-rm -f conftest.$ac_objext conftest.$ac_ext ++rm -f conftest* + if test "$unioninit" = no; then +- cat >>confdefs.h <<\_ACEOF ++ cat >> confdefs.h <<\EOF + #define NO_UNION_INITIALIZATION 1 +-_ACEOF ++EOF + + fi + +-echo "$as_me:$LINENO: checking for mmap" >&5 +-echo $ECHO_N "checking for mmap... $ECHO_C" >&6 +-if test "${ac_cv_func_mmap+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++echo $ac_n "checking for mmap""... $ac_c" 1>&6 ++echo "configure:1242: checking for mmap" >&5 ++if eval "test \"`echo '$''{'ac_cv_func_mmap'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ cat > conftest.$ac_ext <<EOF ++#line 1247 "configure" ++#include "confdefs.h" + /* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char mmap (); below. +- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- <limits.h> exists even on freestanding compilers. */ +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif ++ which can conflict with char mmap(); below. */ ++#include <assert.h> + /* Override any gcc2 internal prototype to avoid an error. */ +-#ifdef __cplusplus +-extern "C" +-{ +-#endif + /* We use char because int might match the return type of a gcc2 +- builtin and then its argument prototype would still apply. */ +-char mmap (); ++ builtin and then its argument prototype would still apply. */ ++char mmap(); ++ ++int main() { ++ + /* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ + #if defined (__stub_mmap) || defined (__stub___mmap) + choke me + #else +-char (*f) () = mmap; ++mmap(); + #endif +-#ifdef __cplusplus +-} +-#endif + +-int +-main () +-{ +-return f != mmap; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_func_mmap=yes ++; return 0; } ++EOF ++if { (eval echo configure:1270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_func_mmap=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_cv_func_mmap=no ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_func_mmap=no" + fi +-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext ++rm -f conftest* + fi +-echo "$as_me:$LINENO: result: $ac_cv_func_mmap" >&5 +-echo "${ECHO_T}$ac_cv_func_mmap" >&6 +-if test $ac_cv_func_mmap = yes; then ++ ++if eval "test \"`echo '$ac_cv_func_'mmap`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 + MMAPTYPE=posix ++else ++ echo "$ac_t""no" 1>&6 + fi + + +@@ -2956,1028 +1307,266 @@ + + + AUDIODRIVER=none +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +-echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 ++echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 ++echo "configure:1312: checking how to run the C preprocessor" >&5 + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= + fi + if test -z "$CPP"; then +- if test "${ac_cv_prog_CPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- # Double quotes because CPP needs to be expanded +- for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" +- do +- ac_preproc_ok=false +-for ac_c_preproc_warn_flag in '' yes +-do +- # Use a header file that comes with gcc, so configuring glibc +- # with a fresh cross-compiler works. +- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- # <limits.h> exists even on freestanding compilers. ++ # This must be in double quotes, not single quotes, because CPP may get ++ # substituted into the Makefile and "${CC-cc}" will confuse make. ++ CPP="${CC-cc} -E" + # On the NeXT, cc -E runs the code through the compiler's parser, +- # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- Syntax error +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ # not just through cpp. ++ cat > conftest.$ac_ext <<EOF ++#line 1327 "configure" ++#include "confdefs.h" ++#include <assert.h> ++Syntax Error ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1333: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then + : + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Broken: fails on valid input. +-continue +-fi +-rm -f conftest.err conftest.$ac_ext +- +- # OK, works on sane cases. Now check whether non-existent headers +- # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <ac_nonexistent.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then +- # Broken: success on invalid input. +-continue +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Passes both tests. +-ac_preproc_ok=: +-break +-fi +-rm -f conftest.err conftest.$ac_ext +- +-done +-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- break +-fi +- +- done +- ac_cv_prog_CPP=$CPP +- +-fi +- CPP=$ac_cv_prog_CPP +-else +- ac_cv_prog_CPP=$CPP +-fi +-echo "$as_me:$LINENO: result: $CPP" >&5 +-echo "${ECHO_T}$CPP" >&6 +-ac_preproc_ok=false +-for ac_c_preproc_warn_flag in '' yes +-do +- # Use a header file that comes with gcc, so configuring glibc +- # with a fresh cross-compiler works. +- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since +- # <limits.h> exists even on freestanding compilers. +- # On the NeXT, cc -E runs the code through the compiler's parser, +- # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#ifdef __STDC__ +-# include <limits.h> +-#else +-# include <assert.h> +-#endif +- Syntax error +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ CPP="${CC-cc} -E -traditional-cpp" ++ cat > conftest.$ac_ext <<EOF ++#line 1344 "configure" ++#include "confdefs.h" ++#include <assert.h> ++Syntax Error ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1350: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then + : + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Broken: fails on valid input. +-continue +-fi +-rm -f conftest.err conftest.$ac_ext +- +- # OK, works on sane cases. Now check whether non-existent headers +- # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <ac_nonexistent.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then +- # Broken: success on invalid input. +-continue +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Passes both tests. +-ac_preproc_ok=: +-break +-fi +-rm -f conftest.err conftest.$ac_ext +- +-done +-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ CPP="${CC-cc} -nologo -E" ++ cat > conftest.$ac_ext <<EOF ++#line 1361 "configure" ++#include "confdefs.h" ++#include <assert.h> ++Syntax Error ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1367: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then + : + else +- { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ CPP=/lib/cpp + fi +- +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +- +-echo "$as_me:$LINENO: checking for egrep" >&5 +-echo $ECHO_N "checking for egrep... $ECHO_C" >&6 +-if test "${ac_cv_prog_egrep+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if echo a | (grep -E '(a|b)') >/dev/null 2>&1 +- then ac_cv_prog_egrep='grep -E' +- else ac_cv_prog_egrep='egrep' +- fi ++rm -f conftest* + fi +-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 +-echo "${ECHO_T}$ac_cv_prog_egrep" >&6 +- EGREP=$ac_cv_prog_egrep +- +- +-echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 +-if test "${ac_cv_header_stdc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> +-#include <stdarg.h> +-#include <string.h> +-#include <float.h> +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_cv_header_stdc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_cv_header_stdc=no +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +- +-if test $ac_cv_header_stdc = yes; then +- # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <string.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "memchr" >/dev/null 2>&1; then +- : +-else +- ac_cv_header_stdc=no +-fi + rm -f conftest* +- + fi +- +-if test $ac_cv_header_stdc = yes; then +- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <stdlib.h> +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "free" >/dev/null 2>&1; then +- : +-else +- ac_cv_header_stdc=no +-fi + rm -f conftest* +- ++ ac_cv_prog_CPP="$CPP" + fi +- +-if test $ac_cv_header_stdc = yes; then +- # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. +- if test "$cross_compiling" = yes; then +- : ++ CPP="$ac_cv_prog_CPP" + else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <ctype.h> +-#if ((' ' & 0x0FF) == 0x020) +-# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +-# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +-#else +-# define ISLOWER(c) \ +- (('a' <= (c) && (c) <= 'i') \ +- || ('j' <= (c) && (c) <= 'r') \ +- || ('s' <= (c) && (c) <= 'z')) +-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +-#endif +- +-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +-int +-main () +-{ +- int i; +- for (i = 0; i < 256; i++) +- if (XOR (islower (i), ISLOWER (i)) +- || toupper (i) != TOUPPER (i)) +- exit(2); +- exit (0); +-} +-_ACEOF +-rm -f conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-ac_cv_header_stdc=no ++ ac_cv_prog_CPP="$CPP" + fi +-rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +-fi +-fi +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +-echo "${ECHO_T}$ac_cv_header_stdc" >&6 +-if test $ac_cv_header_stdc = yes; then ++echo "$ac_t""$CPP" 1>&6 + +-cat >>confdefs.h <<\_ACEOF +-#define STDC_HEADERS 1 +-_ACEOF +- +-fi +- +-# On IRIX 5.3, sys/types and inttypes.h are conflicting. +- +- +- +- +- +- +- +- +- +-for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ +- inttypes.h stdint.h unistd.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +-if eval "test \"\${$as_ac_Header+set}\" = set"; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ac_safe=`echo "sys/soundcard.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for sys/soundcard.h""... $ac_c" 1>&6 ++echo "configure:1393: checking for sys/soundcard.h" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-eval "$as_ac_Header=no" +-fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-fi +-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +-if test "${ac_cv_header_sys_soundcard_h+set}" = set; then +- echo "$as_me:$LINENO: checking for sys/soundcard.h" >&5 +-echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 +-if test "${ac_cv_header_sys_soundcard_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&5 +-echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 +-else +- # Is the header compilable? +-echo "$as_me:$LINENO: checking sys/soundcard.h usability" >&5 +-echo $ECHO_N "checking sys/soundcard.h usability... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default ++ cat > conftest.$ac_ext <<EOF ++#line 1398 "configure" ++#include "confdefs.h" + #include <sys/soundcard.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_header_compiler=yes ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1403: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_header_compiler=no ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6 +- +-# Is the header present? +-echo "$as_me:$LINENO: checking sys/soundcard.h presence" >&5 +-echo $ECHO_N "checking sys/soundcard.h presence... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/soundcard.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes ++rm -f conftest* + fi +-if test -z "$ac_cpp_err"; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +-rm -f conftest.err conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6 +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc in +- yes:no ) +- { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: sys/soundcard.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: sys/soundcard.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +- no:yes ) +- { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: sys/soundcard.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: sys/soundcard.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/soundcard.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: sys/soundcard.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-echo "$as_me:$LINENO: checking for sys/soundcard.h" >&5 +-echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6 +-if test "${ac_cv_header_sys_soundcard_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_sys_soundcard_h=$ac_header_preproc +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_sys_soundcard_h" >&5 +-echo "${ECHO_T}$ac_cv_header_sys_soundcard_h" >&6 +- +-fi +-if test $ac_cv_header_sys_soundcard_h = yes; then ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 + AUDIODRIVER="oss" + AUDIODEFS=-DCST_AUDIO_LINUX ++else ++ echo "$ac_t""no" 1>&6 + fi + +- +-if test "${ac_cv_header_machine_soundcard_h+set}" = set; then +- echo "$as_me:$LINENO: checking for machine/soundcard.h" >&5 +-echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 +-if test "${ac_cv_header_machine_soundcard_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&5 +-echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 ++ac_safe=`echo "machine/soundcard.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for machine/soundcard.h""... $ac_c" 1>&6 ++echo "configure:1427: checking for machine/soundcard.h" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- # Is the header compilable? +-echo "$as_me:$LINENO: checking machine/soundcard.h usability" >&5 +-echo $ECHO_N "checking machine/soundcard.h usability... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default ++ cat > conftest.$ac_ext <<EOF ++#line 1432 "configure" ++#include "confdefs.h" + #include <machine/soundcard.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_header_compiler=yes ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1437: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_header_compiler=no ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6 +- +-# Is the header present? +-echo "$as_me:$LINENO: checking machine/soundcard.h presence" >&5 +-echo $ECHO_N "checking machine/soundcard.h presence... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <machine/soundcard.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes ++rm -f conftest* + fi +-if test -z "$ac_cpp_err"; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +-rm -f conftest.err conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6 +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc in +- yes:no ) +- { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: machine/soundcard.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: machine/soundcard.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +- no:yes ) +- { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: machine/soundcard.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: machine/soundcard.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: machine/soundcard.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: machine/soundcard.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-echo "$as_me:$LINENO: checking for machine/soundcard.h" >&5 +-echo $ECHO_N "checking for machine/soundcard.h... $ECHO_C" >&6 +-if test "${ac_cv_header_machine_soundcard_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_machine_soundcard_h=$ac_header_preproc +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_machine_soundcard_h" >&5 +-echo "${ECHO_T}$ac_cv_header_machine_soundcard_h" >&6 +- +-fi +-if test $ac_cv_header_machine_soundcard_h = yes; then ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 + AUDIODRIVER="oss" + AUDIODEFS=-DCST_AUDIO_FREEBSD ++else ++ echo "$ac_t""no" 1>&6 + fi + +- +-if test "${ac_cv_header_sys_audioio_h+set}" = set; then +- echo "$as_me:$LINENO: checking for sys/audioio.h" >&5 +-echo $ECHO_N "checking for sys/audioio.h... $ECHO_C" >&6 +-if test "${ac_cv_header_sys_audioio_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_sys_audioio_h" >&5 +-echo "${ECHO_T}$ac_cv_header_sys_audioio_h" >&6 ++ac_safe=`echo "sys/audioio.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for sys/audioio.h""... $ac_c" 1>&6 ++echo "configure:1461: checking for sys/audioio.h" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- # Is the header compilable? +-echo "$as_me:$LINENO: checking sys/audioio.h usability" >&5 +-echo $ECHO_N "checking sys/audioio.h usability... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default ++ cat > conftest.$ac_ext <<EOF ++#line 1466 "configure" ++#include "confdefs.h" + #include <sys/audioio.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_header_compiler=yes ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1471: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_header_compiler=no ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6 +- +-# Is the header present? +-echo "$as_me:$LINENO: checking sys/audioio.h presence" >&5 +-echo $ECHO_N "checking sys/audioio.h presence... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <sys/audioio.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes ++rm -f conftest* + fi +-if test -z "$ac_cpp_err"; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +-rm -f conftest.err conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6 +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc in +- yes:no ) +- { echo "$as_me:$LINENO: WARNING: sys/audioio.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: sys/audioio.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/audioio.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: sys/audioio.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +- no:yes ) +- { echo "$as_me:$LINENO: WARNING: sys/audioio.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: sys/audioio.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/audioio.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: sys/audioio.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: sys/audioio.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: sys/audioio.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-echo "$as_me:$LINENO: checking for sys/audioio.h" >&5 +-echo $ECHO_N "checking for sys/audioio.h... $ECHO_C" >&6 +-if test "${ac_cv_header_sys_audioio_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_sys_audioio_h=$ac_header_preproc +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_sys_audioio_h" >&5 +-echo "${ECHO_T}$ac_cv_header_sys_audioio_h" >&6 +- +-fi +-if test $ac_cv_header_sys_audioio_h = yes; then ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 + AUDIODRIVER="sun" + AUDIODEFS=-DCST_AUDIO_SUNOS ++else ++ echo "$ac_t""no" 1>&6 + fi + +- +-if test "${ac_cv_header_mmsystem_h+set}" = set; then +- echo "$as_me:$LINENO: checking for mmsystem.h" >&5 +-echo $ECHO_N "checking for mmsystem.h... $ECHO_C" >&6 +-if test "${ac_cv_header_mmsystem_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-echo "$as_me:$LINENO: result: $ac_cv_header_mmsystem_h" >&5 +-echo "${ECHO_T}$ac_cv_header_mmsystem_h" >&6 ++ ac_safe=`echo "alsa/asoundlib.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for alsa/asoundlib.h""... $ac_c" 1>&6 ++echo "configure:1495: checking for alsa/asoundlib.h" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- # Is the header compilable? +-echo "$as_me:$LINENO: checking mmsystem.h usability" >&5 +-echo $ECHO_N "checking mmsystem.h usability... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <mmsystem.h> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_header_compiler=yes ++ cat > conftest.$ac_ext <<EOF ++#line 1500 "configure" ++#include "confdefs.h" ++#include <alsa/asoundlib.h> ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1505: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-ac_header_compiler=no ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" + fi +-rm -f conftest.$ac_objext conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6 +- +-# Is the header present? +-echo "$as_me:$LINENO: checking mmsystem.h presence" >&5 +-echo $ECHO_N "checking mmsystem.h presence... $ECHO_C" >&6 +-cat >conftest.$ac_ext <<_ACEOF +-#line $LINENO "configure" +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <mmsystem.h> +-_ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes ++rm -f conftest* + fi +-if test -z "$ac_cpp_err"; then +- ac_header_preproc=yes ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ AUDIODRIVER="alsa" ++ AUDIODEFS=-DCST_AUDIO_ALSA ++ AUDIOLIBS=-lasound + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ echo "$ac_t""no" 1>&6 + fi +-rm -f conftest.err conftest.$ac_ext +-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6 + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc in +- yes:no ) +- { echo "$as_me:$LINENO: WARNING: mmsystem.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: mmsystem.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: mmsystem.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: mmsystem.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +- no:yes ) +- { echo "$as_me:$LINENO: WARNING: mmsystem.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: mmsystem.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: mmsystem.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: mmsystem.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: mmsystem.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: mmsystem.h: proceeding with the preprocessor's result" >&2;} +- ( +- cat <<\_ASBOX +-## ------------------------------------ ## +-## Report this to bug-autoconf@gnu.org. ## +-## ------------------------------------ ## +-_ASBOX +- ) | +- sed "s/^/$as_me: WARNING: /" >&2 +- ;; +-esac +-echo "$as_me:$LINENO: checking for mmsystem.h" >&5 +-echo $ECHO_N "checking for mmsystem.h... $ECHO_C" >&6 +-if test "${ac_cv_header_mmsystem_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ac_safe=`echo "mmsystem.h" | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for mmsystem.h""... $ac_c" 1>&6 ++echo "configure:1530: checking for mmsystem.h" >&5 ++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 + else +- ac_cv_header_mmsystem_h=$ac_header_preproc ++ cat > conftest.$ac_ext <<EOF ++#line 1535 "configure" ++#include "confdefs.h" ++#include <mmsystem.h> ++EOF ++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" ++{ (eval echo configure:1540: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` ++if test -z "$ac_err"; then ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=yes" ++else ++ echo "$ac_err" >&5 ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_header_$ac_safe=no" + fi +-echo "$as_me:$LINENO: result: $ac_cv_header_mmsystem_h" >&5 +-echo "${ECHO_T}$ac_cv_header_mmsystem_h" >&6 +- ++rm -f conftest* + fi +-if test $ac_cv_header_mmsystem_h = yes; then ++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 + AUDIODRIVER="wince" + AUDIODEFS=-DCST_AUDIO_WINCE + AUDIOLIBS=-lwinmm ++else ++ echo "$ac_t""no" 1>&6 + fi + + +- +- + # Check whether --with-audio or --without-audio was given. + if test "${with_audio+set}" = set; then + withval="$with_audio" +- AUDIODRIVER=$with_audio +-fi; ++ AUDIODRIVER=$with_audio ++fi + ++ + if test "x$AUDIODEFS" = x; then + case "$AUDIODRIVER" in + linux|oss) +@@ -4006,34 +1595,34 @@ + + + +- + # Check whether --with-lang or --without-lang was given. + if test "${with_lang+set}" = set; then + withval="$with_lang" +- FL_LANG=$with_lang +-fi; ++ FL_LANG=$with_lang ++fi ++ + if test "x$with_lang" = "x"; then + FL_LANG="usenglish" + fi + + +- + # Check whether --with-vox or --without-vox was given. + if test "${with_vox+set}" = set; then + withval="$with_vox" +- FL_VOX=$with_vox +-fi; ++ FL_VOX=$with_vox ++fi ++ + if test "x$with_vox" = "x"; then + FL_VOX="cmu_us_kal" + fi + + +- + # Check whether --with-lex or --without-lex was given. + if test "${with_lex+set}" = set; then + withval="$with_lex" +- FL_LEX=$with_lex +-fi; ++ FL_LEX=$with_lex ++fi ++ + if test "x$with_lex" = "x"; then + FL_LEX="cmulex" + fi +@@ -4041,921 +1630,300 @@ + + + +- ac_config_files="$ac_config_files config/config config/system.mak" +-cat >confcache <<\_ACEOF ++trap '' 1 2 15 ++cat > confcache <<\EOF + # This file is a shell script that caches the results of configure + # tests run on this system so they can be shared between configure +-# scripts and configure runs, see configure's option --config-cache. +-# It is not useful on other systems. If it contains results you don't +-# want to keep, you may remove or edit it. ++# scripts and configure runs. It is not useful on other systems. ++# If it contains results you don't want to keep, you may remove or edit it. + # +-# config.status only pays attention to the cache file if you give it +-# the --recheck option to rerun configure. ++# By default, configure uses ./config.cache as the cache file, ++# creating it if it does not exist already. You can give configure ++# the --cache-file=FILE option to use a different cache file; that is ++# what configure does when it calls configure scripts in ++# subdirectories, so they share the cache. ++# Giving --cache-file=/dev/null disables caching, for debugging configure. ++# config.status only pays attention to the cache file if you give it the ++# --recheck option to rerun configure. + # +-# `ac_cv_env_foo' variables (set or unset) will be overridden when +-# loading this file, other *unset* `ac_cv_foo' will be assigned the +-# following values. +- +-_ACEOF +- ++EOF + # The following way of writing the cache mishandles newlines in values, + # but we know of no workaround that is simple, portable, and efficient. + # So, don't put newlines in cache variables' values. + # Ultrix sh set writes to stderr and can't be redirected directly, + # and sets the high bit in the cache file unless we assign to the vars. +-{ +- (set) 2>&1 | +- case `(ac_space=' '; set | grep ac_space) 2>&1` in +- *ac_space=\ *) +- # `set' does not quote correctly, so add quotes (double-quote +- # substitution turns \\\\ into \\, and sed turns \\ into \). +- sed -n \ +- "s/'/'\\\\''/g; +- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" +- ;; +- *) +- # `set' quotes correctly as required by POSIX, so do not add quotes. +- sed -n \ +- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" +- ;; +- esac; +-} | +- sed ' +- t clear +- : clear +- s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ +- t end +- /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ +- : end' >>confcache +-if diff $cache_file confcache >/dev/null 2>&1; then :; else ++(set) 2>&1 | ++ case `(ac_space=' '; set | grep ac_space) 2>&1` in ++ *ac_space=\ *) ++ # `set' does not quote correctly, so add quotes (double-quote substitution ++ # turns \\\\ into \\, and sed turns \\ into \). ++ sed -n \ ++ -e "s/'/'\\\\''/g" \ ++ -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" ++ ;; ++ *) ++ # `set' quotes correctly as required by POSIX, so do not add quotes. ++ sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' ++ ;; ++ esac >> confcache ++if cmp -s $cache_file confcache; then ++ : ++else + if test -w $cache_file; then +- test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" +- cat confcache >$cache_file ++ echo "updating cache $cache_file" ++ cat confcache > $cache_file + else + echo "not updating unwritable cache $cache_file" + fi + fi + rm -f confcache + ++trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 ++ + test "x$prefix" = xNONE && prefix=$ac_default_prefix + # Let make expand exec_prefix. + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +-# VPATH may cause trouble with some makes, so we remove $(srcdir), +-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +-# trailing colons and then remove the whole line if VPATH becomes empty +-# (actually we leave an empty line to preserve line numbers). ++# Any assignment to VPATH causes Sun make to only execute ++# the first set of double-colon rules, so remove it if not needed. ++# If there is a colon in the path, we need to keep it. + if test "x$srcdir" = x.; then +- ac_vpsub='/^[ ]*VPATH[ ]*=/{ +-s/:*\$(srcdir):*/:/; +-s/:*\${srcdir}:*/:/; +-s/:*@srcdir@:*/:/; +-s/^\([^=]*=[ ]*\):*/\1/; +-s/:*$//; +-s/^[^=]*=[ ]*$//; +-}' ++ ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' + fi + ++trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 ++ + # Transform confdefs.h into DEFS. + # Protect against shell expansion while executing Makefile rules. + # Protect against Makefile macro expansion. +-# +-# If the first sed substitution is executed (which looks for macros that +-# take arguments), then we branch to the quote section. Otherwise, +-# look for a macro that doesn't take arguments. +-cat >confdef2opt.sed <<\_ACEOF +-t clear +-: clear +-s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g +-t quote +-s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g +-t quote +-d +-: quote +-s,[ `~#$^&*(){}\\|;'"<>?],\\&,g +-s,\[,\\&,g +-s,\],\\&,g +-s,\$,$$,g +-p +-_ACEOF +-# We use echo to avoid assuming a particular line-breaking character. +-# The extra dot is to prevent the shell from consuming trailing +-# line-breaks from the sub-command output. A line-break within +-# single-quotes doesn't work because, if this script is created in a +-# platform that uses two characters for line-breaks (e.g., DOS), tr +-# would break. +-ac_LF_and_DOT=`echo; echo .` +-DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'` +-rm -f confdef2opt.sed ++cat > conftest.defs <<\EOF ++s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g ++s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g ++s%\[%\\&%g ++s%\]%\\&%g ++s%\$%$$%g ++EOF ++DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '` ++rm -f conftest.defs + + +-ac_libobjs= +-ac_ltlibobjs= +-for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue +- # 1. Remove the extension, and $U if already installed. +- ac_i=`echo "$ac_i" | +- sed 's/\$U\././;s/\.o$//;s/\.obj$//'` +- # 2. Add them. +- ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" +- ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' +-done +-LIBOBJS=$ac_libobjs +- +-LTLIBOBJS=$ac_ltlibobjs +- +- +- ++# Without the "./", some shells look in PATH for config.status. + : ${CONFIG_STATUS=./config.status} +-ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +-echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF +-#! $SHELL +-# Generated by $as_me. ++ ++echo creating $CONFIG_STATUS ++rm -f $CONFIG_STATUS ++cat > $CONFIG_STATUS <<EOF ++#! /bin/sh ++# Generated automatically by configure. + # Run this file to recreate the current configuration. ++# This directory was configured as follows, ++# on host `(hostname || uname -n) 2>/dev/null | sed 1q`: ++# ++# $0 $ac_configure_args ++# + # Compiler output produced by configure, useful for debugging +-# configure, is in config.log if it exists. ++# configure, is in ./config.log if it exists. + +-debug=false +-ac_cs_recheck=false +-ac_cs_silent=false +-SHELL=\${CONFIG_SHELL-$SHELL} +-_ACEOF +- +-cat >>$CONFIG_STATUS <<\_ACEOF +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## +- +-# Be Bourne compatible +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then +- set -o posix +-fi +- +-# Support unset when possible. +-if (FOO=FOO; unset FOO) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false +-fi +- +- +-# Work around bugs in pre-3.0 UWIN ksh. +-$as_unset ENV MAIL MAILPATH +-PS1='$ ' +-PS2='> ' +-PS4='+ ' +- +-# NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME ++ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" ++for ac_option + do +- if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- $as_unset $as_var +- fi ++ case "\$ac_option" in ++ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ++ echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" ++ exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; ++ -version | --version | --versio | --versi | --vers | --ver | --ve | --v) ++ echo "$CONFIG_STATUS generated by autoconf version 2.13" ++ exit 0 ;; ++ -help | --help | --hel | --he | --h) ++ echo "\$ac_cs_usage"; exit 0 ;; ++ *) echo "\$ac_cs_usage"; exit 1 ;; ++ esac + done + +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1; then +- as_expr=expr +-else +- as_expr=false +-fi ++ac_given_srcdir=$srcdir ++ac_given_INSTALL="$INSTALL" + +-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then +- as_basename=basename +-else +- as_basename=false +-fi ++trap 'rm -fr `echo "config/config config/system.mak" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 ++EOF ++cat >> $CONFIG_STATUS <<EOF + ++# Protect against being on the right side of a sed subst in config.status. ++sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g; ++ s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF ++$ac_vpsub ++$extrasub ++s%@SHELL@%$SHELL%g ++s%@CFLAGS@%$CFLAGS%g ++s%@CPPFLAGS@%$CPPFLAGS%g ++s%@CXXFLAGS@%$CXXFLAGS%g ++s%@FFLAGS@%$FFLAGS%g ++s%@DEFS@%$DEFS%g ++s%@LDFLAGS@%$LDFLAGS%g ++s%@LIBS@%$LIBS%g ++s%@exec_prefix@%$exec_prefix%g ++s%@prefix@%$prefix%g ++s%@program_transform_name@%$program_transform_name%g ++s%@bindir@%$bindir%g ++s%@sbindir@%$sbindir%g ++s%@libexecdir@%$libexecdir%g ++s%@datadir@%$datadir%g ++s%@sysconfdir@%$sysconfdir%g ++s%@sharedstatedir@%$sharedstatedir%g ++s%@localstatedir@%$localstatedir%g ++s%@libdir@%$libdir%g ++s%@includedir@%$includedir%g ++s%@oldincludedir@%$oldincludedir%g ++s%@infodir@%$infodir%g ++s%@mandir@%$mandir%g ++s%@host@%$host%g ++s%@host_alias@%$host_alias%g ++s%@host_cpu@%$host_cpu%g ++s%@host_vendor@%$host_vendor%g ++s%@host_os@%$host_os%g ++s%@target@%$target%g ++s%@target_alias@%$target_alias%g ++s%@target_cpu@%$target_cpu%g ++s%@target_vendor@%$target_vendor%g ++s%@target_os@%$target_os%g ++s%@build@%$build%g ++s%@build_alias@%$build_alias%g ++s%@build_cpu@%$build_cpu%g ++s%@build_vendor@%$build_vendor%g ++s%@build_os@%$build_os%g ++s%@CC@%$CC%g ++s%@RANLIB@%$RANLIB%g ++s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g ++s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g ++s%@INSTALL_DATA@%$INSTALL_DATA%g ++s%@AR@%$AR%g ++s%@TARGET_OS@%$TARGET_OS%g ++s%@TARGET_CPU@%$TARGET_CPU%g ++s%@M68KCC@%$M68KCC%g ++s%@LEXDEFS@%$LEXDEFS%g ++s%@VOXDEFS@%$VOXDEFS%g ++s%@HOST_OS@%$HOST_OS%g ++s%@HOST_CPU@%$HOST_CPU%g ++s%@OTHERLIBS@%$OTHERLIBS%g ++s%@SHFLAGS@%$SHFLAGS%g ++s%@MMAPTYPE@%$MMAPTYPE%g ++s%@STDIOTYPE@%$STDIOTYPE%g ++s%@CPP@%$CPP%g ++s%@AUDIODRIVER@%$AUDIODRIVER%g ++s%@AUDIODEFS@%$AUDIODEFS%g ++s%@AUDIOLIBS@%$AUDIOLIBS%g ++s%@FL_LANG@%$FL_LANG%g ++s%@FL_VOX@%$FL_VOX%g ++s%@FL_LEX@%$FL_LEX%g ++s%@EXEEXT@%$EXEEXT%g + +-# Name of the executable. +-as_me=`$as_basename "$0" || +-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)$' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } +- /^X\/\(\/\/\)$/{ s//\1/; q; } +- /^X\/\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` ++CEOF ++EOF + ++cat >> $CONFIG_STATUS <<\EOF + +-# PATH needs CR, and LINENO needs CR and PATH. +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- +-# The user is always right. +-if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' ++# Split the substitutions into bite-sized pieces for seds with ++# small command number limits, like on Digital OSF/1 and HP-UX. ++ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. ++ac_file=1 # Number of current file. ++ac_beg=1 # First line for current file. ++ac_end=$ac_max_sed_cmds # Line after last line for current file. ++ac_more_lines=: ++ac_sed_cmds="" ++while $ac_more_lines; do ++ if test $ac_beg -gt 1; then ++ sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file + else +- PATH_SEPARATOR=: ++ sed "${ac_end}q" conftest.subs > conftest.s$ac_file + fi +- rm -f conf$$.sh +-fi +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" || { +- # Find who we are. Look in the path if we contain no path at all +- # relative or not. +- case $0 in +- *[\\/]* ) as_myself=$0 ;; +- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done +- +- ;; +- esac +- # We did not find ourselves, most probably we were run as `sh COMMAND' +- # in which case we are not to be found in the path. +- if test "x$as_myself" = x; then +- as_myself=$0 +- fi +- if test ! -f "$as_myself"; then +- { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 +-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} +- { (exit 1); exit 1; }; } +- fi +- case $CONFIG_SHELL in +- '') +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for as_base in sh bash ksh sh5; do +- case $as_dir in +- /*) +- if ("$as_dir/$as_base" -c ' +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then +- $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } +- $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } +- CONFIG_SHELL=$as_dir/$as_base +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$0" ${1+"$@"} +- fi;; +- esac +- done +-done +-;; +- esac +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line before each line; the second 'sed' does the real +- # work. The second script uses 'N' to pair each line-number line +- # with the numbered line, and appends trailing '-' during +- # substitution so that $LINENO is not a special case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) +- sed '=' <$as_myself | +- sed ' +- N +- s,$,-, +- : loop +- s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, +- t loop +- s,-$,, +- s,^['$as_cr_digits']*\n,, +- ' >$as_me.lineno && +- chmod +x $as_me.lineno || +- { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 +-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensible to this). +- . ./$as_me.lineno +- # Exit status is that of the last command. +- exit +-} +- +- +-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in +- *c*,-n*) ECHO_N= ECHO_C=' +-' ECHO_T=' ' ;; +- *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; +- *) ECHO_N= ECHO_C='\c' ECHO_T= ;; +-esac +- +-if expr a : '\(a\)' >/dev/null 2>&1; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-rm -f conf$$ conf$$.exe conf$$.file +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- # We could just check for DJGPP; but this test a) works b) is more generic +- # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). +- if test -f conf$$.exe; then +- # Don't use ln at all; we don't have any links +- as_ln_s='cp -p' ++ if test ! -s conftest.s$ac_file; then ++ ac_more_lines=false ++ rm -f conftest.s$ac_file + else +- as_ln_s='ln -s' ++ if test -z "$ac_sed_cmds"; then ++ ac_sed_cmds="sed -f conftest.s$ac_file" ++ else ++ ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" ++ fi ++ ac_file=`expr $ac_file + 1` ++ ac_beg=$ac_end ++ ac_end=`expr $ac_end + $ac_max_sed_cmds` + fi +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +-else +- as_ln_s='cp -p' +-fi +-rm -f conf$$ conf$$.exe conf$$.file +- +-if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: +-else +- as_mkdir_p=false +-fi +- +-as_executable_p="test -f" +- +-# Sed expression to map a string onto a valid CPP name. +-as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" +- +-# Sed expression to map a string onto a valid variable name. +-as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g" +- +- +-# IFS +-# We need space, tab and new line, in precisely that order. +-as_nl=' +-' +-IFS=" $as_nl" +- +-# CDPATH. +-$as_unset CDPATH +- +-exec 6>&1 +- +-# Open the log real soon, to keep \$[0] and so on meaningful, and to +-# report actual input values of CONFIG_FILES etc. instead of their +-# values after options handling. Logging --version etc. is OK. +-exec 5>>config.log +-{ +- echo +- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +-## Running $as_me. ## +-_ASBOX +-} >&5 +-cat >&5 <<_CSEOF +- +-This file was extended by $as_me, which was +-generated by GNU Autoconf 2.57. Invocation command line was +- +- CONFIG_FILES = $CONFIG_FILES +- CONFIG_HEADERS = $CONFIG_HEADERS +- CONFIG_LINKS = $CONFIG_LINKS +- CONFIG_COMMANDS = $CONFIG_COMMANDS +- $ $0 $@ +- +-_CSEOF +-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 +-echo >&5 +-_ACEOF +- +-# Files that config.status was made for. +-if test -n "$ac_config_files"; then +- echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS +-fi +- +-if test -n "$ac_config_headers"; then +- echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS +-fi +- +-if test -n "$ac_config_links"; then +- echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS +-fi +- +-if test -n "$ac_config_commands"; then +- echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS +-fi +- +-cat >>$CONFIG_STATUS <<\_ACEOF +- +-ac_cs_usage="\ +-\`$as_me' instantiates files from templates according to the +-current configuration. +- +-Usage: $0 [OPTIONS] [FILE]... +- +- -h, --help print this help, then exit +- -V, --version print version number, then exit +- -q, --quiet do not print progress messages +- -d, --debug don't remove temporary files +- --recheck update $as_me by reconfiguring in the same conditions +- --file=FILE[:TEMPLATE] +- instantiate the configuration file FILE +- +-Configuration files: +-$config_files +- +-Report bugs to <bug-autoconf@gnu.org>." +-_ACEOF +- +-cat >>$CONFIG_STATUS <<_ACEOF +-ac_cs_version="\\ +-config.status +-configured by $0, generated by GNU Autoconf 2.57, +- with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" +- +-Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 +-Free Software Foundation, Inc. +-This config.status script is free software; the Free Software Foundation +-gives unlimited permission to copy, distribute and modify it." +-srcdir=$srcdir +-INSTALL="$INSTALL" +-_ACEOF +- +-cat >>$CONFIG_STATUS <<\_ACEOF +-# If no file are specified by the user, then we need to provide default +-# value. By we need to know if files were specified by the user. +-ac_need_defaults=: +-while test $# != 0 +-do +- case $1 in +- --*=*) +- ac_option=`expr "x$1" : 'x\([^=]*\)='` +- ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` +- ac_shift=: +- ;; +- -*) +- ac_option=$1 +- ac_optarg=$2 +- ac_shift=shift +- ;; +- *) # This is not an option, so the user has probably given explicit +- # arguments. +- ac_option=$1 +- ac_need_defaults=false;; +- esac +- +- case $ac_option in +- # Handling of the options. +-_ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF +- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) +- ac_cs_recheck=: ;; +- --version | --vers* | -V ) +- echo "$ac_cs_version"; exit 0 ;; +- --he | --h) +- # Conflict between --help and --header +- { { echo "$as_me:$LINENO: error: ambiguous option: $1 +-Try \`$0 --help' for more information." >&5 +-echo "$as_me: error: ambiguous option: $1 +-Try \`$0 --help' for more information." >&2;} +- { (exit 1); exit 1; }; };; +- --help | --hel | -h ) +- echo "$ac_cs_usage"; exit 0 ;; +- --debug | --d* | -d ) +- debug=: ;; +- --file | --fil | --fi | --f ) +- $ac_shift +- CONFIG_FILES="$CONFIG_FILES $ac_optarg" +- ac_need_defaults=false;; +- --header | --heade | --head | --hea ) +- $ac_shift +- CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" +- ac_need_defaults=false;; +- -q | -quiet | --quiet | --quie | --qui | --qu | --q \ +- | -silent | --silent | --silen | --sile | --sil | --si | --s) +- ac_cs_silent=: ;; +- +- # This is an error. +- -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&5 +-echo "$as_me: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&2;} +- { (exit 1); exit 1; }; } ;; +- +- *) ac_config_targets="$ac_config_targets $1" ;; +- +- esac +- shift + done +- +-ac_configure_extra_args= +- +-if $ac_cs_silent; then +- exec 6>/dev/null +- ac_configure_extra_args="$ac_configure_extra_args --silent" ++if test -z "$ac_sed_cmds"; then ++ ac_sed_cmds=cat + fi ++EOF + +-_ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF +-if \$ac_cs_recheck; then +- echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 +- exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion +-fi ++cat >> $CONFIG_STATUS <<EOF + +-_ACEOF +- +- +- +- +- +-cat >>$CONFIG_STATUS <<\_ACEOF +-for ac_config_target in $ac_config_targets +-do +- case "$ac_config_target" in +- # Handling of arguments. +- "config/config" ) CONFIG_FILES="$CONFIG_FILES config/config" ;; +- "config/system.mak" ) CONFIG_FILES="$CONFIG_FILES config/system.mak" ;; +- *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-echo "$as_me: error: invalid argument: $ac_config_target" >&2;} +- { (exit 1); exit 1; }; };; ++CONFIG_FILES=\${CONFIG_FILES-"config/config config/system.mak"} ++EOF ++cat >> $CONFIG_STATUS <<\EOF ++for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then ++ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". ++ case "$ac_file" in ++ *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ++ ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; ++ *) ac_file_in="${ac_file}.in" ;; + esac +-done + +-# If the user did not use the arguments to specify the items to instantiate, +-# then the envvar interface is used. Set only those that are not. +-# We use the long form for the default assignment because of an extremely +-# bizarre bug on SunOS 4.1.3. +-if $ac_need_defaults; then +- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files +-fi ++ # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. + +-# Have a temporary directory for convenience. Make it in the build tree +-# simply because there is no reason to put it here, and in addition, +-# creating and moving files from /tmp can sometimes cause problems. +-# Create a temporary directory, and hook for its removal unless debugging. +-$debug || +-{ +- trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 +- trap '{ (exit 1); exit 1; }' 1 2 13 15 +-} +- +-# Create a (secure) tmp directory for tmp files. +- +-{ +- tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && +- test -n "$tmp" && test -d "$tmp" +-} || +-{ +- tmp=./confstat$$-$RANDOM +- (umask 077 && mkdir $tmp) +-} || +-{ +- echo "$me: cannot create a temporary directory in ." >&2 +- { (exit 1); exit 1; } +-} +- +-_ACEOF +- +-cat >>$CONFIG_STATUS <<_ACEOF +- +-# +-# CONFIG_FILES section. +-# +- +-# No need to generate the scripts if there are no CONFIG_FILES. +-# This happens for instance when ./config.status config.h +-if test -n "\$CONFIG_FILES"; then +- # Protect against being on the right side of a sed subst in config.status. +- sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; +- s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF +-s,@SHELL@,$SHELL,;t t +-s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t +-s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t +-s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t +-s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t +-s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t +-s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t +-s,@exec_prefix@,$exec_prefix,;t t +-s,@prefix@,$prefix,;t t +-s,@program_transform_name@,$program_transform_name,;t t +-s,@bindir@,$bindir,;t t +-s,@sbindir@,$sbindir,;t t +-s,@libexecdir@,$libexecdir,;t t +-s,@datadir@,$datadir,;t t +-s,@sysconfdir@,$sysconfdir,;t t +-s,@sharedstatedir@,$sharedstatedir,;t t +-s,@localstatedir@,$localstatedir,;t t +-s,@libdir@,$libdir,;t t +-s,@includedir@,$includedir,;t t +-s,@oldincludedir@,$oldincludedir,;t t +-s,@infodir@,$infodir,;t t +-s,@mandir@,$mandir,;t t +-s,@build_alias@,$build_alias,;t t +-s,@host_alias@,$host_alias,;t t +-s,@target_alias@,$target_alias,;t t +-s,@DEFS@,$DEFS,;t t +-s,@ECHO_C@,$ECHO_C,;t t +-s,@ECHO_N@,$ECHO_N,;t t +-s,@ECHO_T@,$ECHO_T,;t t +-s,@LIBS@,$LIBS,;t t +-s,@build@,$build,;t t +-s,@build_cpu@,$build_cpu,;t t +-s,@build_vendor@,$build_vendor,;t t +-s,@build_os@,$build_os,;t t +-s,@host@,$host,;t t +-s,@host_cpu@,$host_cpu,;t t +-s,@host_vendor@,$host_vendor,;t t +-s,@host_os@,$host_os,;t t +-s,@target@,$target,;t t +-s,@target_cpu@,$target_cpu,;t t +-s,@target_vendor@,$target_vendor,;t t +-s,@target_os@,$target_os,;t t +-s,@CC@,$CC,;t t +-s,@CFLAGS@,$CFLAGS,;t t +-s,@LDFLAGS@,$LDFLAGS,;t t +-s,@CPPFLAGS@,$CPPFLAGS,;t t +-s,@ac_ct_CC@,$ac_ct_CC,;t t +-s,@EXEEXT@,$EXEEXT,;t t +-s,@OBJEXT@,$OBJEXT,;t t +-s,@RANLIB@,$RANLIB,;t t +-s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t +-s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t +-s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t +-s,@INSTALL_DATA@,$INSTALL_DATA,;t t +-s,@AR@,$AR,;t t +-s,@ac_ct_AR@,$ac_ct_AR,;t t +-s,@TARGET_OS@,$TARGET_OS,;t t +-s,@TARGET_CPU@,$TARGET_CPU,;t t +-s,@M68KCC@,$M68KCC,;t t +-s,@LEXDEFS@,$LEXDEFS,;t t +-s,@VOXDEFS@,$VOXDEFS,;t t +-s,@HOST_OS@,$HOST_OS,;t t +-s,@HOST_CPU@,$HOST_CPU,;t t +-s,@OTHERLIBS@,$OTHERLIBS,;t t +-s,@SHFLAGS@,$SHFLAGS,;t t +-s,@MMAPTYPE@,$MMAPTYPE,;t t +-s,@STDIOTYPE@,$STDIOTYPE,;t t +-s,@CPP@,$CPP,;t t +-s,@EGREP@,$EGREP,;t t +-s,@AUDIODRIVER@,$AUDIODRIVER,;t t +-s,@AUDIODEFS@,$AUDIODEFS,;t t +-s,@AUDIOLIBS@,$AUDIOLIBS,;t t +-s,@FL_LANG@,$FL_LANG,;t t +-s,@FL_VOX@,$FL_VOX,;t t +-s,@FL_LEX@,$FL_LEX,;t t +-s,@LIBOBJS@,$LIBOBJS,;t t +-s,@LTLIBOBJS@,$LTLIBOBJS,;t t +-CEOF +- +-_ACEOF +- +- cat >>$CONFIG_STATUS <<\_ACEOF +- # Split the substitutions into bite-sized pieces for seds with +- # small command number limits, like on Digital OSF/1 and HP-UX. +- ac_max_sed_lines=48 +- ac_sed_frag=1 # Number of current file. +- ac_beg=1 # First line for current file. +- ac_end=$ac_max_sed_lines # Line after last line for current file. +- ac_more_lines=: +- ac_sed_cmds= +- while $ac_more_lines; do +- if test $ac_beg -gt 1; then +- sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag +- else +- sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag +- fi +- if test ! -s $tmp/subs.frag; then +- ac_more_lines=false +- else +- # The purpose of the label and of the branching condition is to +- # speed up the sed processing (if there are no `@' at all, there +- # is no need to browse any of the substitutions). +- # These are the two extra sed commands mentioned above. +- (echo ':t +- /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed +- if test -z "$ac_sed_cmds"; then +- ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" +- else +- ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" +- fi +- ac_sed_frag=`expr $ac_sed_frag + 1` +- ac_beg=$ac_end +- ac_end=`expr $ac_end + $ac_max_sed_lines` +- fi +- done +- if test -z "$ac_sed_cmds"; then +- ac_sed_cmds=cat ++ # Remove last slash and all that follows it. Not all systems have dirname. ++ ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` ++ if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then ++ # The file is in a subdirectory. ++ test ! -d "$ac_dir" && mkdir "$ac_dir" ++ ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" ++ # A "../" for each directory in $ac_dir_suffix. ++ ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` ++ else ++ ac_dir_suffix= ac_dots= + fi +-fi # test -n "$CONFIG_FILES" + +-_ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF +-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue +- # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". +- case $ac_file in +- - | *:- | *:-:* ) # input from stdin +- cat >$tmp/stdin +- ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` +- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; +- *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` +- ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; +- * ) ac_file_in=$ac_file.in ;; ++ case "$ac_given_srcdir" in ++ .) srcdir=. ++ if test -z "$ac_dots"; then top_srcdir=. ++ else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; ++ /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; ++ *) # Relative path. ++ srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" ++ top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + +- # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. +- ac_dir=`(dirname "$ac_file") 2>/dev/null || +-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$ac_file" : 'X\(//\)[^/]' \| \ +- X"$ac_file" : 'X\(//\)$' \| \ +- X"$ac_file" : 'X\(/\)' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X"$ac_file" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } +- /^X\(\/\/\)[^/].*/{ s//\1/; q; } +- /^X\(\/\/\)$/{ s//\1/; q; } +- /^X\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` +- { if $as_mkdir_p; then +- mkdir -p "$ac_dir" +- else +- as_dir="$ac_dir" +- as_dirs= +- while test ! -d "$as_dir"; do +- as_dirs="$as_dir $as_dirs" +- as_dir=`(dirname "$as_dir") 2>/dev/null || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X"$as_dir" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } +- /^X\(\/\/\)[^/].*/{ s//\1/; q; } +- /^X\(\/\/\)$/{ s//\1/; q; } +- /^X\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` +- done +- test ! -n "$as_dirs" || mkdir $as_dirs +- fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 +-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} +- { (exit 1); exit 1; }; }; } ++ case "$ac_given_INSTALL" in ++ [/$]*) INSTALL="$ac_given_INSTALL" ;; ++ *) INSTALL="$ac_dots$ac_given_INSTALL" ;; ++ esac + +- ac_builddir=. +- +-if test "$ac_dir" != .; then +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` +- # A "../" for each directory in $ac_dir_suffix. +- ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +-else +- ac_dir_suffix= ac_top_builddir= +-fi +- +-case $srcdir in +- .) # No --srcdir option. We are building in place. +- ac_srcdir=. +- if test -z "$ac_top_builddir"; then +- ac_top_srcdir=. +- else +- ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` +- fi ;; +- [\\/]* | ?:[\\/]* ) # Absolute path. +- ac_srcdir=$srcdir$ac_dir_suffix; +- ac_top_srcdir=$srcdir ;; +- *) # Relative path. +- ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix +- ac_top_srcdir=$ac_top_builddir$srcdir ;; +-esac +-# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be +-# absolute. +-ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd` +-ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd` +-ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd` +-ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd` +- +- +- case $INSTALL in +- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; +- *) ac_INSTALL=$ac_top_builddir$INSTALL ;; ++ echo creating "$ac_file" ++ rm -f "$ac_file" ++ configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." ++ case "$ac_file" in ++ *Makefile*) ac_comsub="1i\\ ++# $configure_input" ;; ++ *) ac_comsub= ;; + esac + +- if test x"$ac_file" != x-; then +- { echo "$as_me:$LINENO: creating $ac_file" >&5 +-echo "$as_me: creating $ac_file" >&6;} +- rm -f "$ac_file" +- fi +- # Let's still pretend it is `configure' which instantiates (i.e., don't +- # use $as_me), people would be surprised to read: +- # /* config.h. Generated by config.status. */ +- if test x"$ac_file" = x-; then +- configure_input= +- else +- configure_input="$ac_file. " +- fi +- configure_input=$configure_input"Generated from `echo $ac_file_in | +- sed 's,.*/,,'` by configure." ++ ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` ++ sed -e "$ac_comsub ++s%@configure_input@%$configure_input%g ++s%@srcdir@%$srcdir%g ++s%@top_srcdir@%$top_srcdir%g ++s%@INSTALL@%$INSTALL%g ++" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file ++fi; done ++rm -f conftest.s* + +- # First look for the input files in the build tree, otherwise in the +- # src tree. +- ac_file_inputs=`IFS=: +- for f in $ac_file_in; do +- case $f in +- -) echo $tmp/stdin ;; +- [\\/$]*) +- # Absolute (can't be DOS-style, as IFS=:) +- test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +-echo "$as_me: error: cannot find input file: $f" >&2;} +- { (exit 1); exit 1; }; } +- echo $f;; +- *) # Relative +- if test -f "$f"; then +- # Build tree +- echo $f +- elif test -f "$srcdir/$f"; then +- # Source tree +- echo $srcdir/$f +- else +- # /dev/null tree +- { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 +-echo "$as_me: error: cannot find input file: $f" >&2;} +- { (exit 1); exit 1; }; } +- fi;; +- esac +- done` || { (exit 1); exit 1; } +-_ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF +- sed "$ac_vpsub +-$extrasub +-_ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF +-:t +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-s,@configure_input@,$configure_input,;t t +-s,@srcdir@,$ac_srcdir,;t t +-s,@abs_srcdir@,$ac_abs_srcdir,;t t +-s,@top_srcdir@,$ac_top_srcdir,;t t +-s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t +-s,@builddir@,$ac_builddir,;t t +-s,@abs_builddir@,$ac_abs_builddir,;t t +-s,@top_builddir@,$ac_top_builddir,;t t +-s,@abs_top_builddir@,$ac_abs_top_builddir,;t t +-s,@INSTALL@,$ac_INSTALL,;t t +-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out +- rm -f $tmp/stdin +- if test x"$ac_file" != x-; then +- mv $tmp/out $ac_file +- else +- cat $tmp/out +- rm -f $tmp/out +- fi ++EOF ++cat >> $CONFIG_STATUS <<EOF + +-done +-_ACEOF ++EOF ++cat >> $CONFIG_STATUS <<\EOF + +-cat >>$CONFIG_STATUS <<\_ACEOF +- +-{ (exit 0); exit 0; } +-_ACEOF ++exit 0 ++EOF + chmod +x $CONFIG_STATUS +-ac_clean_files=$ac_clean_files_save ++rm -fr confdefs* $ac_clean_files ++test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + +- +-# configure is writing to config.log, and then calls config.status. +-# config.status does its own redirection, appending to config.log. +-# Unfortunately, on DOS this fails, as config.log is still kept open +-# by configure, so config.status won't be able to write to it; its +-# output is simply discarded. So we exec the FD to /dev/null, +-# effectively closing config.log, so it can be properly (re)opened and +-# appended to by config.status. When coming back to configure, we +-# need to make the FD available again. +-if test "$no_create" != yes; then +- ac_cs_success=: +- ac_config_status_args= +- test "$silent" = yes && +- ac_config_status_args="$ac_config_status_args --quiet" +- exec 5>/dev/null +- $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false +- exec 5>>config.log +- # Use ||, not &&, to avoid exiting from the if with $? = 1, which +- # would make configure fail if this is the last instruction. +- $ac_cs_success || { (exit 1); exit 1; } +-fi +- +Index: configure.in +=================================================================== +--- flite-1.3-release/configure.in (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/configure.in (.../release-1.2) (revision 7) +@@ -206,10 +206,10 @@ + AC_CHECK_HEADER(sys/audioio.h, + [AUDIODRIVER="sun" + AUDIODEFS=-DCST_AUDIO_SUNOS]) +-dnl AC_CHECK_HEADER(sys/asoundlib.h, +-dnl [AUDIODRIVER="alsa" +-dnl AUDIODEFS=-DCST_AUDIO_ALSA +-dnl AUDIOLIBS=-lasound]) ++ AC_CHECK_HEADER(alsa/asoundlib.h, ++ [AUDIODRIVER="alsa" ++ AUDIODEFS=-DCST_AUDIO_ALSA ++ AUDIOLIBS=-lasound]) + AC_CHECK_HEADER(mmsystem.h, + [AUDIODRIVER="wince" + AUDIODEFS=-DCST_AUDIO_WINCE +Index: src/hrg/Makefile +=================================================================== +--- flite-1.3-release/src/hrg/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/hrg/Makefile (.../release-1.2) (revision 7) +@@ -39,9 +39,14 @@ + BUILD_DIRS = + ALL_DIRS= + H = ++include $(TOP)/config/config + SRCS = cst_utterance.c cst_relation.c cst_item.c cst_ffeature.c \ + cst_rel_io.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(H) $(SRCS) + LIBNAME = flite + +Index: src/utils/Makefile +=================================================================== +--- flite-1.3-release/src/utils/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/utils/Makefile (.../release-1.2) (revision 7) +@@ -44,8 +44,13 @@ + cst_tokenstream.c cst_val.c cst_features.c \ + cst_endian.c cst_socket.c cst_val_const.c \ + cst_val_user.c cst_args.c ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) $(MMAPTYPE:%=cst_mmap_%.os) \ ++ $(STDIOTYPE:%=cst_file_%.os) ++else + OBJS := $(SRCS:.c=.o) $(MMAPTYPE:%=cst_mmap_%.o) \ + $(STDIOTYPE:%=cst_file_%.o) ++endif + FILES = Makefile $(H) $(SRCS) \ + cst_mmap_posix.c cst_mmap_win32.c cst_mmap_none.c \ + cst_file_stdio.c cst_file_wince.c cst_file_palmos.c +Index: src/audio/au_alsa.c +=================================================================== +--- flite-1.3-release/src/audio/au_alsa.c (.../flite-1.3-orig) (revision 0) ++++ flite-1.3-release/src/audio/au_alsa.c (.../release-1.2) (revision 7) +@@ -0,0 +1,311 @@ ++/*************************************************************************/ ++/* */ ++/* Language Technologies Institute */ ++/* Carnegie Mellon University */ ++/* Copyright (c) 2000 */ ++/* All Rights Reserved. */ ++/* */ ++/* Permission is hereby granted, free of charge, to use and distribute */ ++/* this software and its documentation without restriction, including */ ++/* without limitation the rights to use, copy, modify, merge, publish, */ ++/* distribute, sublicense, and/or sell copies of this work, and to */ ++/* permit persons to whom this work is furnished to do so, subject to */ ++/* the following conditions: */ ++/* 1. The code must retain the above copyright notice, this list of */ ++/* conditions and the following disclaimer. */ ++/* 2. Any modifications must be clearly marked as such. */ ++/* 3. Original authors' names are not deleted. */ ++/* 4. The authors' names are not used to endorse or promote products */ ++/* derived from this software without specific prior written */ ++/* permission. */ ++/* */ ++/* CARNEGIE MELLON UNIVERSITY AND THE CONTRIBUTORS TO THIS WORK */ ++/* DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING */ ++/* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT */ ++/* SHALL CARNEGIE MELLON UNIVERSITY NOR THE CONTRIBUTORS BE LIABLE */ ++/* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES */ ++/* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN */ ++/* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, */ ++/* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF */ ++/* THIS SOFTWARE. */ ++/* */ ++/*********************************************************************** */ ++/* Author: Lukas Loehrer ( */ ++/* Date: January 2005 */ ++/*************************************************************************/ ++/* */ ++/* Native access to alsa audio devices on Linux */ ++/* Tested with libasound version 1.0.10 */ ++/*************************************************************************/ ++ ++#include <stdlib.h> ++#include <unistd.h> ++#include <sys/types.h> ++#include <assert.h> ++#include <errno.h> ++ ++#include "cst_string.h" ++#include "cst_wave.h" ++#include "cst_audio.h" ++ ++#include <alsa/asoundlib.h> ++ ++ ++/*static char *pcm_dev_name = "hw:0,0"; */ ++static char *pcm_dev_name ="default"; ++ ++static inline void print_pcm_state(snd_pcm_t *handle, char *msg) ++{ ++ fprintf(stderr, "PCM state at %s = %s\n", msg, ++ snd_pcm_state_name(snd_pcm_state(handle))); ++} ++ ++cst_audiodev *audio_open_alsa(int sps, int channels, cst_audiofmt fmt) ++{ ++ cst_audiodev *ad; ++ unsigned int real_rate; ++ int err; ++ ++ /* alsa specific stuff */ ++ snd_pcm_t *pcm_handle; ++ snd_pcm_stream_t stream = SND_PCM_STREAM_PLAYBACK; ++ snd_pcm_hw_params_t *hwparams; ++ snd_pcm_format_t format; ++ snd_pcm_access_t access = SND_PCM_ACCESS_RW_INTERLEAVED; ++ ++ /* Allocate the snd_pcm_hw_params_t structure on the stack. */ ++ snd_pcm_hw_params_alloca(&hwparams); ++ ++ /* Open pcm device */ ++ err = snd_pcm_open(&pcm_handle, pcm_dev_name, stream, 0); ++ if (err < 0) ++ { ++ cst_errmsg("audio_open_alsa: failed to open audio device %s. %s\n", ++ pcm_dev_name, snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Init hwparams with full configuration space */ ++ err = snd_pcm_hw_params_any(pcm_handle, hwparams); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to get hardware parameters from audio device. %s\n", snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Set access mode */ ++ err = snd_pcm_hw_params_set_access(pcm_handle, hwparams, access); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set access mode. %s.\n", snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Determine matching alsa sample format */ ++ /* This could be implemented in a more */ ++ /* flexible way (byte order conversion). */ ++ switch (fmt) ++ { ++ case CST_AUDIO_LINEAR16: ++ if (CST_LITTLE_ENDIAN) ++ format = SND_PCM_FORMAT_S16_LE; ++ else ++ format = SND_PCM_FORMAT_S16_BE; ++ break; ++ case CST_AUDIO_LINEAR8: ++ format = SND_PCM_FORMAT_U8; ++ break; ++ case CST_AUDIO_MULAW: ++ format = SND_PCM_FORMAT_MU_LAW; ++ break; ++ default: ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to find suitable format.\n"); ++ return NULL; ++ break; ++ } ++ ++ /* Set samble format */ ++ err = snd_pcm_hw_params_set_format(pcm_handle, hwparams, format); ++ if (err <0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set format. %s.\n", snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Set sample rate near the disired rate */ ++ real_rate = sps; ++ err = snd_pcm_hw_params_set_rate_near(pcm_handle, hwparams, &real_rate, 0); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set sample rate near %d. %s.\n", sps, snd_strerror(err)); ++ return NULL; ++ } ++ /*FIXME: This is probably too strict */ ++ assert(sps == real_rate); ++ ++ /* Set number of channels */ ++ assert(channels >0); ++ err = snd_pcm_hw_params_set_channels(pcm_handle, hwparams, channels); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set number of channels to %d. %s.\n", channels, snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Commit hardware parameters */ ++ err = snd_pcm_hw_params(pcm_handle, hwparams); ++ if (err < 0) ++ { ++ snd_pcm_close(pcm_handle); ++ cst_errmsg("audio_open_alsa: failed to set hw parameters. %s.\n", snd_strerror(err)); ++ return NULL; ++ } ++ ++ /* Make sure the device is ready to accept data */ ++ assert(snd_pcm_state(pcm_handle) == SND_PCM_STATE_PREPARED); ++ ++ /* Write hardware parameters to flite audio device data structure */ ++ ad = cst_alloc(cst_audiodev, 1); ++ assert(ad != NULL); ++ ad->real_sps = ad->sps = sps; ++ ad->real_channels = ad->channels = channels; ++ ad->real_fmt = ad->fmt = fmt; ++ ad->platform_data = (void *) pcm_handle; ++ ++ return ad; ++} ++ ++int audio_close_alsa(cst_audiodev *ad) ++{ ++ int result; ++ snd_pcm_t *pcm_handle; ++ ++ if (ad == NULL) ++ return 0; ++ ++ pcm_handle = (snd_pcm_t *) ad->platform_data; ++ result = snd_pcm_close(pcm_handle); ++ if (result < 0) ++ { ++ cst_errmsg("audio_close_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ cst_free(ad); ++ return result; ++} ++ ++/* Returns zero if recovery was successful. */ ++static int recover_from_error(snd_pcm_t *pcm_handle, ssize_t res) ++{ ++ if (res == -EPIPE) /* xrun */ ++ { ++ res = snd_pcm_prepare(pcm_handle); ++ if (res < 0) ++ { ++ /* Failed to recover from xrun */ ++ cst_errmsg("recover_from_write_error: failed to recover from xrun. %s\n.", snd_strerror(res)); ++ return res; ++ } ++ } ++ else if (res == -ESTRPIPE) /* Suspend */ ++ { ++ while ((res = snd_pcm_resume(pcm_handle)) == -EAGAIN) ++ { ++ snd_pcm_wait(pcm_handle, 1000); ++ } ++ if (res < 0) ++ { ++ res = snd_pcm_prepare(pcm_handle); ++ if (res <0) ++ { ++ /* Resume failed */ ++ cst_errmsg("audio_recover_from_write_error: failed to resume after suspend. %s\n.", snd_strerror(res)); ++ return res; ++ } ++ } ++ } ++ else if (res < 0) ++ { ++ /* Unknown failure */ ++ cst_errmsg("audio_recover_from_write_error: %s.\n", snd_strerror(res)); ++ return res; ++ } ++ return 0; ++} ++ ++int audio_write_alsa(cst_audiodev *ad, void *samples, int num_bytes) ++{ ++ size_t frame_size; ++ ssize_t num_frames, res; ++ snd_pcm_t *pcm_handle; ++ char *buf = (char *) samples; ++ ++ /* Determine frame size in bytes */ ++ frame_size = audio_bps(ad->real_fmt) * ad->real_channels; ++ /* Require that only complete frames are handed in */ ++ assert((num_bytes % frame_size) == 0); ++ num_frames = num_bytes / frame_size; ++ pcm_handle = (snd_pcm_t *) ad->platform_data; ++ ++ while (num_frames > 0) ++ { ++ res = snd_pcm_writei(pcm_handle, buf, num_frames); ++ if (res != num_frames) ++ { ++ if (res == -EAGAIN || (res > 0 && res < num_frames)) ++ { ++ snd_pcm_wait(pcm_handle, 100); ++ } ++ else if (recover_from_error(pcm_handle, res) < 0) ++ { ++ return -1; ++ } ++ } ++ ++ if (res >0) ++ { ++ num_frames -= res; ++ buf += res * frame_size; ++ } ++ } ++ return num_bytes; ++} ++ ++int audio_flush_alsa(cst_audiodev *ad) ++{ ++ int result; ++ result = snd_pcm_drain((snd_pcm_t *) ad->platform_data); ++ if (result < 0) ++ { ++ cst_errmsg("audio_flush_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ /* Prepare device for more data */ ++ result = snd_pcm_prepare((snd_pcm_t *) ad->platform_data); ++if (result < 0) ++ { ++ cst_errmsg("audio_flush_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ return result; ++} ++ ++int audio_drain_alsa(cst_audiodev *ad) ++{ ++ int result; ++ result = snd_pcm_drop((snd_pcm_t *) ad->platform_data); ++ if (result < 0) ++ { ++ cst_errmsg("audio_drain_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++/* Prepare device for more data */ ++ result = snd_pcm_prepare((snd_pcm_t *) ad->platform_data); ++if (result < 0) ++ { ++ cst_errmsg("audio_drain_alsa: Error: %s.\n", snd_strerror(result)); ++ } ++ return result; ++} +Index: src/audio/Makefile +=================================================================== +--- flite-1.3-release/src/audio/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/audio/Makefile (.../release-1.2) (revision 7) +@@ -43,9 +43,13 @@ + + BASESRCS = auclient.c auserver.c audio.c + SRCS = $(BASESRCS) $(AUDIODRIVER:%=au_%.c) +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(H) $(BASESRCS) au_command.c au_none.c \ +- au_oss.c au_sun.c au_wince.c au_palmos.c ++ au_oss.c au_sun.c au_wince.c au_palmos.c au_alsa.c + LIBNAME = flite + + LOCAL_INCLUDES = -I. $(AUDIODEFS) +Index: src/lexicon/Makefile +=================================================================== +--- flite-1.3-release/src/lexicon/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/lexicon/Makefile (.../release-1.2) (revision 7) +@@ -38,8 +38,13 @@ + DIRNAME=src/lexicon + BUILD_DIRS = + ALL_DIRS= ++include $(TOP)/config/config + SRCS = cst_lexicon.c cst_lts.c cst_lts_rewrites.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(SRCS) + LIBNAME = flite + +Index: src/synth/Makefile +=================================================================== +--- flite-1.3-release/src/synth/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/synth/Makefile (.../release-1.2) (revision 7) +@@ -38,9 +38,14 @@ + DIRNAME=src/synth + BUILD_DIRS = + ALL_DIRS= ++include $(TOP)/config/config + SRCS = cst_synth.c cst_utt_utils.c cst_voice.c cst_phoneset.c \ + flite.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(SRCS) + LIBNAME = flite + +Index: src/speech/Makefile +=================================================================== +--- flite-1.3-release/src/speech/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/speech/Makefile (.../release-1.2) (revision 7) +@@ -39,9 +39,14 @@ + BUILD_DIRS = + ALL_DIRS= + H = ++include $(TOP)/config/config + SRCS = cst_wave.c cst_wave_io.c cst_track.c cst_track_io.c \ + cst_wave_utils.c cst_lpcres.c rateconv.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(H) $(SRCS) + LIBNAME = flite + +Index: src/wavesynth/Makefile +=================================================================== +--- flite-1.3-release/src/wavesynth/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/wavesynth/Makefile (.../release-1.2) (revision 7) +@@ -38,9 +38,14 @@ + DIRNAME=src/wavesynth + BUILD_DIRS = + ALL_DIRS= ++include $(TOP)/config/config + SRCS = cst_units.c cst_sigpr.c cst_clunits.c cst_diphone.c \ + cst_sigprFP.c cst_sts.c cst_reflpc.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + LIBNAME = flite + FILES = Makefile $(SRCS) + +Index: src/regex/Makefile +=================================================================== +--- flite-1.3-release/src/regex/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/regex/Makefile (.../release-1.2) (revision 7) +@@ -42,8 +42,13 @@ + DIRNAME=src/regex + BUILD_DIRS = + ALL_DIRS= ++include $(TOP)/config/config + SRCS = cst_regex.c regexp.c regsub.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(H) $(SRCS) + LIBNAME = flite + +Index: src/stats/Makefile +=================================================================== +--- flite-1.3-release/src/stats/Makefile (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/src/stats/Makefile (.../release-1.2) (revision 7) +@@ -39,8 +39,13 @@ + BUILD_DIRS = + ALL_DIRS= + H = ++include $(TOP)/config/config + SRCS = cst_cart.c cst_viterbi.c cst_ss.c +-OBJS = $(SRCS:.c=.o) ++ifdef SHFLAGS ++OBJS := $(SRCS:.c=.os) ++else ++OBJS := $(SRCS:.c=.o) ++endif + FILES = Makefile $(H) $(SRCS) + LIBNAME = flite + +Index: config/common_make_rules +=================================================================== +--- flite-1.3-release/config/common_make_rules (.../flite-1.3-orig) (revision 7) ++++ flite-1.3-release/config/common_make_rules (.../release-1.2) (revision 7) +@@ -73,12 +73,13 @@ + ifdef SHFLAGS + SOOBJS = $(OBJS:.o=.os) + FULLSHOBJS = $(SOOBJS:%=$(OBJDIR)/%) +-ifdef LIBNAME +-ALL += $(OBJDIR)/.build_so ++#ifdef LIBNAME ++#ALL += $(OBJDIR)/.build_so ++#endif + endif +-endif + ifdef LIBNAME + ALL += $(OBJDIR)/.build_lib ++ALL += $(OBJDIR)/.build_so + endif + # Only do some directories when you are not cross compiling + ifeq ($(HOST_PLATFORM),$(TARGET_PLATFORM)) +@@ -117,14 +118,17 @@ + @ touch $(OBJDIR)/.build_so + + # Used in the lib/ directory and in building new voices +-$(OBJDIR)/%.so: %.shared.a ++#$(OBJDIR)/%.so: %.shared.a ++%.so: %.shared.a + @ echo making $@ + @ rm -rf shared_os && mkdir shared_os + @ rm -f $@ $(LIBDIR)/$@.${PROJECT_VERSION} $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} + @ (cd shared_os && ar x ../$<) + @ (cd shared_os && $(CC) -shared -Wl,-soname,$@.${PROJECT_SHLIB_VERSION} -o ../$@.${PROJECT_VERSION} *.os) +- @ ln -s $(LIBDIR)/$@.${PROJECT_VERSION} $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} +- @ ln -s $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} $(LIBDIR)/$@ ++ #@ ln -s $(LIBDIR)/$@.${PROJECT_VERSION} $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} ++ #@ ln -s $(LIBDIR)/$@.${PROJECT_SHLIB_VERSION} $(LIBDIR)/$@ ++ @ ln -s $@.${PROJECT_VERSION} $@.${PROJECT_SHLIB_VERSION} ++ @ ln -s $@.${PROJECT_SHLIB_VERSION} $@ + @ rm -rf shared_os + + $(OBJDIR)/.make_build_dirs: +Index: lib/Makefile +=================================================================== +--- flite-1.3-release/lib/Makefile (.../flite-1.3-orig) (revision 0) ++++ flite-1.3-release/lib/Makefile (.../release-1.2) (revision 7) +@@ -0,0 +1,70 @@ ++########################################################################### ++## ## ++## Language Technologies Institute ## ++## Carnegie Mellon University ## ++## Copyright (c) 1999 ## ++## All Rights Reserved. ## ++## ## ++## Permission is hereby granted, free of charge, to use and distribute ## ++## this software and its documentation without restriction, including ## ++## without limitation the rights to use, copy, modify, merge, publish, ## ++## distribute, sublicense, and/or sell copies of this work, and to ## ++## permit persons to whom this work is furnished to do so, subject to ## ++## the following conditions: ## ++## 1. The code must retain the above copyright notice, this list of ## ++## conditions and the following disclaimer. ## ++## 2. Any modifications must be clearly marked as such. ## ++## 3. Original authors' names are not deleted. ## ++## 4. The authors' names are not used to endorse or promote products ## ++## derived from this software without specific prior written ## ++## permission. ## ++## ## ++## CARNEGIE MELLON UNIVERSITY AND THE CONTRIBUTORS TO THIS WORK ## ++## DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ## ++## ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ## ++## SHALL CARNEGIE MELLON UNIVERSITY NOR THE CONTRIBUTORS BE LIABLE ## ++## FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ## ++## WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ## ++## AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ## ++## ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ## ++## THIS SOFTWARE. ## ++## ## ++########################################################################### ++## ## ++## FLITE libraries ## ++## ## ++########################################################################### ++TOP=.. ++DIRNAME=lib ++BUILD_DIRS = ++ALL_DIRS= ++FILES = Makefile ++LIBNAMES = flite flite_cmulex flite_usenglish \ ++ flite_cmu_us_kal flite_cmu_us_kal16 flite_cmu_time_awb ++ ++STATICLIBS= $(LIBNAMES:%=lib%.a) ++SHAREDARLIBS= $(LIBNAMES:%=lib%.shared.a) ++#SHAREDLIBS = $(LIBNAMES:%=lib%.so) ++SHAREDLIBS = $(SHAREDARLIBS:%.shared.a=%.so) ++VERSIONSHAREDLIBS = $(SHAREDLIBS:%=%.${PROJECT_VERSION}) \ ++ $(SHAREDLIBS:%=%.${PROJECT_SHLIB_VERSION}) ++ALL_LIBS = $(STATICLIBS) $(SHAREDLIBS) $(VERSIONSHAREDLIBS) ++ ++ALL = shared_libs ++ ++LOCAL_CLEAN=*.a *.so *.so.${PROJECT_VERSION} *.so.${PROJECT_SHLIB_VERSION} ++ ++include $(TOP)/config/common_make_rules ++ ++ifdef SHFLAGS ++shared_libs: $(SHAREDLIBS) ++else ++shared_libs: nothing ++endif ++ ++install: ++ @ cp -vf $(LIBDIR)/* . ++ @ $(MAKE) shared_libs ++ @ echo ARLIBS: $(SHAREDARLIBS) ++ @ echo SHARLIBS: $(SHAREDLIBS) ++ @ tar cvf - $(ALL_LIBS) | ( cd $(INSTALLLIBDIR) && tar xf -) diff --git a/packages/flite/flite.inc b/packages/flite/flite.inc new file mode 100644 index 0000000000..59373ba60d --- /dev/null +++ b/packages/flite/flite.inc @@ -0,0 +1,44 @@ +DESCRIPTION = "flite - the festival light speech synthesizer" +PRIORITY = "optional" +HOMEPAGE = "http://www.speech.cs.cmu.edu/flite/" +SECTION = "console/utils" +LICENSE = "flite" +DEPENDS = "alsa-oss" + +PARALLEL_MAKE = "" + +S = "${WORKDIR}/flite-${PV}-release" + +inherit autotools + +EXTRA_OECONF = "--with-audio=alsa --enable-shared" + +PACKAGES += "lib${PN} lib${PN}-vox8 lib${PN}-vox16" + +FILES_${PN} = "${bindir}" + +FILES_lib${PN} ="${libdir}/libflite.so.* \ + ${libdir}/libflite_cmu_time_awb.so.* \ + ${libdir}/libflite_cmulex.so.* \ + ${libdir}/libflite_usenglish.so.*" + +FILES_lib${PN}-vox8 = "${libdir}/libflite_cmu_us_kal.so.*" + +FILES_lib${PN}-vox16 = "${libdir}/libflite_cmu_us_kal16.so.*" + +LEAD_SONAME = "libflite.so" + +do_install() { + oe_runmake INSTALLBINDIR="${D}${bindir}" INSTALLLIBDIR="${D}${libdir}" INSTALLINCDIR="${D}${includedir}" install +} + + +do_stage () { + install -m 0644 ${S}/include/*.h ${STAGING_INCDIR}/ + oe_libinstall -C lib -a -so libflite ${STAGING_LIBDIR} + oe_libinstall -C lib -a -so libflite_cmu_time_awb ${STAGING_LIBDIR} + oe_libinstall -C lib -a -so libflite_cmulex ${STAGING_LIBDIR} + oe_libinstall -C lib -a -so libflite_usenglish ${STAGING_LIBDIR} + oe_libinstall -C lib -a -so libflite_cmu_us_kal ${STAGING_LIBDIR} + oe_libinstall -C lib -a -so libflite_cmu_us_kal16 ${STAGING_LIBDIR} +} diff --git a/packages/flite/flite_1.2.bb b/packages/flite/flite_1.2.bb index 556cd2b47c..e5a165eb97 100644 --- a/packages/flite/flite_1.2.bb +++ b/packages/flite/flite_1.2.bb @@ -1,47 +1,8 @@ -DESCRIPTION = "flite - the festival light speech synthesizer" -PRIORITY = "optional" -HOMEPAGE = "http://fife.speech.cs.cmu.edu/flite/" -SECTION = "console/utils" -LICENSE = "flite" -PR = "r2" +require flite.inc -PARALLEL_MAKE = "" +PR = "r3" SRC_URI = "http://www.speech.cs.cmu.edu/flite/packed/flite-${PV}/flite-${PV}-release.tar.bz2 \ - file://configure-with-audio.patch;patch=1 \ - file://fix-read-only-assignments.patch;patch=1" -S = "${WORKDIR}/flite-${PV}-release" - -inherit autotools - -EXTRA_OECONF = "--with-audio=oss --enable-shared" - -PACKAGES += "lib${PN} lib${PN}-vox8 lib${PN}-vox16" - -FILES_${PN} = "${bindir}" - -FILES_lib${PN} ="${libdir}/libflite.so.* \ - ${libdir}/libflite_cmu_time_awb.so.* \ - ${libdir}/libflite_cmulex.so.* \ - ${libdir}/libflite_usenglish.so.*" - -FILES_lib${PN}-vox8 = "${libdir}/libflite_cmu_us_kal.so.*" - -FILES_lib${PN}-vox16 = "${libdir}/libflite_cmu_us_kal16.so.*" - -LEAD_SONAME = "libflite.so" - -do_install() { - oe_runmake INSTALLBINDIR="${D}${bindir}" INSTALLLIBDIR="${D}${libdir}" INSTALLINCDIR="${D}${includedir}" install -} - - -do_stage () { - install -m 0644 ${S}/include/*.h ${STAGING_INCDIR}/ - oe_libinstall -C lib -a -so libflite ${STAGING_LIBDIR} - oe_libinstall -C lib -a -so libflite_cmu_time_awb ${STAGING_LIBDIR} - oe_libinstall -C lib -a -so libflite_cmulex ${STAGING_LIBDIR} - oe_libinstall -C lib -a -so libflite_usenglish ${STAGING_LIBDIR} - oe_libinstall -C lib -a -so libflite_cmu_us_kal ${STAGING_LIBDIR} - oe_libinstall -C lib -a -so libflite_cmu_us_kal16 ${STAGING_LIBDIR} -} +# http://homepage.hispeed.ch/loehrer/downloads/flite-1.2-alsa_support-1.2.diff.bz2 \ + file://flite-1.2-alsa_support-1.2.diff;patch=1" +# file://configure-with-audio.patch;patch=1 \ diff --git a/packages/flite/flite_1.3.bb b/packages/flite/flite_1.3.bb new file mode 100644 index 0000000000..85154b2b36 --- /dev/null +++ b/packages/flite/flite_1.3.bb @@ -0,0 +1,8 @@ +require flite.inc + +PR = "r0" + +SRC_URI = "http://www.speech.cs.cmu.edu/flite/packed/flite-${PV}/flite-${PV}-release.tar.gz \ +# http://homepage.hispeed.ch/loehrer/downloads/flite-1.3-alsa_support-1.2.diff.bz2 \ + file://flite-1.3-alsa_support-1.2.diff;patch=1" +# file://fix-read-only-assignments.patch;patch=1 \ diff --git a/packages/gcc/gcc-cross-initial_4.2.1.bb b/packages/gcc/gcc-cross-initial_4.2.1.bb index 1c1d094382..fe326d304b 100644 --- a/packages/gcc/gcc-cross-initial_4.2.1.bb +++ b/packages/gcc/gcc-cross-initial_4.2.1.bb @@ -1,5 +1,5 @@ require gcc-cross_${PV}.bb require gcc-cross-initial.inc -EXTRA_OECONF += "--disable-libmudflap \ +EXTRA_OECONF += "--disable-libmudflap --disable-libgomp \ --disable-libssp" diff --git a/packages/gcc/gcc-cross-initial_4.2.2.bb b/packages/gcc/gcc-cross-initial_4.2.2.bb index 1c1d094382..fe326d304b 100644 --- a/packages/gcc/gcc-cross-initial_4.2.2.bb +++ b/packages/gcc/gcc-cross-initial_4.2.2.bb @@ -1,5 +1,5 @@ require gcc-cross_${PV}.bb require gcc-cross-initial.inc -EXTRA_OECONF += "--disable-libmudflap \ +EXTRA_OECONF += "--disable-libmudflap --disable-libgomp \ --disable-libssp" diff --git a/packages/gcc/gcc-cross_4.2.1.bb b/packages/gcc/gcc-cross_4.2.1.bb index da27c68d9a..eb20e147f8 100644 --- a/packages/gcc/gcc-cross_4.2.1.bb +++ b/packages/gcc/gcc-cross_4.2.1.bb @@ -16,5 +16,8 @@ require gcc3-build-cross.inc require gcc-package-cross.inc SRC_URI_append_fail-fast = " file://zecke-no-host-includes.patch;patch=1 " - -EXTRA_OECONF += "--disable-libunwind-exceptions --with-mpfr=${STAGING_DIR_NATIVE}${layout_exec_prefix}" +# Do not build libssp libmudflap and libgomp +# We might need them for some beefy targets +EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \ + --disable-libgomp --disable-libmudflap \ + --with-mpfr=${STAGING_DIR_NATIVE}${layout_exec_prefix}" diff --git a/packages/gcc/gcc-cross_4.2.2.bb b/packages/gcc/gcc-cross_4.2.2.bb index 1d5ebdcc61..9a591e8899 100644 --- a/packages/gcc/gcc-cross_4.2.2.bb +++ b/packages/gcc/gcc-cross_4.2.2.bb @@ -14,7 +14,9 @@ PROVIDES = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++" require gcc3-build-cross.inc # cross packaging require gcc-package-cross.inc - SRC_URI_append_fail-fast = " file://zecke-no-host-includes.patch;patch=1 " - -EXTRA_OECONF += "--disable-libunwind-exceptions --with-mpfr=${STAGING_DIR_NATIVE}${layout_exec_prefix}" +# Do not build libssp libmudflap and libgomp +# We might need them for some beefy targets +EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \ + --disable-libgomp --disable-libmudflap \ + --with-mpfr=${STAGING_DIR_NATIVE}${layout_exec_prefix}" diff --git a/packages/git/git-native_1.5.3.bb b/packages/git/git-native_1.5.3.bb new file mode 100644 index 0000000000..935c773c1c --- /dev/null +++ b/packages/git/git-native_1.5.3.bb @@ -0,0 +1,4 @@ +require git.inc +inherit native +DEPENDS = "openssl-native curl-native zlib-native expat-native" +PR = "r1" diff --git a/packages/git/git.inc b/packages/git/git.inc new file mode 100644 index 0000000000..7115d44b35 --- /dev/null +++ b/packages/git/git.inc @@ -0,0 +1,19 @@ +DESCRIPTION = "The git revision control system used by the Linux kernel developers" +SECTION = "console/utils" +LICENSE = "GPL" + +SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ + file://autotools.patch;patch=1" +S = "${WORKDIR}/git-${PV}" + +EXTRA_OEMAKE = "NO_TCLTL=1" + +inherit autotools + +do_install () { + oe_runmake install prefix=${D} bindir=${D}${bindir} \ + template_dir=${D}${datadir}/git-core/templates \ + GIT_PYTHON_DIR=${D}${datadir}/git-core/python +} + +FILES_${PN} += "${datadir}/git-core" diff --git a/packages/gpe-login/files/size-autolock-properly.patch b/packages/gpe-login/files/size-autolock-properly.patch new file mode 100644 index 0000000000..b8e2cd6f4f --- /dev/null +++ b/packages/gpe-login/files/size-autolock-properly.patch @@ -0,0 +1,26 @@ +# HG changeset patch +# User "Paul Sokolovsky <pfalcon@users.sourceforge.net>" +# Date 1196345352 -7200 +# Node ID ebe625e21708cb9257201a4dd6e536b99f1f0220 +# Parent 976c01632feacbcce2058a061a0b1f6faed2275a +When configuring autolock window, make sure to set not only the minimal +("requested") size, but also the actual one. This fixes issue that after +autolock screen have been shown in landscape mode, it no longer fits the +screen in portrait mode. + +Also, gtk_widget_set_usize() marked as deprecated, replace with +gtk_widget_set_size_request(). + +diff -r 976c01632fea -r ebe625e21708 gpe-login.c +--- a/gpe-login.c Sun Nov 25 22:39:23 2007 +0200 ++++ b/gpe-login.c Thu Nov 29 16:09:12 2007 +0200 +@@ -558,7 +558,8 @@ filter (GdkXEvent *xevp, GdkEvent *ev, g + { + spawn_xkbd (); + gtk_label_set_markup (GTK_LABEL (label_result), ""); +- gtk_widget_set_usize (window, gdk_screen_width (), gdk_screen_height ()); ++ gtk_widget_set_size_request (window, gdk_screen_width (), gdk_screen_height ()); ++ gtk_window_resize (window, gdk_screen_width (), gdk_screen_height ()); + gtk_widget_show_all (window); + if (ownerinfo) + { diff --git a/packages/gpe-login/gpe-login_0.90.bb b/packages/gpe-login/gpe-login_0.90.bb index c2a274ba8b..253d581953 100644 --- a/packages/gpe-login/gpe-login_0.90.bb +++ b/packages/gpe-login/gpe-login_0.90.bb @@ -5,7 +5,7 @@ LICENSE = "GPL" DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" RDEPENDS = "xkbd gpe-theme-clearlooks" RPROVIDES_${PN} = "gpe-session-starter" -PR = "r4" +PR = "r5" SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" @@ -18,6 +18,7 @@ SRC_URI += "file://removeblue-fontsize8.patch;patch=1" SRC_URI += " file://chvt-keylaunch.patch;patch=1 " SRC_URI += " file://lock-on-supend.patch;patch=1 " SRC_URI += " file://gpe-xcalibrate-rises-from-dead.patch;patch=1 " +SRC_URI += " file://size-autolock-properly.patch;patch=1 " SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" diff --git a/packages/gtk+/gdk-pixbuf_2.10.14.bb b/packages/gtk+/gdk-pixbuf_2.10.14.bb index 5b5482d1a8..ecd2d51d49 100644 --- a/packages/gtk+/gdk-pixbuf_2.10.14.bb +++ b/packages/gtk+/gdk-pixbuf_2.10.14.bb @@ -1,14 +1,14 @@ -DESCRIPTION = "GDK PixBuf is a pixelmap image support library from the GTK+ \ -multi-platform toolkit for creating graphical user interfaces." +DESCRIPTION = "Stand-alone libpixbuf, a pixelmap image i/o library from the \ +GTK+ multi-platform toolkit for creating graphical user interfaces." HOMEPAGE = "http://www.gtk.org/" SECTION = "libs" LICENSE = "LGPL" PRIORITY = "optional" -DEPENDS = "jpeg libpng gettext glib-2.0" +DEPENDS = "libpng gettext glib-2.0" +PR = "r1" S = "${WORKDIR}/gtk+-${PV}" FILESPATH = "${FILE_DIRNAME}/gdk-pixbuf-csource:${FILE_DIRNAME}/gtk+-${PV}:${FILE_DIRNAME}/files" -PR = "r0" SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-${PV}.tar.bz2 \ file://automake-lossage.patch;patch=1 \ @@ -35,12 +35,10 @@ SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-${PV}.tar.bz2 \ # file://treeview-checkbox-size.patch;patch=1;pnum=0 \ # file://cell-renderer-edit-focus.patch;patch=1;pnum=0 \ -# check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points -require gtk-fpu.inc -EXTRA_OECONF += "${@get_gtk_fpu_setting(bb, d)}" - inherit autotools pkgconfig +LIBV = "2.10.0" + FILES_${PN} = "${bindir}/gdk-pixbuf-query-loaders \ ${bindir}/gtk-update-icon-cache \ ${libdir}/lib*.so.*" @@ -59,11 +57,15 @@ EXTRA_OECONF = "\ --without-x \ --with-gdktarget=linux-fb \ --without-libtiff \ - --with-libjpeg \ + --without-libjpeg \ --with-libpng \ " -LIBV = "2.10.0" +EXTRA_OECONF += "--disable-modules --with-included-loaders=png,tga" + +# check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points +require gtk-fpu.inc +EXTRA_OECONF += "${@get_gtk_fpu_setting(bb, d)}" do_compile() { cd gdk-pixbuf && oe_runmake @@ -82,22 +84,3 @@ do_install() { cd gdk-pixbuf && oe_runmake install DESTDIR=${D} } -postinst_prologue() { -if [ "x$D" != "x" ]; then - exit 1 -fi -} - -PACKAGES_DYNAMIC = "gdk-pixbuf-loader-*" - -python populate_packages_prepend () { - import os.path - - prologue = bb.data.getVar("postinst_prologue", d, 1) - - gtk_libdir = bb.data.expand('${libdir}/gtk-2.0/${LIBV}', d) - loaders_root = os.path.join(gtk_libdir, 'loaders') - do_split_packages(d, loaders_root, '^libpixbufloader-(.*)\.so$', 'gdk-pixbuf-loader-%s', 'GDK pixbuf loader for %s', prologue + 'gdk-pixbuf-query-loaders > /etc/gtk-2.0/gdk-pixbuf.loaders') - if (bb.data.getVar('DEBIAN_NAMES', d, 1)): - bb.data.setVar('PKG_${PN}', 'libgtk-2.0', d) -} diff --git a/packages/images/essential-image.bb b/packages/images/essential-image.bb deleted file mode 100644 index 8b566af6ec..0000000000 --- a/packages/images/essential-image.bb +++ /dev/null @@ -1,15 +0,0 @@ -# -# Copyright Matthias Hentges <devel@hentges.net> (c) 2006 -# License: MIT (see COPYING.MIT) -# -# Filename: essential-image.bb -# Date: 23-Apr-06 - -HOMEPAGE = "http://www.hentges.net/misc/openzaurus/index.shtml" - -DEPENDS = "task-essential-to-boot" -IMAGE_LINGUAS = "" -IMAGE_INSTALL = "task-essential-to-boot" - -inherit image - diff --git a/packages/images/essential-machine-image.bb b/packages/images/essential-machine-image.bb deleted file mode 100644 index b74dec5e35..0000000000 --- a/packages/images/essential-machine-image.bb +++ /dev/null @@ -1,23 +0,0 @@ -# -# Copyright Matthias Hentges <devel@hentges.net> (c) 2006 -# License: MIT (see COPYING.MIT) -# -# Filename: essential-machine-image.bb -# Date: 24-Apr-06 - -DESCRIPTION = "<description>" -HOMEPAGE = "http://www.hentges.net/misc/openzaurus/index.shtml" - -DEPENDS = "task-essential-to-boot task-essential-parts" - -MACHINE_TASKS_akita = "task-essential-to-boot \ - task-essential-pcmcia task-essential-userspace \ - task-essential-usbhost task-essential-usbclient \ - task-essential-sound task-essential-irda \ - task-essential-sd" - -IMAGE_LINGUAS = "" -IMAGE_INSTALL = "${MACHINE_TASKS}" -export IMAGE_BASENAME = "essential-image" - -inherit image
\ No newline at end of file diff --git a/packages/images/initramfs-bootmenu-image.bb b/packages/images/initramfs-bootmenu-image.bb new file mode 100644 index 0000000000..a495363661 --- /dev/null +++ b/packages/images/initramfs-bootmenu-image.bb @@ -0,0 +1,11 @@ +# Sample initramfs image + +IMAGE_INSTALL = "busybox-static initramfs-module-bootmenu" +IMAGE_LINGUAS = "" + +# Remove any kernel-image that the kernel-module-* packages may have pulled in. +PACKAGE_REMOVE = "kernel-image-* update-modules module-init-tools-depmod uclibc update-rc.d" +ROOTFS_POSTPROCESS_COMMAND += "ipkg-cl ${IPKG_ARGS} -force-depends \ + remove ${PACKAGE_REMOVE};" + +inherit image diff --git a/packages/images/nslu2-minimal-image.bb b/packages/images/nslu2-minimal-image.bb new file mode 100644 index 0000000000..5a601b2995 --- /dev/null +++ b/packages/images/nslu2-minimal-image.bb @@ -0,0 +1,14 @@ +# Note that this package is intended to create an *identical* +# kernel and rootfs as the normal minimal-image.bb + +# The only reason for the existence of this .bb file is to +# create the 8MB and 16MB flashable NSLU2 firmware images. + +# Please do not add anything other than the following two +# lines to this file, and please do not do anything in +# the nslu2-image.bb class which might affect the kernel +# or rootfs. + +require minimal-image.bb + +inherit nslu2-image diff --git a/packages/ipkg-utils/ipkg-utils-native_1.6+cvs20050404.bb b/packages/ipkg-utils/ipkg-utils-native_1.6+cvs20050404.bb index b63bc67af7..3101ecb3be 100644 --- a/packages/ipkg-utils/ipkg-utils-native_1.6+cvs20050404.bb +++ b/packages/ipkg-utils/ipkg-utils-native_1.6+cvs20050404.bb @@ -1,7 +1,7 @@ require ipkg-utils_${PV}.bb RDEPENDS = "" -PR = "r14" +PR = "r15" inherit native diff --git a/packages/ipkg-utils/ipkg-utils_1.6+cvs20050404.bb b/packages/ipkg-utils/ipkg-utils_1.6+cvs20050404.bb index 51f5d7f835..c089796ccb 100644 --- a/packages/ipkg-utils/ipkg-utils_1.6+cvs20050404.bb +++ b/packages/ipkg-utils/ipkg-utils_1.6+cvs20050404.bb @@ -5,19 +5,18 @@ LICENSE = "GPL" CONFLICTS = "ipkg-link" RDEPENDS = "python" SRCDATE = "20050404" -PR = "r16" +PR = "r17" SRC_URI = "${HANDHELDS_CVS};module=ipkg-utils \ file://ipkg-utils-fix.patch;patch=1 \ file://ipkg-py-sane-vercompare.patch;patch=1 \ file://ipkg-py-tarfile.patch;patch=1 \ file://ipkg-make-index-track-stamps.patch;patch=1 \ - file://fields_tweaks.patch;patch=1 \ - " + file://fields_tweaks.patch;patch=1 " S = "${WORKDIR}/ipkg-utils" -INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg-link ipkg.py" +INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg-link ipkg.py ipkg-list-fields" do_compile() { oe_runmake ipkg-compare-versions diff --git a/packages/ipkg/files/ipkg-configure b/packages/ipkg/files/ipkg-configure new file mode 100644 index 0000000000..e0c65ad4e2 --- /dev/null +++ b/packages/ipkg/files/ipkg-configure @@ -0,0 +1,5 @@ +#!/bin/sh + +echo "Starting to configure packages..." +ipkg-cl configure +echo "Finished to configure packages." diff --git a/packages/ipkg/files/ipkg_bugfix.patch b/packages/ipkg/files/ipkg_bugfix.patch new file mode 100644 index 0000000000..51eccbb2bd --- /dev/null +++ b/packages/ipkg/files/ipkg_bugfix.patch @@ -0,0 +1,44 @@ +Index: C/ipkg_conf.c +=================================================================== +--- C.orig/ipkg_conf.c 2005-06-21 13:59:32.000000000 +0000 ++++ C/ipkg_conf.c 2007-11-27 01:11:17.000000000 +0000 +@@ -423,6 +423,7 @@ + nv_pair_t *nv_pair; + pkg_dest_t *dest; + char *root_dir; ++ char *list_dir2; + + for (iter = nv_pair_list->head; iter; iter = iter->next) { + nv_pair = iter->data; +@@ -432,8 +433,14 @@ + } else { + root_dir = strdup(nv_pair->value); + } +- dest = pkg_dest_list_append(&conf->pkg_dest_list, nv_pair->name, root_dir, lists_dir); ++ if (conf->offline_root) { ++ sprintf_alloc(&list_dir2, "%s%s", conf->offline_root, lists_dir); ++ } else { ++ list_dir2 = strdup(lists_dir); ++ } ++ dest = pkg_dest_list_append(&conf->pkg_dest_list, nv_pair->name, root_dir, list_dir2); + free(root_dir); ++ free(list_dir2); + if (dest == NULL) { + continue; + } +@@ -562,13 +569,13 @@ + } else if (strcmp(type, "dest") == 0) { + nv_pair_list_append(tmp_dest_nv_pair_list, name, value); + } else if (strcmp(type, "lists_dir") == 0) { +- *lists_dir = realloc(*lists_dir,strlen(value)+1); ++ *lists_dir = realloc(*lists_dir,strlen(name)+1); + if (*lists_dir == NULL) { + ipkg_message(conf, IPKG_ERROR, "ERROR: Not enough memory\n"); + free(options); + return EINVAL; + } +- sprintf (*lists_dir,"%s",value); ++ sprintf (*lists_dir,"%s", name); + } else if (strcmp(type, "arch") == 0) { + ipkg_message(conf, IPKG_INFO, "supported arch %s priority (%s)\n", name, value); + if (!value) { diff --git a/packages/ipkg/ipkg-native_0.99.163.bb b/packages/ipkg/ipkg-native_0.99.163.bb index 13609c9037..c8e7d08588 100644 --- a/packages/ipkg/ipkg-native_0.99.163.bb +++ b/packages/ipkg/ipkg-native_0.99.163.bb @@ -2,7 +2,7 @@ S = "${WORKDIR}/ipkg-${PV}" #require ipkg_${PV}.bb require ipkg-native.inc -PR = "r2" +PR = "r3" inherit autotools pkgconfig native @@ -10,5 +10,6 @@ SRC_URI = "http://www.handhelds.org/pub/packages/ipkg/ipkg-${PV}.tar.gz \ file://is-processing.patch;patch=1 \ file://1-pkg-parse--Optimize-inefficient-parsing.patch;patch=1 \ file://2-pkg-vec--Optimize-gross-inefficiency.patch;patch=1 \ + file://ipkg_bugfix.patch;patch=1 \ " diff --git a/packages/ipkg/ipkg.inc b/packages/ipkg/ipkg.inc index b1e2f19267..9154572f08 100644 --- a/packages/ipkg/ipkg.inc +++ b/packages/ipkg/ipkg.inc @@ -10,28 +10,24 @@ FILES_libipkg = "${libdir}/*.so.*" AUTO_LIBNAME_PKGS = "libipkg" SRC_URI = "${HANDHELDS_CVS};module=familiar/dist/ipkg;tag=${@'V' + bb.data.getVar('PV',d,1).replace('.', '-')} \ + file://ipkg-configure \ file://terse.patch;patch=1" S = "${WORKDIR}/ipkg/C" -inherit autotools pkgconfig +inherit autotools pkgconfig update-rc.d # Define a variable to allow distros to run configure earlier. # (for example, to enable loading of ethernet kernel modules before networking starts) IPKG_INIT_POSITION = "98" IPKG_INIT_POSITION_slugos = "41" +INITSCRIPT_NAME = "ipkg-configure" +INITSCRIPT_PARAMS = "start ${IPKG_INIT_POSITION} S ." + + pkg_postinst_ipkg () { #!/bin/sh -if [ "x$D" != "x" ]; then - install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d - # this happens at S98 where our good 'ole packages script used to run - echo "#!/bin/sh -ipkg-cl configure -" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${IPKG_INIT_POSITION}configure - chmod 0755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${IPKG_INIT_POSITION}configure -fi - update-alternatives --install ${bindir}/ipkg ipkg ${bindir}/ipkg-cl 100 } @@ -40,6 +36,11 @@ pkg_postrm_ipkg () { update-alternatives --remove ipkg ${bindir}/ipkg-cl } +do_install_append() { + install -d ${D}${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/ +} + do_stage() { oe_libinstall -so libipkg ${STAGING_LIBDIR} install -d ${STAGING_INCDIR}/replace/ diff --git a/packages/ipkg/ipkg_0.99.163.bb b/packages/ipkg/ipkg_0.99.163.bb index 56e25900c1..fccfe8d53f 100644 --- a/packages/ipkg/ipkg_0.99.163.bb +++ b/packages/ipkg/ipkg_0.99.163.bb @@ -1,9 +1,10 @@ include ipkg.inc -PR = "r5" +PR = "r6" S = "${WORKDIR}/ipkg-${PV}" SRC_URI = "http://www.handhelds.org/pub/packages/ipkg/ipkg-${PV}.tar.gz \ + file://ipkg-configure \ file://terse.patch;patch=1 \ file://is-processing.patch;patch=1 \ file://1-pkg-parse--Optimize-inefficient-parsing.patch;patch=1 \ diff --git a/packages/keymap-locales/files/qemux86/.mtn2git_empty b/packages/keymap-locales/files/qemux86/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/keymap-locales/files/qemux86/.mtn2git_empty diff --git a/packages/keymap-locales/files/qemux86/keymap-extension-2.6-fr.map b/packages/keymap-locales/files/qemux86/keymap-extension-2.6-fr.map new file mode 100644 index 0000000000..58ade428b0 --- /dev/null +++ b/packages/keymap-locales/files/qemux86/keymap-extension-2.6-fr.map @@ -0,0 +1,109 @@ +# French keymapping + +# azerty-layout +keycode 16 = a +keycode 17 = z +keycode 18 = e +keycode 19 = r +keycode 20 = t +keycode 21 = y +keycode 22 = u +keycode 23 = i +keycode 24 = o +keycode 25 = p +# +keycode 30 = q +keycode 31 = s +keycode 32 = d +keycode 33 = f +keycode 34 = g +keycode 35 = h +keycode 36 = j +keycode 37 = k +keycode 38 = l +keycode 39 = m +# +keycode 44 = w +keycode 45 = x +keycode 46 = c +keycode 47 = v +keycode 48 = b +keycode 49 = n +# + +strings as usual + +keycode 1 = Escape Escape + alt keycode 1 = Meta_Escape +keycode 2 = ampersand one + alt keycode 2 = Meta_one +keycode 3 = braceleft two asciitilde + control keycode 3 = nul + alt keycode 3 = Meta_two +keycode 4 = quotedbl three numbersign + control keycode 4 = Escape + alt keycode 4 = Meta_three +keycode 5 = apostrophe four braceleft + control keycode 5 = Control_backslash + alt keycode 5 = Meta_four +keycode 6 = parenleft five bracketleft + control keycode 6 = Control_bracketright + alt keycode 6 = Meta_five +keycode 7 = minus six bar + control keycode 7 = Control_asciicircum + alt keycode 7 = Meta_six +keycode 8 = braceright seven grave + control keycode 8 = Control_underscore + alt keycode 8 = Meta_seven +keycode 9 = underscore eight backslash + control keycode 9 = Delete + alt keycode 9 = Meta_eight +keycode 10 = slash nine asciicircum + alt keycode 10 = Meta_nine +keycode 11 = at zero at + alt keycode 11 = Meta_zero +keycode 12 = parenright bracketright bracketright + control keycode 12 = Control_underscore + alt keycode 12 = Meta_minus +keycode 13 = equal plus braceright + alt keycode 13 = Meta_equal +keycode 14 = Delete Delete + alt keycode 14 = Meta_Delete +keycode 15 = Tab Tab + alt keycode 15 = Meta_Tab +keycode 26 = asciicircum less + control keycode 26 = Escape + alt keycode 26 = Meta_bracketleft +keycode 27 = dollar greater asciitilde + control keycode 27 = Control_bracketright + alt keycode 27 = Meta_bracketright +keycode 28 = Return + alt keycode 28 = Meta_Control_m +keycode 29 = Control +keycode 40 = bar percent + control keycode 40 = Control_g + alt keycode 40 = Meta_apostrophe +keycode 41 = asterisk asciitilde + control keycode 41 = nul + alt keycode 41 = Meta_grave +keycode 42 = Shift +keycode 43 = asterisk numbersign + control keycode 43 = Control_backslash + alt keycode 43 = Meta_backslash +keycode 50 = comma question +keycode 51 = semicolon period + alt keycode 51 = Meta_comma +keycode 52 = colon slash + alt keycode 52 = Meta_period +keycode 53 = exclam backslash + control keycode 53 = Delete + alt keycode 53 = Meta_slash +keycode 54 = Shift +keycode 56 = Alt +keycode 57 = space space + control keycode 57 = nul + alt keycode 57 = Meta_space +keycode 58 = Caps_Lock +keycode 86 = less greater bar + alt keycode 86 = Meta_less +keycode 97 = Control diff --git a/packages/keymap-locales/keymap-locales.bb b/packages/keymap-locales/keymap-locales.bb index 8303672240..877b801f4c 100644 --- a/packages/keymap-locales/keymap-locales.bb +++ b/packages/keymap-locales/keymap-locales.bb @@ -3,7 +3,7 @@ SECTION = "base" PRIORITY = "optional" LICENSE = "GPL" -PR = "r6" +PR = "r7" SRC_URI = "file://*.map" @@ -13,6 +13,7 @@ PACKAGES_akita = "keymap-extension-de keymap-extension-fi" PACKAGES_spitz = "keymap-extension-de keymap-extension-fi" PACKAGES_c7x0 = "keymap-extension-de keymap-extension-fi" PACKAGES_collie = "keymap-extension-de keymap-extension-fi" +PACKAGES_qemux86 = "keymap-extension-fr" FILES_keymap-extension-de = "/etc/*-de.map" FILES_keymap-extension-fr = "/etc/*-fr.map" diff --git a/packages/keymaps/files/qemux86/.mtn2git_empty b/packages/keymaps/files/qemux86/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/keymaps/files/qemux86/.mtn2git_empty diff --git a/packages/keymaps/files/qemux86/keymap-2.6.map b/packages/keymaps/files/qemux86/keymap-2.6.map new file mode 100644 index 0000000000..2389607160 --- /dev/null +++ b/packages/keymaps/files/qemux86/keymap-2.6.map @@ -0,0 +1,186 @@ +# Linux-specific (and language-independent) keys +# +# This file describes function keys, console switching keys, +# keypad, cursor keys, and SysRq, ScrollLock, Pause +# +# It does not use the AltGr modifier, so that the user can opt +# to have both Alt keys produce the same effect. +# As a consequence, the Hex_* keys are missing, as are +# control altgr keycode 83 = Boot +# control altgr keycode 111 = Boot +# +# One culture-specific item that will be overridden in many keymaps +# is the KP_Period: many countries have a KP_Comma instead. +# +# One user-preference item will be the function of the Delete key. +# +# Old keyboards have 10 function keys, and keymaps have +# sometimes used shift+F1 = F11, and sometimes shift+F1 = F13. +# Here we assume an enhanced keyboard (with 12 function keys). +# +plain keycode 59 = F1 +plain keycode 60 = F2 +plain keycode 61 = F3 +plain keycode 62 = F4 +plain keycode 63 = F5 +plain keycode 64 = F6 +plain keycode 65 = F7 +plain keycode 66 = F8 +plain keycode 67 = F9 +plain keycode 68 = F10 +plain keycode 87 = F11 +plain keycode 88 = F12 +shift keycode 59 = F13 +shift keycode 60 = F14 +shift keycode 61 = F15 +shift keycode 62 = F16 +shift keycode 63 = F17 +shift keycode 64 = F18 +shift keycode 65 = F19 +shift keycode 66 = F20 +shift keycode 67 = F21 +shift keycode 68 = F22 +shift keycode 87 = F23 +shift keycode 88 = F24 +control keycode 59 = F25 +control keycode 60 = F26 +control keycode 61 = F27 +control keycode 62 = F28 +control keycode 63 = F29 +control keycode 64 = F30 +control keycode 65 = F31 +control keycode 66 = F32 +control keycode 67 = F33 +control keycode 68 = F34 +control keycode 87 = F35 +control keycode 88 = F36 +# +# The canonical assignment for F37-F48 uses +# control shift keycode 59 = F37 +# etc. If you want that, load linux-keys-extd.inc +# +# Both Alt+Fn and Control+Alt+Fn switch to Console n +# (in order to please Linux / dosemu / X). +# Here Consoles 1..12. For 13..24 load linux-keys-extd.inc +# +alt keycode 59 = Console_1 +alt keycode 60 = Console_2 +alt keycode 61 = Console_3 +alt keycode 62 = Console_4 +alt keycode 63 = Console_5 +alt keycode 64 = Console_6 +alt keycode 65 = Console_7 +alt keycode 66 = Console_8 +alt keycode 67 = Console_9 +alt keycode 68 = Console_10 +alt keycode 87 = Console_11 +alt keycode 88 = Console_12 +control alt keycode 59 = Console_1 +control alt keycode 60 = Console_2 +control alt keycode 61 = Console_3 +control alt keycode 62 = Console_4 +control alt keycode 63 = Console_5 +control alt keycode 64 = Console_6 +control alt keycode 65 = Console_7 +control alt keycode 66 = Console_8 +control alt keycode 67 = Console_9 +control alt keycode 68 = Console_10 +control alt keycode 87 = Console_11 +control alt keycode 88 = Console_12 + +# +# Keypad keys +# +keycode 69 = Num_Lock +keycode 98 = KP_Divide +keycode 55 = KP_Multiply +keycode 74 = KP_Subtract +keycode 78 = KP_Add +keycode 96 = KP_Enter +# +keycode 71 = KP_7 +keycode 72 = KP_8 +keycode 73 = KP_9 +keycode 75 = KP_4 +keycode 76 = KP_5 +keycode 77 = KP_6 +keycode 79 = KP_1 +keycode 80 = KP_2 +keycode 81 = KP_3 +keycode 82 = KP_0 +# +keycode 83 = KP_Period # or KP_Comma +control alt keycode 83 = Boot +# +alt keycode 71 = Ascii_7 +alt keycode 72 = Ascii_8 +alt keycode 73 = Ascii_9 +alt keycode 75 = Ascii_4 +alt keycode 76 = Ascii_5 +alt keycode 77 = Ascii_6 +alt keycode 79 = Ascii_1 +alt keycode 80 = Ascii_2 +alt keycode 81 = Ascii_3 +alt keycode 82 = Ascii_0 +# +# The four cursor keys +# +keycode 103 = Up +keycode 105 = Left +keycode 106 = Right +keycode 108 = Down +alt keycode 103 = KeyboardSignal +alt keycode 105 = Decr_Console +alt keycode 106 = Incr_Console +# +# The six edit keys +# +keycode 110 = Insert +keycode 102 = Home # Find +keycode 104 = PageUp # Prior +keycode 111 = Remove +keycode 107 = End # Select +keycode 109 = PageDown # Next +shift keycode 104 = Scroll_Backward +shift keycode 109 = Scroll_Forward +control alt keycode 111 = Boot +# +# The three system keys +# +keycode 84 = Last_Console # Alt+SysRq/PrintScrn +keycode 99 = Control_backslash # SysRq/PrintScrn + +plain keycode 70 = Scroll_Lock +shift keycode 70 = Show_Memory +control keycode 70 = Show_State +alt keycode 70 = Show_Registers + +keycode 101 = Break # Ctrl+Break/Pause +keycode 119 = Pause # Break/Pause + +keycode 100 = AltGr + +altgr keycode 70 = Show_Registers +alt keycode 70 = Scroll_Lock + +control altgr keycode 83 = Boot +control altgr keycode 111 = Boot + +# Hex keypad keys (for giving a Unicode value in 4 hex digits) +# Follow lt.map and assign Hex_A .. Hex_F to keypad border. +altgr keycode 55 = Hex_C +altgr keycode 69 = Hex_A +altgr keycode 71 = Hex_7 +altgr keycode 72 = Hex_8 +altgr keycode 73 = Hex_9 +altgr keycode 74 = Hex_D +altgr keycode 75 = Hex_4 +altgr keycode 76 = Hex_5 +altgr keycode 77 = Hex_6 +altgr keycode 78 = Hex_E +altgr keycode 79 = Hex_1 +altgr keycode 80 = Hex_2 +altgr keycode 81 = Hex_3 +altgr keycode 82 = Hex_0 +altgr keycode 96 = Hex_F +altgr keycode 98 = Hex_B diff --git a/packages/keymaps/keymaps_1.0.bb b/packages/keymaps/keymaps_1.0.bb index 813ba41011..00a215f948 100644 --- a/packages/keymaps/keymaps_1.0.bb +++ b/packages/keymaps/keymaps_1.0.bb @@ -3,7 +3,7 @@ SECTION = "base" RDEPENDS = "initscripts console-tools" LICENSE = "GPL" PACKAGE_ARCH = "${MACHINE}" -PR = "r15" +PR = "r16" inherit update-rc.d @@ -18,6 +18,7 @@ SRC_URI_append_poodle = " file://keymap-*.map" SRC_URI_append_jornada6xx = " file://keymap-*.map" SRC_URI_append_h2200 = " file://keymap-*.map" SRC_URI_append_htcuniversal = " file://keymap-*.map" +SRC_URI_append_qemux86 = " file://keymap-*.map" INITSCRIPT_NAME = "keymap" INITSCRIPT_PARAMS = "start 01 S ." @@ -27,7 +28,7 @@ do_install () { install -m 0755 ${WORKDIR}/keymap ${D}${sysconfdir}/init.d/ case ${MACHINE} in - c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200 | htcuniversal ) + c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200 | htcuniversal | qemux86 ) install -m 0644 ${WORKDIR}/keymap-*.map ${D}${sysconfdir} ;; *) diff --git a/packages/libtool/libtool-1.5.10/libdir-la2.patch b/packages/libtool/libtool-1.5.10/libdir-la2.patch new file mode 100644 index 0000000000..0d5d261203 --- /dev/null +++ b/packages/libtool/libtool-1.5.10/libdir-la2.patch @@ -0,0 +1,64 @@ +OE changes to installed=no which means we can't run the original test +and just look in $objdir. We therefore look in both, preferring +$objdir if it exists - RP 29/11/2007 + +--- libtool-1.5.10/ltmain.in.orig ++++ libtool-1.5.10/ltmain.in +@@ -3105,8 +3105,11 @@ + fi + ;; + esac +- if grep "^installed=no" $deplib > /dev/null; then +- path="$absdir/$objdir" ++# OE changes to installed=no which means we can't run the original test ++# and just look in $objdir. We therefore look in both, preferring ++# $objdir if it exists, see below. - RP 29/11/2007 ++# if grep "^installed=no" $deplib > /dev/null; then ++# path="$absdir/$objdir" + # This interferes with crosscompilation. -CL + # else + # eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` +@@ -3117,7 +3120,7 @@ + # if test "$absdir" != "$libdir"; then + # $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 + # fi +- else ++ if ! grep "^installed=no" $deplib > /dev/null; then + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + if test -z "$libdir"; then + $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 +@@ -3138,9 +3141,17 @@ + for tmp in $deplibrary_names ; do + depdepl=$tmp + done +- if test -f "$path/$depdepl" ; then +- depdepl="$path/$depdepl" ++ ++ if test -f "$absdir/$objdir/$depdepl" ; then ++ depdepl="$absdir/$objdir/$depdepl" ++ path="$absdir/$objdir" ++ elif test -f "$absdir/$depdepl" ; then ++ depdepl="$absdir/$depdepl" ++ path="$absdir" ++ else ++ path="$absdir/$objdir" + fi ++ + # do not add paths which are already there + case " $newlib_search_path " in + *" $path "*) ;; +@@ -3150,7 +3161,13 @@ + path="" + ;; + *) +- path="-L$path" ++ if test -d "$absdir/$objdir" ; then ++ path="-L$absdir/$objdir" ++ elif test -d "$absdir" ; then ++ path="-L$absdir" ++ else ++ path="-L$absdir/$objdir" ++ fi + ;; + esac + ;; diff --git a/packages/libtool/libtool-1.5.10/nmedit_fix.patch b/packages/libtool/libtool-1.5.10/nmedit_fix.patch new file mode 100644 index 0000000000..673f3a9a28 --- /dev/null +++ b/packages/libtool/libtool-1.5.10/nmedit_fix.patch @@ -0,0 +1,56 @@ +Fix so instead of calling "nmedit" it gets prefixed with the host triplet. + +RP - 30/11/2007 + +Index: libtool-1.5.10/libtool.m4 +=================================================================== +--- libtool-1.5.10.orig/libtool.m4 2007-11-29 19:27:31.000000000 +0000 ++++ libtool-1.5.10/libtool.m4 2007-11-29 19:29:09.000000000 +0000 +@@ -2927,11 +2927,11 @@ + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's + if test "X$lt_int_apple_cc_single_mod" = Xyes ; then +- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else +- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi +- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + case "$cc_basename" in + xlc*) +@@ -2939,8 +2939,8 @@ + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's +- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + _LT_AC_TAGVAR(ld_shlibs, $1)=no +@@ -5474,8 +5474,8 @@ + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's +- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + case "$cc_basename" in + xlc*) +@@ -5483,8 +5483,8 @@ + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's +- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' +- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ++ _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~$host-nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + _LT_AC_TAGVAR(ld_shlibs, $1)=no diff --git a/packages/libtool/libtool-1.5.10/nousrlib.patch b/packages/libtool/libtool-1.5.10/nousrlib.patch new file mode 100644 index 0000000000..e97b45578d --- /dev/null +++ b/packages/libtool/libtool-1.5.10/nousrlib.patch @@ -0,0 +1,11 @@ +--- libtool-1.5.10.orig/ltmain.in ++++ libtool-1.5.10/ltmain.in +@@ -2637,8 +2637,6 @@ + add="$libdir/$linklib" + fi + else +- # We cannot seem to hardcode it, guess we'll fake it. +- add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case "$libdir" in diff --git a/packages/libtool/libtool-1.5.10/tag1.patch b/packages/libtool/libtool-1.5.10/tag1.patch deleted file mode 100644 index 6fefd6266d..0000000000 --- a/packages/libtool/libtool-1.5.10/tag1.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: libtool-1.5.10/libltdl/ltmain.sh -=================================================================== ---- libtool-1.5.10.orig/libltdl/ltmain.sh 2004-09-19 13:34:44.000000000 +0100 -+++ libtool-1.5.10/libltdl/ltmain.sh 2006-05-25 15:28:39.000000000 +0100 -@@ -232,7 +232,7 @@ - if test -z "$tagname"; then - $echo "$modename: unable to infer tagged configuration" - $echo "$modename: specify a tag with \`--tag'" 1>&2 -- exit $EXIT_FAILURE -+# exit $EXIT_FAILURE - # else - # $echo "$modename: using $tagname tagged configuration" - fi diff --git a/packages/libtool/libtool-cross_1.5.10.bb b/packages/libtool/libtool-cross_1.5.10.bb index 4c1b7c2e1f..5f15c56a97 100644 --- a/packages/libtool/libtool-cross_1.5.10.bb +++ b/packages/libtool/libtool-cross_1.5.10.bb @@ -1,14 +1,17 @@ SECTION = "devel" require libtool_${PV}.bb -PR = "r6" +PR = "r9" PACKAGES = "" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" SRC_URI_append = " file://libdir-la.patch;patch=1 \ + file://libdir-la2.patch;patch=1 \ file://prefix.patch;patch=1 \ file://tag.patch;patch=1 \ - file://tag1.patch;patch=1 \ - file://install-path-check.patch;patch=1" + file://install-path-check.patch;patch=1 \ + file://nmedit_fix.patch;patch=1 \ + file://nousrlib.patch;patch=1" + S = "${WORKDIR}/libtool-${PV}" prefix = "${STAGING_DIR_NATIVE}${layout_prefix}" @@ -16,7 +19,13 @@ exec_prefix = "${STAGING_DIR_NATIVE}${layout_exec_prefix}" bindir = "${STAGING_BINDIR_NATIVE}" do_compile () { - : + rm -f ltmain.shT + date=`/bin/sh ./mkstamp < ./ChangeLog` && \ + sed -e 's/@''PACKAGE@/libtool/' -e 's/@''VERSION@/1.5.10/' \ + -e "s%@""TIMESTAMP@%$date%" ./ltmain.in > ltmain.shT + mv -f ltmain.shT ltmain.sh || \ + (rm -f ltmain.sh && cp ltmain.shT ltmain.sh && rm -f ltmain.shT) + cp ltmain.sh ./libltdl/ } do_stage () { diff --git a/packages/libtool/libtool-native_1.5.10.bb b/packages/libtool/libtool-native_1.5.10.bb index 2780ef64ff..e21a20b85d 100644 --- a/packages/libtool/libtool-native_1.5.10.bb +++ b/packages/libtool/libtool-native_1.5.10.bb @@ -1,14 +1,16 @@ SECTION = "devel" require libtool_${PV}.bb -PR = "r6" +PR = "r9" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" SRC_URI_append = " file://libdir-la.patch;patch=1 \ + file://libdir-la2.patch;patch=1 \ file://prefix.patch;patch=1 \ file://tag.patch;patch=1 \ - file://tag1.patch;patch=1 \ file://install-path-check.patch;patch=1 \ + file://nousrlib.patch;patch=1 \ file://rpath-control.patch;patch=1" + S = "${WORKDIR}/libtool-${PV}" inherit native diff --git a/packages/libtool/libtool_1.5.10.bb b/packages/libtool/libtool_1.5.10.bb index 20929a7fa2..35cebfa5c2 100644 --- a/packages/libtool/libtool_1.5.10.bb +++ b/packages/libtool/libtool_1.5.10.bb @@ -5,7 +5,7 @@ libraries) behind a consistent interface." HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html" LICENSE = "GPL" SECTION = "devel" -PR = "r3" +PR = "r5" SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ file://autotools.patch;patch=1 \ @@ -13,10 +13,11 @@ SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ file://3figures.patch;patch=1" S = "${WORKDIR}/libtool-${PV}" -PACKAGES = "libltdl libltdl-dev ${PN}" +PACKAGES =+ "libltdl libltdl-dev libltdl-dbg" FILES_${PN} += "${datadir}/aclocal*" FILES_libltdl = "${libdir}/libltdl.so.*" FILES_libltdl-dev = "${libdir}/libltdl.* ${includedir}/ltdl.h" +FILES_libltdl-dbg = "${libdir}/.debug/" inherit autotools diff --git a/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-leds.patch b/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-leds.patch index 0310746dfe..56176c1095 100644 --- a/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-leds.patch +++ b/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-leds.patch @@ -1,6 +1,6 @@ diff -urN linux-2.6.23.orig/drivers/leds/Kconfig linux-2.6.23/drivers/leds/Kconfig --- linux-2.6.23.orig/drivers/leds/Kconfig 2007-10-09 22:31:38.000000000 +0200 -+++ linux-2.6.23/drivers/leds/Kconfig 2007-11-29 09:02:42.000000000 +0100 ++++ linux-2.6.23/drivers/leds/Kconfig 2007-12-03 11:08:06.000000000 +0100 @@ -101,6 +101,12 @@ outputs. To be useful the particular board must have LEDs and they must be connected to the GPIO lines. @@ -16,8 +16,8 @@ diff -urN linux-2.6.23.orig/drivers/leds/Kconfig linux-2.6.23/drivers/leds/Kconf config LEDS_TRIGGERS diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/drivers/leds/leds-mpc8313e-rdb.c --- linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c 1970-01-01 01:00:00.000000000 +0100 -+++ linux-2.6.23/drivers/leds/leds-mpc8313e-rdb.c 2007-11-29 09:02:42.000000000 +0100 -@@ -0,0 +1,128 @@ ++++ linux-2.6.23/drivers/leds/leds-mpc8313e-rdb.c 2007-12-03 11:08:36.000000000 +0100 +@@ -0,0 +1,127 @@ +/* + * drivers/leds/leds-mpc8313e-rdb.c + * Copyright (C) 2007 Leon Woestenberg <leon@sidebranch.com> @@ -38,18 +38,18 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver +#include <linux/err.h> +#include <asm/io.h> + -+int par_io_config_pin(u8 port, u8 pin, int dir, int open_drain, -+ int assignment, int has_irq); -+int par_io_data_set(u8 port, u8 pin, u8 val); ++#define LEDS_BASE 0xfa000000 ++#define LEDS_SIZE 0x2 + +static struct platform_dev *leds_pdev = NULL; +static struct resource *led_mem = NULL; -+static void *p = NULL; ++static void *led_io = NULL; ++static u8 led_state = 0; + +static void mpc8313leds_green_set(struct led_classdev *led_cdev, enum led_brightness value) +{ -+ int d = ioread16(p); -+ iowrite16(value?d&~1:d|1, p); ++ led_state = value ? led_state&~32 : led_state|32; ++ iowrite8(led_state, led_io); +} + +static struct led_classdev mpc8313_green_led = { @@ -59,8 +59,8 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver + +static void mpc8313leds_yellow_set(struct led_classdev *led_cdev, enum led_brightness value) +{ -+ int d = ioread16(p); -+ iowrite16(value?d&~2:d|2, p); ++ led_state = value ? led_state&~64 : led_state|64; ++ iowrite8(led_state, led_io); +} + +static struct led_classdev mpc8313_yellow_led = { @@ -70,8 +70,8 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver + +static void mpc8313leds_red_set(struct led_classdev *led_cdev, enum led_brightness value) +{ -+ int d = ioread16(p); -+ iowrite16(value?d&~4:d|4, p); ++ led_state = value ? led_state&~128 : led_state|128; ++ iowrite8(led_state, led_io); +} + +static struct led_classdev mpc8313_red_led = { @@ -117,12 +117,11 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver + +static int __init mpc8313leds_init(void) +{ -+ led_mem = request_mem_region(0xfa000000, 0x100, "mpc8313-leds"); -+ if (led_mem == NULL) return -ENOMEM; -+ p = ioremap(0xfa000000, 0x100); -+ if (p == NULL) ++ if (!(led_mem = request_mem_region(LEDS_BASE, LEDS_SIZE, "mpc8313-leds"))) ++ return -ENOMEM; ++ if (!(led_io = ioremap(LEDS_BASE, LEDS_SIZE))) + { -+ if (led_mem) release_mem_region(0xfa000000, 0x100); ++ release_mem_region(LEDS_BASE, LEDS_SIZE); + led_mem = NULL; + return -ENOMEM; + } @@ -133,7 +132,7 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver + +static void __exit mpc8313leds_exit(void) +{ -+ if (led_mem) release_mem_region(0xfa000000, 0x100); ++ if (led_mem) release_mem_region(LEDS_BASE, LEDS_SIZE); + led_mem = NULL; + platform_driver_unregister(&mpc8313leds_driver); + @@ -148,7 +147,7 @@ diff -urN linux-2.6.23.orig/drivers/leds/leds-mpc8313e-rdb.c linux-2.6.23/driver +MODULE_LICENSE("GPL"); diff -urN linux-2.6.23.orig/drivers/leds/Makefile linux-2.6.23/drivers/leds/Makefile --- linux-2.6.23.orig/drivers/leds/Makefile 2007-10-09 22:31:38.000000000 +0200 -+++ linux-2.6.23/drivers/leds/Makefile 2007-11-29 09:03:09.000000000 +0100 ++++ linux-2.6.23/drivers/leds/Makefile 2007-12-03 11:08:06.000000000 +0100 @@ -17,6 +17,7 @@ obj-$(CONFIG_LEDS_H1940) += leds-h1940.o obj-$(CONFIG_LEDS_COBALT) += leds-cobalt.o diff --git a/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-rtc.patch b/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-rtc.patch index 7c6cbcaa0b..4177a3d4a9 100644 --- a/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-rtc.patch +++ b/packages/linux/linux-2.6.23/mpc8313e-rdb/mpc8313e-rdb-rtc.patch @@ -1,7 +1,15 @@ diff -urN linux-2.6.23.orig/arch/powerpc/boot/dts/mpc8313erdb.dts linux-2.6.23/arch/powerpc/boot/dts/mpc8313erdb.dts --- linux-2.6.23.orig/arch/powerpc/boot/dts/mpc8313erdb.dts 2007-10-09 22:31:38.000000000 +0200 -+++ linux-2.6.23/arch/powerpc/boot/dts/mpc8313erdb.dts 2007-11-29 19:32:21.000000000 +0100 -@@ -60,6 +60,12 @@ ++++ linux-2.6.23/arch/powerpc/boot/dts/mpc8313erdb.dts 2007-12-01 13:16:55.000000000 +0100 +@@ -54,12 +54,20 @@ + }; + + i2c@3000 { ++ #address-cells = <1>; ++ #size-cells = <0>; + device_type = "i2c"; + compatible = "fsl-i2c"; + reg = <3000 100>; interrupts = <e 8>; interrupt-parent = < &ipic >; dfsrr; @@ -16,7 +24,7 @@ diff -urN linux-2.6.23.orig/arch/powerpc/boot/dts/mpc8313erdb.dts linux-2.6.23/a i2c@3100 { diff -urN linux-2.6.23.orig/arch/powerpc/sysdev/fsl_soc.c linux-2.6.23/arch/powerpc/sysdev/fsl_soc.c --- linux-2.6.23.orig/arch/powerpc/sysdev/fsl_soc.c 2007-10-09 22:31:38.000000000 +0200 -+++ linux-2.6.23/arch/powerpc/sysdev/fsl_soc.c 2007-11-29 19:31:58.000000000 +0100 ++++ linux-2.6.23/arch/powerpc/sysdev/fsl_soc.c 2007-12-01 13:08:30.000000000 +0100 @@ -319,6 +319,12 @@ {"ricoh,rs5c372b", "rtc-rs5c372", "rs5c372b",}, {"ricoh,rv5c386", "rtc-rs5c372", "rv5c386",}, diff --git a/packages/linux/linux-handhelds-2.6_2.6.21-hh19.bb b/packages/linux/linux-handhelds-2.6_2.6.21-hh19.bb new file mode 100644 index 0000000000..b34d4630a0 --- /dev/null +++ b/packages/linux/linux-handhelds-2.6_2.6.21-hh19.bb @@ -0,0 +1,11 @@ +SECTION = "kernel" +DESCRIPTION = "handhelds.org Linux kernel 2.6 for PocketPCs and other consumer handheld devices." +LICENSE = "GPL" +PR = "r0" + +DEFAULT_PREFERENCE = "-1" + +SRC_URI = "${HANDHELDS_CVS};module=linux/kernel26;tag=${@'K' + bb.data.getVar('PV',d,1).replace('.', '-')} \ + file://defconfig" + +require linux-handhelds-2.6.inc diff --git a/packages/linux/linux-ixp4xx/defconfig-2.6.21.6 b/packages/linux/linux-ixp4xx/defconfig-2.6.21.6 index 42527b3dfc..b7da2803fb 100644 --- a/packages/linux/linux-ixp4xx/defconfig-2.6.21.6 +++ b/packages/linux/linux-ixp4xx/defconfig-2.6.21.6 @@ -222,7 +222,7 @@ CONFIG_ALIGNMENT_TRAP=y # CONFIG_ZBOOT_ROM_TEXT=0x0 CONFIG_ZBOOT_ROM_BSS=0x0 -CONFIG_CMDLINE=" noirqdebug console=ttyS0,115200n8" +CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs ip=dhcp noirqdebug console=ttyS0,115200n8" # CONFIG_XIP_KERNEL is not set CONFIG_KEXEC=y @@ -271,7 +271,10 @@ CONFIG_INET=y # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set CONFIG_IP_FIB_HASH=y -# CONFIG_IP_PNP is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE is not set # CONFIG_ARPD is not set @@ -769,7 +772,7 @@ CONFIG_ISCSI_TCP=m # # Serial ATA (prod) and Parallel ATA (experimental) drivers # -CONFIG_ATA=m +CONFIG_ATA=y # CONFIG_ATA_NONSTANDARD is not set # CONFIG_SATA_AHCI is not set # CONFIG_SATA_SVW is not set @@ -784,12 +787,12 @@ CONFIG_ATA=m # CONFIG_SATA_SIL24 is not set # CONFIG_SATA_SIS is not set # CONFIG_SATA_ULI is not set -CONFIG_SATA_VIA=m +CONFIG_SATA_VIA=y # CONFIG_SATA_VITESSE is not set # CONFIG_SATA_INIC162X is not set # CONFIG_PATA_ALI is not set # CONFIG_PATA_AMD is not set -CONFIG_PATA_ARTOP=m +CONFIG_PATA_ARTOP=y # CONFIG_PATA_ATIIXP is not set # CONFIG_PATA_CMD64X is not set # CONFIG_PATA_CS5520 is not set @@ -823,7 +826,7 @@ CONFIG_PATA_ARTOP=m # CONFIG_PATA_VIA is not set # CONFIG_PATA_WINBOND is not set # CONFIG_PATA_PLATFORM is not set -CONFIG_PATA_IXP4XX_CF=m +CONFIG_PATA_IXP4XX_CF=y # # Multi-device support (RAID and LVM) @@ -888,12 +891,12 @@ CONFIG_TUN=m # Ethernet (10 or 100Mbit) # CONFIG_NET_ETHERNET=y -CONFIG_MII=m -CONFIG_IXP4XX_QMGR=m +CONFIG_MII=y +CONFIG_IXP4XX_QMGR=y CONFIG_IXP4XX_NPE=y CONFIG_IXP4XX_NPE_FW_LOAD=y CONFIG_IXP4XX_NPE_FW_MTD=y -CONFIG_IXP4XX_MAC=m +CONFIG_IXP4XX_MAC=y CONFIG_IXP4XX_CRYPTO=m # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set @@ -944,7 +947,7 @@ CONFIG_R8169_VLAN=y # CONFIG_SKGE is not set # CONFIG_SKY2 is not set # CONFIG_SK98LIN is not set -CONFIG_VIA_VELOCITY=m +CONFIG_VIA_VELOCITY=y # CONFIG_TIGON3 is not set # CONFIG_BNX2 is not set # CONFIG_QLA3XXX is not set @@ -1557,17 +1560,17 @@ CONFIG_USB_DEVICEFS=y # # USB Host Controller Drivers # -CONFIG_USB_EHCI_HCD=m +CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_SPLIT_ISO=y CONFIG_USB_EHCI_ROOT_HUB_TT=y CONFIG_USB_EHCI_TT_NEWSCHED=y # CONFIG_USB_EHCI_BIG_ENDIAN_MMIO is not set # CONFIG_USB_ISP116X_HCD is not set -CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_HCD=y # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y -CONFIG_USB_UHCI_HCD=m +CONFIG_USB_UHCI_HCD=y # CONFIG_USB_U132_HCD is not set # CONFIG_USB_SL811_HCD is not set @@ -1795,20 +1798,20 @@ CONFIG_RTC_DRV_PCF8563=y # # File systems # -CONFIG_EXT2_FS=m +CONFIG_EXT2_FS=y CONFIG_EXT2_FS_XATTR=y CONFIG_EXT2_FS_POSIX_ACL=y CONFIG_EXT2_FS_SECURITY=y # CONFIG_EXT2_FS_XIP is not set -CONFIG_EXT3_FS=m +CONFIG_EXT3_FS=y CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y # CONFIG_EXT4DEV_FS is not set -CONFIG_JBD=m +CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set -CONFIG_FS_MBCACHE=m -CONFIG_REISERFS_FS=m +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set # CONFIG_REISERFS_PROC_INFO is not set CONFIG_REISERFS_FS_XATTR=y @@ -1895,7 +1898,7 @@ CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 # # Network File Systems # -CONFIG_NFS_FS=m +CONFIG_NFS_FS=y CONFIG_NFS_V3=y # CONFIG_NFS_V3_ACL is not set # CONFIG_NFS_V4 is not set @@ -1905,13 +1908,14 @@ CONFIG_NFSD_V3=y # CONFIG_NFSD_V3_ACL is not set CONFIG_NFSD_V4=y CONFIG_NFSD_TCP=y -CONFIG_LOCKD=m +CONFIG_ROOT_NFS=y +CONFIG_LOCKD=y CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=m CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=m -CONFIG_SUNRPC_GSS=m -CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_SUNRPC=y +CONFIG_SUNRPC_GSS=y +CONFIG_RPCSEC_GSS_KRB5=y # CONFIG_RPCSEC_GSS_SPKM3 is not set CONFIG_SMB_FS=m # CONFIG_SMB_NLS_DEFAULT is not set diff --git a/packages/linux/linux-ixp4xx_2.6.21.6.bb b/packages/linux/linux-ixp4xx_2.6.21.6.bb index 7eacf2b8eb..b6f285e1d1 100644 --- a/packages/linux/linux-ixp4xx_2.6.21.6.bb +++ b/packages/linux/linux-ixp4xx_2.6.21.6.bb @@ -5,7 +5,7 @@ VANILLA_VERSION = "2.6.21" KERNEL_RELEASE = "2.6.21.6" PV = "${KERNEL_RELEASE}+svnr${SRCREV}" -PR = "r0" +PR = "r2" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${VANILLA_VERSION}.tar.bz2 \ ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/patch-${KERNEL_RELEASE}.bz2;patch=1 \ diff --git a/packages/linux/linux-ixp4xx_2.6.23.8.bb b/packages/linux/linux-ixp4xx_2.6.23.8.bb index a6dcca41b5..ab621f310a 100644 --- a/packages/linux/linux-ixp4xx_2.6.23.8.bb +++ b/packages/linux/linux-ixp4xx_2.6.23.8.bb @@ -1,3 +1,7 @@ +# The new ethernet driver included in the 2.6.23 version of the nslu2-linux.org kernel patches +# has problems with providing the correct MAC address on the initial DHCP request. +DEFAULT_PREFERENCE = "-1" + require linux.inc require linux-ixp4xx.inc @@ -8,7 +12,7 @@ KERNEL_RELEASE = "2.6.23.8" #PV = "${VANILLA_VERSION}+${KERNEL_RELEASE}+svnr${SRCREV}" PV = "${KERNEL_RELEASE}+svnr${SRCREV}" -PR = "r0" +PR = "r1" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${VANILLA_VERSION}.tar.bz2 \ ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/patch-${KERNEL_RELEASE}.bz2;patch=1 \ diff --git a/packages/linux/linux_2.6.23.bb b/packages/linux/linux_2.6.23.bb index 0c242e5e2c..12788473be 100644 --- a/packages/linux/linux_2.6.23.bb +++ b/packages/linux/linux_2.6.23.bb @@ -6,7 +6,10 @@ DEFAULT_PREFERENCE_cm-x270 = "1" DEFAULT_PREFERENCE_mpc8313e-rdb = "1" DEFAULT_PREFERENCE_mpc8323e-rdb = "1" -PR = "r6" +DEPENDS_append_mpc8313e-rdb = "dtc-native" +DEPENDS_append_mpc8323e-rdb = "dtc-native" + +PR = "r7" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-2.6.23.tar.bz2 \ file://binutils-buildid-arm.patch;patch=1 \ @@ -33,6 +36,9 @@ SRC_URI_append_mpc8323e-rdb = "\ CMDLINE_cm-x270 = "console=${CMX270_CONSOLE_SERIAL_PORT},38400 monitor=8 bpp=16 mem=64M mtdparts=physmap-flash.0:256k(boot)ro,0x180000(kernel),-(root);cm-x270-nand:64m(app),-(data) rdinit=/sbin/init root=mtd3 rootfstype=jffs2" +DEVICETREE_mpc8313e-rdb = "arch/${ARCH}/boot/dts/mpc8313erdb.dts" +DEVICETREE_mpc8323e-rdb = "arch/${ARCH}/boot/dts/mpc832x_rdb.dts" + FILES_kernel-image_cm-x270 = "" python do_compulab_image() { @@ -70,4 +76,15 @@ python do_compulab_image() { os.symlink(img_file, link_file) } +do_devicetree_image() { + if test -n "${DEVICETREE}" ; then + dtc -I dts -O dtb -o ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.dtb ${DEVICETREE} + + cd ${DEPLOY_DIR_IMAGE} + rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.dtb + ln -sf ${KERNEL_IMAGE_BASE_NAME}.dtb ${KERNEL_IMAGE_SYMLINK_NAME}.dtb + fi +} + addtask compulab_image after do_deploy before do_package +addtask devicetree_image after do_deploy before do_package diff --git a/packages/lyx/lyx_1.4.1.bb b/packages/lyx/lyx_1.4.1.bb index f0c139da64..1a89a4275c 100644 --- a/packages/lyx/lyx_1.4.1.bb +++ b/packages/lyx/lyx_1.4.1.bb @@ -10,7 +10,7 @@ PR = "r1" SRC_URI = "svn://svn.lyx.org/lyx/lyx-devel/tags;module=lyx-1_4_1;rev=13847" S = "${WORKDIR}/lyx-1_4_1" -inherit autotools qt3x11 +inherit qt3x11 autotools EXTRA_OECONF = "--with-frontend=qt --with-qt-dir=${QTDIR}" PARALLEL_MAKE = "" diff --git a/packages/lyx/lyx_1.4.4.bb b/packages/lyx/lyx_1.4.4.bb index d9156cd779..26970a3ed0 100644 --- a/packages/lyx/lyx_1.4.4.bb +++ b/packages/lyx/lyx_1.4.4.bb @@ -10,7 +10,7 @@ PR = "r0" SRC_URI = "svn://svn.lyx.org/lyx/lyx-devel/tags;module=lyx-1_4_4;rev=17185" S = "${WORKDIR}/lyx-1_4_4" -inherit autotools qt3x11 +inherit qt3x11 autotools EXTRA_OECONF = "--with-frontend=qt --with-qt-dir=${QTDIR}" PARALLEL_MAKE = "" diff --git a/packages/lyx/lyx_1.5.1.bb b/packages/lyx/lyx_1.5.1.bb index 60c10850b6..32e3096dbe 100644 --- a/packages/lyx/lyx_1.5.1.bb +++ b/packages/lyx/lyx_1.5.1.bb @@ -3,15 +3,13 @@ SECTION = "x11/office" LICENSE = "GPL" HOMEPAGE = "http://www.lyx.org" DEPENDS = "boost qt4-x11-free" -RRECOMMENDS = "tetex" +RSUGGESTS = "tetex" RDEPENDS = "python-shell python-textutils" PR = "r0" -DEFAULT_PREFERENCE = "-1" - SRC_URI = "http://lyx.cybermirror.org/stable/lyx-${PV}.tar.bz2" -inherit autotools qt4x11 +inherit qt4x11 autotools EXTRA_OECONF = " --with-qt4-dir=${QTDIR} -enable-pch" EXTRA_QMAKEVARS_POST = "DEFINES+=_LIBC" diff --git a/packages/matchbox-applet-inputmanager/files/visibility-protocol.patch b/packages/matchbox-applet-inputmanager/files/visibility-protocol.patch new file mode 100644 index 0000000000..545d4808d9 --- /dev/null +++ b/packages/matchbox-applet-inputmanager/files/visibility-protocol.patch @@ -0,0 +1,33 @@ +# HG changeset patch +# User "Paul Sokolovsky <pfalcon@users.sourceforge.net>" +# Date 1196333272 -7200 +# Node ID 4ec785864bbe896eda3b933e65a5f2d71864b9b3 +# Parent 375f9e4a30d3de9852b00cd1decb259f4f04446e +Implement an IM [Unix-]signal-based visibility protocol, as supported +by xkbd. By receiving SISUSR1, IM implementation toggles its visibility. +The most valuable, default action for SIGUSR1 is process termination, so +we can send SIGUSR1 unconditionally, replacing old method of sending +SIGTERM (and there's also check for process existence before sending +signal, so if process is dead, it will be just restarted). + +diff -r 375f9e4a30d3 -r 4ec785864bbe mbinputmgr.c +--- a/mbinputmgr.c Wed Nov 28 03:41:20 2007 +0200 ++++ b/mbinputmgr.c Thu Nov 29 12:47:52 2007 +0200 +@@ -1,3 +1,4 @@ ++#include <signal.h> + #include "mbinputmgr.h" + + static void +@@ -233,8 +234,10 @@ mbinputmgr_toggle_selected_method (MBInp + if ( (inpmgr->PidCurrent != -1) /* Something running */ + && (kill(inpmgr->PidCurrent, 0) != -1) ) + { +- kill(inpmgr->PidCurrent, 15); /* kill it */ +- inpmgr->PidCurrent = -1; ++ /* Send a SIGUSR1. Smart IMs will toggle their visibility. ++ Dumb, which don't handle it at all, will just die ++ per default action for SIGUSR1, termination. */ ++ kill(inpmgr->PidCurrent, SIGUSR1); + } + else fork_exec(inpmgr, inpmgr->MethodSelected->exec); + } diff --git a/packages/matchbox-applet-inputmanager/matchbox-applet-inputmanager_0.6.bb b/packages/matchbox-applet-inputmanager/matchbox-applet-inputmanager_0.6.bb index 4afdd426db..09f2a7d999 100644 --- a/packages/matchbox-applet-inputmanager/matchbox-applet-inputmanager_0.6.bb +++ b/packages/matchbox-applet-inputmanager/matchbox-applet-inputmanager_0.6.bb @@ -3,11 +3,12 @@ LICENSE = "GPL" DEPENDS = "matchbox-wm libmatchbox" SECTION = "x11/wm" -PR = "r3" +PR = "r4" SRC_URI = "http://projects.o-hand.com/matchbox/sources/mb-applet-input-manager/${PV}/mb-applet-input-manager-${PV}.tar.gz \ file://update-to-svn.diff;patch=1 \ file://mbinputmgr-libgtkinput.patch;patch=1 \ + file://visibility-protocol.patch;patch=1 \ " S = "${WORKDIR}/mb-applet-input-manager-${PV}" diff --git a/packages/matchbox-keyboard/matchbox-keyboard_svn.bb b/packages/matchbox-keyboard/matchbox-keyboard_svn.bb index 27ea4aea1d..696486b6ef 100644 --- a/packages/matchbox-keyboard/matchbox-keyboard_svn.bb +++ b/packages/matchbox-keyboard/matchbox-keyboard_svn.bb @@ -5,13 +5,13 @@ RCONFLICTS = matchbox-keyboard-inputmethod RPROVIDES_${PN} = matchbox-keyboard-inputmethod SECTION = "x11" PV = "0.0+svnr${SRCREV}" -PR="r6" +PR="r7" SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ file://smallscreen-fontsize.patch;patch=1 \ -# file://2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch;patch=1 \ -# file://3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch;patch=1 \ -# file://4-Add-rendering-debug-logging.patch;patch=1 \ + file://2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch;patch=1 \ + file://3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch;patch=1 \ + file://4-Add-rendering-debug-logging.patch;patch=1 \ file://5-Add-support-for-loading-multiple-independent-layouts.patch;patch=1 \ file://6-Add-layout-switch-key-to-all-layouts.patch;patch=1 \ " diff --git a/packages/matchbox-keyboard/mboxkbd-layouts-gui/.mtn2git_empty b/packages/matchbox-keyboard/mboxkbd-layouts-gui/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/matchbox-keyboard/mboxkbd-layouts-gui/.mtn2git_empty diff --git a/packages/matchbox-keyboard/mboxkbd-layouts-gui/auto-mkdir.patch b/packages/matchbox-keyboard/mboxkbd-layouts-gui/auto-mkdir.patch new file mode 100644 index 0000000000..82f6cb50b9 --- /dev/null +++ b/packages/matchbox-keyboard/mboxkbd-layouts-gui/auto-mkdir.patch @@ -0,0 +1,16 @@ +diff -r cccb513c808c src/interface.c +--- a/src/interface.c Wed Nov 28 01:22:54 2007 +0200 ++++ b/src/interface.c Wed Nov 28 01:43:12 2007 +0200 +@@ -93,8 +93,12 @@ static void fill_user_list(GtkListStore + strcpy(linkpath, home_dir); + strcat(linkpath, "/"); + strcat(linkpath, USR_LAYOUT_SUFFIX); ++ if (access(linkpath, X_OK)) { ++ mkdir(linkpath, 0711); ++ } + dir = opendir(linkpath); + if(!dir) { ++ fprintf(stderr, "Cannot read %s directory: ", linkpath); + perror("opendir"); + exit(1); + } diff --git a/packages/matchbox-keyboard/mboxkbd-layouts-gui/mboxkbd-layouts-gui.png b/packages/matchbox-keyboard/mboxkbd-layouts-gui/mboxkbd-layouts-gui.png Binary files differnew file mode 100644 index 0000000000..d08be372ac --- /dev/null +++ b/packages/matchbox-keyboard/mboxkbd-layouts-gui/mboxkbd-layouts-gui.png diff --git a/packages/matchbox-keyboard/mboxkbd-layouts-gui/sanitize-desktop-file.patch b/packages/matchbox-keyboard/mboxkbd-layouts-gui/sanitize-desktop-file.patch new file mode 100644 index 0000000000..095a8d337a --- /dev/null +++ b/packages/matchbox-keyboard/mboxkbd-layouts-gui/sanitize-desktop-file.patch @@ -0,0 +1,18 @@ +diff -r a6959d06b0fb mk-layouts-gui.desktop +--- a/mk-layouts-gui.desktop Wed Nov 28 02:07:06 2007 +0200 ++++ b/mk-layouts-gui.desktop Wed Nov 28 02:08:49 2007 +0200 +@@ -1,9 +1,9 @@ + [Desktop Entry] + Name=MK Layout Manager + Comment=Manage matchbox-keyboard layouts +-Exec=mk-layouts-gui ++Exec=mboxkbd-layouts-gui + Type=Application +-Icon=mk-layouts-gui.png +-Categories=Application;SystemSettings;MB +-StartupNotify=True +-SingleInstance=True ++Icon=mboxkbd-layouts-gui ++Categories=Application;SystemSettings;MB; ++StartupNotify=true ++SingleInstance=true diff --git a/packages/matchbox-keyboard/mboxkbd-layouts-gui_git.bb b/packages/matchbox-keyboard/mboxkbd-layouts-gui_git.bb index 2dfba07fc7..6a466a1e9a 100644 --- a/packages/matchbox-keyboard/mboxkbd-layouts-gui_git.bb +++ b/packages/matchbox-keyboard/mboxkbd-layouts-gui_git.bb @@ -3,12 +3,21 @@ AUTHOR = "Sergey Lapin" SECTION = "x11" LICENSE = "GPL" DEPENDS = "gtk+" -PR = "r3" +PR = "r5" -PV = "0.0+git${SRCDATE}" +PV = "0.0+git5b42aeff36d930dc3a9b75eedc74dacfec45f43f" -SRC_URI = "git://ossfans.org/home/slapin/git/mk-layouts-gui.git;protocol=git" +SRC_URI = "http://linux-h4000.sourceforge.net/mirror/mk-layouts-gui.git_5b42aeff36d930dc3a9b75eedc74dacfec45f43f.tar.gz \ +#git://ossfans.org/home/slapin/git/mk-layouts-gui.git;protocol=git;tag=5b42aeff36d930dc3a9b75eedc74dacfec45f43f \ + file://auto-mkdir.patch;patch=1 \ + file://sanitize-desktop-file.patch;patch=1 \ + file://mboxkbd-layouts-gui.png" S = "${WORKDIR}/git" inherit autotools + +do_install_append() { + install -d ${D}${datadir}/pixmaps + install -m 0644 ${WORKDIR}/mboxkbd-layouts-gui.png ${D}${datadir}/pixmaps/ +} diff --git a/packages/meta/external-toolchain.bb b/packages/meta/external-toolchain.bb new file mode 100644 index 0000000000..c483ea26a6 --- /dev/null +++ b/packages/meta/external-toolchain.bb @@ -0,0 +1,50 @@ +DESCRIPTION = "This package allows OE to work with an external toolchain generated \ + by meta-toolchain instead of building its own. It expects that toolchain \ + to be located in SDK_PREFIX/prefix." + +PROVIDES = "\ + linux-libc-headers \ + virtual/${TARGET_PREFIX}gcc \ + virtual/${TARGET_PREFIX}gcc-initial \ + virtual/${TARGET_PREFIX}binutils \ + virtual/${TARGET_PREFIX}libc-for-gcc \ + virtual/libc \ + virtual/libintl \ + virtual/libiconv \ + glibc-thread-db \ + virtual/linux-libc-headers \ + " + +RPROVIDES = "glibc-utils libsegfault glibc-thread-db libgcc-dev libstdc++-dev libstdc++" +PACKAGES_DYNAMIC = "glibc-gconv-*" +PR = "r1" + +inherit sdk + +do_stage() { + if [ ! -e ${prefix}/package-status ]; then + echo "The external toolchain could not be found in ${prefix}!" + exit 1 + fi + + install -d ${STAGING_DIR}/pkgdata/ + install -d ${STAGING_DIR_TARGET}/shlibs/ + + cp -ar ${prefix}/pkgdata/* ${STAGING_DIR}/pkgdata/ + cp -ar ${prefix}/${TARGET_SYS}/shlibs/* ${STAGING_DIR_TARGET}/shlibs/ + + if [ -d ${prefix}/ipk ]; then + install -d ${DEPLOY_DIR_IPK}/ + cp -ar ${prefix}/ipk/* ${DEPLOY_DIR_IPK}/ + fi + + if [ -d ${prefix}/deb ]; then + install -d ${DEPLOY_DIR_DEB}/ + cp -ar ${prefix}/deb/* ${DEPLOY_DIR_DEB}/ + fi + + if [ -d ${prefix}/pstage -a "x${DEPLOY_DIR_PSTAGE}" != "x" ]; then + install -d ${DEPLOY_DIR_PSTAGE}/ + cp -ar ${prefix}/pstage/* ${DEPLOY_DIR_PSTAGE}/ + fi +} diff --git a/packages/meta/meta-toolchain.bb b/packages/meta/meta-toolchain.bb index 92fded00af..8f366001e1 100644 --- a/packages/meta/meta-toolchain.bb +++ b/packages/meta/meta-toolchain.bb @@ -62,18 +62,18 @@ do_populate_sdk() { mv ${SDK_OUTPUT}/usr/lib/ipkg/status ${SDK_OUTPUT}/${prefix}/package-status-host rm -Rf ${SDK_OUTPUT}/usr/lib - # extract and store ipks, pkgdata, pkgmaps and shlibs data + # extract and store ipks, pkgdata and shlibs data target_pkgs=`cat ${SDK_OUTPUT}/${prefix}/package-status | grep Package: | cut -f 2 -d ' '` mkdir -p ${SDK_OUTPUT}/${prefix}/ipk/ mkdir -p ${SDK_OUTPUT}/${prefix}/pkgdata/runtime/ - mkdir -p ${SDK_OUTPUT}/${prefix}/pkgmaps/debian/ mkdir -p ${SDK_OUTPUT}/${prefix}/${TARGET_SYS}/shlibs/ for pkg in $target_pkgs ; do for arch in $revipkgarchs; do - if [ -e ${DEPLOY_DIR_IPK}/$arch/${pkg}_*_$arch.ipk ]; then - echo "Found ${DEPLOY_DIR_IPK}/$arch/${pkg}_$arch.ipk" - cp ${DEPLOY_DIR_IPK}/$arch/${pkg}_*_$arch.ipk ${SDK_OUTPUT}/${prefix}/ipk/ - orig_pkg=`ipkg-list-fields ${DEPLOY_DIR_IPK}/$arch/${pkg}_*_$arch.ipk | grep OE: | cut -d ' ' -f2` + pkgnames=${DEPLOY_DIR_IPK}/$arch/${pkg}_*_$arch.ipk + if [ -e $pkgnames ]; then + echo "Found $pkgnames" + cp $pkgnames ${SDK_OUTPUT}/${prefix}/ipk/ + orig_pkg=`ipkg-list-fields $pkgnames | grep OE: | cut -d ' ' -f2` pkg_subdir=$arch${TARGET_VENDOR}${@['-' + bb.data.getVar('TARGET_OS', d, 1), ''][bb.data.getVar('TARGET_OS', d, 1) == ('' or 'custom')]} mkdir -p ${SDK_OUTPUT}/${prefix}/pkgdata/$pkg_subdir/runtime cp ${STAGING_DIR}/pkgdata/$pkg_subdir/$orig_pkg ${SDK_OUTPUT}/${prefix}/pkgdata/$pkg_subdir/ @@ -83,9 +83,6 @@ do_populate_sdk() { if [ -e ${STAGING_DIR}/pkgdata/$pkg_subdir/runtime/$subpkg.packaged ];then cp ${STAGING_DIR}/pkgdata/$pkg_subdir/runtime/$subpkg.packaged ${SDK_OUTPUT}/${prefix}/pkgdata/$pkg_subdir/runtime/ fi - if [ -e ${STAGING_DIR}/pkgmaps/debian/$subpkg ]; then - cp ${STAGING_DIR}/pkgmaps/debian/$subpkg ${SDK_OUTPUT}/${prefix}/pkgmaps/debian/ - fi if [ -e ${STAGING_DIR_TARGET}/shlibs/$subpkg.list ]; then cp ${STAGING_DIR_TARGET}/shlibs/$subpkg.* ${SDK_OUTPUT}/${prefix}/${TARGET_SYS}/shlibs/ fi @@ -97,6 +94,8 @@ do_populate_sdk() { # add missing link to libgcc_s.so.1 # libgcc-dev should be responsible for that, but it's not getting built + # RP: it gets smashed up depending on the order that gcc, gcc-cross and + # gcc-cross-sdk get built :( (30/11/07) ln -sf libgcc_s.so.1 ${SDK_OUTPUT}/${prefix}/${TARGET_SYS}/lib/libgcc_s.so # remove unwanted executables diff --git a/packages/netbase/netbase/interfaces b/packages/netbase/netbase/interfaces index c9b2faf3f8..ca449168a9 100644 --- a/packages/netbase/netbase/interfaces +++ b/packages/netbase/netbase/interfaces @@ -41,6 +41,7 @@ iface wlan0 inet dhcp iface atml0 inet dhcp # Wired or wireless interfaces +auto eth0 iface eth0 inet dhcp iface eth1 inet dhcp diff --git a/packages/netbase/netbase_4.21.bb b/packages/netbase/netbase_4.21.bb index 289e9bbc05..82464d82c6 100644 --- a/packages/netbase/netbase_4.21.bb +++ b/packages/netbase/netbase_4.21.bb @@ -2,7 +2,7 @@ DESCRIPTION = "This package provides the necessary \ infrastructure for basic TCP/IP based networking." SECTION = "base" LICENSE = "GPL" -PR = "r24" +PR = "r25" inherit update-rc.d diff --git a/packages/nslu2-binary-only/nslu2-linksys-firmware_2.3r63.bb b/packages/nslu2-binary-only/nslu2-linksys-firmware_2.3r63.bb index 6d13d092c1..52af4ad273 100644 --- a/packages/nslu2-binary-only/nslu2-linksys-firmware_2.3r63.bb +++ b/packages/nslu2-binary-only/nslu2-linksys-firmware_2.3r63.bb @@ -2,12 +2,12 @@ SECTION = "base" PACKAGES = "" LICENSE = "GPL" INHIBIT_DEFAULT_DEPS = "1" -PR = "r2" +PR = "r3" SRC_URI = "http://nslu.sf.net/downloads/${PN}-${PV}.tar.bz2" S = "${WORKDIR}/${PN}-${PV}" -COMPATIBLE_MACHINE = "nslu2" +COMPATIBLE_MACHINE = "(nslu2|ixp4xx)" do_compile () { install -d ${STAGING_LIBDIR}/nslu2-binaries diff --git a/packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h b/packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h deleted file mode 100644 index a03d16e57a..0000000000 --- a/packages/psplash/files/angstrom/angstrom-psplash-qvga-img.h +++ /dev/null @@ -1,1336 +0,0 @@ -/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ - -#define HAND_IMG_ROWSTRIDE (1016) -#define HAND_IMG_WIDTH (254) -#define HAND_IMG_HEIGHT (264) -#define HAND_IMG_BYTES_PER_PIXEL (4) /* 3:RGB, 4:RGBA */ -#define HAND_IMG_RLE_PIXEL_DATA ((uint8*) \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\331\333\343\342\377\5\327" \ - "\340\337\377\314\327\325\377\306\323\320\377\321\333\331\377\332\342" \ - "\341\377\377\333\343\342\377\206\333\343\342\377\1\276\311\307\377\202" \ - "g~y\377\357\333\343\342\377\2\253\276\272\377\233\262\255\377\204\223" \ - "\254\247\377\3\225\255\250\377\240\266\262\377\303\321\316\377\377\333" \ - "\343\342\377\204\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \ - "\343\342\377\11\231\260\254\377\223\254\247\377\243\271\264\377\267\307" \ - "\304\377\277\316\313\377\256\301\275\377\232\261\255\377\223\254\247" \ - "\377\271\311\306\377\377\333\343\342\377\204\333\343\342\377\1\270\305" \ - "\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377" \ - "\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\364\333\343" \ - "\342\377\4\332\342\341\377\316\330\326\377\277\312\310\377\260\275\273" \ - "\377\213\254\271\267\377\1\225\246\243\377\202Slg\377\357\333\343\342" \ - "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \ - "\247\377\271\311\306\377\362\333\343\342\377\3\266\302\300\377v\212\206" \ - "\377Vni\377\221Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\360\333" \ - "\343\342\377\2\320\331\330\377n\204\200\377\224Slg\377\357\333\343\342" \ - "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \ - "\247\377\271\311\306\377\357\333\343\342\377\2\332\342\341\377x\215\211" \ - "\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377" \ - "\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333\343\342" \ - "\377\1\240\260\255\377\204Slg\377\4Uni\377s\210\203\377\177\222\217\377" \ - "\213\235\231\377\213\222\243\240\377\1\202\225\221\377\202Slg\377\357" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1{\217\213\377" \ - "\203Slg\377\2\230\250\245\377\317\330\327\377\216\333\343\342\377\1\270" \ - "\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1byt\377\202Slg\377\1\230\250\245\377\220\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377" \ - "\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377" \ - "\356\333\343\342\377\1\324\335\334\377\203Slg\377\1\324\334\333\377\220" \ - "\333\343\342\377\1\274\307\306\377\202_vr\377\357\333\343\342\377\202" \ - "\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377" \ - "\271\311\306\377\356\333\343\342\377\4\332\342\341\377Xql\377Slg\377" \ - "f|x\377\377\333\343\342\377\204\333\343\342\377\202\231\260\254\377\204" \ - "\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357" \ - "\333\343\342\377\3n\204\200\377Slg\377_vr\377\377\333\343\342\377\204" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1\243\262\257" \ - "\377\202Slg\377\1\311\324\322\377\220\333\343\342\377\1\325\336\335\377" \ - "\202\305\320\316\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\4\327\337\336\377dzv\377Slg\377\220\242\236\377\220\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\360\333\343\342\377\4\307\321\320\377`ws\377Slg\377\240" \ - "\260\255\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \ - "\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377" \ - "\223\254\247\377\271\311\306\377\361\333\343\342\377\6\307\322\320\377" \ - "u\211\205\377Slg\377m\202~\377\246\265\262\377\321\333\331\377\214\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\362\333\343\342\377\2\332\342\341\377\213\235\231\377\203" \ - "Slg\377\3Xpk\377f}x\377s\210\203\377\211t\211\205\377\1l\201}\377\202" \ - "Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3" \ - "\326\337\335\377\223\254\247\377\271\311\306\377\361\333\343\342\377" \ - "\2\265\302\300\377i\177{\377\223Slg\377\357\333\343\342\377\202\231\260" \ - "\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311" \ - "\306\377\360\333\343\342\377\2\255\272\270\377Uni\377\224Slg\377\357" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\2\316\327\326" \ - "\377Wpk\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1\220\241\236\377\203Slg\377\5Woj\377\205\227\224\377\254" \ - "\271\267\377\270\304\302\377\304\316\315\377\213\311\324\322\377\1\254" \ - "\271\267\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1i\177{\377\202Slg\377\2dzv\377\316\327\326\377\217\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\356\333\343\342\377\2\331\342\341\377Voj\377\202Slg\377" \ - "\1\273\307\305\377\220\333\343\342\377\1\270\305\303\377\202Slg\377\357" \ - "\333\343\342\377\3\241\267\262\377\223\254\247\377\363\366\365\377\203" \ - "\377\377\377\377\3\304\321\317\377\223\254\247\377\301\317\314\377\356" \ - "\333\343\342\377\1\324\335\334\377\202Slg\377\2Xpk\377\331\342\341\377" \ - "\220\333\343\342\377\1\311\324\322\377\202\226\247\244\377\357\333\343" \ - "\342\377\3\264\305\302\377\223\254\247\377\326\337\335\377\203\377\377" \ - "\377\377\3\246\273\267\377\223\254\247\377\324\335\334\377\357\333\343" \ - "\342\377\3_vr\377Slg\377i\177{\377\377\333\343\342\377\202\333\343\342" \ - "\377\5\317\332\331\377\257\301\276\377\217\251\244\377\223\254\247\377" \ - "\270\310\305\377\202\377\377\377\377\6\365\367\367\377\223\254\247\377" \ - "\217\251\244\377\234\263\257\377\275\314\312\377\330\341\340\377\355" \ - "\333\343\342\377\4\177\222\217\377Slg\377Vni\377\327\337\336\377\376" \ - "\333\343\342\377\2\277\316\313\377\207\243\236\377\203o\221\212\377\7" \ - "\221\253\246\377\233\262\256\377\376\376\376\377\377\377\377\377\330" \ - "\341\337\377\223\254\247\377\202\237\231\377\202o\221\212\377\3t\225" \ - "\216\377\234\263\257\377\322\334\333\377\353\333\343\342\377\1\277\313" \ - "\311\377\202Slg\377\1\273\307\305\377\220\333\343\342\377\1\307\322\320" \ - "\377\202\216\237\234\377\351\333\343\342\377\2\310\325\323\377\216\251" \ - "\243\377\204o\221\212\377\10v\226\220\377\221\252\245\377\223\254\247" \ - "\377\324\336\334\377\340\347\346\377\262\304\300\377\223\254\247\377" \ - "\210\244\237\377\204o\221\212\377\3u\225\217\377\250\274\270\377\327" \ - "\340\337\377\352\333\343\342\377\4\226\246\243\377Slg\377h\177z\377\321" \ - "\333\331\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\350\333" \ - "\343\342\377\2\264\305\302\377q\223\214\377\202o\221\212\377\5q\223\214" \ - "\377\233\263\256\377\300\317\314\377\331\342\340\377\273\312\307\377" \ - "\204\223\254\247\377\5\225\255\250\377\330\341\337\377\321\333\332\377" \ - "\261\303\277\377\206\243\235\377\203o\221\212\377\2\205\242\234\377\317" \ - "\332\331\377\352\333\343\342\377\4\230\250\245\377Tmh\377q\206\202\377" \ - "\276\311\307\377\216\333\343\342\377\1\270\305\303\377\202Slg\377\346" \ - "\333\343\342\377\2\332\342\341\377\241\267\263\377\203o\221\212\377\2" \ - "\227\257\253\377\315\331\327\377\203\333\343\342\377\1\321\333\332\377" \ - "\204\262\303\300\377\1\272\312\307\377\204\333\343\342\377\2\270\310" \ - "\306\377\177\235\227\377\202o\221\212\377\2z\231\222\377\304\322\320" \ - "\377\347\333\343\342\377\1\317\330\327\377\202\301\314\312\377\10\247" \ - "\266\263\377^vq\377Slg\377o\204\200\377\232\252\247\377\247\266\263\377" \ - "\264\301\277\377\277\313\311\377\211\301\314\312\377\1\245\264\261\377" \ - "\202Slg\377\346\333\343\342\377\1\236\265\260\377\202o\221\212\377\2" \ - "t\225\216\377\273\313\310\377\220\333\343\342\377\2\327\340\337\377\225" \ - "\256\251\377\202o\221\212\377\2t\225\216\377\310\325\323\377\346\333" \ - "\343\342\377\1\233\253\250\377\226Slg\377\345\333\343\342\377\1\261\303" \ - "\277\377\202o\221\212\377\2|\233\225\377\311\325\323\377\223\333\343" \ - "\342\377\1\247\273\267\377\202o\221\212\377\2|\233\225\377\322\334\333" \ - "\377\345\333\343\342\377\1\233\253\250\377\226Slg\377\344\333\343\342" \ - "\377\5\304\321\317\377q\222\213\377o\221\212\377u\226\217\377\312\326" \ - "\324\377\225\333\343\342\377\1\242\270\264\377\202o\221\212\377\2\211" \ - "\244\237\377\332\342\341\377\344\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\344\333\343\342\377\4\207\243\236\377o\221\212\377p\222\213\377" \ - "\275\314\312\377\226\333\343\342\377\2\332\342\341\377\220\252\245\377" \ - "\202o\221\212\377\1\264\305\302\377\344\333\343\342\377\3\233\253\250" \ - "\377Slg\377\\so\377\221x\215\211\377\1o\204\200\377\202Slg\377\343\333" \ - "\343\342\377\1\267\310\305\377\202o\221\212\377\1\237\265\261\377\230" \ - "\333\343\342\377\5\324\336\334\377v\226\220\377o\221\212\377|\233\225" \ - "\377\330\341\337\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211" \ - "\205\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343" \ - "\342\377\5\332\342\341\377~\234\226\377o\221\212\377t\225\216\377\322" \ - "\334\333\377\231\333\343\342\377\1\251\275\271\377\202o\221\212\377\1" \ - "\255\300\275\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205" \ - "\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343\342" \ - "\377\1\304\321\317\377\202o\221\212\377\1\245\272\266\377\232\333\343" \ - "\342\377\4\327\340\337\377y\231\222\377o\221\212\377\207\243\236\377" \ - "\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343" \ - "\342\377\1\270\305\303\377\202Slg\377\342\333\343\342\377\1\243\270\264" \ - "\377\202o\221\212\377\1\314\327\325\377\233\333\343\342\377\1\234\263" \ - "\257\377\202o\221\212\377\1\321\333\332\377\342\333\343\342\377\3\277" \ - "\312\310\377\237\256\253\377\256\273\271\377\221\333\343\342\377\1\323" \ - "\334\333\377\202\275\310\306\377\342\333\343\342\377\3\202\237\231\377" \ - "o\221\212\377\201\236\230\377\234\333\343\342\377\1\276\315\312\377\202" \ - "o\221\212\377\1\261\303\300\377\377\333\343\342\377\333\333\343\342\377" \ - "\1\330\341\340\377\202o\221\212\377\1\234\263\256\377\234\333\343\342" \ - "\377\1\330\341\337\377\202o\221\212\377\1\234\263\257\377\377\333\343" \ - "\342\377\333\333\343\342\377\1\317\332\330\377\202o\221\212\377\1\250" \ - "\274\270\377\235\333\343\342\377\3y\230\222\377o\221\212\377\222\254" \ - "\246\377\377\333\343\342\377\333\333\343\342\377\1\304\322\320\377\202" \ - "o\221\212\377\1\264\306\302\377\235\333\343\342\377\3\205\242\234\377" \ - "o\221\212\377\207\243\236\377\350\333\343\342\377\13\327\340\337\377" \ - "\267\303\301\377\225\246\243\377{\217\213\377p\205\201\377f}x\377k\201" \ - "}\377u\211\205\377\205\227\224\377\245\263\261\377\310\323\321\377\347" \ - "\333\343\342\377\1\275\314\312\377\202o\221\212\377\1\274\314\311\377" \ - "\235\333\343\342\377\3\215\250\242\377o\221\212\377\200\236\230\377\346" \ - "\333\343\342\377\3\324\334\333\377\231\251\246\377_wr\377\212Slg\377" \ - "\2x\215\211\377\270\304\302\377\345\333\343\342\377\1\306\323\321\377" \ - "\202o\221\212\377\1\263\304\301\377\235\333\343\342\377\3\203\240\232" \ - "\377o\221\212\377\211\244\237\377\345\333\343\342\377\2\300\314\312\377" \ - "f|x\377\216Slg\377\2\216\240\235\377\330\340\337\377\343\333\343\342" \ - "\377\1\320\333\331\377\202o\221\212\377\1\247\273\267\377\235\333\343" \ - "\342\377\3w\227\221\377o\221\212\377\223\254\250\377\344\333\343\342" \ - "\377\2\273\307\305\377Woj\377\220Slg\377\2y\216\212\377\330\341\340\377" \ - "\342\333\343\342\377\4\331\342\340\377p\221\213\377o\221\212\377\231" \ - "\261\254\377\234\333\343\342\377\1\326\337\336\377\202o\221\212\377\1" \ - "\236\265\260\377\331\333\343\342\377\3\272\306\304\377\231\251\246\377" \ - "\310\322\321\377\207\333\343\342\377\2\310\322\321\377\\to\377\205Sl" \ - "g\377\7Woj\377dzv\377q\206\202\377}\221\215\377w\214\210\377k\201|\377" \ - "]up\377\206Slg\377\1\211\233\230\377\343\333\343\342\377\3\206\242\234" \ - "\377o\221\212\377|\233\225\377\234\333\343\342\377\1\271\311\306\377" \ - "\202o\221\212\377\1\265\306\303\377\330\333\343\342\377\1\222\243\240" \ - "\377\203Slg\377\1\271\306\304\377\206\333\343\342\377\1|\217\214\377" \ - "\203Slg\377\3dzv\377\231\252\247\377\314\326\324\377\207\333\343\342" \ - "\377\4\330\340\337\377\267\304\302\377\201\224\220\377Vni\377\203Slg" \ - "\377\1\274\307\306\377\342\333\343\342\377\1\247\274\270\377\202o\221" \ - "\212\377\1\307\323\321\377\233\333\343\342\377\4\227\257\253\377o\221" \ - "\212\377q\222\213\377\324\336\334\377\327\333\343\342\377\2\325\335\334" \ - "\377Zrm\377\203Slg\377\1\205\227\224\377\205\333\343\342\377\1\275\310" \ - "\306\377\202Slg\377\3Umh\377\251\270\265\377\331\342\341\377\214\333" \ - "\343\342\377\2\317\331\327\377y\216\212\377\202Slg\377\1t\211\205\377" \ - "\342\333\343\342\377\1\310\325\323\377\202o\221\212\377\1\237\265\261" \ - "\377\232\333\343\342\377\4\325\336\335\377v\226\217\377o\221\212\377" \ - "\213\246\241\377\330\333\343\342\377\2\331\341\340\377czu\377\203Slg" \ - "\377\1\221\243\237\377\205\333\343\342\377\4\220\241\236\377Slg\377T" \ - "lg\377\253\271\267\377\217\333\343\342\377\2\326\336\335\377s\210\204" \ - "\377\202Slg\377\1\317\331\327\377\342\333\343\342\377\4\203\240\232\377" \ - "o\221\212\377r\223\214\377\317\331\330\377\205\333\343\342\377\2\305" \ - "\322\320\377\322\334\332\377\212\333\343\342\377\3\332\342\341\377\305" \ - "\322\320\377\322\334\333\377\205\333\343\342\377\1\243\270\264\377\202" \ - "o\221\212\377\1\262\304\301\377\331\333\343\342\377\5\250\266\264\377" \ - "Yql\377Slg\377f|x\377\310\322\321\377\205\333\343\342\377\3k\201}\377" \ - "Slg\377\212\234\231\377\221\333\343\342\377\4\321\332\331\377Tmh\377" \ - "Slg\377\253\271\267\377\342\333\343\342\377\1\276\315\312\377\202o\221" \ - "\212\377\1\227\257\253\377\204\333\343\342\377\6\327\340\337\377\227" \ - "\257\252\377\223\254\247\377\251\275\271\377\307\324\322\377\332\342" \ - "\341\377\205\333\343\342\377\5\325\337\335\377\272\311\307\377\234\263" \ - "\256\377\223\254\247\377\263\304\301\377\204\333\343\342\377\5\317\332" \ - "\331\377s\224\215\377o\221\212\377\201\236\230\377\331\342\340\377\332" \ - "\333\343\342\377\3\324\334\333\377\274\307\306\377\332\342\341\377\206" \ - "\333\343\342\377\3Xql\377Slg\377\255\272\270\377\222\333\343\342\377" \ - "\3m\202~\377Slg\377\230\251\246\377\343\333\343\342\377\1\216\250\243" \ - "\377\202o\221\212\377\1\264\305\302\377\203\333\343\342\377\3\275\314" \ - "\312\377\223\254\247\377\225\255\250\377\202\223\254\247\377\7\236\264" \ - "\260\377\273\313\310\377\327\337\336\377\333\343\342\377\315\330\326" \ - "\377\256\301\275\377\225\255\251\377\202\223\254\247\377\3\224\254\250" \ - "\377\227\257\252\377\330\341\337\377\202\333\343\342\377\2\330\341\337" \ - "\377\207\243\236\377\202o\221\212\377\1\273\312\310\377\343\333\343\342" \ - "\377\1\324\335\334\377\202Slg\377\1\314\326\324\377\222\333\343\342\377" \ - "\3\214\236\233\377Slg\377\214\235\232\377\343\333\343\342\377\5\312\326" \ - "\324\377t\225\216\377o\221\212\377q\223\214\377\303\320\316\377\202\333" \ - "\343\342\377\5\237\265\261\377\223\254\247\377\347\355\354\377\335\344" \ - "\343\377\257\301\276\377\202\223\254\247\377\2\250\274\270\377\321\334" \ - "\332\377\202\223\254\247\377\6\231\261\254\377\303\321\316\377\360\363" \ - "\363\377\271\311\306\377\223\254\247\377\277\315\313\377\202\333\343" \ - "\342\377\1\227\257\252\377\202o\221\212\377\1\222\254\246\377\344\333" \ - "\343\342\377\1\325\335\334\377\202Slg\377\1\313\325\323\377\222\333\343" \ - "\342\377\3\213\235\231\377Slg\377\214\236\233\377\344\333\343\342\377" \ - "\1\273\312\310\377\202o\221\212\377\5v\226\220\377\277\316\313\377\311" \ - "\325\323\377\223\254\247\377\251\275\271\377\203\377\377\377\377\7\355" \ - "\361\360\377\227\257\253\377\226\256\251\377\273\312\307\377\223\254" \ - "\247\377\271\311\306\377\372\373\373\377\202\377\377\377\377\5\346\354" \ - "\353\377\223\254\247\377\240\266\262\377\330\341\340\377\232\261\255" \ - "\377\202o\221\212\377\2\203\240\232\377\326\337\336\377\334\333\343\342" \ - "\377\3\322\333\332\377\267\303\301\377\331\341\340\377\206\333\343\342" \ - "\377\3Yql\377Slg\377\253\271\267\377\222\333\343\342\377\3k\201}\377" \ - "Slg\377\231\251\246\377\345\333\343\342\377\1\252\276\272\377\202o\221" \ - "\212\377\4p\222\213\377\234\263\256\377\223\254\247\377\327\340\336\377" \ - "\203\377\377\377\377\2\344\352\351\377\232\261\254\377\202\223\254\247" \ - "\377\3\224\255\250\377\262\303\300\377\371\372\372\377\203\377\377\377" \ - "\377\3\250\274\270\377\223\254\247\377\214\246\241\377\202o\221\212\377" \ - "\2y\231\222\377\317\331\330\377\334\333\343\342\377\5\247\266\263\377" \ - "Xql\377Slg\377`ws\377\305\320\316\377\205\333\343\342\377\3l\201}\377" \ - "Slg\377\210\233\227\377\221\333\343\342\377\4\317\331\327\377Tlg\377" \ - "Slg\377\254\271\267\377\346\333\343\342\377\6\257\301\276\377p\222\213" \ - "\377r\223\214\377\222\253\246\377\233\262\256\377\374\374\374\377\202" \ - "\377\377\377\377\11\316\331\327\377\223\254\247\377\252\275\272\377\320" \ - "\333\331\377\332\343\341\377\305\323\320\377\227\257\253\377\237\265" \ - "\261\377\362\365\364\377\202\377\377\377\377\6\325\337\335\377\223\254" \ - "\247\377\206\242\234\377o\221\212\377\202\237\231\377\315\330\326\377" \ - "\334\333\343\342\377\2\331\341\340\377czu\377\203Slg\377\1\217\241\235" \ - "\377\205\333\343\342\377\1\221\243\237\377\202Slg\377\1\251\267\265\377" \ - "\217\333\343\342\377\5\325\335\334\377p\206\202\377Slg\377Tlg\377\320" \ - "\331\330\377\347\333\343\342\377\4\277\316\313\377\204\241\233\377\223" \ - "\254\247\377\306\323\320\377\202\377\377\377\377\4\352\357\356\377\225" \ - "\255\250\377\300\317\314\377\376\376\376\377\203\377\377\377\377\12\361" \ - "\364\363\377\236\264\260\377\257\302\276\377\376\376\376\377\377\377" \ - "\377\377\373\374\373\377\232\261\254\377\222\253\246\377\217\251\244" \ - "\377\325\337\335\377\335\333\343\342\377\2\325\336\335\377[sn\377\203" \ - "Slg\377\1\206\231\225\377\205\333\343\342\377\1\276\312\310\377\202S" \ - "lg\377\3Umh\377\251\267\265\377\331\342\341\377\214\333\343\342\377\2" \ - "\315\326\325\377v\213\207\377\202Slg\377\1v\213\207\377\350\333\343\342" \ - "\377\4\331\341\340\377\230\260\253\377\224\254\247\377\362\365\364\377" \ - "\202\377\377\377\377\3\272\312\307\377\243\270\264\377\374\375\375\377" \ - "\205\377\377\377\377\3\335\345\343\377\223\254\247\377\352\357\356\377" \ - "\202\377\377\377\377\3\304\321\317\377\223\254\247\377\267\307\304\377" \ - "\337\333\343\342\377\1\223\244\240\377\202Slg\377\2Umh\377\275\310\306" \ - "\377\206\333\343\342\377\1~\222\216\377\203Slg\377\4czu\377\227\247\244" \ - "\377\310\322\321\377\331\341\340\377\206\333\343\342\377\4\325\335\334" \ - "\377\263\300\276\377}\220\215\377Tmh\377\203Slg\377\1\277\312\310\377" \ - "\350\333\343\342\377\3\302\320\315\377\223\254\247\377\264\305\302\377" \ - "\203\377\377\377\377\2\243\271\264\377\277\316\313\377\206\377\377\377" \ - "\377\3\373\374\373\377\224\255\250\377\322\335\333\377\202\377\377\377" \ - "\377\4\360\363\363\377\223\254\247\377\232\262\255\377\332\342\341\377" \ - "\337\333\343\342\377\3\274\310\306\377\236\255\253\377\315\327\325\377" \ - "\207\333\343\342\377\2\311\324\322\377^uq\377\205Slg\377\7Tmh\377_wr" \ - "\377m\202~\377y\215\211\377s\210\204\377f}x\377Yql\377\206Slg\377\1\217" \ - "\240\235\377\351\333\343\342\377\3\244\271\265\377\223\254\247\377\342" \ - "\350\347\377\203\377\377\377\377\2\240\266\262\377\302\320\315\377\206" \ - "\377\377\377\377\3\374\375\375\377\225\255\251\377\317\332\330\377\203" \ - "\377\377\377\377\3\262\304\300\377\223\254\247\377\303\321\317\377\352" \ - "\333\343\342\377\2\275\311\307\377Xql\377\220Slg\377\2}\221\215\377\331" \ - "\342\341\377\350\333\343\342\377\4\316\331\327\377\223\254\247\377\243" \ - "\270\264\377\376\376\376\377\203\377\377\377\377\2\267\307\304\377\250" \ - "\274\270\377\206\377\377\377\377\3\345\353\351\377\223\254\247\377\346" \ - "\354\353\377\203\377\377\377\377\3\340\347\345\377\223\254\247\377\245" \ - "\272\266\377\353\333\343\342\377\2\303\316\314\377h\177z\377\215Slg\377" \ - "\3Tlg\377\225\245\242\377\331\341\340\377\351\333\343\342\377\3\257\302" \ - "\276\377\223\254\247\377\320\333\331\377\204\377\377\377\377\3\340\347" \ - "\346\377\223\254\247\377\317\332\330\377\204\377\377\377\377\4\371\372" \ - "\372\377\245\272\266\377\246\272\266\377\374\375\375\377\203\377\377" \ - "\377\377\4\376\376\376\377\242\267\263\377\223\254\247\377\317\331\330" \ - "\377\353\333\343\342\377\3\325\335\334\377\235\255\252\377czu\377\211" \ - "Slg\377\3Tlg\377\177\222\217\377\277\312\310\377\352\333\343\342\377" \ - "\4\326\337\336\377\225\256\251\377\227\257\253\377\371\372\372\377\205" \ - "\377\377\377\377\11\277\316\313\377\223\254\247\377\272\312\307\377\341" \ - "\350\346\377\353\360\357\377\326\340\336\377\240\266\261\377\227\257" \ - "\252\377\352\357\356\377\205\377\377\377\377\3\316\331\327\377\223\254" \ - "\247\377\260\302\277\377\355\333\343\342\377\13\330\341\340\377\273\307" \ - "\305\377\231\252\247\377\177\222\217\377t\211\205\377k\201|\377o\205" \ - "\201\377y\215\211\377\211\233\230\377\251\267\265\377\314\326\324\377" \ - "\354\333\343\342\377\3\273\312\310\377\223\254\247\377\277\316\313\377" \ - "\207\377\377\377\377\2\315\330\327\377\224\255\250\377\203\223\254\247" \ - "\377\2\235\263\257\377\360\363\362\377\206\377\377\377\377\4\370\371" \ - "\371\377\227\257\252\377\226\256\252\377\327\340\336\377\377\333\343" \ - "\342\377\343\333\343\342\377\4\332\342\341\377\235\263\257\377\223\254" \ - "\247\377\354\361\360\377\207\377\377\377\377\7\310\325\322\377\223\254" \ - "\247\377\262\303\300\377\307\323\321\377\231\260\253\377\225\255\251" \ - "\377\365\367\367\377\207\377\377\377\377\3\275\314\311\377\223\254\247" \ - "\377\274\313\311\377\346\333\343\342\377\1\316\327\326\377\205\301\314" \ - "\312\377\1\327\340\337\377\365\333\343\342\377\3\306\323\321\377\223" \ - "\254\247\377\256\300\275\377\207\377\377\377\377\10\374\375\375\377\235" \ - "\264\257\377\224\255\250\377\324\336\334\377\333\343\342\377\266\307" \ - "\304\377\223\254\247\377\312\326\324\377\207\377\377\377\377\3\353\357" \ - "\356\377\223\254\247\377\236\264\260\377\346\333\343\342\377\1\204\227" \ - "\223\377\205Slg\377\1\311\324\322\377\365\333\343\342\377\3\250\274\270" \ - "\377\223\254\247\377\335\345\344\377\207\377\377\377\377\3\332\342\340" \ - "\377\223\254\247\377\254\277\274\377\202\333\343\342\377\4\323\335\334" \ - "\377\224\255\250\377\236\265\260\377\375\376\375\377\207\377\377\377" \ - "\377\3\256\301\275\377\223\254\247\377\310\324\322\377\345\333\343\342" \ - "\377\1i\177{\377\205Slg\377\1\311\324\322\377\364\333\343\342\377\4\321" \ - "\334\332\377\223\254\247\377\240\265\261\377\376\376\376\377\207\377" \ - "\377\377\377\3\254\277\274\377\223\254\247\377\312\326\324\377\203\333" \ - "\343\342\377\3\253\276\272\377\223\254\247\377\334\344\342\377\207\377" \ - "\377\377\377\3\333\343\342\377\223\254\247\377\251\275\271\377\345\333" \ - "\343\342\377\1Vni\377\202Slg\377\4Yrm\377\234\253\251\377\302\315\313" \ - "\377\331\342\341\377\364\333\343\342\377\3\264\305\302\377\223\254\247" \ - "\377\314\330\325\377\207\377\377\377\377\3\353\360\357\377\223\254\247" \ - "\377\241\266\262\377\204\333\343\342\377\3\311\325\323\377\223\254\247" \ - "\377\256\301\275\377\207\377\377\377\377\4\375\375\375\377\236\265\260" \ - "\377\223\254\247\377\322\334\333\377\343\333\343\342\377\1\324\334\333" \ - "\377\203Slg\377\1\261\277\274\377\366\333\343\342\377\4\330\341\340\377" \ - "\230\260\253\377\225\256\251\377\366\370\370\377\207\377\377\377\377" \ - "\3\276\315\312\377\223\254\247\377\277\315\313\377\205\333\343\342\377" \ - "\3\237\265\261\377\223\254\247\377\355\361\360\377\207\377\377\377\377" \ - "\3\312\326\324\377\223\254\247\377\265\306\303\377\343\333\343\342\377" \ - "\1\326\337\336\377\202Slg\377\1]up\377\367\333\343\342\377\3\277\316" \ - "\313\377\223\254\247\377\272\312\307\377\207\377\377\377\377\4\370\371" \ - "\371\377\227\257\252\377\230\257\253\377\330\341\337\377\205\333\343" \ - "\342\377\3\275\314\312\377\223\254\247\377\277\316\313\377\207\377\377" \ - "\377\377\4\365\367\367\377\225\255\251\377\231\260\254\377\331\341\340" \ - "\377\343\333\343\342\377\3`ws\377Slg\377i\200{\377\367\333\343\342\377" \ - "\3\241\267\263\377\223\254\247\377\350\355\354\377\207\377\377\377\377" \ - "\3\317\332\330\377\223\254\247\377\263\305\301\377\206\333\343\342\377" \ - "\4\327\340\337\377\227\257\252\377\230\260\253\377\371\372\372\377\207" \ - "\377\377\377\377\3\271\311\306\377\223\254\247\377\301\317\314\377\343" \ - "\333\343\342\377\4y\215\211\377Slg\377Vni\377\327\340\337\377\220\333" \ - "\343\342\377\1\324\335\334\377\202\301\314\312\377\342\333\343\342\377" \ - "\3\313\327\325\377\223\254\247\377\251\275\271\377\207\377\377\377\377" \ - "\4\376\376\376\377\242\267\263\377\223\254\247\377\321\333\332\377\207" \ - "\333\343\342\377\3\262\303\300\377\223\254\247\377\321\334\332\377\207" \ - "\377\377\377\377\3\346\354\352\377\223\254\247\377\242\270\263\377\343" \ - "\333\343\342\377\1\260\276\273\377\202Slg\377\1\300\313\311\377\220\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\342\333\343\342\377\3\255\300" \ - "\274\377\223\254\247\377\327\340\336\377\207\377\377\377\377\3\340\347" \ - "\346\377\223\254\247\377\247\273\270\377\210\333\343\342\377\3\320\332" \ - "\331\377\223\254\247\377\244\271\265\377\210\377\377\377\377\3\247\273" \ - "\267\377\223\254\247\377\314\330\326\377\342\333\343\342\377\5\331\342" \ - "\341\377o\205\201\377Slg\377x\215\211\377\331\342\341\377\217\333\343" \ - "\342\377\1\270\305\303\377\202Slg\377\341\333\343\342\377\4\325\336\335" \ - "\377\225\255\250\377\233\262\255\377\374\374\374\377\207\377\377\377" \ - "\377\3\263\305\301\377\223\254\247\377\306\323\321\377\211\333\343\342" \ - "\377\3\246\273\267\377\223\254\247\377\343\351\350\377\207\377\377\377" \ - "\377\3\325\336\334\377\223\254\247\377\256\300\275\377\343\333\343\342" \ - "\377\5\316\330\326\377dzv\377Slg\377\220\241\236\377\332\342\341\377" \ - "\216\333\343\342\377\1\270\305\303\377\202Slg\377\341\333\343\342\377" \ - "\3\270\310\306\377\223\254\247\377\305\323\320\377\207\377\377\377\377" \ - "\4\361\364\363\377\223\254\247\377\234\263\257\377\332\342\341\377\211" \ - "\333\343\342\377\3\304\322\317\377\223\254\247\377\265\306\302\377\207" \ - "\377\377\377\377\4\373\374\373\377\232\261\254\377\225\255\251\377\325" \ - "\337\335\377\343\333\343\342\377\6\316\327\326\377\200\224\220\377Sl" \ - "g\377h~z\377\246\265\262\377\326\336\335\377\214\333\343\342\377\1\270" \ - "\305\303\377\202Slg\377\340\333\343\342\377\4\332\342\341\377\233\262" \ - "\255\377\223\254\247\377\361\364\364\377\207\377\377\377\377\3\304\322" \ - "\317\377\223\254\247\377\272\312\307\377\212\333\343\342\377\4\332\342" \ - "\341\377\233\262\256\377\224\254\247\377\362\365\364\377\207\377\377" \ - "\377\377\3\303\321\316\377\223\254\247\377\272\311\307\377\341\333\343" \ - "\342\377\1\257\274\272\377\203}\220\215\377\1^vq\377\203Slg\377\3^vq" \ - "\377n\203\177\377{\217\213\377\211}\220\215\377\1r\207\203\377\202Sl" \ - "g\377\340\333\343\342\377\3\304\321\317\377\223\254\247\377\264\305\301" \ - "\377\207\377\377\377\377\4\373\374\374\377\232\262\255\377\225\256\251" \ - "\377\326\337\336\377\213\333\343\342\377\3\271\311\306\377\223\254\247" \ - "\377\307\324\321\377\207\377\377\377\377\4\360\363\362\377\223\254\247" \ - "\377\234\263\256\377\332\342\341\377\340\333\343\342\377\1\233\253\250" \ - "\377\226Slg\377\340\333\343\342\377\3\246\272\266\377\223\254\247\377" \ - "\341\350\347\377\207\377\377\377\377\3\326\337\335\377\223\254\247\377" \ - "\256\301\275\377\214\333\343\342\377\4\325\336\335\377\225\255\250\377" \ - "\234\263\256\377\374\375\374\377\207\377\377\377\377\3\262\304\300\377" \ - "\223\254\247\377\305\322\320\377\340\333\343\342\377\1\233\253\250\377" \ - "\226Slg\377\337\333\343\342\377\4\317\332\330\377\223\254\247\377\242" \ - "\270\263\377\376\376\376\377\207\377\377\377\377\3\251\274\270\377\223" \ - "\254\247\377\315\330\326\377\215\333\343\342\377\3\255\300\274\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\337\346\345\377\223" \ - "\254\247\377\247\273\267\377\340\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\337\333\343\342\377\3\261\303\300\377\223\254\247\377\320\333" \ - "\331\377\207\377\377\377\377\3\347\355\354\377\223\254\247\377\243\270" \ - "\264\377\216\333\343\342\377\3\314\327\325\377\223\254\247\377\252\276" \ - "\272\377\207\377\377\377\377\4\376\376\376\377\241\267\262\377\223\254" \ - "\247\377\320\333\331\377\337\333\343\342\377\3\233\253\250\377Slg\377" \ - "m\202~\377\221\275\310\306\377\1\242\261\256\377\202Slg\377\336\333\343" \ - "\342\377\1\327\340\337\377\202\227\257\252\377\1\370\372\371\377\207" \ - "\377\377\377\377\3\272\312\307\377\223\254\247\377\301\317\315\377\217" \ - "\333\343\342\377\3\241\267\263\377\223\254\247\377\351\356\355\377\207" \ - "\377\377\377\377\3\316\331\327\377\223\254\247\377\263\304\301\377\337" \ - "\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\336\333\343\342\377\3\275\314\311\377" \ - "\223\254\247\377\277\315\312\377\207\377\377\377\377\4\366\370\367\377" \ - "\225\256\251\377\231\260\254\377\331\341\340\377\217\333\343\342\377" \ - "\3\300\316\314\377\223\254\247\377\274\313\310\377\207\377\377\377\377" \ - "\4\367\371\371\377\226\256\252\377\227\257\252\377\330\340\337\377\336" \ - "\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\336\333\343\342\377\3\237\265\260\377" \ - "\223\254\247\377\354\360\357\377\207\377\377\377\377\3\313\327\325\377" \ - "\223\254\247\377\266\306\303\377\220\333\343\342\377\4\331\341\340\377" \ - "\230\260\253\377\226\256\252\377\367\371\370\377\207\377\377\377\377" \ - "\3\274\314\311\377\223\254\247\377\276\315\312\377\336\333\343\342\377" \ - "\3\237\256\253\377[sn\377{\217\213\377\221\333\343\342\377\1\302\315" \ - "\313\377\202x\215\211\377\335\333\343\342\377\3\310\325\323\377\223\254" \ - "\247\377\255\300\274\377\207\377\377\377\377\4\375\376\375\377\237\265" \ - "\261\377\224\254\247\377\323\334\333\377\221\333\343\342\377\3\264\305" \ - "\302\377\223\254\247\377\315\331\326\377\207\377\377\377\377\3\352\357" \ - "\356\377\223\254\247\377\240\266\261\377\377\333\343\342\377\323\333" \ - "\343\342\377\3\252\276\272\377\223\254\247\377\333\343\341\377\207\377" \ - "\377\377\377\3\335\344\343\377\223\254\247\377\252\275\272\377\222\333" \ - "\343\342\377\4\322\334\332\377\223\254\247\377\241\266\262\377\376\376" \ - "\376\377\207\377\377\377\377\3\253\276\273\377\223\254\247\377\312\326" \ - "\324\377\356\333\343\342\377\1\331\342\341\377\341\333\343\342\377\4" \ - "\323\335\333\377\224\254\247\377\235\264\257\377\375\375\375\377\207" \ - "\377\377\377\377\3\257\302\276\377\223\254\247\377\310\324\322\377\207" \ - "\333\343\342\377\4\327\340\337\377\264\305\302\377\260\302\277\377\305" \ - "\321\317\377\210\333\343\342\377\3\251\274\271\377\223\254\247\377\337" \ - "\346\345\377\207\377\377\377\377\3\330\341\337\377\223\254\247\377\253" \ - "\276\273\377\356\333\343\342\377\5\264\301\277\377^uq\377w\214\210\377" \ - "\236\255\253\377\330\341\340\377\335\333\343\342\377\3\266\306\303\377" \ - "\223\254\247\377\311\325\323\377\207\377\377\377\377\3\356\362\361\377" \ - "\223\254\247\377\236\265\260\377\210\333\343\342\377\5\251\275\272\377" \ - "\226\256\251\377\240\266\261\377\222\253\246\377\316\331\330\377\207" \ - "\333\343\342\377\3\307\323\321\377\223\254\247\377\261\303\300\377\207" \ - "\377\377\377\377\4\374\375\374\377\234\263\256\377\224\255\250\377\324" \ - "\335\334\377\334\333\343\342\377\3\241\260\255\377_vr\377z\216\212\377" \ - "\216\333\343\342\377\1\264\301\277\377\203Slg\377\2m\202~\377\312\324" \ - "\323\377\333\333\343\342\377\4\331\341\340\377\231\261\254\377\225\255" \ - "\250\377\364\367\366\377\207\377\377\377\377\3\301\317\314\377\223\254" \ - "\247\377\275\314\311\377\207\333\343\342\377\6\331\342\341\377\225\255" \ - "\250\377\320\333\331\377\374\375\375\377\234\263\256\377\261\303\300" \ - "\377\207\333\343\342\377\4\332\342\341\377\235\264\257\377\223\254\247" \ - "\377\360\363\362\377\207\377\377\377\377\3\307\324\321\377\223\254\247" \ - "\377\267\310\305\377\334\333\343\342\377\3\233\253\250\377Slg\377p\205" \ - "\201\377\216\333\343\342\377\2\270\305\303\377Woj\377\203Slg\377\1~\221" \ - "\216\377\333\333\343\342\377\3\301\317\315\377\223\254\247\377\270\310" \ - "\305\377\207\377\377\377\377\4\371\373\372\377\230\260\253\377\226\256" \ - "\252\377\327\340\336\377\207\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\210\333\343\342\377\3\273\313\310\377\223\254\247\377\303\321\316" \ - "\377\207\377\377\377\377\4\363\365\365\377\224\255\250\377\232\261\255" \ - "\377\331\342\341\377\333\333\343\342\377\3\233\253\250\377Slg\377p\205" \ - "\201\377\217\333\343\342\377\3\332\342\341\377\306\321\317\377\206\230" \ - "\225\377\202Slg\377\1\300\313\311\377\332\333\343\342\377\3\243\270\264" \ - "\377\223\254\247\377\345\353\352\377\207\377\377\377\377\3\322\335\333" \ - "\377\223\254\247\377\261\303\277\377\210\333\343\342\377\6\331\340\337" \ - "\377\223\254\247\377\332\342\341\377\377\377\377\377\251\275\271\377" \ - "\255\300\275\377\210\333\343\342\377\4\326\337\336\377\226\256\251\377" \ - "\232\261\254\377\372\373\373\377\207\377\377\377\377\3\266\307\303\377" \ - "\223\254\247\377\303\320\316\377\333\333\343\342\377\3\233\253\250\377" \ - "Slg\377p\205\201\377\221\333\343\342\377\4\332\342\341\377q\207\202\377" \ - "Slg\377\246\264\262\377\331\333\343\342\377\3\315\330\326\377\223\254" \ - "\247\377\246\273\267\377\210\377\377\377\377\3\245\272\266\377\223\254" \ - "\247\377\317\332\330\377\210\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\211\333\343\342\377\3\260\302\276\377\223\254\247\377\324\336\334" \ - "\377\207\377\377\377\377\3\343\351\350\377\223\254\247\377\244\271\265" \ - "\377\333\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\222\333" \ - "\343\342\377\3\223\244\240\377Slg\377\223\244\240\377\331\333\343\342" \ - "\377\3\257\301\276\377\223\254\247\377\324\336\334\377\207\377\377\377" \ - "\377\3\344\352\351\377\223\254\247\377\245\272\266\377\211\333\343\342" \ - "\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377\377\377" \ - "\251\275\271\377\255\300\275\377\211\333\343\342\377\3\316\331\327\377" \ - "\223\254\247\377\247\273\267\377\210\377\377\377\377\3\244\271\265\377" \ - "\223\254\247\377\316\331\327\377\332\333\343\342\377\3\233\253\250\377" \ - "Slg\377p\205\201\377\222\333\343\342\377\3\213\235\232\377Slg\377\214" \ - "\235\232\377\330\333\343\342\377\10\326\337\336\377\225\256\251\377\231" \ - "\261\254\377\372\373\373\377\354\360\357\377\301\317\315\377\325\337" \ - "\335\377\373\374\374\377\203\377\377\377\377\3\266\307\303\377\223\254" \ - "\247\377\303\321\317\377\211\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\212\333\343\342\377\3\244\271\265\377\223\254\247\377\346\353\352" \ - "\377\203\377\377\377\377\7\356\362\362\377\303\321\316\377\322\334\332" \ - "\377\372\373\373\377\322\334\332\377\223\254\247\377\260\302\277\377" \ - "\332\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221\333\343" \ - "\342\377\4\314\325\324\377_wr\377Slg\377\235\254\252\377\306\333\343" \ - "\342\377\1\203\240\232\377\205r\223\214\377\1w\227\221\377\213\253\276" \ - "\273\377\16\240\265\262\377\223\254\247\377\302\320\315\377\266\307\304" \ - "\377\223\254\247\377\233\262\256\377\223\254\247\377\233\262\255\377" \ - "\346\353\352\377\377\377\377\377\363\366\365\377\224\255\250\377\225" \ - "\256\251\377\252\275\272\377\211\253\276\273\377\6\252\275\272\377\223" \ - "\254\247\377\332\342\341\377\377\377\377\377\250\274\270\377\233\262" \ - "\256\377\212\253\276\273\377\3\242\267\264\377\223\254\247\377\270\310" \ - "\305\377\202\377\377\377\377\11\275\315\312\377\223\254\247\377\232\262" \ - "\255\377\224\255\250\377\231\261\254\377\332\344\341\377\230\260\253" \ - "\377\224\254\250\377\251\275\271\377\212\253\276\273\377\1\227\257\253" \ - "\377\205r\223\214\377\2s\224\215\377\261\303\300\377\300\333\343\342" \ - "\377\1\267\304\302\377\206\211\234\230\377\3p\205\201\377Slg\377^vq\377" \ - "\216\211\234\230\377\4\206\231\225\377\177\223\217\377r\207\203\377T" \ - "mh\377\202Slg\377\1\257\274\272\377\306\333\343\342\377\1|\233\224\377" \ - "\221o\221\212\377\15\215\250\242\377\223\254\247\377\335\345\343\377" \ - "\223\254\247\377\317\332\330\377\375\375\375\377\360\363\363\377\243" \ - "\270\264\377\265\306\303\377\377\377\377\377\310\325\322\377\223\254" \ - "\247\377\200\236\227\377\212o\221\212\377\6p\221\212\377\223\254\247" \ - "\377\332\342\341\377\377\377\377\377\247\273\267\377\205\242\234\377" \ - "\213o\221\212\377\15\217\251\244\377\224\255\250\377\365\367\367\377" \ - "\361\364\364\377\224\255\250\377\306\323\321\377\374\375\375\377\363" \ - "\366\365\377\252\276\272\377\255\300\274\377\300\317\314\377\223\254" \ - "\247\377~\234\226\377\221o\221\212\377\1\256\301\276\377\300\333\343" \ - "\342\377\1\237\256\253\377\234Slg\377\2]up\377\321\333\331\377\306\333" \ - "\343\342\377\1|\233\224\377\220o\221\212\377\6y\230\222\377\223\254\247" \ - "\377\261\303\277\377\277\316\313\377\235\264\257\377\376\376\376\377" \ - "\202\377\377\377\377\6\317\332\330\377\224\255\250\377\362\366\365\377" \ - "\234\263\257\377\222\253\246\377r\223\214\377\212o\221\212\377\6p\221" \ - "\212\377\223\254\247\377\332\342\341\377\377\377\377\377\247\273\267" \ - "\377\205\242\234\377\213o\221\212\377\6\201\236\230\377\223\254\247\377" \ - "\312\326\323\377\310\324\322\377\227\257\252\377\372\373\373\377\202" \ - "\377\377\377\377\5\331\342\340\377\223\254\247\377\337\346\345\377\223" \ - "\254\247\377\215\247\242\377\221o\221\212\377\1\256\301\276\377\300\333" \ - "\343\342\377\1\237\256\253\377\234Slg\377\1\246\265\262\377\307\333\343" \ - "\342\377\1|\233\224\377\220o\221\212\377\6\210\244\236\377\223\254\247" \ - "\377\336\346\344\377\320\333\330\377\225\256\251\377\365\367\367\377" \ - "\202\377\377\377\377\5\275\315\312\377\236\264\260\377\327\341\337\377" \ - "\223\254\247\377\206\242\234\377\213o\221\212\377\6p\221\212\377\223" \ - "\254\247\377\332\342\341\377\377\377\377\377\247\273\267\377\205\242" \ - "\234\377\213o\221\212\377\6r\223\214\377\222\253\246\377\236\264\260" \ - "\377\327\340\336\377\223\254\247\377\354\360\357\377\202\377\377\377" \ - "\377\6\310\324\322\377\231\260\253\377\371\373\373\377\257\301\276\377" \ - "\223\254\247\377x\230\221\377\220o\221\212\377\1\256\301\276\377\300" \ - "\333\343\342\377\1\237\256\253\377\232Slg\377\2q\207\202\377\267\304" \ - "\302\377\310\333\343\342\377\1|\233\224\377\217o\221\212\377\16s\224" \ - "\215\377\222\253\246\377\240\266\262\377\376\376\376\377\371\372\372" \ - "\377\230\260\253\377\250\274\270\377\326\337\336\377\301\317\315\377" \ - "\226\256\251\377\310\325\322\377\253\277\273\377\223\254\247\377w\227" \ - "\220\377\213o\221\212\377\6p\221\212\377\223\254\247\377\332\342\341" \ - "\377\377\377\377\377\247\273\267\377\205\242\234\377\214o\221\212\377" \ - "\15\206\242\235\377\223\254\247\377\330\341\340\377\234\263\256\377\245" \ - "\272\265\377\324\336\334\377\305\322\317\377\230\260\253\377\301\317" \ - "\314\377\377\377\377\377\334\344\343\377\223\254\247\377\207\243\236" \ - "\377\220o\221\212\377\1\256\301\276\377\300\333\343\342\377\1\306\321" \ - "\317\377\206\254\271\267\377\3\202\225\221\377Slg\377f|x\377\216\254" \ - "\271\267\377\3\263\300\276\377\304\317\315\377\325\335\334\377\312\333" \ - "\343\342\377\1\255\300\274\377\205\244\271\265\377\1\251\275\271\377" \ - "\211\333\343\342\377\3\263\305\301\377\223\254\247\377\315\330\326\377" \ - "\202\377\377\377\377\10\341\350\346\377\257\301\275\377\223\254\247\377" \ - "\234\263\256\377\306\323\321\377\345\352\351\377\223\254\247\377\241" \ - "\266\262\377\214\333\343\342\377\6\331\340\337\377\223\254\247\377\332" \ - "\342\341\377\377\377\377\377\251\275\271\377\255\300\275\377\214\333" \ - "\343\342\377\16\311\325\323\377\223\254\247\377\256\300\275\377\344\352" \ - "\351\377\262\304\301\377\223\254\247\377\231\261\254\377\303\321\316" \ - "\377\365\367\367\377\377\377\377\377\375\376\375\377\237\265\260\377" \ - "\223\254\247\377\322\334\333\377\210\333\343\342\377\1\310\324\322\377" \ - "\206\244\271\265\377\1\304\322\320\377\307\333\343\342\377\3\233\253" \ - "\250\377Slg\377p\205\201\377\352\333\343\342\377\4\330\341\337\377\230" \ - "\257\253\377\226\256\251\377\366\370\370\377\204\377\377\377\377\6\361" \ - "\364\363\377\374\375\375\377\377\377\377\377\275\314\311\377\223\254" \ - "\247\377\277\315\313\377\214\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\215\333\343\342\377\6\237\265\261\377\223\254\247\377\354\361\360" \ - "\377\377\377\377\377\362\365\365\377\372\373\373\377\204\377\377\377" \ - "\377\3\313\327\324\377\223\254\247\377\265\306\302\377\327\333\343\342" \ - "\377\3\233\253\250\377Slg\377p\205\201\377\352\333\343\342\377\3\277" \ - "\315\313\377\223\254\247\377\274\313\310\377\207\377\377\377\377\4\370" \ - "\371\371\377\227\257\252\377\230\257\253\377\330\341\337\377\214\333" \ - "\343\342\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377" \ - "\377\377\251\275\271\377\255\300\275\377\215\333\343\342\377\3\275\314" \ - "\312\377\223\254\247\377\277\316\313\377\207\377\377\377\377\4\366\370" \ - "\367\377\225\256\251\377\230\260\253\377\331\341\340\377\326\333\343" \ - "\342\377\3\253\271\266\377t\211\205\377\213\235\231\377\352\333\343\342" \ - "\377\3\241\266\262\377\223\254\247\377\351\356\355\377\207\377\377\377" \ - "\377\3\317\332\330\377\223\254\247\377\263\305\301\377\215\333\343\342" \ - "\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377\377\377" \ - "\251\275\271\377\255\300\275\377\215\333\343\342\377\4\327\340\337\377" \ - "\227\257\252\377\227\257\253\377\371\372\372\377\207\377\377\377\377" \ - "\3\271\311\306\377\223\254\247\377\300\316\314\377\377\333\343\342\377" \ - "\303\333\343\342\377\3\312\326\324\377\223\254\247\377\252\275\271\377" \ - "\207\377\377\377\377\4\376\376\376\377\242\267\263\377\223\254\247\377" \ - "\321\333\332\377\215\333\343\342\377\6\331\340\337\377\223\254\247\377" \ - "\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275\377\216" \ - "\333\343\342\377\3\262\303\300\377\223\254\247\377\320\333\331\377\207" \ - "\377\377\377\377\3\347\354\353\377\223\254\247\377\242\267\263\377\377" \ - "\333\343\342\377\303\333\343\342\377\3\254\277\274\377\223\254\247\377" \ - "\330\341\337\377\207\377\377\377\377\3\340\347\346\377\223\254\247\377" \ - "\247\273\270\377\216\333\343\342\377\6\331\340\337\377\223\254\247\377" \ - "\330\341\337\377\377\377\377\377\250\274\270\377\255\300\275\377\216" \ - "\333\343\342\377\3\320\332\331\377\223\254\247\377\243\271\264\377\210" \ - "\377\377\377\377\3\250\274\270\377\223\254\247\377\314\327\325\377\377" \ - "\333\343\342\377\301\333\343\342\377\4\324\336\334\377\224\255\250\377" \ - "\233\262\256\377\374\374\374\377\207\377\377\377\377\3\263\304\301\377" \ - "\223\254\247\377\306\323\321\377\217\333\343\342\377\5\237\265\261\377" \ - "\252\275\271\377\322\334\332\377\223\254\247\377\275\314\311\377\217" \ - "\333\343\342\377\3\246\273\267\377\223\254\247\377\342\351\347\377\207" \ - "\377\377\377\377\3\325\337\335\377\223\254\247\377\256\300\275\377\343" \ - "\333\343\342\377\6\267\303\301\377\223\244\240\377|\220\214\377\213\235" \ - "\231\377\250\267\264\377\311\323\322\377\327\333\343\342\377\3\270\310" \ - "\305\377\223\254\247\377\306\323\321\377\207\377\377\377\377\4\361\364" \ - "\363\377\223\254\247\377\234\263\257\377\332\342\341\377\217\333\343" \ - "\342\377\1\307\323\321\377\202\223\254\247\377\2\240\265\261\377\332" \ - "\342\341\377\217\333\343\342\377\3\304\322\317\377\223\254\247\377\264" \ - "\306\302\377\207\377\377\377\377\4\373\374\374\377\232\262\255\377\225" \ - "\255\250\377\325\336\335\377\325\333\343\342\377\1\302\315\313\377\204" \ - "\222\243\240\377\1\253\271\267\377\205\333\343\342\377\2\323\334\333" \ - "\377\200\223\220\377\205Slg\377\2Uni\377\247\266\263\377\325\333\343" \ - "\342\377\4\332\342\341\377\233\262\255\377\224\254\247\377\362\365\364" \ - "\377\207\377\377\377\377\3\304\322\317\377\223\254\247\377\272\312\307" \ - "\377\221\333\343\342\377\3\327\337\336\377\326\337\335\377\331\340\337" \ - "\377\220\333\343\342\377\4\332\342\341\377\233\262\256\377\224\254\247" \ - "\377\362\365\364\377\207\377\377\377\377\3\304\322\317\377\223\254\247" \ - "\377\271\311\306\377\325\333\343\342\377\1\211\233\230\377\204Slg\377" \ - "\1\201\224\220\377\205\333\343\342\377\1\200\223\220\377\210Slg\377\1" \ - "\227\247\244\377\324\333\343\342\377\3\303\321\317\377\223\254\247\377" \ - "\265\306\302\377\207\377\377\377\377\4\373\374\374\377\232\261\255\377" \ - "\225\256\251\377\326\337\336\377\245\333\343\342\377\3\271\311\306\377" \ - "\223\254\247\377\306\323\320\377\207\377\377\377\377\4\361\364\363\377" \ - "\223\254\247\377\234\262\256\377\332\342\341\377\323\333\343\342\377" \ - "\2\330\341\340\377]up\377\203Slg\377\2[sn\377\227\247\244\377\204\333" \ - "\343\342\377\1\247\266\263\377\212Slg\377\1\305\317\316\377\323\333\343" \ - "\342\377\3\245\272\266\377\223\254\247\377\342\351\347\377\207\377\377" \ - "\377\377\3\325\337\335\377\223\254\247\377\256\301\275\377\246\333\343" \ - "\342\377\4\325\336\335\377\225\255\250\377\233\262\256\377\374\374\374" \ - "\377\207\377\377\377\377\3\263\304\301\377\223\254\247\377\305\322\320" \ - "\377\323\333\343\342\377\1\265\302\300\377\202Slg\377\3]up\377\263\300" \ - "\275\377\332\342\341\377\205\333\343\342\377\1i\177{\377\203Slg\377\5" \ - "Yrm\377\233\253\250\377\266\302\300\377\246\264\262\377x\214\210\377" \ - "\202Slg\377\1\204\227\223\377\322\333\343\342\377\3\317\332\330\377\223" \ - "\254\247\377\243\270\264\377\210\377\377\377\377\3\250\274\270\377\223" \ - "\254\247\377\315\330\326\377\247\333\343\342\377\3\255\300\274\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\340\347\346\377\223" \ - "\254\247\377\247\273\267\377\323\333\343\342\377\4\212\234\231\377Sl" \ - "g\377Voj\377\307\322\320\377\206\333\343\342\377\1\270\305\303\377\203" \ - "Slg\377\2Vni\377\303\316\314\377\203\333\343\342\377\5\331\342\341\377" \ - "\210\233\227\377Slg\377Umh\377\315\327\325\377\321\333\343\342\377\3" \ - "\261\303\277\377\223\254\247\377\321\333\331\377\207\377\377\377\377" \ - "\3\347\354\353\377\223\254\247\377\243\270\264\377\250\333\343\342\377" \ - "\3\314\327\325\377\223\254\247\377\252\275\271\377\207\377\377\377\377" \ - "\4\376\376\376\377\242\267\263\377\223\254\247\377\320\333\331\377\322" \ - "\333\343\342\377\3u\211\205\377Slg\377\221\242\237\377\207\333\343\342" \ - "\377\1\204\227\223\377\203Slg\377\1\221\243\237\377\205\333\343\342\377" \ - "\4\317\331\327\377Voj\377Slg\377\266\303\301\377\320\333\343\342\377" \ - "\4\327\340\336\377\226\256\252\377\227\257\253\377\371\372\372\377\207" \ - "\377\377\377\377\3\271\311\306\377\223\254\247\377\301\317\315\377\251" \ - "\333\343\342\377\3\241\267\263\377\223\254\247\377\351\356\355\377\207" \ - "\377\377\377\377\3\317\332\330\377\223\254\247\377\262\304\300\377\322" \ - "\333\343\342\377\3dzv\377Slg\377\274\307\306\377\206\333\343\342\377" \ - "\2\331\341\340\377\\to\377\202Slg\377\2Tmh\377\315\327\325\377\206\333" \ - "\343\342\377\3z\216\212\377Slg\377\246\264\262\377\320\333\343\342\377" \ - "\3\274\313\311\377\223\254\247\377\277\316\313\377\207\377\377\377\377" \ - "\4\365\367\367\377\225\255\251\377\231\260\254\377\331\341\340\377\251" \ - "\333\343\342\377\3\300\316\314\377\223\254\247\377\273\313\310\377\207" \ - "\377\377\377\377\1\370\371\371\377\202\227\257\252\377\1\327\340\337" \ - "\377\320\333\343\342\377\4\331\341\340\377Umh\377Slg\377\317\330\327" \ - "\377\206\333\343\342\377\1\271\306\304\377\203Slg\377\1z\216\212\377" \ - "\207\333\343\342\377\3\213\235\231\377Slg\377\225\246\243\377\320\333" \ - "\343\342\377\3\236\265\260\377\223\254\247\377\355\361\360\377\207\377" \ - "\377\377\377\3\313\327\324\377\223\254\247\377\266\306\303\377\252\333" \ - "\343\342\377\4\331\341\340\377\230\260\253\377\226\256\251\377\366\370" \ - "\370\377\207\377\377\377\377\3\275\314\311\377\223\254\247\377\276\315" \ - "\312\377\320\333\343\342\377\1\324\334\333\377\202Slg\377\1\325\336\335" \ - "\377\206\333\343\342\377\1\216\240\235\377\203Slg\377\1\255\272\270\377" \ - "\207\333\343\342\377\3\227\247\244\377Slg\377\210\233\227\377\317\333" \ - "\343\342\377\3\310\324\322\377\223\254\247\377\256\301\275\377\207\377" \ - "\377\377\377\4\375\376\375\377\237\265\260\377\224\254\247\377\323\334" \ - "\333\377\253\333\343\342\377\3\264\305\302\377\223\254\247\377\315\330" \ - "\326\377\207\377\377\377\377\3\353\357\356\377\223\254\247\377\237\265" \ - "\261\377\321\333\343\342\377\3\\to\377Slg\377\310\322\321\377\205\333" \ - "\343\342\377\2\330\341\340\377_vr\377\202Slg\377\2Xpk\377\325\336\335" \ - "\377\207\333\343\342\377\3\214\235\232\377Slg\377\216\237\234\377\317" \ - "\333\343\342\377\3\252\275\271\377\223\254\247\377\333\343\342\377\207" \ - "\377\377\377\377\3\334\344\343\377\223\254\247\377\252\275\272\377\254" \ - "\333\343\342\377\4\322\334\332\377\223\254\247\377\240\266\262\377\376" \ - "\376\376\377\207\377\377\377\377\3\254\277\273\377\223\254\247\377\311" \ - "\325\323\377\320\333\343\342\377\3n\203\177\377Slg\377\257\274\272\377" \ - "\205\333\343\342\377\1\261\277\274\377\203Slg\377\1\200\223\220\377\210" \ - "\333\343\342\377\3{\217\213\377Slg\377\227\247\244\377\316\333\343\342" \ - "\377\4\323\334\333\377\223\254\247\377\236\265\260\377\375\375\375\377" \ - "\207\377\377\377\377\3\257\301\276\377\223\254\247\377\310\324\322\377" \ - "\255\333\343\342\377\3\251\274\271\377\223\254\247\377\336\346\344\377" \ - "\207\377\377\377\377\3\331\342\340\377\223\254\247\377\253\276\273\377" \ - "\320\333\343\342\377\3\201\224\220\377Slg\377v\212\206\377\204\333\343" \ - "\342\377\2\330\340\337\377i\200{\377\203Slg\377\1\260\276\273\377\207" \ - "\333\343\342\377\4\325\335\334\377^uq\377Slg\377\253\271\267\377\316" \ - "\333\343\342\377\3\265\306\303\377\223\254\247\377\312\326\324\377\207" \ - "\377\377\377\377\3\356\361\361\377\223\254\247\377\236\265\260\377\256" \ - "\333\343\342\377\3\307\323\321\377\223\254\247\377\261\303\277\377\207" \ - "\377\377\377\377\4\374\375\375\377\235\263\257\377\224\255\250\377\323" \ - "\335\334\377\317\333\343\342\377\1\263\300\275\377\202Slg\377\5\206\231" \ - "\225\377\314\326\324\377\333\343\342\377\315\327\325\377\177\222\217" \ - "\377\203Slg\377\2czu\377\331\341\340\377\207\333\343\342\377\1\234\253" \ - "\251\377\202Slg\377\1\303\316\314\377\315\333\343\342\377\4\331\341\340" \ - "\377\231\260\254\377\225\255\251\377\365\367\367\377\207\377\377\377" \ - "\377\3\300\317\314\377\223\254\247\377\275\314\311\377\256\333\343\342" \ - "\377\4\332\342\341\377\235\264\257\377\223\254\247\377\357\362\362\377" \ - "\207\377\377\377\377\3\310\325\322\377\223\254\247\377\267\307\304\377" \ - "\320\333\343\342\377\1m\202~\377\203Slg\377\1Xql\377\205Slg\377\1\235" \ - "\254\252\377\207\333\343\342\377\4\241\261\256\377Voj\377Slg\377czu\377" \ - "\316\333\343\342\377\3\301\317\314\377\223\254\247\377\271\311\306\377" \ - "\207\377\377\377\377\4\371\373\372\377\230\260\253\377\226\256\252\377" \ - "\327\340\336\377\257\333\343\342\377\3\273\313\310\377\223\254\247\377" \ - "\302\320\315\377\207\377\377\377\377\4\363\366\366\377\224\255\250\377" \ - "\232\261\254\377\331\341\340\377\317\333\343\342\377\2\265\302\300\377" \ - "Voj\377\207Slg\377\2o\205\201\377\330\340\337\377\204\333\343\342\377" \ - "\3\274\307\306\377\210\233\227\377k\201}\377\203Slg\377\1\221\243\237" \ - "\377\316\333\343\342\377\3\243\270\264\377\223\254\247\377\346\354\352" \ - "\377\207\377\377\377\377\3\322\334\332\377\223\254\247\377\261\303\277" \ - "\377\260\333\343\342\377\4\326\337\336\377\226\256\251\377\231\261\254" \ - "\377\372\373\373\377\207\377\377\377\377\3\267\307\304\377\223\254\247" \ - "\377\302\320\316\377\320\333\343\342\377\2\274\310\306\377_wr\377\205" \ - "Slg\377\2j\200|\377\311\324\322\377\205\333\343\342\377\1\226\247\244" \ - "\377\205Slg\377\1\300\313\311\377\315\333\343\342\377\3\314\330\326\377" \ - "\223\254\247\377\247\273\267\377\210\377\377\377\377\3\244\271\265\377" \ - "\223\254\247\377\317\332\330\377\261\333\343\342\377\3\260\302\276\377" \ - "\223\254\247\377\324\336\334\377\207\377\377\377\377\3\344\352\351\377" \ - "\223\254\247\377\244\271\265\377\321\333\343\342\377\7\316\330\326\377" \ - "\250\266\264\377\214\236\233\377v\213\207\377\206\230\225\377\244\263" \ - "\260\377\330\341\340\377\206\333\343\342\377\1\243\262\257\377\204l\201" \ - "}\377\1x\215\211\377\316\333\343\342\377\3\256\301\275\377\223\254\247" \ - "\377\325\336\334\377\207\377\377\377\377\3\343\351\350\377\223\254\247" \ - "\377\245\272\266\377\262\333\343\342\377\3\316\331\327\377\223\254\247" \ - "\377\246\273\267\377\210\377\377\377\377\3\245\272\266\377\223\254\247" \ - "\377\316\331\327\377\377\333\343\342\377\261\333\343\342\377\4\325\337" \ - "\335\377\225\255\251\377\232\261\254\377\373\374\373\377\207\377\377" \ - "\377\377\3\266\307\303\377\223\254\247\377\303\321\317\377\263\333\343" \ - "\342\377\3\244\271\265\377\223\254\247\377\345\353\352\377\207\377\377" \ - "\377\377\3\322\335\333\377\223\254\247\377\260\302\276\377\377\333\343" \ - "\342\377\261\333\343\342\377\3\272\311\307\377\223\254\247\377\303\321" \ - "\316\377\207\377\377\377\377\4\363\366\365\377\224\255\250\377\232\262" \ - "\255\377\332\342\341\377\263\333\343\342\377\3\302\320\316\377\223\254" \ - "\247\377\270\310\305\377\207\377\377\377\377\4\372\373\373\377\231\260" \ - "\254\377\226\256\251\377\326\337\336\377\377\333\343\342\377\257\333" \ - "\343\342\377\4\332\342\341\377\234\263\256\377\223\254\247\377\360\363" \ - "\362\377\207\377\377\377\377\3\307\324\321\377\223\254\247\377\270\310" \ - "\305\377\264\333\343\342\377\4\331\341\340\377\232\261\254\377\225\255" \ - "\250\377\364\367\366\377\207\377\377\377\377\3\301\317\314\377\223\254" \ - "\247\377\273\313\310\377\314\333\343\342\377\3\277\312\310\377\237\256" \ - "\253\377\254\272\270\377\337\333\343\342\377\3\305\322\320\377\223\254" \ - "\247\377\262\304\300\377\207\377\377\377\377\4\374\375\374\377\234\263" \ - "\256\377\224\255\250\377\324\336\334\377\265\333\343\342\377\3\266\307" \ - "\304\377\223\254\247\377\311\325\323\377\207\377\377\377\377\4\356\362" \ - "\361\377\223\254\247\377\235\264\257\377\332\342\341\377\313\333\343" \ - "\342\377\3\233\253\250\377Slg\377p\205\201\377\337\333\343\342\377\3" \ - "\247\273\267\377\223\254\247\377\337\346\345\377\207\377\377\377\377" \ - "\3\330\341\337\377\223\254\247\377\254\277\274\377\266\333\343\342\377" \ - "\4\323\335\334\377\224\255\250\377\235\264\257\377\375\375\375\377\207" \ - "\377\377\377\377\3\260\302\276\377\223\254\247\377\307\323\321\377\313" \ - "\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\336\333\343\342" \ - "\377\4\321\333\331\377\223\254\247\377\241\266\262\377\376\376\376\377" \ - "\207\377\377\377\377\3\253\276\273\377\223\254\247\377\312\326\324\377" \ - "\267\333\343\342\377\3\253\276\272\377\223\254\247\377\333\343\341\377" \ - "\207\377\377\377\377\3\335\345\343\377\223\254\247\377\251\274\271\377" \ - "\313\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\336\333\343" \ - "\342\377\3\263\304\301\377\223\254\247\377\315\331\326\377\207\377\377" \ - "\377\377\3\351\356\355\377\223\254\247\377\241\266\262\377\270\333\343" \ - "\342\377\3\311\325\323\377\223\254\247\377\254\277\273\377\207\377\377" \ - "\377\377\4\375\376\375\377\240\265\261\377\223\254\247\377\321\334\332" \ - "\377\312\333\343\342\377\3\233\253\250\377Slg\377[sn\377\223x\215\211" \ - "\377\5z\216\212\377\202\225\221\377\214\236\233\377\246\265\262\377\310" \ - "\323\321\377\305\333\343\342\377\4\330\340\337\377\227\257\252\377\226" \ - "\256\252\377\367\371\370\377\207\377\377\377\377\3\274\313\310\377\223" \ - "\254\247\377\277\315\313\377\271\333\343\342\377\3\237\265\261\377\223" \ - "\254\247\377\353\360\357\377\207\377\377\377\377\3\314\327\325\377\223" \ - "\254\247\377\264\305\302\377\312\333\343\342\377\1\233\253\250\377\232" \ - "Slg\377\2x\214\210\377\275\311\307\377\303\333\343\342\377\3\276\315" \ - "\312\377\223\254\247\377\274\313\310\377\207\377\377\377\377\4\367\371" \ - "\370\377\226\256\251\377\230\257\253\377\330\341\337\377\271\333\343" \ - "\342\377\3\275\314\312\377\223\254\247\377\276\315\312\377\207\377\377" \ - "\377\377\4\366\370\370\377\225\256\251\377\230\260\253\377\330\341\340" \ - "\377\311\333\343\342\377\1\233\253\250\377\233Slg\377\2Tmh\377\237\256" \ - "\253\377\302\333\343\342\377\3\240\266\262\377\223\254\247\377\351\356" \ - "\355\377\207\377\377\377\377\3\315\330\326\377\223\254\247\377\263\305" \ - "\301\377\272\333\343\342\377\1\327\340\337\377\202\227\257\252\377\1" \ - "\370\371\371\377\207\377\377\377\377\3\272\312\307\377\223\254\247\377" \ - "\300\316\314\377\311\333\343\342\377\1\233\253\250\377\235Slg\377\1\243" \ - "\262\257\377\300\333\343\342\377\3\312\326\324\377\223\254\247\377\252" \ - "\276\272\377\207\377\377\377\377\4\376\376\376\377\240\266\262\377\223" \ - "\254\247\377\321\333\332\377\273\333\343\342\377\3\262\303\300\377\223" \ - "\254\247\377\317\332\330\377\207\377\377\377\377\3\350\355\354\377\223" \ - "\254\247\377\241\267\263\377\311\333\343\342\377\4\321\332\331\377\305" \ - "\320\316\377\305\317\316\377\207\231\226\377\202Slg\377\5j\200|\377\224" \ - "\245\242\377\244\263\260\377\264\300\276\377\302\315\313\377\202\305" \ - "\320\316\377\16\274\307\306\377\254\272\270\377\235\255\252\377\207\232" \ - "\226\377Xql\377Slg\377^vq\377\257\274\272\377\305\320\316\377\304\316" \ - "\315\377\266\303\301\377\247\265\263\377\227\250\245\377s\210\203\377" \ - "\203Slg\377\2Vni\377\304\317\315\377\277\333\343\342\377\3\254\277\273" \ - "\377\223\254\247\377\330\341\337\377\207\377\377\377\377\3\336\346\344" \ - "\377\223\254\247\377\247\273\270\377\274\333\343\342\377\4\320\332\331" \ - "\377\223\254\247\377\242\270\263\377\376\376\376\377\207\377\377\377" \ - "\377\3\251\275\271\377\223\254\247\377\313\327\325\377\311\333\343\342" \ - "\377\5\327\340\337\377y\215\211\377Slg\377q\207\202\377\266\302\300\377" \ - "\213\333\343\342\377\5\321\333\331\377\233\253\250\377Yrm\377Wpk\377" \ - "\255\273\271\377\205\333\343\342\377\2\271\305\303\377r\207\203\377\202" \ - "Slg\377\1\203\226\222\377\276\333\343\342\377\4\324\336\334\377\224\255" \ - "\250\377\234\263\256\377\374\375\374\377\207\377\377\377\377\3\261\303" \ - "\277\377\223\254\247\377\306\323\321\377\275\333\343\342\377\3\246\273" \ - "\267\377\223\254\247\377\340\347\346\377\207\377\377\377\377\3\326\340" \ - "\336\377\223\254\247\377\255\300\274\377\311\333\343\342\377\4\211\234" \ - "\230\377Slg\377n\204\200\377\325\336\335\377\216\333\343\342\377\4\263" \ - "\300\275\377Tlg\377Wpk\377\300\314\312\377\205\333\343\342\377\5\325" \ - "\335\334\377f}x\377Slg\377Umh\377\324\334\333\377\275\333\343\342\377" \ - "\3\267\310\305\377\223\254\247\377\307\324\321\377\207\377\377\377\377" \ - "\4\357\363\362\377\223\254\247\377\234\263\257\377\332\342\341\377\275" \ - "\333\343\342\377\3\304\322\317\377\223\254\247\377\263\304\301\377\207" \ - "\377\377\377\377\4\373\374\374\377\233\262\255\377\225\255\250\377\325" \ - "\336\335\377\307\333\343\342\377\4\275\311\307\377Slg\377\\so\377\316" \ - "\327\326\377\220\333\343\342\377\3\227\250\245\377Slg\377p\206\202\377" \ - "\206\333\343\342\377\4\276\312\310\377Tlg\377Slg\377\266\302\300\377" \ - "\274\333\343\342\377\4\331\342\341\377\232\261\255\377\224\254\247\377" \ - "\362\365\364\377\207\377\377\377\377\3\302\320\315\377\223\254\247\377" \ - "\272\312\307\377\276\333\343\342\377\4\332\342\341\377\233\262\256\377" \ - "\223\254\247\377\361\364\363\377\207\377\377\377\377\3\305\322\320\377" \ - "\223\254\247\377\271\311\306\377\307\333\343\342\377\3\211\233\230\377" \ - "Slg\377|\217\214\377\221\333\343\342\377\1\304\317\315\377\202Slg\377" \ - "\1\305\317\316\377\206\333\343\342\377\3f}x\377Slg\377\235\254\252\377" \ - "\274\333\343\342\377\3\303\320\316\377\223\254\247\377\265\306\302\377" \ - "\207\377\377\377\377\4\372\373\373\377\231\261\254\377\225\255\251\377" \ - "\326\337\336\377\277\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\304\322\317\377\207\377\377\377\377\4\361\364\363\377\223\254\247\377" \ - "\233\262\256\377\332\342\341\377\306\333\343\342\377\3e{w\377Slg\377" \ - "\227\250\245\377\221\333\343\342\377\4\331\342\341\377Xql\377Slg\377" \ - "\241\261\256\377\206\333\343\342\377\3}\221\215\377Slg\377\221\242\237" \ - "\377\274\333\343\342\377\3\245\271\265\377\223\254\247\377\343\351\350" \ - "\377\207\377\377\377\377\3\324\336\334\377\223\254\247\377\256\301\275" \ - "\377\300\333\343\342\377\4\325\336\335\377\225\255\250\377\232\262\255" \ - "\377\373\374\374\377\207\377\377\377\377\3\264\305\301\377\223\254\247" \ - "\377\304\321\317\377\305\333\343\342\377\4\332\342\341\377Vni\377Slg" \ - "\377\243\262\257\377\222\333\343\342\377\3czu\377Slg\377\223\244\241" \ - "\377\206\333\343\342\377\3\224\244\241\377Slg\377\210\233\227\377\273" \ - "\333\343\342\377\3\316\331\330\377\223\254\247\377\244\271\264\377\210" \ - "\377\377\377\377\3\246\273\267\377\223\254\247\377\315\330\326\377\301" \ - "\333\343\342\377\4\255\300\274\377\222\253\246\377\315\330\326\377\376" \ - "\376\376\377\206\377\377\377\377\3\341\350\346\377\223\254\247\377\246" \ - "\272\266\377\305\333\343\342\377\1\322\333\332\377\202Slg\377\1\205\230" \ - "\224\377\221\333\343\342\377\1\316\327\326\377\202Slg\377\1\211\234\230" \ - "\377\206\333\343\342\377\3\220\242\236\377Slg\377\222\243\240\377\273" \ - "\333\343\342\377\3\260\302\277\377\223\254\247\377\321\334\332\377\207" \ - "\377\377\377\377\3\345\353\352\377\223\254\247\377\243\270\264\377\302" \ - "\333\343\342\377\16\314\327\325\377\223\254\246\377\223\254\247\377\226" \ - "\256\251\377\244\271\265\377\264\305\302\377\303\321\316\377\323\335" \ - "\333\377\342\351\350\377\361\365\364\377\375\375\375\377\242\270\263" \ - "\377\223\254\247\377\317\332\330\377\304\333\343\342\377\4\332\342\341" \ - "\377Vni\377Slg\377f|x\377\221\333\343\342\377\1\256\274\271\377\202S" \ - "lg\377\1\226\246\243\377\206\333\343\342\377\3\202\225\221\377Slg\377" \ - "\237\257\254\377\272\333\343\342\377\4\327\337\336\377\226\256\251\377" \ - "\230\260\253\377\371\372\372\377\207\377\377\377\377\3\270\310\305\377" \ - "\223\254\247\377\301\317\315\377\303\333\343\342\377\15\232\262\255\377" \ - "\223\254\246\377\325\336\335\377\331\342\340\377\312\326\324\377\273" \ - "\313\310\377\254\277\273\377\235\263\257\377\223\254\247\377\226\256" \ - "\251\377\234\263\256\377\222\254\246\377\256\300\274\377\305\333\343" \ - "\342\377\1i\200{\377\202Slg\377\1\224\244\241\377\217\333\343\342\377" \ - "\2\313\325\323\377czu\377\202Slg\377\1\253\271\266\377\205\333\343\342" \ - "\377\4\331\341\340\377czu\377Slg\377\254\272\270\377\272\333\343\342" \ - "\377\3\274\313\310\377\223\254\247\377\277\316\313\377\207\377\377\377" \ - "\377\4\364\367\366\377\225\255\250\377\231\260\254\377\331\341\340\377" \ - "\303\333\343\342\377\3\275\313\311\377\222\254\246\377\257\301\276\377" \ - "\205\377\377\377\377\3\372\373\373\377\353\360\357\377\327\340\335\377" \ - "\202\224\255\250\377\3\327\340\337\377\331\342\341\377\322\334\333\377" \ - "\302\333\343\342\377\1\226\247\244\377\203Slg\377\2\231\252\247\377\330" \ - "\341\340\377\214\333\343\342\377\2\310\323\321\377f|x\377\202Slg\377" \ - "\2Voj\377\323\334\332\377\205\333\343\342\377\1\253\271\266\377\202S" \ - "lg\377\1\272\306\304\377\272\333\343\342\377\3\236\264\260\377\223\254" \ - "\247\377\355\361\360\377\207\377\377\377\377\3\311\325\323\377\223\254" \ - "\247\377\266\306\303\377\304\333\343\342\377\4\331\341\340\377\224\255" \ - "\250\377\224\254\247\377\366\370\367\377\207\377\377\377\377\5\263\305" \ - "\301\377\222\254\246\377\266\306\302\377\232\262\254\377\240\266\262" \ - "\377\302\333\343\342\377\2\314\325\324\377Xql\377\203Slg\377\4_wr\377" \ - "\221\243\237\377\304\316\315\377\330\341\340\377\206\333\343\342\377" \ - "\4\322\333\332\377\254\271\267\377w\214\210\377Tlg\377\203Slg\377\1\211" \ - "\233\230\377\205\333\343\342\377\5\263\300\276\377Xql\377Slg\377Xql\377" \ - "\326\336\335\377\271\333\343\342\377\3\310\324\322\377\223\254\247\377" \ - "\256\301\275\377\207\377\377\377\377\4\375\375\375\377\235\264\257\377" \ - "\223\254\247\377\323\334\333\377\305\333\343\342\377\3\256\300\276\377" \ - "\223\253\246\377\305\322\320\377\207\377\377\377\377\6\353\360\357\377" \ - "\222\254\247\377\231\261\255\377\241\267\262\377\223\254\247\377\312" \ - "\326\324\377\302\333\343\342\377\1\237\256\253\377\206Slg\377\7Tlg\377" \ - "^vq\377l\202~\377y\215\211\377s\210\203\377e|w\377Xpk\377\206Slg\377" \ - "\2_wr\377\321\333\331\377\203\333\343\342\377\2\255\272\270\377q\207" \ - "\202\377\203Slg\377\1~\222\216\377\272\333\343\342\377\3\251\275\271" \ - "\377\223\254\247\377\334\344\342\377\207\377\377\377\377\3\333\343\341" \ - "\377\223\254\247\377\252\275\271\377\306\333\343\342\377\4\322\334\332" \ - "\377\223\253\246\377\231\260\253\377\375\376\375\377\207\377\377\377" \ - "\377\5\242\267\263\377\222\253\246\377\265\305\302\377\223\254\247\377" \ - "\254\277\273\377\303\333\343\342\377\1\220\242\236\377\221Slg\377\2_" \ - "vr\377\304\316\315\377\204\333\343\342\377\1}\220\215\377\204Slg\377" \ - "\1\251\267\265\377\271\333\343\342\377\4\322\334\333\377\223\254\247" \ - "\377\236\265\260\377\375\376\375\377\207\377\377\377\377\3\255\300\274" \ - "\377\223\254\247\377\310\324\322\377\307\333\343\342\377\3\241\266\263" \ - "\377\223\253\247\377\332\342\341\377\203\377\377\377\377\2\371\372\372" \ - "\377\364\367\366\377\202\377\377\377\377\6\326\340\336\377\222\254\246" \ - "\377\243\270\263\377\230\260\253\377\225\255\250\377\324\336\334\377" \ - "\303\333\343\342\377\2\242\261\256\377Yql\377\216Slg\377\2s\210\204\377" \ - "\310\322\321\377\205\333\343\342\377\1\235\255\252\377\204\201\224\220" \ - "\377\1\321\333\331\377\271\333\343\342\377\3\265\306\302\377\223\254" \ - "\247\377\312\326\324\377\207\377\377\377\377\3\354\360\357\377\223\254" \ - "\247\377\236\265\260\377\310\333\343\342\377\3\306\322\320\377\222\253" \ - "\246\377\244\271\266\377\203\377\377\377\377\2\244\271\264\377\272\312" \ - "\307\377\202\377\377\377\377\6\374\375\375\377\227\257\252\377\223\254" \ - "\246\377\260\303\277\377\223\254\247\377\267\310\305\377\304\333\343" \ - "\342\377\3\313\325\323\377\212\234\231\377Yrm\377\212Slg\377\3n\203\177" \ - "\377\247\266\263\377\332\342\341\377\304\333\343\342\377\4\331\341\340" \ - "\377\230\260\253\377\225\255\251\377\365\367\367\377\207\377\377\377" \ - "\377\3\277\315\312\377\223\254\247\377\275\314\311\377\310\333\343\342" \ - "\377\4\332\342\341\377\227\257\253\377\223\253\246\377\356\361\361\377" \ - "\202\377\377\377\377\3\312\326\324\377\226\256\251\377\367\370\370\377" \ - "\202\377\377\377\377\6\300\316\314\377\223\253\246\377\226\256\250\377" \ - "\223\254\247\377\233\261\255\377\332\342\341\377\305\333\343\342\377" \ - "\13\324\335\334\377\261\277\274\377\224\244\241\377|\217\214\377r\207" \ - "\203\377j\200|\377n\203\177\377v\213\207\377\205\227\224\377\242\261" \ - "\256\377\303\316\314\377\307\333\343\342\377\3\301\317\314\377\223\254" \ - "\247\377\271\311\306\377\207\377\377\377\377\4\370\372\371\377\227\257" \ - "\252\377\226\256\252\377\327\340\336\377\311\333\343\342\377\3\267\310" \ - "\305\377\223\253\246\377\266\307\304\377\202\377\377\377\377\3\365\367" \ - "\367\377\225\256\251\377\315\330\326\377\202\377\377\377\377\6\364\366" \ - "\366\377\223\254\246\377\223\253\247\377\235\263\260\377\223\254\247" \ - "\377\303\321\317\377\377\333\343\342\377\230\333\343\342\377\3\242\267" \ - "\263\377\223\254\247\377\346\354\353\377\207\377\377\377\377\3\320\333" \ - "\331\377\223\254\247\377\261\303\277\377\312\333\343\342\377\4\326\337" \ - "\336\377\223\254\247\377\224\255\250\377\371\373\372\377\202\377\377" \ - "\377\377\3\271\311\306\377\241\266\262\377\376\376\376\377\202\377\377" \ - "\377\377\5\253\277\273\377\223\253\247\377\263\305\302\377\223\254\247" \ - "\377\245\271\265\377\377\333\343\342\377\227\333\343\342\377\3\314\330" \ - "\326\377\223\254\247\377\247\273\267\377\207\377\377\377\377\4\376\376" \ - "\376\377\243\270\264\377\223\254\247\377\317\332\330\377\313\333\343" \ - "\342\377\3\251\274\270\377\222\254\247\377\315\330\325\377\202\377\377" \ - "\377\377\3\346\354\353\377\223\254\247\377\337\346\345\377\202\377\377" \ - "\377\377\2\344\352\350\377\223\254\246\377\202\235\263\257\377\2\223" \ - "\254\247\377\316\331\330\377\377\333\343\342\377\226\333\343\342\377" \ - "\3\256\300\275\377\223\254\247\377\325\337\335\377\207\377\377\377\377" \ - "\3\341\350\347\377\223\254\247\377\245\272\266\377\314\333\343\342\377" \ - "\3\316\331\327\377\222\253\246\377\234\263\256\377\203\377\377\377\377" \ - "\2\247\274\270\377\261\303\300\377\203\377\377\377\377\5\234\263\256" \ - "\377\223\253\246\377\263\305\301\377\223\254\247\377\260\303\277\377" \ - "\322\333\343\342\377\1\304\317\315\377\202\201\224\220\377\277\333\343" \ - "\342\377\4\325\336\335\377\225\255\250\377\232\261\255\377\373\374\373" \ - "\377\207\377\377\377\377\3\264\305\302\377\223\254\247\377\303\321\317" \ - "\377\315\333\343\342\377\3\235\263\260\377\223\253\246\377\342\351\347" \ - "\377\202\377\377\377\377\3\325\336\334\377\223\254\247\377\360\363\363" \ - "\377\202\377\377\377\377\5\315\330\326\377\223\253\246\377\247\274\267" \ - "\377\227\256\251\377\253\276\273\377\322\333\343\342\377\1\270\305\303" \ - "\377\202Slg\377\277\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\303\321\316\377\207\377\377\377\377\4\361\364\364\377\224\254\247\377" \ - "\232\262\255\377\332\342\341\377\315\333\343\342\377\3\300\317\315\377" \ - "\223\254\246\377\253\277\272\377\202\377\377\377\377\3\373\374\374\377" \ - "\232\262\255\377\303\321\316\377\202\377\377\377\377\4\372\373\373\377" \ - "\225\255\251\377\224\254\247\377\321\333\332\377\323\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\276\333\343\342\377\4\332\342\341\377\234" \ - "\263\256\377\223\254\247\377\360\363\363\377\207\377\377\377\377\3\305" \ - "\323\320\377\223\254\247\377\270\310\305\377\316\333\343\342\377\4\331" \ - "\341\340\377\226\255\251\377\223\253\247\377\363\366\365\377\202\377" \ - "\377\377\377\3\304\321\317\377\232\262\255\377\373\374\374\377\202\377" \ - "\377\377\377\3\267\310\304\377\222\253\246\377\270\310\304\377\306\333" \ - "\343\342\377\2\317\331\327\377\301\314\312\377\213\275\310\306\377\1" \ - "\242\261\256\377\202Slg\377\276\333\343\342\377\3\305\322\320\377\223" \ - "\254\247\377\262\304\300\377\207\377\377\377\377\4\374\374\374\377\233" \ - "\262\255\377\224\255\250\377\324\336\334\377\317\333\343\342\377\3\261" \ - "\303\300\377\223\253\246\377\276\315\313\377\202\377\377\377\377\3\360" \ - "\364\363\377\223\254\247\377\325\337\335\377\202\377\377\377\377\4\357" \ - "\362\362\377\222\253\246\377\231\260\253\377\332\342\341\377\301\333" \ - "\343\342\377\4\305\320\316\377\204\227\223\377e|w\377Voj\377\220Slg\377" \ - "\276\333\343\342\377\3\247\273\267\377\223\254\247\377\340\347\345\377" \ - "\207\377\377\377\377\3\327\340\336\377\223\254\247\377\254\277\274\377" \ - "\320\333\343\342\377\4\323\335\334\377\223\253\247\377\226\256\252\377" \ - "\374\375\374\377\202\377\377\377\377\2\262\304\301\377\250\274\270\377" \ - "\202\377\377\377\377\4\354\360\357\377\232\262\255\377\223\253\247\377" \ - "\306\323\321\377\277\333\343\342\377\3\325\335\334\377\202\225\221\377" \ - "Tlg\377\223Slg\377\275\333\343\342\377\4\320\333\331\377\223\254\247" \ - "\377\241\267\262\377\376\376\376\377\207\377\377\377\377\3\251\275\271" \ - "\377\223\254\247\377\312\326\324\377\321\333\343\342\377\3\244\271\264" \ - "\377\223\254\247\377\325\337\335\377\202\377\377\377\377\10\340\347\346" \ - "\377\223\254\247\377\312\327\324\377\255\300\274\377\226\256\251\377" \ - "\255\277\274\377\222\254\247\377\250\274\270\377\277\333\343\342\377" \ - "\1\207\232\226\377\225Slg\377\275\333\343\342\377\3\262\304\300\377\223" \ - "\254\247\377\316\331\327\377\207\377\377\377\377\3\350\355\354\377\223" \ - "\254\247\377\240\266\262\377\322\333\343\342\377\16\311\325\323\377\223" \ - "\254\246\377\241\266\263\377\377\377\377\377\364\367\366\377\310\325" \ - "\322\377\227\257\252\377\234\263\256\377\312\327\324\377\365\370\367" \ - "\377\376\376\376\377\240\266\261\377\223\254\247\377\321\333\332\377" \ - "\275\333\343\342\377\1\257\275\272\377\205Slg\377\4Voj\377axt\377k\201" \ - "|\377t\211\205\377\212x\215\211\377\1o\204\200\377\202Slg\377\274\333" \ - "\343\342\377\4\330\340\337\377\227\257\252\377\226\256\252\377\367\371" \ - "\371\377\207\377\377\377\377\3\273\312\307\377\223\254\247\377\277\315" \ - "\313\377\323\333\343\342\377\7\231\260\254\377\223\253\247\377\260\302" \ - "\276\377\225\256\251\377\257\301\276\377\334\344\343\377\376\376\376" \ - "\377\203\377\377\377\377\3\315\330\326\377\223\254\247\377\264\305\302" \ - "\377\275\333\343\342\377\1\201\225\221\377\203Slg\377\3~\222\216\377" \ - "\261\277\274\377\327\340\337\377\215\333\343\342\377\1\270\305\303\377" \ - "\202Slg\377\274\333\343\342\377\3\276\315\312\377\223\254\247\377\274" \ - "\314\311\377\207\377\377\377\377\4\366\370\370\377\225\256\251\377\230" \ - "\257\253\377\330\341\337\377\323\333\343\342\377\4\273\312\310\377\222" \ - "\254\246\377\244\271\265\377\356\362\361\377\206\377\377\377\377\4\366" \ - "\370\370\377\226\256\251\377\230\257\253\377\330\341\340\377\274\333" \ - "\343\342\377\1i\200{\377\202Slg\377\1\204\226\223\377\220\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\274\333\343\342\377\3\237\265\261\377" \ - "\223\254\247\377\352\357\356\377\207\377\377\377\377\3\314\330\325\377" \ - "\223\254\247\377\263\304\301\377\324\333\343\342\377\4\327\340\337\377" \ - "\227\257\252\377\226\256\252\377\367\371\371\377\207\377\377\377\377" \ - "\3\273\313\310\377\223\254\247\377\277\316\313\377\273\333\343\342\377" \ - "\2\330\340\337\377Uni\377\202Slg\377\1\321\333\331\377\220\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\273\333\343\342\377\3\312\326\324\377" \ - "\223\254\247\377\253\276\273\377\207\377\377\377\377\4\376\376\376\377" \ - "\240\265\261\377\223\254\247\377\321\333\332\377\325\333\343\342\377" \ - "\3\262\303\300\377\223\254\247\377\316\331\327\377\207\377\377\377\377" \ - "\3\350\356\355\377\223\254\247\377\241\267\262\377\273\333\343\342\377" \ - "\4\326\337\336\377Tlg\377Slg\377byt\377\221\333\343\342\377\1\330\341" \ - "\340\377\202\322\333\332\377\273\333\343\342\377\3\253\276\273\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\335\345\344\377\223" \ - "\254\247\377\247\273\270\377\326\333\343\342\377\4\320\332\331\377\223" \ - "\254\247\377\241\267\262\377\376\376\376\377\207\377\377\377\377\3\252" \ - "\275\271\377\223\254\247\377\313\326\325\377\273\333\343\342\377\3cz" \ - "u\377Slg\377l\202~\377\316\333\343\342\377\4\323\335\334\377\224\255" \ - "\250\377\234\263\256\377\374\375\374\377\207\377\377\377\377\3\260\302" \ - "\276\377\223\254\247\377\306\323\321\377\327\333\343\342\377\3\246\273" \ - "\267\377\223\254\247\377\340\347\345\377\207\377\377\377\377\3\327\340" \ - "\336\377\223\254\247\377\254\277\274\377\273\333\343\342\377\4\207\231" \ - "\226\377Slg\377Vni\377\327\337\336\377\315\333\343\342\377\3\267\307" \ - "\304\377\223\254\247\377\307\324\321\377\207\377\377\377\377\4\356\362" \ - "\361\377\223\254\247\377\234\263\257\377\332\342\341\377\327\333\343" \ - "\342\377\3\304\322\317\377\223\254\247\377\262\304\300\377\207\377\377" \ - "\377\377\4\374\374\374\377\233\262\256\377\224\255\250\377\325\336\335" \ - "\377\272\333\343\342\377\1\305\317\316\377\202Slg\377\1\271\306\304\377" \ - "\220\333\343\342\377\1\307\322\320\377\202\216\237\234\377\271\333\343" \ - "\342\377\4\331\342\341\377\232\261\255\377\224\255\250\377\363\366\365" \ - "\377\207\377\377\377\377\3\302\320\315\377\223\254\247\377\272\312\307" \ - "\377\330\333\343\342\377\4\332\342\341\377\233\262\256\377\223\254\247" \ - "\377\360\363\363\377\207\377\377\377\377\3\306\323\320\377\223\254\247" \ - "\377\270\310\305\377\273\333\343\342\377\4\232\252\247\377Slg\377d{v" \ - "\377\317\330\327\377\217\333\343\342\377\1\270\305\303\377\202Slg\377" \ - "\271\333\343\342\377\3\303\320\316\377\223\254\247\377\266\307\303\377" \ - "\207\377\377\377\377\4\372\373\373\377\231\260\254\377\225\255\251\377" \ - "\326\337\336\377\331\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\303\321\316\377\207\377\377\377\377\4\362\365\364\377\224\254\247\377" \ - "\233\262\255\377\332\342\341\377\273\333\343\342\377\4\226\246\243\377" \ - "Tmh\377l\201}\377\267\303\301\377\216\333\343\342\377\1\270\305\303\377" \ - "\202Slg\377\271\333\343\342\377\3\244\271\265\377\223\254\247\377\343" \ - "\352\350\377\207\377\377\377\377\3\323\335\333\377\223\254\247\377\256" \ - "\301\275\377\332\333\343\342\377\4\325\336\335\377\225\255\250\377\232" \ - "\261\254\377\373\374\373\377\207\377\377\377\377\3\264\306\302\377\223" \ - "\254\247\377\304\321\317\377\271\333\343\342\377\1\317\330\327\377\202" \ - "\301\314\312\377\10\246\265\262\377^vq\377Slg\377k\201}\377\226\247\244" \ - "\377\245\264\261\377\263\300\276\377\277\313\311\377\211\301\314\312" \ - "\377\1\245\264\261\377\202Slg\377\270\333\343\342\377\3\316\331\327\377" \ - "\223\254\247\377\245\271\265\377\210\377\377\377\377\3\246\272\266\377" \ - "\223\254\247\377\315\330\326\377\333\333\343\342\377\3\255\300\274\377" \ - "\223\254\247\377\325\336\334\377\207\377\377\377\377\3\342\350\347\377" \ - "\223\254\247\377\245\272\266\377\271\333\343\342\377\1\233\253\250\377" \ - "\226Slg\377\270\333\343\342\377\3\260\302\276\377\223\254\247\377\322" \ - "\334\332\377\207\377\377\377\377\3\344\352\351\377\223\254\247\377\243" \ - "\270\264\377\334\333\343\342\377\3\314\327\325\377\223\254\247\377\247" \ - "\273\267\377\207\377\377\377\377\4\376\376\376\377\243\270\264\377\223" \ - "\254\247\377\317\332\330\377\270\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\267\333\343\342\377\4\326\337\336\377\226\256\251\377\230\260" \ - "\253\377\371\373\372\377\207\377\377\377\377\3\267\307\304\377\223\254" \ - "\247\377\301\317\315\377\335\333\343\342\377\3\241\267\263\377\223\254" \ - "\247\377\346\354\353\377\207\377\377\377\377\3\320\333\331\377\223\254" \ - "\247\377\261\303\277\377\270\333\343\342\377\1\233\253\250\377\226Sl" \ - "g\377\267\333\343\342\377\3\273\313\310\377\223\254\247\377\300\317\314" \ - "\377\207\377\377\377\377\4\363\366\366\377\224\255\250\377\231\260\254" \ - "\377\331\341\340\377\335\333\343\342\377\3\300\316\314\377\223\254\247" \ - "\377\271\311\306\377\207\377\377\377\377\4\371\372\372\377\227\257\253" \ - "\377\226\256\252\377\327\340\337\377\267\333\343\342\377\3\233\253\250" \ - "\377Slg\377[sn\377\221x\215\211\377\1o\204\200\377\202Slg\377\266\333" \ - "\343\342\377\4\332\342\341\377\235\264\257\377\223\254\247\377\356\361" \ - "\361\377\207\377\377\377\377\3\310\325\322\377\223\254\247\377\266\306" \ - "\303\377\336\333\343\342\377\4\330\341\340\377\230\260\253\377\225\255" \ - "\251\377\365\367\367\377\207\377\377\377\377\3\277\316\313\377\223\254" \ - "\247\377\275\314\311\377\267\333\343\342\377\3\233\253\250\377Slg\377" \ - "p\205\201\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\266\333" \ - "\343\342\377\3\307\324\322\377\223\254\247\377\257\301\276\377\207\377" \ - "\377\377\377\4\374\375\375\377\235\264\257\377\223\254\247\377\323\334" \ - "\333\377\337\333\343\342\377\3\264\305\302\377\223\254\247\377\312\326" \ - "\324\377\207\377\377\377\377\3\354\361\360\377\223\254\247\377\236\265" \ - "\260\377\267\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221" \ - "\333\343\342\377\1\270\305\303\377\202Slg\377\266\333\343\342\377\3\251" \ - "\274\271\377\223\254\247\377\334\344\343\377\207\377\377\377\377\3\332" \ - "\342\340\377\223\254\247\377\252\275\271\377\340\333\343\342\377\4\322" \ - "\334\332\377\223\254\247\377\236\265\260\377\375\375\375\377\207\377" \ - "\377\377\377\3\256\300\275\377\223\254\247\377\310\324\322\377\266\333" \ - "\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\265\333\343\342\377\4\322\334\332\377\223" \ - "\254\247\377\237\265\260\377\375\376\375\377\207\377\377\377\377\3\254" \ - "\277\273\377\223\254\247\377\310\324\322\377\341\333\343\342\377\3\251" \ - "\274\271\377\223\254\247\377\333\343\342\377\207\377\377\377\377\3\333" \ - "\343\342\377\223\254\247\377\252\275\272\377\266\333\343\342\377\3\277" \ - "\312\310\377\237\256\253\377\254\272\270\377\221\333\343\342\377\1\323" \ - "\334\333\377\202\275\310\306\377\265\333\343\342\377\3\264\305\302\377" \ - "\223\254\247\377\313\327\324\377\207\377\377\377\377\3\353\360\357\377" \ - "\223\254\247\377\236\265\260\377\342\333\343\342\377\3\307\323\321\377" \ - "\223\254\247\377\256\301\275\377\207\377\377\377\377\4\375\375\375\377" \ - "\236\264\260\377\224\254\247\377\323\334\333\377\377\333\343\342\377" \ - "\5\333\343\342\377\331\341\340\377\230\260\253\377\225\256\251\377\366" \ - "\370\367\377\207\377\377\377\377\3\275\314\311\377\223\254\247\377\274" \ - "\313\311\377\342\333\343\342\377\4\332\342\341\377\235\264\257\377\223" \ - "\254\247\377\355\361\360\377\207\377\377\377\377\3\312\326\323\377\223" \ - "\254\247\377\266\306\303\377\377\333\343\342\377\4\333\343\342\377\300" \ - "\316\314\377\223\254\247\377\271\311\306\377\207\377\377\377\377\4\370" \ - "\371\371\377\227\257\252\377\226\256\252\377\327\340\336\377\343\333" \ - "\343\342\377\3\273\313\310\377\223\254\247\377\277\316\313\377\207\377" \ - "\377\377\377\4\364\367\366\377\225\255\250\377\231\260\254\377\331\341" \ - "\340\377\310\333\343\342\377\3\307\322\320\377\305\320\316\377\324\334" \ - "\333\377\264\333\343\342\377\3\241\267\263\377\223\254\247\377\347\354" \ - "\353\377\207\377\377\377\377\3\317\332\330\377\223\254\247\377\261\303" \ - "\277\377\344\333\343\342\377\4\326\337\336\377\226\256\251\377\227\257" \ - "\253\377\371\372\372\377\207\377\377\377\377\3\270\310\305\377\223\254" \ - "\247\377\301\317\315\377\310\333\343\342\377\3_vr\377Slg\377\254\271" \ - "\267\377\263\333\343\342\377\3\314\327\325\377\223\254\247\377\250\274" \ - "\270\377\207\377\377\377\377\4\376\376\376\377\242\270\263\377\223\254" \ - "\247\377\317\332\330\377\345\333\343\342\377\3\260\302\276\377\223\254" \ - "\247\377\321\333\331\377\207\377\377\377\377\3\346\353\352\377\223\254" \ - "\247\377\243\270\264\377\310\333\343\342\377\3_vr\377Slg\377\254\271" \ - "\267\377\263\333\343\342\377\3\255\300\274\377\223\254\247\377\325\337" \ - "\335\377\207\377\377\377\377\3\340\347\346\377\223\254\247\377\245\272" \ - "\266\377\346\333\343\342\377\3\316\331\327\377\223\254\247\377\244\271" \ - "\265\377\210\377\377\377\377\3\247\273\267\377\223\254\247\377\315\330" \ - "\326\377\307\333\343\342\377\3^vq\377Slg\377\254\271\267\377\262\333" \ - "\343\342\377\4\325\336\335\377\225\255\250\377\232\261\255\377\373\374" \ - "\374\377\207\377\377\377\377\3\263\304\301\377\223\254\247\377\303\321" \ - "\317\377\347\333\343\342\377\3\244\271\265\377\223\254\247\377\342\351" \ - "\347\377\207\377\377\377\377\3\324\336\334\377\223\254\247\377\256\301" \ - "\275\377\304\333\343\342\377\3\317\331\327\377\236\255\253\377i\177{" \ - "\377\202Slg\377\1\254\271\267\377\262\333\343\342\377\3\271\311\306\377" \ - "\223\254\247\377\304\322\317\377\207\377\377\377\377\4\361\364\363\377" \ - "\223\254\247\377\226\256\251\377\332\342\341\377\347\333\343\342\377" \ - "\3\302\320\316\377\223\254\247\377\265\306\302\377\202\377\377\377\377" \ - "\3\371\373\372\377\356\361\361\377\375\375\375\377\202\377\377\377\377" \ - "\4\372\373\373\377\232\261\254\377\225\255\251\377\326\337\336\377\300" \ - "\333\343\342\377\4\331\341\340\377\263\300\276\377~\222\216\377Uni\377" \ - "\204Slg\377\1\254\271\267\377\261\333\343\342\377\4\332\342\341\377\233" \ - "\262\256\377\223\254\247\377\361\364\363\377\207\377\377\377\377\1\304" \ - "\322\317\377\202\223\254\247\377\1\312\326\324\377\347\333\343\342\377" \ - "\5\331\341\340\377\232\261\254\377\223\254\247\377\302\320\315\377\244" \ - "\271\265\377\202\223\254\247\377\7\226\256\251\377\251\275\271\377\331" \ - "\342\340\377\377\377\377\377\303\321\316\377\223\254\247\377\272\312" \ - "\307\377\276\333\343\342\377\3\310\322\321\377\224\244\241\377axt\377" \ - "\207Slg\377\1\254\271\267\377\261\333\343\342\377\3\304\322\317\377\223" \ - "\254\247\377\263\304\301\377\207\377\377\377\377\5\373\374\374\377\233" \ - "\262\255\377\225\255\251\377\233\262\256\377\264\305\302\377\350\333" \ - "\343\342\377\1\260\303\277\377\202\224\255\250\377\13\277\315\312\377" \ - "\330\341\337\377\345\353\351\377\322\334\332\377\263\304\301\377\223" \ - "\254\247\377\267\307\304\377\353\357\356\377\223\254\247\377\234\263" \ - "\257\377\332\342\341\377\272\333\343\342\377\3\326\336\335\377\251\267" \ - "\265\377t\211\205\377\212Slg\377\1\254\271\267\377\261\333\343\342\377" \ - "\3\246\272\266\377\223\254\247\377\340\347\346\377\207\377\377\377\377" \ - "\5\326\337\335\377\223\254\247\377\271\311\306\377\262\304\300\377\246" \ - "\272\266\377\347\333\343\342\377\4\331\341\340\377\236\264\260\377\240" \ - "\266\261\377\351\356\355\377\205\377\377\377\377\6\330\341\337\377\226" \ - "\256\252\377\275\314\311\377\261\303\300\377\223\254\247\377\306\323" \ - "\320\377\270\333\343\342\377\3\276\312\310\377\211\234\230\377[sn\377" \ - "\211Slg\377\4Voj\377Umh\377Slg\377\254\271\267\377\260\333\343\342\377" \ - "\4\320\332\331\377\223\254\247\377\242\267\263\377\376\376\376\377\207" \ - "\377\377\377\377\5\250\274\270\377\223\254\247\377\346\354\353\377\272" \ - "\312\307\377\242\267\263\377\347\333\343\342\377\3\265\306\302\377\225" \ - "\255\250\377\352\357\356\377\207\377\377\377\377\5\322\334\332\377\223" \ - "\254\247\377\311\325\323\377\223\254\247\377\247\273\270\377\265\333" \ - "\343\342\377\3\320\332\330\377\237\256\253\377k\201|\377\212Slg\377\6" \ - "n\204\200\377\242\261\256\377\321\333\331\377_vr\377Slg\377\254\271\267" \ - "\377\260\333\343\342\377\3\262\303\300\377\223\254\247\377\317\332\330" \ - "\377\204\377\377\377\377\11\367\371\370\377\352\357\356\377\377\377\377" \ - "\377\347\355\354\377\223\254\247\377\247\273\267\377\377\377\377\377" \ - "\244\271\265\377\257\301\276\377\347\333\343\342\377\2\234\263\256\377" \ - "\303\321\316\377\211\377\377\377\377\5\250\274\270\377\267\307\304\377" \ - "\241\266\262\377\223\254\247\377\321\333\332\377\261\333\343\342\377" \ - "\4\331\342\341\377\264\301\277\377\200\223\220\377Vni\377\211Slg\377" \ - "\3^vq\377\220\241\236\377\303\316\314\377\203\333\343\342\377\3_vr\377" \ - "Slg\377\254\271\267\377\257\333\343\342\377\1\327\340\337\377\202\227" \ - "\257\252\377\1\370\371\371\377\203\377\377\377\377\12\352\357\356\377" \ - "\226\256\252\377\223\254\247\377\277\316\313\377\271\311\306\377\223" \ - "\254\247\377\325\337\335\377\351\356\355\377\223\254\247\377\277\316" \ - "\313\377\346\333\343\342\377\3\325\336\335\377\223\254\247\377\335\344" \ - "\343\377\211\377\377\377\377\5\302\320\315\377\241\267\262\377\315\331" \ - "\326\377\223\254\247\377\263\304\301\377\241\333\343\342\377\6\274\307" \ - "\306\377\217\241\235\377t\211\205\377|\217\214\377\242\261\256\377\310" \ - "\322\321\377\210\333\343\342\377\3\311\323\322\377\225\246\243\377by" \ - "t\377\213Slg\377\2\245\264\261\377\330\341\340\377\205\333\343\342\377" \ - "\3_vr\377Slg\377\254\271\267\377\257\333\343\342\377\3\314\327\325\377" \ - "\223\254\247\377\264\305\301\377\204\377\377\377\377\12\307\324\322\377" \ - "\226\256\252\377\261\303\300\377\230\260\253\377\224\255\250\377\232" \ - "\261\255\377\367\371\370\377\244\271\265\377\241\266\262\377\331\341" \ - "\340\377\346\333\343\342\377\3\312\326\324\377\223\254\247\377\353\360" \ - "\357\377\211\377\377\377\377\5\320\333\331\377\223\254\247\377\361\364" \ - "\364\377\223\254\247\377\243\270\264\377\237\333\343\342\377\3\327\340" \ - "\337\377\217\241\235\377Tlg\377\205Slg\377\1\236\255\253\377\204\333" \ - "\343\342\377\3\326\337\336\377\253\271\266\377v\212\206\377\212Slg\377" \ - "\2g}y\377\222\243\240\377\202Slg\377\1\305\320\316\377\206\333\343\342" \ - "\377\3\264\301\277\377\260\275\273\377\314\326\324\377\257\333\343\342" \ - "\377\3\316\331\330\377\223\254\247\377\263\304\301\377\204\377\377\377" \ - "\377\11\351\356\355\377\226\256\251\377\223\254\247\377\251\275\271\377" \ - "\223\254\247\377\272\312\307\377\244\271\265\377\225\255\251\377\316" \ - "\331\327\377\347\333\343\342\377\3\326\337\336\377\223\254\247\377\332" \ - "\343\341\377\211\377\377\377\377\5\277\316\313\377\243\270\264\377\363" \ - "\365\365\377\223\254\247\377\246\272\266\377\237\333\343\342\377\1\217" \ - "\241\235\377\203Slg\377\2e{w\377czu\377\203Slg\377\5\254\271\267\377" \ - "\333\343\342\377\300\313\311\377\213\235\232\377[sn\377\211Slg\377\5" \ - "Yql\377\206\231\225\377\273\307\305\377\333\343\342\377\316\327\326\377" \ - "\202Slg\377\1\305\320\316\377\270\333\343\342\377\3\321\334\332\377\223" \ - "\254\247\377\256\301\275\377\205\377\377\377\377\3\366\370\367\377\346" \ - "\354\352\377\237\265\260\377\202\223\254\247\377\2\240\266\262\377\315" \ - "\330\327\377\351\333\343\342\377\2\235\264\257\377\275\314\311\377\210" \ - "\377\377\377\377\6\375\375\375\377\243\271\264\377\271\311\306\377\356" \ - "\362\361\377\223\254\247\377\251\275\271\377\236\333\343\342\377\5\274" \ - "\307\306\377Tlg\377Slg\377e{w\377\300\313\311\377\202\333\343\342\377" \ - "\5\274\307\306\377axt\377Slg\377Vni\377k\201}\377\212Slg\377\3r\207\203" \ - "\377\246\265\262\377\324\335\334\377\203\333\343\342\377\1\316\327\326" \ - "\377\202Slg\377\1\305\320\316\377\270\333\343\342\377\3\324\336\334\377" \ - "\223\254\247\377\251\275\271\377\206\377\377\377\377\5\335\344\343\377" \ - "\223\254\247\377\233\262\255\377\300\316\314\377\331\341\340\377\352" \ - "\333\343\342\377\3\272\312\307\377\223\254\247\377\343\351\350\377\207" \ - "\377\377\377\377\6\310\325\322\377\224\254\250\377\350\355\354\377\351" \ - "\356\355\377\223\254\247\377\254\277\273\377\236\333\343\342\377\1\217" \ - "\241\235\377\202Slg\377\1\300\313\311\377\204\333\343\342\377\1\270\305" \ - "\303\377\212Slg\377\3_wr\377\222\243\240\377\306\320\317\377\206\333" \ - "\343\342\377\1\316\327\326\377\202Slg\377\1\305\320\316\377\270\333\343" \ - "\342\377\3\327\340\337\377\223\254\247\377\245\272\266\377\206\377\377" \ - "\377\377\3\257\301\276\377\223\254\247\377\306\323\320\377\354\333\343" \ - "\342\377\4\332\342\341\377\244\271\265\377\233\262\255\377\335\345\343" \ - "\377\204\377\377\377\377\10\375\376\375\377\312\326\324\377\224\254\250" \ - "\377\307\324\321\377\377\377\377\377\344\352\351\377\223\254\247\377" \ - "\257\301\276\377\236\333\343\342\377\3t\211\205\377Slg\377g~y\377\206" \ - "\333\343\342\377\1\\to\377\206Slg\377\4Uni\377}\221\215\377\261\277\274" \ - "\377\330\341\340\377\210\333\343\342\377\1\316\327\326\377\202Slg\377" \ - "\1\305\320\316\377\270\333\343\342\377\3\332\342\341\377\223\254\247" \ - "\377\240\266\262\377\205\377\377\377\377\4\356\361\361\377\223\254\247" \ - "\377\234\263\257\377\332\342\341\377\355\333\343\342\377\17\324\336\334" \ - "\377\250\273\270\377\223\254\247\377\261\303\277\377\312\326\324\377" \ - "\327\340\336\377\304\322\317\377\246\273\267\377\223\254\247\377\304" \ - "\322\317\377\375\375\375\377\377\377\377\377\340\347\345\377\223\254" \ - "\247\377\262\303\300\377\236\333\343\342\377\3v\212\206\377Slg\377f|" \ - "x\377\206\333\343\342\377\1[sn\377\204Slg\377\3i\177{\377\235\255\252" \ - "\377\317\330\327\377\213\333\343\342\377\1\316\327\326\377\202Slg\377" \ - "\1\305\320\316\377\271\333\343\342\377\2\225\255\251\377\234\263\256" \ - "\377\205\377\377\377\377\3\300\317\314\377\223\254\247\377\272\312\307" \ - "\377\360\333\343\342\377\7\277\316\313\377\245\272\266\377\227\257\252" \ - "\377\223\254\247\377\225\255\250\377\257\301\276\377\346\353\352\377" \ - "\203\377\377\377\377\3\333\343\342\377\223\254\247\377\265\306\302\377" \ - "\236\333\343\342\377\1\220\242\236\377\202Slg\377\1\277\312\310\377\204" \ - "\333\343\342\377\1\266\302\300\377\205Slg\377\3z\216\212\377\257\274" \ - "\272\377\330\340\337\377\213\333\343\342\377\1\316\327\326\377\202Sl" \ - "g\377\1\305\320\316\377\271\333\343\342\377\2\230\260\253\377\230\257" \ - "\253\377\204\377\377\377\377\4\371\373\372\377\230\260\253\377\225\255" \ - "\251\377\326\337\336\377\362\333\343\342\377\4\332\342\341\377\266\307" \ - "\304\377\223\254\247\377\302\320\315\377\204\377\377\377\377\3\326\337" \ - "\335\377\223\254\247\377\267\310\305\377\236\333\343\342\377\14\276\311" \ - "\307\377Tmh\377Slg\377d{v\377\274\307\306\377\333\343\342\377\321\332" \ - "\331\377\235\255\252\377^vq\377Slg\377Vni\377k\201}\377\204Slg\377\3" \ - "^uq\377\217\241\235\377\304\317\315\377\211\333\343\342\377\1\316\327" \ - "\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\2\233\262\255" \ - "\377\223\254\247\377\204\377\377\377\377\3\322\334\332\377\223\254\247" \ - "\377\256\301\275\377\364\333\343\342\377\4\325\336\335\377\225\255\250" \ - "\377\231\261\254\377\372\373\373\377\203\377\377\377\377\3\321\334\332" \ - "\377\223\254\247\377\272\312\307\377\237\333\343\342\377\1\223\244\240" \ - "\377\203Slg\377\2_vr\377Wpk\377\203Slg\377\5\254\271\267\377\333\343" \ - "\342\377\300\314\312\377\214\236\233\377\\so\377\204Slg\377\3p\205\201" \ - "\377\245\263\261\377\324\334\333\377\206\333\343\342\377\1\316\327\326" \ - "\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\3\236\264\260\377" \ - "\223\254\247\377\373\374\374\377\203\377\377\377\377\3\245\271\265\377" \ - "\223\254\247\377\315\330\326\377\365\333\343\342\377\3\255\300\274\377" \ - "\223\254\247\377\324\336\334\377\203\377\377\377\377\3\315\330\326\377" \ - "\223\254\247\377\275\314\312\377\237\333\343\342\377\3\330\340\337\377" \ - "\225\246\243\377Umh\377\205Slg\377\1\236\255\253\377\204\333\343\342" \ - "\377\4\327\337\336\377\254\271\267\377w\214\210\377Tlg\377\203Slg\377" \ - "\3Xpk\377\205\230\224\377\272\306\304\377\204\333\343\342\377\1\316\327" \ - "\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\3\241\266\262" \ - "\377\223\254\247\377\366\370\370\377\202\377\377\377\377\3\343\352\350" \ - "\377\223\254\247\377\243\270\264\377\366\333\343\342\377\3\314\327\325" \ - "\377\223\254\247\377\246\273\267\377\203\377\377\377\377\3\307\324\322" \ - "\377\223\254\247\377\300\316\314\377\241\333\343\342\377\6\302\315\313" \ - "\377\230\250\245\377}\220\215\377\203\226\222\377\246\265\262\377\311" \ - "\324\322\377\210\333\343\342\377\3\313\325\323\377\227\250\245\377d{" \ - "v\377\204Slg\377\5f}x\377\233\253\250\377\315\327\325\377\333\343\342" \ - "\377\316\327\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377" \ - "\3\244\271\265\377\223\254\247\377\362\365\364\377\202\377\377\377\377" \ - "\3\266\307\303\377\223\254\247\377\301\317\315\377\367\333\343\342\377" \ - "\3\241\267\263\377\223\254\247\377\345\353\352\377\202\377\377\377\377" \ - "\3\303\321\316\377\223\254\247\377\303\321\317\377\261\333\343\342\377" \ - "\4\332\342\341\377\267\304\302\377\203\226\222\377Wpk\377\203Slg\377" \ - "\3Tmh\377|\217\214\377\245\264\261\377\202Slg\377\1\305\320\316\377\206" \ - "\333\343\342\377\3\317\331\327\377\316\327\326\377\326\337\336\377\260" \ - "\333\343\342\377\10\247\273\267\377\223\254\247\377\301\317\314\377\333" \ - "\343\341\377\344\352\351\377\224\255\250\377\231\260\254\377\331\341" \ - "\340\377\367\333\343\342\377\10\300\316\314\377\223\254\247\377\265\306" \ - "\303\377\345\353\351\377\322\335\333\377\250\274\270\377\223\254\247" \ - "\377\306\323\321\377\264\333\343\342\377\3\323\334\332\377\243\262\257" \ - "\377o\204\200\377\206Slg\377\1\267\304\302\377\206\333\343\342\377\3" \ - "_vr\377Slg\377\254\271\267\377\260\333\343\342\377\1\252\275\271\377" \ - "\205\223\254\247\377\1\266\306\303\377\370\333\343\342\377\2\330\341" \ - "\340\377\230\260\253\377\205\223\254\247\377\1\311\325\323\377\267\333" \ - "\343\342\377\3\303\316\314\377\217\240\235\377]up\377\204Slg\377\3r\207" \ - "\203\377\246\265\262\377\324\335\334\377\203\333\343\342\377\3_vr\377" \ - "Slg\377\254\271\267\377\260\333\343\342\377\7\327\337\336\377\220\243" \ - "\237\377k\204\177\377u\216\211\377\205\235\230\377\235\263\257\377\323" \ - "\334\333\377\371\333\343\342\377\7\267\307\304\377\233\261\255\377~\227" \ - "\222\377q\212\205\377m\206\201\377\273\310\306\377\332\342\341\377\271" \ - "\333\343\342\377\4\330\340\337\377\256\274\271\377z\216\212\377Tmh\377" \ - "\203Slg\377\7Yql\377\206\231\225\377\273\307\305\377\333\343\342\377" \ - "_vr\377Slg\377\254\271\267\377\261\333\343\342\377\1x\214\210\377\202" \ - "Slg\377\1~\221\216\377\374\333\343\342\377\5\325\335\334\377axt\377S" \ - "lg\377Tmh\377\251\270\265\377\275\333\343\342\377\3\315\326\325\377\232" \ - "\252\247\377f}x\377\204Slg\377\4g}y\377Woj\377Slg\377\254\271\267\377" \ - "\261\333\343\342\377\1}\220\215\377\202Slg\377\1\240\257\254\377\375" \ - "\333\343\342\377\1f}x\377\202Slg\377\1\222\243\240\377\300\333\343\342" \ - "\377\3\272\306\304\377\206\230\225\377Xql\377\204Slg\377\1\254\271\267" \ - "\377\261\333\343\342\377\4\216\237\234\377Slg\377_wr\377\326\336\335" \ - "\377\375\333\343\342\377\4r\207\203\377Slg\377axt\377\317\330\327\377" \ - "\302\333\343\342\377\3\324\334\333\377\246\264\262\377q\207\202\377\202" \ - "Slg\377\1\254\271\267\377\261\333\343\342\377\3\237\257\254\377Slg\377" \ - "\240\257\254\377\376\333\343\342\377\3\216\240\235\377Wpk\377\246\264" \ - "\262\377\306\333\343\342\377\3_vr\377Slg\377\254\271\267\377\261\333" \ - "\343\342\377\3\260\276\273\377axt\377\326\337\336\377\376\333\343\342" \ - "\377\2\265\302\277\377v\213\207\377\307\333\343\342\377\3_vr\377Slg\377" \ - "\254\271\267\377\261\333\343\342\377\2\302\315\313\377\242\261\256\377" \ - "\377\333\343\342\377\311\333\343\342\377\3z\216\212\377p\205\201\377" \ - "\266\303\301\377\261\333\343\342\377\2\326\336\335\377\327\340\337\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\344\333\343\342\377") - - diff --git a/packages/psplash/files/angstrom/angstrom-psplash-vga-img.h b/packages/psplash/files/angstrom/angstrom-psplash-vga-img.h deleted file mode 100644 index 5eeef94919..0000000000 --- a/packages/psplash/files/angstrom/angstrom-psplash-vga-img.h +++ /dev/null @@ -1,2109 +0,0 @@ -/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ - -#define HAND_IMG_ROWSTRIDE (1428) -#define HAND_IMG_WIDTH (357) -#define HAND_IMG_HEIGHT (376) -#define HAND_IMG_BYTES_PER_PIXEL (4) /* 3:RGB, 4:RGBA */ -#define HAND_IMG_RLE_PIXEL_DATA ((uint8*) \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\202\333" \ - "\343\342\377\1\320\331\330\377\202\311\324\322\377\1\324\334\333\377" \ - "\377\333\343\342\377\251\333\343\342\377\4\323\335\333\377\311\325\323" \ - "\377\322\334\332\377\332\342\341\377\377\333\343\342\377\266\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342" \ - "\377\244\333\343\342\377\5\326\337\336\377\273\313\310\377\257\301\276" \ - "\377\243\270\264\377\227\257\252\377\203\223\254\247\377\5\226\256\251" \ - "\377\242\267\263\377\256\300\275\377\272\312\307\377\323\335\333\377" \ - "\377\333\343\342\377\262\333\343\342\377\1\202\225\221\377\202Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315\330" \ - "\326\377\213\223\254\247\377\1\304\321\317\377\377\333\343\342\377\262" \ - "\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333" \ - "\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223\254\247\377" \ - "\7\241\267\263\377\270\310\305\377\312\326\324\377\330\341\337\377\314" \ - "\327\325\377\272\312\307\377\244\271\265\377\202\223\254\247\377\1\304" \ - "\321\317\377\377\333\343\342\377\262\333\343\342\377\1\202\225\221\377" \ - "\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377" \ - "\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377" \ - "\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377" \ - "\333\343\342\377\236\333\343\342\377\4\316\327\326\377\275\311\307\377" \ - "\266\302\300\377\256\274\271\377\220\254\271\267\377\1q\207\202\377\202" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315" \ - "\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377" \ - "\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343" \ - "\342\377\232\333\343\342\377\4\324\335\334\377\250\266\264\377y\215\211" \ - "\377]up\377\227Slg\377\1\243\262\257\377\377\333\343\342\377\244\333" \ - "\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377" \ - "\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321" \ - "\317\377\377\333\343\342\377\230\333\343\342\377\3\332\342\341\377\246" \ - "\265\262\377\\to\377\232Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\244\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342" \ - "\340\377\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1" \ - "\304\321\317\377\377\333\343\342\377\227\333\343\342\377\2\331\342\341" \ - "\377\204\227\223\377\234Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\244\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342" \ - "\340\377\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1" \ - "\304\321\317\377\377\333\343\342\377\227\333\343\342\377\1\216\237\234" \ - "\377\235Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342" \ - "\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377" \ - "\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377" \ - "\377\333\343\342\377\226\333\343\342\377\2\303\316\314\377Tmh\377\235" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315" \ - "\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377" \ - "\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343" \ - "\342\377\226\333\343\342\377\1\211\234\230\377\205Slg\377\7Tmh\377|\217" \ - "\214\377\252\270\266\377\271\305\303\377\304\317\315\377\320\331\330" \ - "\377\331\342\341\377\217\333\343\342\377\1\202\225\221\377\202Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315\330" \ - "\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377\1" \ - "\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342" \ - "\377\226\333\343\342\377\1czu\377\204Slg\377\2~\222\216\377\314\325\324" \ - "\377\225\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223\254" \ - "\247\377\1\331\342\340\377\205\377\377\377\377\1\343\352\350\377\202" \ - "\223\254\247\377\1\304\321\317\377\377\333\343\342\377\225\333\343\342" \ - "\377\1\322\333\332\377\204Slg\377\2n\203\177\377\326\336\335\377\226" \ - "\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333" \ - "\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223\254\247\377" \ - "\1\331\342\340\377\205\377\377\377\377\1\343\352\350\377\202\223\254" \ - "\247\377\1\304\321\317\377\377\333\343\342\377\225\333\343\342\377\1" \ - "\306\321\317\377\204Slg\377\1\277\313\311\377\227\333\343\342\377\1\202" \ - "\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333" \ - "\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377" \ - "\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321" \ - "\317\377\377\333\343\342\377\225\333\343\342\377\1\304\317\315\377\203" \ - "Slg\377\2Uni\377\330\340\337\377\227\333\343\342\377\1\244\262\260\377" \ - "\202\205\230\224\377\1\267\304\302\377\377\333\343\342\377\244\333\343" \ - "\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205" \ - "\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317" \ - "\377\377\333\343\342\377\225\333\343\342\377\1\326\336\335\377\203Sl" \ - "g\377\1k\201}\377\377\333\343\342\377\300\333\343\342\377\1\315\330\326" \ - "\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377\1\343" \ - "\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342\377" \ - "\226\333\343\342\377\1byt\377\202Slg\377\1q\207\202\377\377\333\343\342" \ - "\377\300\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331" \ - "\342\340\377\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377" \ - "\1\304\321\317\377\377\333\343\342\377\226\333\343\342\377\1\204\226" \ - "\223\377\202Slg\377\1czu\377\377\333\343\342\377\300\333\343\342\377" \ - "\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377" \ - "\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377" \ - "\333\343\342\377\226\333\343\342\377\2\304\317\315\377Tlg\377\202Slg" \ - "\377\1\305\320\316\377\227\333\343\342\377\1\274\310\306\377\202\254" \ - "\271\267\377\1\307\322\320\377\377\333\343\342\377\244\333\343\342\377" \ - "\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377" \ - "\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377" \ - "\333\343\342\377\227\333\343\342\377\1\201\224\220\377\202Slg\377\1\206" \ - "\231\225\377\227\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262" \ - "\257\377\377\333\343\342\377\244\333\343\342\377\1\315\330\326\377\202" \ - "\223\254\247\377\1\331\342\340\377\205\377\377\377\377\1\343\352\350" \ - "\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342\377\227\333" \ - "\343\342\377\2\323\334\332\377n\204\200\377\202Slg\377\1\247\266\263" \ - "\377\226\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223\254" \ - "\247\377\1\331\342\340\377\205\377\377\377\377\1\343\352\350\377\202" \ - "\223\254\247\377\1\304\321\317\377\377\333\343\342\377\230\333\343\342" \ - "\377\2\321\333\331\377l\201}\377\202Slg\377\2\220\242\236\377\323\334" \ - "\333\377\224\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257" \ - "\377\377\333\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223" \ - "\254\247\377\1\331\342\340\377\205\377\377\377\377\1\343\352\350\377" \ - "\202\223\254\247\377\1\304\321\317\377\377\333\343\342\377\231\333\343" \ - "\342\377\10\324\334\333\377\222\243\240\377Vni\377Slg\377]up\377\217" \ - "\240\235\377\273\307\305\377\326\336\335\377\221\333\343\342\377\1\202" \ - "\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333" \ - "\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377" \ - "\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321" \ - "\317\377\377\333\343\342\377\233\333\343\342\377\2\310\322\321\377k\201" \ - "}\377\204Slg\377\3d{v\377p\206\202\377w\214\210\377\216}\220\215\377" \ - "\1ayt\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343" \ - "\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205" \ - "\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317" \ - "\377\377\333\343\342\377\231\333\343\342\377\3\327\340\337\377\252\270" \ - "\266\377p\205\201\377\231Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\244\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342" \ - "\340\377\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1" \ - "\304\321\317\377\377\333\343\342\377\230\333\343\342\377\2\321\333\331" \ - "\377p\206\202\377\233Slg\377\1\243\262\257\377\377\333\343\342\377\244" \ - "\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340" \ - "\377\205\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304" \ - "\321\317\377\377\333\343\342\377\227\333\343\342\377\2\315\327\325\377" \ - "j\200|\377\234Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343" \ - "\342\377\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205" \ - "\377\377\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317" \ - "\377\377\333\343\342\377\227\333\343\342\377\1|\220\214\377\235Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315\330" \ - "\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377\1" \ - "\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342" \ - "\377\226\333\343\342\377\1\301\314\312\377\207Slg\377\4Xql\377e|w\377" \ - "q\206\202\377}\220\215\377\220\205\230\224\377\1d{v\377\202Slg\377\1" \ - "\243\262\257\377\377\333\343\342\377\244\333\343\342\377\1\315\330\326" \ - "\377\202\223\254\247\377\1\331\342\340\377\205\377\377\377\377\1\343" \ - "\352\350\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342\377" \ - "\226\333\343\342\377\1\200\224\220\377\204Slg\377\4Tlg\377{\217\213\377" \ - "\263\300\276\377\331\342\341\377\223\333\343\342\377\1\202\225\221\377" \ - "\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342\377" \ - "\1\315\330\326\377\202\223\254\247\377\1\331\342\340\377\205\377\377" \ - "\377\377\1\343\352\350\377\202\223\254\247\377\1\304\321\317\377\377" \ - "\333\343\342\377\226\333\343\342\377\1czu\377\204Slg\377\1\256\274\271" \ - "\377\226\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\244\333\343\342\377\1\315\330\326\377\202\223\254" \ - "\247\377\1\331\342\340\377\205\377\377\377\377\1\343\352\350\377\202" \ - "\223\254\247\377\1\304\321\317\377\377\333\343\342\377\225\333\343\342" \ - "\377\2\327\340\337\377Tlg\377\203Slg\377\1\223\244\240\377\227\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342" \ - "\377\244\333\343\342\377\1\315\330\327\377\202\223\254\247\377\1\326" \ - "\337\335\377\205\377\377\377\377\1\340\347\346\377\202\223\254\247\377" \ - "\1\304\321\317\377\377\333\343\342\377\225\333\343\342\377\1\306\321" \ - "\317\377\204Slg\377\1\314\325\324\377\227\333\343\342\377\1\202\225\221" \ - "\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\244\333\343\342" \ - "\377\4\327\340\337\377\224\255\250\377\223\254\247\377\274\313\310\377" \ - "\205\377\377\377\377\1\307\324\321\377\202\223\254\247\377\1\322\334" \ - "\332\377\377\333\343\342\377\225\333\343\342\377\1\310\323\321\377\203" \ - "Slg\377\1\\to\377\230\333\343\342\377\1\305\317\316\377\202\270\305\303" \ - "\377\1\315\326\325\377\377\333\343\342\377\245\333\343\342\377\3\244" \ - "\271\265\377\223\254\247\377\237\265\261\377\205\377\377\377\377\3\252" \ - "\275\271\377\223\254\247\377\235\263\257\377\377\333\343\342\377\226" \ - "\333\343\342\377\2\331\341\340\377Vni\377\202Slg\377\1r\207\203\377\377" \ - "\333\343\342\377\301\333\343\342\377\1\256\300\275\377\202\223\254\247" \ - "\377\1\356\361\361\377\203\377\377\377\377\5\370\372\371\377\224\254" \ - "\250\377\223\254\247\377\250\274\270\377\332\342\341\377\377\333\343" \ - "\342\377\226\333\343\342\377\1k\201|\377\202Slg\377\1m\202~\377\377\333" \ - "\343\342\377\275\333\343\342\377\5\332\342\341\377\301\317\315\377\237" \ - "\265\261\377}\233\225\377v\226\220\377\202\223\254\247\377\1\320\333" \ - "\331\377\203\377\377\377\377\1\335\344\343\377\202\223\254\247\377\202" \ - "z\231\223\377\3\233\263\256\377\275\314\311\377\330\341\340\377\377\333" \ - "\343\342\377\223\333\343\342\377\1\242\261\256\377\202Slg\377\2[sn\377" \ - "\330\340\337\377\377\333\343\342\377\272\333\343\342\377\3\327\340\337" \ - "\377\251\275\271\377x\230\221\377\204o\221\212\377\3\220\252\245\377" \ - "\223\254\247\377\263\305\301\377\203\377\377\377\377\4\300\316\313\377" \ - "\223\254\247\377\222\253\246\377p\222\213\377\203o\221\212\377\3t\225" \ - "\216\377\241\267\263\377\324\336\334\377\377\333\343\342\377\221\333" \ - "\343\342\377\2\327\340\337\377ayt\377\202Slg\377\1\263\300\275\377\227" \ - "\333\343\342\377\1\233\253\250\377\202x\215\211\377\1\262\277\275\377" \ - "\377\333\343\342\377\235\333\343\342\377\3\332\342\341\377\261\303\300" \ - "\377z\232\223\377\206o\221\212\377\4\207\243\235\377\223\254\247\377" \ - "\230\257\253\377\374\375\375\377\202\377\377\377\377\3\243\270\264\377" \ - "\223\254\247\377\212\245\240\377\206o\221\212\377\3w\227\220\377\253" \ - "\277\273\377\330\341\337\377\377\333\343\342\377\220\333\343\342\377" \ - "\5\265\301\277\377Uni\377Slg\377h\177z\377\327\337\336\377\226\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342" \ - "\377\234\333\343\342\377\2\307\323\321\377\201\236\230\377\206o\221\212" \ - "\377\3\205\241\233\377\246\273\267\377\260\302\277\377\202\223\254\247" \ - "\377\1\244\271\265\377\202\246\273\267\377\202\223\254\247\377\3\254" \ - "\277\273\377\252\276\272\377\210\244\236\377\206o\221\212\377\2|\233" \ - "\225\377\300\317\314\377\377\333\343\342\377\220\333\343\342\377\5\255" \ - "\273\271\377Tlg\377Slg\377y\215\211\377\324\335\334\377\225\333\343\342" \ - "\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\233\333\343\342\377\2\267\310\305\377s\224\215\377\204o\221\212\377" \ - "\3y\230\222\377\253\276\273\377\317\331\330\377\202\333\343\342\377\1" \ - "\321\333\331\377\207\223\254\247\377\1\312\326\324\377\202\333\343\342" \ - "\377\3\321\333\332\377\257\302\276\377|\233\225\377\204o\221\212\377" \ - "\2q\222\213\377\260\302\277\377\377\333\343\342\377\220\333\343\342\377" \ - "\6\261\277\274\377axt\377Slg\377d{v\377\253\271\267\377\331\341\340\377" \ - "\223\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377" \ - "\333\343\342\377\231\333\343\342\377\2\332\342\341\377\245\272\266\377" \ - "\204o\221\212\377\3t\224\216\377\245\272\266\377\326\337\336\377\205" \ - "\333\343\342\377\1\253\276\273\377\205\247\273\267\377\2\250\274\270" \ - "\377\331\342\341\377\204\333\343\342\377\3\330\341\337\377\253\277\273" \ - "\377w\227\220\377\204o\221\212\377\2\234\263\257\377\331\341\340\377" \ - "\377\333\343\342\377\213\333\343\342\377\1\330\340\337\377\203\322\333" \ - "\332\377\2\313\325\324\377\205\230\224\377\202Slg\377\6]up\377\207\232" \ - "\226\377\244\262\260\377\271\306\304\377\306\320\317\377\315\326\325" \ - "\377\216\322\333\332\377\1\177\223\217\377\202Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\231\333\343\342\377\1\231\261\254\377\204o\221\212" \ - "\377\2\213\246\241\377\321\333\332\377\225\333\343\342\377\2\325\336" \ - "\335\377\225\255\251\377\204o\221\212\377\2\216\251\243\377\331\342\340" \ - "\377\377\333\343\342\377\212\333\343\342\377\1\250\267\264\377\236Sl" \ - "g\377\1\243\262\257\377\377\333\343\342\377\230\333\343\342\377\1\253" \ - "\276\273\377\204o\221\212\377\2\234\263\256\377\331\341\340\377\230\333" \ - "\343\342\377\1\246\273\267\377\204o\221\212\377\1\236\264\260\377\377" \ - "\333\343\342\377\212\333\343\342\377\1\250\267\264\377\236Slg\377\1\243" \ - "\262\257\377\377\333\343\342\377\227\333\343\342\377\2\275\314\311\377" \ - "p\221\213\377\202o\221\212\377\2p\222\213\377\256\301\275\377\233\333" \ - "\343\342\377\2\270\310\305\377r\223\215\377\203o\221\212\377\1\261\303" \ - "\300\377\377\333\343\342\377\211\333\343\342\377\1\250\267\264\377\236" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\226\333\343\342\377\2\312" \ - "\326\324\377u\226\217\377\203o\221\212\377\1\256\300\275\377\235\333" \ - "\343\342\377\1\266\307\303\377\203o\221\212\377\2q\222\214\377\302\320" \ - "\315\377\377\333\343\342\377\210\333\343\342\377\1\250\267\264\377\236" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\226\333\343\342\377\1\210" \ - "\244\236\377\203o\221\212\377\1\232\262\255\377\237\333\343\342\377\1" \ - "\243\271\265\377\203o\221\212\377\2\177\235\227\377\331\341\340\377\377" \ - "\333\343\342\377\207\333\343\342\377\1\250\267\264\377\236Slg\377\1\243" \ - "\262\257\377\377\333\343\342\377\225\333\343\342\377\1\272\312\307\377" \ - "\203o\221\212\377\2\211\244\237\377\330\341\340\377\237\333\343\342\377" \ - "\2\332\342\341\377\221\253\245\377\203o\221\212\377\1\256\301\276\377" \ - "\377\333\343\342\377\207\333\343\342\377\1\250\267\264\377\202Slg\377" \ - "\1u\211\205\377\230\270\305\303\377\1v\213\207\377\202Slg\377\1\243\262" \ - "\257\377\377\333\343\342\377\224\333\343\342\377\2\332\342\341\377\201" \ - "\236\230\377\202o\221\212\377\2p\222\213\377\312\326\324\377\241\333" \ - "\343\342\377\2\321\333\332\377t\225\216\377\202o\221\212\377\2x\230\221" \ - "\377\325\337\335\377\377\333\343\342\377\206\333\343\342\377\1\250\267" \ - "\264\377\202Slg\377\1\200\224\220\377\230\333\343\342\377\1\202\225\221" \ - "\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\224\333\343\342" \ - "\377\1\262\304\300\377\203o\221\212\377\1\232\261\255\377\243\333\343" \ - "\342\377\1\246\272\266\377\203o\221\212\377\1\244\271\265\377\377\333" \ - "\343\342\377\206\333\343\342\377\1\250\267\264\377\202Slg\377\1\200\224" \ - "\220\377\230\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257" \ - "\377\377\333\343\342\377\224\333\343\342\377\1\202\237\231\377\202o\221" \ - "\212\377\2r\223\215\377\317\332\331\377\243\333\343\342\377\2\326\337" \ - "\336\377y\230\222\377\202o\221\212\377\2x\230\221\377\332\342\341\377" \ - "\377\333\343\342\377\205\333\343\342\377\1\250\267\264\377\202Slg\377" \ - "\1\200\224\220\377\230\333\343\342\377\1\202\225\221\377\202Slg\377\1" \ - "\243\262\257\377\377\333\343\342\377\223\333\343\342\377\1\315\330\326" \ - "\377\203o\221\212\377\1\236\264\260\377\245\333\343\342\377\1\253\276" \ - "\273\377\203o\221\212\377\1\302\320\315\377\377\333\343\342\377\205\333" \ - "\343\342\377\1\250\267\264\377\202Slg\377\1\200\224\220\377\230\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342" \ - "\377\223\333\343\342\377\1\253\277\273\377\203o\221\212\377\1\302\320" \ - "\315\377\245\333\343\342\377\1\317\331\330\377\203o\221\212\377\1\237" \ - "\265\261\377\377\333\343\342\377\205\333\343\342\377\1\311\324\322\377" \ - "\202\254\271\267\377\1\274\307\306\377\230\333\343\342\377\1\325\336" \ - "\335\377\202\322\333\332\377\1\327\340\337\377\377\333\343\342\377\223" \ - "\333\343\342\377\1\212\246\240\377\202o\221\212\377\2w\227\221\377\332" \ - "\342\341\377\246\333\343\342\377\1\205\241\233\377\202o\221\212\377\1" \ - "}\234\226\377\377\333\343\342\377\377\333\343\342\377\267\333\343\342" \ - "\377\2\325\336\335\377p\222\213\377\202o\221\212\377\1\230\260\253\377" \ - "\247\333\343\342\377\1\246\273\267\377\203o\221\212\377\1\313\327\325" \ - "\377\377\333\343\342\377\377\333\343\342\377\266\333\343\342\377\1\310" \ - "\324\322\377\203o\221\212\377\1\264\305\302\377\247\333\343\342\377\1" \ - "\275\314\311\377\203o\221\212\377\1\275\314\312\377\377\333\343\342\377" \ - "\377\333\343\342\377\266\333\343\342\377\1\275\314\312\377\203o\221\212" \ - "\377\1\277\316\313\377\247\333\343\342\377\1\310\325\323\377\203o\221" \ - "\212\377\1\262\304\300\377\377\333\343\342\377\377\333\343\342\377\266" \ - "\333\343\342\377\1\263\305\301\377\203o\221\212\377\1\312\326\324\377" \ - "\247\333\343\342\377\1\323\335\334\377\203o\221\212\377\1\247\273\267" \ - "\377\377\333\343\342\377\217\333\343\342\377\4\330\340\337\377\300\313" \ - "\311\377\262\277\275\377\247\266\263\377\202\234\254\251\377\4\247\265" \ - "\263\377\262\277\275\377\277\313\311\377\330\340\337\377\377\333\343" \ - "\342\377\235\333\343\342\377\1\251\275\271\377\203o\221\212\377\1\325" \ - "\336\335\377\250\333\343\342\377\1r\223\215\377\202o\221\212\377\1\233" \ - "\263\256\377\377\333\343\342\377\214\333\343\342\377\4\316\330\326\377" \ - "\231\251\246\377v\213\207\377Xpk\377\210Slg\377\4Xpk\377v\212\206\377" \ - "\230\251\246\377\316\327\326\377\377\333\343\342\377\232\333\343\342" \ - "\377\1\242\267\263\377\203o\221\212\377\1\332\342\341\377\250\333\343" \ - "\342\377\1y\231\222\377\202o\221\212\377\1\225\256\251\377\377\333\343" \ - "\342\377\212\333\343\342\377\3\310\323\321\377\210\233\227\377Voj\377" \ - "\216Slg\377\3Voj\377\210\232\227\377\307\322\320\377\377\333\343\342" \ - "\377\230\333\343\342\377\1\253\276\273\377\203o\221\212\377\1\322\334" \ - "\333\377\247\333\343\342\377\2\332\342\341\377p\222\213\377\202o\221" \ - "\212\377\1\236\265\260\377\377\333\343\342\377\211\333\343\342\377\2" \ - "\251\270\265\377Xql\377\222Slg\377\2Xpk\377\246\265\262\377\377\333\343" \ - "\342\377\227\333\343\342\377\1\266\307\303\377\203o\221\212\377\1\307" \ - "\324\322\377\247\333\343\342\377\1\320\333\331\377\203o\221\212\377\1" \ - "\251\275\271\377\377\333\343\342\377\207\333\343\342\377\2\331\342\341" \ - "\377\210\233\227\377\226Slg\377\2\204\227\223\377\330\341\340\377\377" \ - "\333\343\342\377\225\333\343\342\377\1\300\317\314\377\203o\221\212\377" \ - "\1\274\314\311\377\247\333\343\342\377\1\305\322\320\377\203o\221\212" \ - "\377\1\265\306\303\377\377\333\343\342\377\207\333\343\342\377\1\213" \ - "\235\231\377\230Slg\377\1\206\231\225\377\377\333\343\342\377\225\333" \ - "\343\342\377\1\313\327\325\377\203o\221\212\377\1\256\301\276\377\247" \ - "\333\343\342\377\1\271\311\307\377\203o\221\212\377\1\300\317\314\377" \ - "\366\333\343\342\377\5\322\333\332\377\240\260\255\377\220\241\236\377" \ - "\246\265\262\377\330\340\337\377\212\333\343\342\377\1\231\251\246\377" \ - "\211Slg\377\3[sn\377g}y\377l\202~\377\202q\207\202\377\3l\202~\377g}" \ - "y\377[sn\377\211Slg\377\1\227\247\244\377\377\333\343\342\377\224\333" \ - "\343\342\377\2\330\341\337\377t\225\216\377\202o\221\212\377\1\220\252" \ - "\245\377\247\333\343\342\377\1\235\264\257\377\203o\221\212\377\1\320" \ - "\333\331\377\365\333\343\342\377\2\310\323\321\377ayt\377\203Slg\377" \ - "\2m\203\177\377\326\336\335\377\210\333\343\342\377\2\306\321\317\377" \ - "Umh\377\205Slg\377\4o\204\200\377\230\250\245\377\272\306\304\377\317" \ - "\330\327\377\210\333\343\342\377\4\317\330\327\377\272\306\304\377\227" \ - "\250\245\377o\204\200\377\205Slg\377\2Tmh\377\305\317\316\377\377\333" \ - "\343\342\377\224\333\343\342\377\1\223\254\247\377\202o\221\212\377\2" \ - "s\224\215\377\327\340\337\377\246\333\343\342\377\1|\232\224\377\202" \ - "o\221\212\377\1\206\242\234\377\366\333\343\342\377\1y\215\211\377\205" \ - "Slg\377\1\233\253\250\377\210\333\343\342\377\1~\222\216\377\204Slg\377" \ - "\2{\217\213\377\301\314\312\377\220\333\343\342\377\2\303\316\314\377" \ - "~\222\216\377\204Slg\377\1}\220\215\377\377\333\343\342\377\224\333\343" \ - "\342\377\1\264\305\302\377\203o\221\212\377\1\273\312\310\377\245\333" \ - "\343\342\377\1\306\323\321\377\203o\221\212\377\1\250\274\270\377\365" \ - "\333\343\342\377\2\331\341\340\377Voj\377\205Slg\377\1\177\222\217\377" \ - "\207\333\343\342\377\1\305\317\316\377\203Slg\377\2Voj\377\247\266\263" \ - "\377\224\333\343\342\377\2\253\271\267\377Woj\377\203Slg\377\1\303\316" \ - "\314\377\377\333\343\342\377\223\333\343\342\377\2\323\335\334\377p\222" \ - "\213\377\202o\221\212\377\1\225\255\251\377\245\333\343\342\377\1\237" \ - "\265\261\377\203o\221\212\377\1\312\326\324\377\366\333\343\342\377\1" \ - "axt\377\205Slg\377\1\210\233\227\377\207\333\343\342\377\1\235\254\252" \ - "\377\203Slg\377\1\260\276\273\377\226\333\343\342\377\1\263\300\276\377" \ - "\203Slg\377\1\231\251\246\377\377\333\343\342\377\224\333\343\342\377" \ - "\1\213\246\241\377\203o\221\212\377\1\307\323\321\377\243\333\343\342" \ - "\377\2\316\331\327\377r\223\214\377\202o\221\212\377\1\200\236\230\377" \ - "\367\333\343\342\377\1\232\252\247\377\205Slg\377\1\271\306\304\377\207" \ - "\333\343\342\377\1v\213\207\377\202Slg\377\1\204\227\223\377\230\333" \ - "\343\342\377\1\212\234\231\377\202Slg\377\1q\206\202\377\377\333\343" \ - "\342\377\224\333\343\342\377\1\300\316\314\377\203o\221\212\377\1\215" \ - "\247\242\377\207\333\343\342\377\4\327\337\336\377\236\264\260\377\270" \ - "\310\305\377\324\336\334\377\215\333\343\342\377\4\326\337\336\377\273" \ - "\312\310\377\236\264\260\377\322\334\332\377\207\333\343\342\377\1\227" \ - "\257\252\377\203o\221\212\377\1\263\305\301\377\367\333\343\342\377\6" \ - "\331\341\340\377\225\245\242\377Voj\377Slg\377^uq\377\251\267\265\377" \ - "\210\333\343\342\377\1Xql\377\202Slg\377\1\301\314\312\377\230\333\343" \ - "\342\377\1\305\317\316\377\202Slg\377\2Tmh\377\331\341\340\377\377\333" \ - "\343\342\377\224\333\343\342\377\1\215\250\243\377\203o\221\212\377\1" \ - "\276\315\312\377\206\333\343\342\377\1\274\313\311\377\202\223\254\247" \ - "\377\3\224\255\250\377\254\277\274\377\313\326\325\377\211\333\343\342" \ - "\377\3\316\331\327\377\257\302\276\377\226\256\251\377\202\223\254\247" \ - "\377\1\265\306\303\377\206\333\343\342\377\1\307\324\322\377\203o\221" \ - "\212\377\2\202\237\231\377\332\342\341\377\371\333\343\342\377\2\330" \ - "\340\337\377\315\326\325\377\211\333\343\342\377\1\325\335\334\377\202" \ - "Slg\377\1e|w\377\232\333\343\342\377\1g~y\377\202Slg\377\1\316\330\326" \ - "\377\377\333\343\342\377\224\333\343\342\377\1\306\323\321\377\203o\221" \ - "\212\377\2z\232\223\377\321\333\332\377\205\333\343\342\377\1\236\264" \ - "\260\377\205\223\254\247\377\3\241\267\262\377\277\316\313\377\330\341" \ - "\340\377\203\333\343\342\377\3\331\341\340\377\302\320\315\377\244\271" \ - "\265\377\205\223\254\247\377\2\231\260\254\377\331\341\340\377\204\333" \ - "\343\342\377\2\325\336\335\377\200\236\230\377\203o\221\212\377\1\274" \ - "\313\311\377\377\333\343\342\377\206\333\343\342\377\1\311\323\322\377" \ - "\202Slg\377\1w\213\207\377\232\333\343\342\377\1y\215\211\377\202Slg" \ - "\377\1\303\316\314\377\377\333\343\342\377\225\333\343\342\377\1\226" \ - "\256\252\377\203o\221\212\377\2\207\243\236\377\330\341\337\377\203\333" \ - "\343\342\377\1\310\324\322\377\202\223\254\247\377\2\271\311\306\377" \ - "\262\304\300\377\204\223\254\247\377\5\230\260\253\377\275\314\312\377" \ - "\333\343\342\377\304\321\317\377\232\261\254\377\204\223\254\247\377" \ - "\2\255\300\274\377\276\315\312\377\202\223\254\247\377\1\301\317\314" \ - "\377\203\333\343\342\377\2\332\342\341\377\216\250\243\377\203o\221\212" \ - "\377\1\213\246\241\377\377\333\343\342\377\207\333\343\342\377\1\301" \ - "\314\312\377\202Slg\377\1\200\224\220\377\232\333\343\342\377\1\203\226" \ - "\222\377\202Slg\377\1\273\307\305\377\377\333\343\342\377\225\333\343" \ - "\342\377\2\325\337\335\377\201\237\231\377\203o\221\212\377\1\230\260" \ - "\253\377\203\333\343\342\377\10\251\275\271\377\223\254\247\377\225\255" \ - "\251\377\365\367\367\377\377\377\377\377\360\363\362\377\302\320\315" \ - "\377\231\261\254\377\202\223\254\247\377\3\236\264\260\377\333\343\342" \ - "\377\247\273\267\377\202\223\254\247\377\10\227\257\252\377\275\314\311" \ - "\377\353\360\357\377\377\377\377\377\373\374\373\377\232\261\254\377" \ - "\223\254\247\377\242\270\263\377\203\333\343\342\377\1\240\266\262\377" \ - "\203o\221\212\377\2z\231\222\377\317\332\331\377\377\333\343\342\377" \ - "\207\333\343\342\377\1\313\325\324\377\202Slg\377\1t\211\205\377\232" \ - "\333\343\342\377\1v\213\207\377\202Slg\377\1\305\317\316\377\377\333" \ - "\343\342\377\226\333\343\342\377\2\315\330\326\377w\227\220\377\203o" \ - "\221\212\377\3\223\254\250\377\327\340\336\377\322\334\333\377\202\223" \ - "\254\247\377\1\271\311\306\377\204\377\377\377\377\2\372\373\373\377" \ - "\271\311\306\377\202\223\254\247\377\5\323\335\333\377\226\256\251\377" \ - "\223\254\247\377\257\301\276\377\367\371\371\377\204\377\377\377\377" \ - "\1\303\321\316\377\202\223\254\247\377\3\314\330\326\377\331\342\340" \ - "\377\235\264\257\377\203o\221\212\377\2r\223\214\377\304\321\317\377" \ - "\374\333\343\342\377\3\303\316\314\377\263\300\276\377\313\325\324\377" \ - "\210\333\343\342\377\1\327\337\336\377\202Slg\377\2`ws\377\332\342\341" \ - "\377\231\333\343\342\377\1ayt\377\202Slg\377\1\321\332\331\377\377\333" \ - "\343\342\377\227\333\343\342\377\2\277\316\313\377p\222\213\377\203o" \ - "\221\212\377\2\205\241\233\377\257\301\276\377\202\223\254\247\377\1" \ - "\346\354\353\377\205\377\377\377\377\1\315\330\326\377\202\223\253\246" \ - "\377\4\225\255\250\377\222\253\246\377\223\254\247\377\300\316\313\377" \ - "\205\377\377\377\377\1\360\363\362\377\202\223\254\247\377\2\253\277" \ - "\273\377\215\250\242\377\204o\221\212\377\1\264\305\302\377\373\333\343" \ - "\342\377\2\325\336\335\377}\221\215\377\202Slg\377\2Tlg\377\220\242\236" \ - "\377\210\333\343\342\377\1\\to\377\202Slg\377\1\267\304\302\377\230\333" \ - "\343\342\377\1\274\307\306\377\202Slg\377\2Wpk\377\332\342\341\377\377" \ - "\333\343\342\377\230\333\343\342\377\2\261\303\300\377p\222\213\377\203" \ - "o\221\212\377\3\220\252\245\377\223\254\247\377\247\273\267\377\204\377" \ - "\377\377\377\3\372\373\373\377\300\317\314\377\222\253\246\377\206\223" \ - "\254\247\377\2\271\311\306\377\367\371\371\377\204\377\377\377\377\4" \ - "\261\303\300\377\223\254\247\377\222\253\246\377q\222\214\377\203o\221" \ - "\212\377\1\247\274\270\377\374\333\343\342\377\1\213\235\232\377\205" \ - "Slg\377\1\254\271\267\377\207\333\343\342\377\1~\221\216\377\202Slg\377" \ - "\2v\212\206\377\332\342\341\377\227\333\343\342\377\1y\216\212\377\202" \ - "Slg\377\1z\216\212\377\377\333\343\342\377\232\333\343\342\377\4\276" \ - "\315\312\377v\226\220\377o\221\212\377{\232\224\377\202\223\254\247\377" \ - "\1\325\337\335\377\203\377\377\377\377\15\376\376\376\377\255\300\274" \ - "\377\223\254\247\377\230\260\253\377\315\331\326\377\353\360\357\377" \ - "\374\375\375\377\356\362\361\377\323\335\333\377\234\263\256\377\223" \ - "\254\247\377\245\272\265\377\374\374\374\377\203\377\377\377\377\1\337" \ - "\346\345\377\202\223\254\247\377\4\177\235\227\377o\221\212\377s\224" \ - "\215\377\267\307\305\377\374\333\343\342\377\2\332\342\341\377\\so\377" \ - "\205Slg\377\1\204\227\223\377\207\333\343\342\377\1\244\263\260\377\203" \ - "Slg\377\1\234\253\251\377\226\333\343\342\377\1\233\253\250\377\203S" \ - "lg\377\1\242\261\256\377\377\333\343\342\377\233\333\343\342\377\6\313" \ - "\327\325\377\200\236\230\377\213\246\240\377\223\254\247\377\232\261" \ - "\255\377\373\374\373\377\203\377\377\377\377\4\320\333\330\377\223\254" \ - "\247\377\244\271\264\377\361\364\364\377\205\377\377\377\377\4\366\370" \ - "\370\377\254\277\273\377\223\254\247\377\304\321\317\377\203\377\377" \ - "\377\377\6\376\376\376\377\241\267\262\377\223\254\247\377\216\250\243" \ - "\377{\232\224\377\306\323\321\377\375\333\343\342\377\2\331\342\341\377" \ - "Yrm\377\205Slg\377\1\201\225\221\377\207\333\343\342\377\2\314\326\324" \ - "\377Uni\377\203Slg\377\2\221\242\237\377\331\341\340\377\222\333\343" \ - "\342\377\2\331\341\340\377\220\242\236\377\203Slg\377\2Uni\377\314\325" \ - "\324\377\377\333\343\342\377\234\333\343\342\377\1\307\324\322\377\202" \ - "\223\254\247\377\1\303\321\316\377\203\377\377\377\377\4\367\371\371" \ - "\377\227\257\252\377\225\255\250\377\351\356\355\377\207\377\377\377" \ - "\377\4\361\365\364\377\230\260\253\377\224\255\250\377\357\363\362\377" \ - "\203\377\377\377\377\1\315\331\326\377\202\223\254\247\377\1\276\315" \ - "\313\377\377\333\343\342\377\1\204\226\223\377\205Slg\377\1\245\264\261" \ - "\377\210\333\343\342\377\1\214\236\233\377\204Slg\377\3g}y\377\251\267" \ - "\265\377\327\337\336\377\216\333\343\342\377\3\325\336\335\377\246\265" \ - "\262\377e|w\377\204Slg\377\1\215\236\233\377\377\333\343\342\377\235" \ - "\333\343\342\377\1\256\300\275\377\202\223\254\247\377\1\360\363\363" \ - "\377\203\377\377\377\377\3\341\350\346\377\223\254\247\377\266\307\304" \ - "\377\211\377\377\377\377\3\300\317\314\377\223\254\247\377\326\340\336" \ - "\377\203\377\377\377\377\4\367\371\370\377\226\256\252\377\223\254\247" \ - "\377\247\273\267\377\377\333\343\342\377\2\320\332\330\377q\207\202\377" \ - "\203Slg\377\2\204\226\223\377\332\342\341\377\210\333\343\342\377\2\317" \ - "\331\327\377Yrm\377\205Slg\377\7Yql\377~\222\216\377\240\260\255\377" \ - "\265\302\300\377\312\324\323\377\326\336\335\377\332\342\341\377\202" \ - "\333\343\342\377\7\332\342\341\377\326\336\335\377\312\324\323\377\265" \ - "\302\300\377\240\260\255\377}\220\215\377Wpk\377\205Slg\377\2Yrm\377" \ - "\317\331\327\377\377\333\343\342\377\234\333\343\342\377\4\325\336\335" \ - "\377\225\255\250\377\223\254\247\377\262\304\300\377\204\377\377\377" \ - "\377\3\312\326\324\377\223\254\247\377\315\331\327\377\211\377\377\377" \ - "\377\3\330\341\337\377\223\254\247\377\300\317\314\377\204\377\377\377" \ - "\377\1\274\313\310\377\202\223\254\247\377\1\320\333\331\377\377\333" \ - "\343\342\377\4\331\342\341\377\272\306\304\377\251\270\265\377\300\313" \ - "\311\377\213\333\343\342\377\1\255\273\271\377\214Slg\377\202Xpk\377" \ - "\214Slg\377\1\256\273\271\377\377\333\343\342\377\235\333\343\342\377" \ - "\1\271\311\306\377\202\223\254\247\377\1\340\347\345\377\204\377\377" \ - "\377\377\3\302\320\316\377\223\254\247\377\325\337\335\377\211\377\377" \ - "\377\377\3\340\347\345\377\223\254\247\377\270\311\305\377\204\377\377" \ - "\377\377\1\352\357\356\377\202\223\254\247\377\1\263\304\301\377\377" \ - "\333\343\342\377\220\333\343\342\377\1\237\256\253\377\230Slg\377\1\236" \ - "\255\253\377\377\333\343\342\377\235\333\343\342\377\5\332\342\341\377" \ - "\234\263\256\377\223\254\247\377\241\267\263\377\376\376\376\377\204" \ - "\377\377\377\377\3\330\341\337\377\223\254\247\377\277\316\313\377\211" \ - "\377\377\377\377\3\311\326\323\377\223\254\247\377\316\331\327\377\205" \ - "\377\377\377\377\4\253\276\272\377\223\254\247\377\227\257\252\377\330" \ - "\340\337\377\377\333\343\342\377\220\333\343\342\377\2\236\256\253\377" \ - "Uni\377\224Slg\377\2Uni\377\236\255\253\377\377\333\343\342\377\236\333" \ - "\343\342\377\1\305\322\320\377\202\223\254\247\377\1\316\331\327\377" \ - "\205\377\377\377\377\4\356\362\362\377\223\254\247\377\237\265\261\377" \ - "\371\373\373\377\207\377\377\377\377\4\375\376\376\377\246\273\267\377" \ - "\223\254\247\377\344\352\351\377\205\377\377\377\377\1\330\341\337\377" \ - "\202\223\254\247\377\1\276\315\312\377\377\333\343\342\377\221\333\343" \ - "\342\377\2\276\312\310\377e{w\377\222Slg\377\2dzv\377\275\311\307\377" \ - "\377\333\343\342\377\237\333\343\342\377\4\247\273\267\377\223\254\247" \ - "\377\226\256\252\377\367\371\371\377\206\377\377\377\377\3\264\306\302" \ - "\377\223\254\247\377\274\314\310\377\207\377\377\377\377\4\310\325\322" \ - "\377\223\254\247\377\251\275\271\377\376\376\376\377\205\377\377\377" \ - "\377\4\374\375\374\377\234\263\256\377\223\254\247\377\240\266\262\377" \ - "\377\333\343\342\377\222\333\343\342\377\3\326\336\335\377\242\261\256" \ - "\377e|w\377\216Slg\377\3d{v\377\241\261\256\377\325\336\335\377\377\333" \ - "\343\342\377\237\333\343\342\377\1\320\333\331\377\202\223\254\247\377" \ - "\1\274\314\311\377\207\377\377\377\377\5\365\367\367\377\233\262\255" \ - "\377\223\254\247\377\262\304\301\377\364\367\366\377\203\377\377\377" \ - "\377\5\370\372\371\377\273\313\310\377\223\254\247\377\226\257\252\377" \ - "\356\362\361\377\207\377\377\377\377\1\307\324\321\377\202\223\254\247" \ - "\377\1\312\326\324\377\377\333\343\342\377\223\333\343\342\377\5\331" \ - "\341\340\377\263\300\275\377\220\241\236\377o\204\200\377Umh\377\206" \ - "Slg\377\5Umh\377n\204\200\377\217\241\235\377\262\277\275\377\331\341" \ - "\340\377\377\333\343\342\377\241\333\343\342\377\1\262\304\301\377\202" \ - "\223\254\247\377\1\352\357\356\377\210\377\377\377\377\13\345\353\352" \ - "\377\240\266\261\377\223\254\247\377\225\255\250\377\247\274\270\377" \ - "\271\311\306\377\252\276\272\377\226\257\252\377\223\254\247\377\234" \ - "\263\256\377\336\346\344\377\210\377\377\377\377\4\363\365\365\377\224" \ - "\254\250\377\223\254\247\377\254\277\273\377\377\333\343\342\377\227" \ - "\333\343\342\377\3\327\340\337\377\315\326\325\377\303\316\314\377\202" \ - "\271\306\304\377\3\303\316\314\377\315\326\325\377\327\340\337\377\377" \ - "\333\343\342\377\244\333\343\342\377\4\330\340\337\377\227\257\252\377" \ - "\223\254\247\377\253\276\273\377\212\377\377\377\377\3\371\372\372\377" \ - "\232\262\255\377\223\253\246\377\203\223\254\247\377\3\222\253\246\377" \ - "\226\256\252\377\364\366\365\377\212\377\377\377\377\4\265\306\303\377" \ - "\223\254\247\377\224\255\250\377\324\335\334\377\377\333\343\342\377" \ - "\377\333\343\342\377\302\333\343\342\377\1\276\315\312\377\202\223\254" \ - "\247\377\1\331\342\340\377\212\377\377\377\377\1\346\353\352\377\202" \ - "\223\254\247\377\6\260\302\276\377\305\322\320\377\266\307\304\377\223" \ - "\253\247\377\223\254\247\377\333\343\342\377\212\377\377\377\377\1\343" \ - "\351\350\377\202\223\254\247\377\1\267\310\305\377\377\333\343\342\377" \ - "\377\333\343\342\377\302\333\343\342\377\4\237\265\261\377\223\254\247" \ - "\377\234\263\256\377\374\375\374\377\212\377\377\377\377\1\270\310\305" \ - "\377\202\223\254\247\377\6\322\334\333\377\333\343\342\377\327\340\337" \ - "\377\227\257\252\377\223\254\247\377\256\300\275\377\213\377\377\377" \ - "\377\4\244\271\265\377\223\254\247\377\232\261\255\377\331\342\341\377" \ - "\377\333\343\342\377\211\333\343\342\377\1\235\255\252\377\207czu\377" \ - "\1\274\310\306\377\377\333\343\342\377\256\333\343\342\377\1\312\326" \ - "\324\377\202\223\254\247\377\1\307\324\321\377\212\377\377\377\377\4" \ - "\364\367\366\377\225\255\250\377\223\254\247\377\251\275\271\377\203" \ - "\333\343\342\377\1\262\303\300\377\202\223\254\247\377\1\354\361\360" \ - "\377\212\377\377\377\377\1\321\334\332\377\202\223\254\247\377\1\303" \ - "\320\316\377\377\333\343\342\377\211\333\343\342\377\1|\217\214\377\207" \ - "Slg\377\1\270\304\302\377\377\333\343\342\377\256\333\343\342\377\4\253" \ - "\276\273\377\223\254\247\377\224\255\250\377\363\366\365\377\212\377" \ - "\377\377\377\1\312\326\323\377\202\223\254\247\377\1\307\324\322\377" \ - "\203\333\343\342\377\1\320\332\331\377\202\223\254\247\377\1\277\316" \ - "\313\377\212\377\377\377\377\4\371\372\372\377\230\260\253\377\223\254" \ - "\247\377\244\271\265\377\377\333\343\342\377\211\333\343\342\377\1ax" \ - "t\377\207Slg\377\1\270\304\302\377\377\333\343\342\377\255\333\343\342" \ - "\377\4\324\335\334\377\224\255\250\377\223\254\247\377\266\307\303\377" \ - "\212\377\377\377\377\5\375\375\375\377\236\264\260\377\223\254\247\377" \ - "\236\264\260\377\332\342\341\377\204\333\343\342\377\4\246\273\267\377" \ - "\223\254\247\377\230\257\253\377\371\372\372\377\212\377\377\377\377" \ - "\1\300\316\313\377\202\223\254\247\377\1\316\331\330\377\377\333\343" \ - "\342\377\207\333\343\342\377\1\325\335\334\377\205Slg\377\4Yql\377\216" \ - "\237\234\377\251\270\265\377\323\334\332\377\377\333\343\342\377\255" \ - "\333\343\342\377\1\267\307\304\377\202\223\254\247\377\1\343\352\350" \ - "\377\212\377\377\377\377\1\333\343\342\377\202\223\254\247\377\1\274" \ - "\313\310\377\205\333\343\342\377\1\305\322\320\377\202\223\254\247\377" \ - "\1\320\333\331\377\212\377\377\377\377\1\355\361\360\377\202\223\254" \ - "\247\377\1\260\302\277\377\377\333\343\342\377\207\333\343\342\377\1" \ - "\313\325\324\377\204Slg\377\2i\200{\377\313\325\324\377\377\333\343\342" \ - "\377\257\333\343\342\377\4\331\342\341\377\232\261\255\377\223\254\247" \ - "\377\245\271\265\377\213\377\377\377\377\4\256\300\275\377\223\254\247" \ - "\377\226\256\251\377\327\337\336\377\205\333\343\342\377\4\332\342\341" \ - "\377\234\262\256\377\223\254\247\377\243\271\264\377\213\377\377\377" \ - "\377\4\256\301\275\377\223\254\247\377\226\256\251\377\327\337\336\377" \ - "\377\333\343\342\377\206\333\343\342\377\1\302\315\313\377\204Slg\377" \ - "\1\273\307\305\377\377\333\343\342\377\260\333\343\342\377\1\303\320" \ - "\316\377\202\223\254\247\377\1\322\334\332\377\212\377\377\377\377\1" \ - "\354\361\360\377\202\223\254\247\377\1\260\302\277\377\207\333\343\342" \ - "\377\1\271\311\306\377\202\223\254\247\377\1\342\350\347\377\212\377" \ - "\377\377\377\1\334\344\342\377\202\223\254\247\377\1\274\313\310\377" \ - "\377\333\343\342\377\206\333\343\342\377\1\307\322\320\377\203Slg\377" \ - "\1^uq\377\377\333\343\342\377\261\333\343\342\377\4\244\271\265\377\223" \ - "\254\247\377\230\260\253\377\371\373\372\377\212\377\377\377\377\1\277" \ - "\316\313\377\202\223\254\247\377\1\316\331\327\377\207\333\343\342\377" \ - "\4\325\336\335\377\225\255\250\377\223\254\247\377\264\306\302\377\212" \ - "\377\377\377\377\5\375\376\375\377\237\265\261\377\223\254\247\377\236" \ - "\264\260\377\332\342\341\377\377\333\343\342\377\205\333\343\342\377" \ - "\1\326\337\336\377\203Slg\377\1q\207\202\377\377\333\343\342\377\260" \ - "\333\343\342\377\1\316\331\327\377\202\223\254\247\377\1\300\317\314" \ - "\377\212\377\377\377\377\4\371\372\372\377\230\257\253\377\223\254\247" \ - "\377\244\271\265\377\211\333\343\342\377\4\255\300\274\377\223\254\247" \ - "\377\224\254\250\377\362\365\364\377\212\377\377\377\377\1\312\326\324" \ - "\377\202\223\254\247\377\1\307\324\322\377\377\333\343\342\377\206\333" \ - "\343\342\377\1^vq\377\202Slg\377\1o\205\201\377\377\333\343\342\377\260" \ - "\333\343\342\377\1\260\302\277\377\202\223\254\247\377\1\356\361\361" \ - "\377\212\377\377\377\377\1\320\333\331\377\202\223\254\247\377\1\303" \ - "\320\316\377\211\333\343\342\377\1\314\327\325\377\202\223\254\247\377" \ - "\1\306\323\320\377\212\377\377\377\377\4\365\367\367\377\225\255\251" \ - "\377\223\254\247\377\251\275\271\377\377\333\343\342\377\206\333\343" \ - "\342\377\1}\221\215\377\202Slg\377\1byt\377\230\333\343\342\377\1\305" \ - "\317\316\377\202\270\305\303\377\1\315\326\325\377\377\333\343\342\377" \ - "\223\333\343\342\377\4\326\337\336\377\226\256\251\377\223\254\247\377" \ - "\257\301\276\377\213\377\377\377\377\4\243\271\264\377\223\254\247\377" \ - "\232\261\255\377\331\342\341\377\212\333\343\342\377\4\242\267\263\377" \ - "\223\254\247\377\233\262\256\377\374\374\374\377\212\377\377\377\377" \ - "\1\271\311\306\377\202\223\254\247\377\1\322\334\333\377\377\333\343" \ - "\342\377\205\333\343\342\377\1\270\304\302\377\203Slg\377\1\305\320\316" \ - "\377\227\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\223\333\343\342\377\1\273\313\310\377\202\223\254" \ - "\247\377\1\334\344\343\377\212\377\377\377\377\1\342\351\347\377\202" \ - "\223\254\247\377\1\267\307\304\377\213\333\343\342\377\1\300\316\314" \ - "\377\202\223\254\247\377\1\327\340\336\377\212\377\377\377\377\1\346" \ - "\354\353\377\202\223\254\247\377\1\265\306\302\377\377\333\343\342\377" \ - "\206\333\343\342\377\1k\201|\377\202Slg\377\1\216\240\235\377\227\333" \ - "\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343" \ - "\342\377\222\333\343\342\377\5\332\342\341\377\235\264\257\377\223\254" \ - "\247\377\237\265\261\377\375\376\375\377\212\377\377\377\377\4\264\306" \ - "\302\377\223\254\247\377\224\255\250\377\324\335\334\377\213\333\343" \ - "\342\377\4\331\341\340\377\230\260\253\377\223\254\247\377\252\275\271" \ - "\377\213\377\377\377\377\4\250\274\270\377\223\254\247\377\230\260\253" \ - "\377\331\341\340\377\377\333\343\342\377\205\333\343\342\377\5\301\315" \ - "\313\377Yrm\377Slg\377Umh\377\277\313\311\377\226\333\343\342\377\1\202" \ - "\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\222\333" \ - "\343\342\377\1\307\324\322\377\202\223\254\247\377\1\313\327\324\377" \ - "\212\377\377\377\377\4\362\365\364\377\224\254\250\377\223\254\247\377" \ - "\253\276\273\377\215\333\343\342\377\1\264\305\302\377\202\223\254\247" \ - "\377\1\350\356\355\377\212\377\377\377\377\1\325\337\335\377\202\223" \ - "\254\247\377\1\300\316\314\377\377\333\343\342\377\206\333\343\342\377" \ - "\5\265\302\300\377Umh\377Slg\377]up\377\301\314\312\377\225\333\343\342" \ - "\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\222\333\343\342\377\4\251\274\271\377\223\254\247\377\225\256\251\377" \ - "\366\370\367\377\212\377\377\377\377\1\306\323\321\377\202\223\254\247" \ - "\377\1\312\326\324\377\215\333\343\342\377\1\322\334\332\377\202\223" \ - "\254\247\377\1\273\313\310\377\212\377\377\377\377\4\373\374\373\377" \ - "\232\261\255\377\223\254\247\377\242\267\263\377\377\333\343\342\377" \ - "\207\333\343\342\377\6\267\304\302\377e{w\377Slg\377Vni\377\224\245\242" \ - "\377\321\332\331\377\223\333\343\342\377\1\202\225\221\377\202Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\221\333\343\342\377\1\322\334" \ - "\332\377\202\223\254\247\377\1\271\311\306\377\212\377\377\377\377\4" \ - "\374\374\374\377\233\262\256\377\223\254\247\377\240\266\261\377\217" \ - "\333\343\342\377\4\251\275\271\377\223\254\247\377\226\256\251\377\366" \ - "\370\370\377\212\377\377\377\377\1\304\321\317\377\202\223\254\247\377" \ - "\1\314\327\325\377\377\333\343\342\377\203\333\343\342\377\1\330\340" \ - "\337\377\203\322\333\332\377\2\315\326\325\377\207\232\226\377\202Sl" \ - "g\377\6Vni\377|\220\214\377\234\254\251\377\264\301\277\377\303\316\314" \ - "\377\314\325\324\377\216\322\333\332\377\1\177\223\217\377\202Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\221\333\343\342\377\1\264\305" \ - "\302\377\202\223\254\247\377\1\346\353\352\377\212\377\377\377\377\1" \ - "\330\341\337\377\202\223\254\247\377\1\276\315\312\377\217\333\343\342" \ - "\377\1\307\324\322\377\202\223\254\247\377\1\315\330\326\377\212\377" \ - "\377\377\377\1\357\362\362\377\202\223\254\247\377\1\256\300\275\377" \ - "\377\333\343\342\377\203\333\343\342\377\1\250\267\264\377\236Slg\377" \ - "\1\243\262\257\377\377\333\343\342\377\220\333\343\342\377\4\331\341" \ - "\340\377\230\260\253\377\223\254\247\377\247\273\267\377\213\377\377" \ - "\377\377\4\252\276\272\377\223\254\247\377\227\257\252\377\330\340\337" \ - "\377\217\333\343\342\377\5\332\342\341\377\236\264\260\377\223\254\247" \ - "\377\240\266\262\377\376\376\376\377\212\377\377\377\377\4\261\303\277" \ - "\377\223\254\247\377\225\255\250\377\325\336\335\377\377\333\343\342" \ - "\377\202\333\343\342\377\1\250\267\264\377\236Slg\377\1\243\262\257\377" \ - "\377\333\343\342\377\220\333\343\342\377\1\300\316\314\377\202\223\254" \ - "\247\377\1\324\336\334\377\212\377\377\377\377\1\351\356\355\377\202" \ - "\223\254\247\377\1\262\304\301\377\221\333\343\342\377\1\273\313\310" \ - "\377\202\223\254\247\377\1\336\345\344\377\212\377\377\377\377\1\336" \ - "\346\344\377\202\223\254\247\377\1\271\311\306\377\377\333\343\342\377" \ - "\202\333\343\342\377\1\250\267\264\377\236Slg\377\1\243\262\257\377\377" \ - "\333\343\342\377\220\333\343\342\377\4\241\267\263\377\223\254\247\377" \ - "\231\261\254\377\372\373\373\377\212\377\377\377\377\1\274\313\310\377" \ - "\202\223\254\247\377\1\320\333\331\377\221\333\343\342\377\4\326\337" \ - "\336\377\226\256\251\377\223\254\247\377\261\303\277\377\212\377\377" \ - "\377\377\5\376\376\376\377\240\266\262\377\223\254\247\377\234\262\256" \ - "\377\332\342\341\377\377\333\343\342\377\2\333\343\342\377\250\267\264" \ - "\377\236Slg\377\1\243\262\257\377\377\333\343\342\377\217\333\343\342" \ - "\377\1\314\327\325\377\202\223\254\247\377\1\303\321\316\377\212\377" \ - "\377\377\377\4\367\371\370\377\226\256\251\377\223\254\247\377\247\273" \ - "\267\377\223\333\343\342\377\1\260\302\277\377\202\223\254\247\377\1" \ - "\357\362\362\377\212\377\377\377\377\1\315\330\326\377\202\223\254\247" \ - "\377\1\305\322\320\377\377\333\343\342\377\2\333\343\342\377\250\267" \ - "\264\377\236Slg\377\1\243\262\257\377\377\333\343\342\377\217\333\343" \ - "\342\377\1\255\300\274\377\202\223\254\247\377\1\357\363\362\377\212" \ - "\377\377\377\377\1\315\330\326\377\202\223\254\247\377\1\305\322\320" \ - "\377\223\333\343\342\377\1\316\331\327\377\202\223\254\247\377\1\302" \ - "\320\315\377\212\377\377\377\377\4\366\370\370\377\226\256\251\377\223" \ - "\254\247\377\247\273\267\377\377\333\343\342\377\2\333\343\342\377\250" \ - "\267\264\377\202Slg\377\1u\211\205\377\230\270\305\303\377\1v\213\207" \ - "\377\202Slg\377\1\243\262\257\377\377\333\343\342\377\216\333\343\342" \ - "\377\4\325\336\335\377\224\255\250\377\223\254\247\377\261\303\277\377" \ - "\212\377\377\377\377\5\376\376\376\377\240\266\262\377\223\254\247\377" \ - "\234\263\256\377\332\342\341\377\224\333\343\342\377\4\244\271\265\377" \ - "\223\254\247\377\231\261\254\377\372\373\373\377\212\377\377\377\377" \ - "\1\273\313\310\377\202\223\254\247\377\1\320\333\331\377\377\333\343" \ - "\342\377\1\250\267\264\377\202Slg\377\1\200\224\220\377\230\333\343\342" \ - "\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\216\333\343\342\377\1\271\311\306\377\202\223\254\247\377\1\337\346" \ - "\345\377\212\377\377\377\377\1\336\346\344\377\202\223\254\247\377\1" \ - "\271\311\306\377\225\333\343\342\377\1\303\320\316\377\202\223\254\247" \ - "\377\1\323\335\333\377\212\377\377\377\377\1\351\356\355\377\202\223" \ - "\254\247\377\1\262\304\300\377\377\333\343\342\377\1\250\267\264\377" \ - "\202Slg\377\1\200\224\220\377\230\333\343\342\377\1\202\225\221\377\202" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\215\333\343\342\377\5\332" \ - "\342\341\377\233\262\256\377\223\254\247\377\241\267\262\377\376\376" \ - "\376\377\212\377\377\377\377\4\261\303\277\377\223\254\247\377\225\255" \ - "\250\377\325\336\335\377\225\333\343\342\377\4\331\342\341\377\232\261" \ - "\255\377\223\254\247\377\246\272\266\377\213\377\377\377\377\4\252\275" \ - "\271\377\223\254\247\377\227\257\252\377\327\340\337\377\376\333\343" \ - "\342\377\1\250\267\264\377\202Slg\377\1\200\224\220\377\230\333\343\342" \ - "\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\377\333\343\342\377" \ - "\215\333\343\342\377\1\304\322\317\377\202\223\254\247\377\1\315\331" \ - "\326\377\212\377\377\377\377\1\357\363\362\377\202\223\254\247\377\1" \ - "\256\300\275\377\227\333\343\342\377\1\267\307\304\377\202\223\254\247" \ - "\377\1\345\353\351\377\212\377\377\377\377\1\330\341\337\377\202\223" \ - "\254\247\377\1\276\315\312\377\376\333\343\342\377\1\250\267\264\377" \ - "\202Slg\377\1\200\224\220\377\230\333\343\342\377\1\202\225\221\377\202" \ - "Slg\377\1\243\262\257\377\377\333\343\342\377\215\333\343\342\377\4\246" \ - "\272\266\377\223\254\247\377\226\256\252\377\367\371\370\377\212\377" \ - "\377\377\377\1\302\320\315\377\202\223\254\247\377\1\314\330\326\377" \ - "\227\333\343\342\377\4\324\335\334\377\224\255\250\377\223\254\247\377" \ - "\267\310\305\377\212\377\377\377\377\4\374\374\374\377\233\262\256\377" \ - "\223\254\247\377\237\265\261\377\376\333\343\342\377\1\311\324\322\377" \ - "\202\254\271\267\377\1\274\307\306\377\230\333\343\342\377\1\325\336" \ - "\335\377\202\322\333\332\377\1\327\340\337\377\377\333\343\342\377\214" \ - "\333\343\342\377\1\320\332\331\377\202\223\254\247\377\1\274\313\310" \ - "\377\212\377\377\377\377\4\372\373\373\377\231\261\254\377\223\254\247" \ - "\377\242\267\263\377\231\333\343\342\377\4\253\276\273\377\223\254\247" \ - "\377\225\255\250\377\364\366\366\377\212\377\377\377\377\1\306\323\321" \ - "\377\202\223\254\247\377\1\311\325\323\377\377\333\343\342\377\377\333" \ - "\343\342\377\252\333\343\342\377\1\262\303\300\377\202\223\254\247\377" \ - "\1\351\356\355\377\212\377\377\377\377\1\324\336\334\377\202\223\254" \ - "\247\377\1\301\317\314\377\231\333\343\342\377\1\312\326\324\377\202" \ - "\223\254\247\377\1\311\325\323\377\212\377\377\377\377\4\362\365\364" \ - "\377\224\254\250\377\223\254\247\377\253\276\273\377\377\333\343\342" \ - "\377\377\333\343\342\377\251\333\343\342\377\4\327\340\337\377\227\257" \ - "\252\377\223\254\247\377\253\276\272\377\213\377\377\377\377\4\246\273" \ - "\267\377\223\254\247\377\230\260\253\377\331\341\340\377\213\333\343" \ - "\342\377\3\306\323\320\377\274\313\311\377\316\330\327\377\214\333\343" \ - "\342\377\4\237\265\261\377\223\254\247\377\236\264\257\377\375\375\375" \ - "\377\212\377\377\377\377\4\264\306\302\377\223\254\247\377\224\255\250" \ - "\377\323\335\334\377\377\333\343\342\377\225\333\343\342\377\5|\220\214" \ - "\377x\214\210\377\217\241\235\377\266\302\300\377\331\342\341\377\377" \ - "\333\343\342\377\216\333\343\342\377\1\275\314\312\377\202\223\254\247" \ - "\377\1\330\341\337\377\212\377\377\377\377\1\346\353\352\377\202\223" \ - "\254\247\377\1\265\306\303\377\212\333\343\342\377\2\331\341\340\377" \ - "\250\275\271\377\203\223\254\247\377\1\240\266\262\377\213\333\343\342" \ - "\377\1\276\315\312\377\202\223\254\247\377\1\332\343\341\377\212\377" \ - "\377\377\377\1\342\351\347\377\202\223\254\247\377\1\267\307\304\377" \ - "\374\333\343\342\377\1\315\326\325\377\202\264\301\277\377\1\277\312" \ - "\310\377\224\333\343\342\377\1h\177z\377\203Slg\377\2h\177z\377\267\303" \ - "\301\377\377\333\343\342\377\215\333\343\342\377\4\237\265\261\377\223" \ - "\254\247\377\234\263\256\377\374\375\374\377\212\377\377\377\377\1\270" \ - "\310\305\377\202\223\254\247\377\1\322\334\333\377\212\333\343\342\377" \ - "\7\306\323\320\377\223\254\247\377\236\264\260\377\303\321\316\377\236" \ - "\265\260\377\223\254\247\377\305\323\320\377\212\333\343\342\377\4\330" \ - "\340\337\377\227\257\252\377\223\254\247\377\255\300\274\377\213\377" \ - "\377\377\377\4\243\271\264\377\223\254\247\377\232\261\254\377\331\341" \ - "\340\377\373\333\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210" \ - "\377\224\333\343\342\377\1h\177z\377\204Slg\377\2Tmh\377\251\270\265" \ - "\377\377\333\343\342\377\213\333\343\342\377\1\311\325\323\377\202\223" \ - "\254\247\377\1\307\324\321\377\212\377\377\377\377\4\364\367\366\377" \ - "\225\255\250\377\223\254\247\377\251\275\271\377\213\333\343\342\377" \ - "\7\260\302\277\377\223\254\247\377\325\336\334\377\377\377\377\377\327" \ - "\340\337\377\223\254\247\377\250\274\271\377\213\333\343\342\377\1\262" \ - "\304\300\377\202\223\254\247\377\1\353\360\357\377\212\377\377\377\377" \ - "\1\321\333\331\377\202\223\254\247\377\1\302\320\316\377\373\333\343" \ - "\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\224\333\343\342" \ - "\377\1h\177z\377\205Slg\377\2Xpk\377\311\323\322\377\377\333\343\342" \ - "\377\212\333\343\342\377\4\253\276\272\377\223\254\247\377\224\254\250" \ - "\377\362\365\364\377\212\377\377\377\377\1\312\326\323\377\202\223\254" \ - "\247\377\1\310\324\322\377\213\333\343\342\377\7\255\300\275\377\223" \ - "\254\247\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254" \ - "\247\377\245\272\265\377\213\333\343\342\377\1\320\333\331\377\202\223" \ - "\254\247\377\1\276\315\312\377\212\377\377\377\377\4\371\372\372\377" \ - "\230\257\253\377\223\254\247\377\244\271\265\377\373\333\343\342\377" \ - "\1\250\267\264\377\202Slg\377\1x\214\210\377\224\333\343\342\377\4\303" \ - "\316\314\377\260\275\273\377\233\253\250\377f}x\377\203Slg\377\1\217" \ - "\241\235\377\377\333\343\342\377\211\333\343\342\377\4\323\335\333\377" \ - "\224\254\247\377\223\254\247\377\265\306\303\377\212\377\377\377\377" \ - "\4\375\375\375\377\236\264\260\377\223\254\247\377\236\264\260\377\214" \ - "\333\343\342\377\7\255\300\275\377\223\254\247\377\341\350\346\377\377" \ - "\377\377\377\356\362\361\377\223\254\247\377\245\272\265\377\214\333" \ - "\343\342\377\4\247\273\267\377\223\254\247\377\227\257\252\377\370\372" \ - "\371\377\212\377\377\377\377\1\277\316\313\377\202\223\254\247\377\1" \ - "\316\331\327\377\372\333\343\342\377\1\250\267\264\377\202Slg\377\1x" \ - "\214\210\377\227\333\343\342\377\2\331\342\341\377\211\233\230\377\202" \ - "Slg\377\1d{v\377\377\333\343\342\377\211\333\343\342\377\1\266\307\304" \ - "\377\202\223\254\247\377\1\343\351\350\377\212\377\377\377\377\1\333" \ - "\343\342\377\202\223\254\247\377\1\274\313\310\377\214\333\343\342\377" \ - "\7\255\300\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356" \ - "\362\361\377\223\254\247\377\245\272\265\377\214\333\343\342\377\1\305" \ - "\322\320\377\202\223\254\247\377\1\317\332\330\377\212\377\377\377\377" \ - "\1\354\361\360\377\202\223\254\247\377\1\260\302\276\377\372\333\343" \ - "\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\230\333\343\342" \ - "\377\2\326\337\336\377]tp\377\202Slg\377\1\317\331\327\377\377\333\343" \ - "\342\377\207\333\343\342\377\4\331\341\340\377\232\261\254\377\223\254" \ - "\247\377\244\271\265\377\213\377\377\377\377\4\256\300\275\377\223\254" \ - "\247\377\226\256\251\377\327\337\336\377\214\333\343\342\377\7\255\300" \ - "\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356\362\361" \ - "\377\223\254\247\377\245\272\265\377\214\333\343\342\377\5\332\342\341" \ - "\377\234\262\256\377\223\254\247\377\243\270\264\377\376\376\376\377" \ - "\212\377\377\377\377\4\256\300\275\377\223\254\247\377\226\256\251\377" \ - "\326\337\336\377\371\333\343\342\377\1\250\267\264\377\202Slg\377\1x" \ - "\214\210\377\231\333\343\342\377\1v\212\206\377\202Slg\377\1\301\315" \ - "\313\377\377\333\343\342\377\207\333\343\342\377\1\302\320\315\377\202" \ - "\223\254\247\377\1\321\334\332\377\212\377\377\377\377\1\354\361\360" \ - "\377\202\223\254\247\377\1\260\302\277\377\215\333\343\342\377\7\255" \ - "\300\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356\362" \ - "\361\377\223\254\247\377\245\272\265\377\215\333\343\342\377\1\271\311" \ - "\306\377\202\223\254\247\377\1\341\350\346\377\212\377\377\377\377\1" \ - "\333\343\342\377\202\223\254\247\377\1\273\313\310\377\371\333\343\342" \ - "\377\1\250\267\264\377\202Slg\377\1x\214\210\377\231\333\343\342\377" \ - "\1\177\222\217\377\202Slg\377\1\272\306\304\377\377\333\343\342\377\207" \ - "\333\343\342\377\4\243\270\264\377\223\254\247\377\230\260\253\377\371" \ - "\372\372\377\212\377\377\377\377\1\277\316\313\377\202\223\254\247\377" \ - "\1\316\331\330\377\215\333\343\342\377\7\255\300\275\377\223\254\247" \ - "\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247\377" \ - "\245\272\265\377\215\333\343\342\377\4\325\336\335\377\225\255\250\377" \ - "\223\254\247\377\264\305\301\377\212\377\377\377\377\5\375\375\375\377" \ - "\236\265\260\377\223\254\247\377\235\264\257\377\332\342\341\377\370" \ - "\333\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\231\333" \ - "\343\342\377\1i\177{\377\202Slg\377\1\276\312\310\377\377\333\343\342" \ - "\377\206\333\343\342\377\1\316\331\327\377\202\223\254\247\377\7\300" \ - "\316\313\377\377\377\377\377\327\340\337\377\272\312\306\377\254\277" \ - "\273\377\276\315\312\377\343\352\350\377\204\377\377\377\377\4\371\372" \ - "\372\377\230\257\253\377\223\254\247\377\245\271\265\377\216\333\343" \ - "\342\377\7\255\300\275\377\223\254\247\377\341\350\346\377\377\377\377" \ - "\377\356\362\361\377\223\254\247\377\245\272\265\377\216\333\343\342" \ - "\377\1\256\300\275\377\202\223\254\247\377\1\361\364\364\377\204\377" \ - "\377\377\377\7\350\355\354\377\300\317\314\377\254\300\274\377\267\310" \ - "\304\377\323\335\333\377\376\376\376\377\312\326\324\377\202\223\254" \ - "\247\377\1\307\323\321\377\370\333\343\342\377\1\250\267\264\377\202" \ - "Slg\377\1x\214\210\377\230\333\343\342\377\1\254\272\270\377\203Slg\377" \ - "\1\307\321\320\377\354\333\343\342\377\1\205\241\234\377\210|\233\225" \ - "\377\1\262\303\300\377\217\312\326\324\377\1\251\274\271\377\202\223" \ - "\254\247\377\2\350\355\354\377\257\301\275\377\205\223\254\247\377\1" \ - "\301\317\315\377\203\377\377\377\377\1\320\333\331\377\202\223\254\247" \ - "\377\1\267\310\305\377\216\312\326\324\377\7\247\273\267\377\223\254" \ - "\247\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247" \ - "\377\240\266\262\377\216\312\326\324\377\1\276\315\312\377\202\223\254" \ - "\247\377\1\305\322\320\377\203\377\377\377\377\2\312\327\324\377\224" \ - "\255\250\377\204\223\254\247\377\5\251\275\271\377\354\360\360\377\225" \ - "\255\251\377\223\254\247\377\243\270\264\377\217\312\326\324\377\1\273" \ - "\313\310\377\210|\233\225\377\2\177\235\227\377\330\341\337\377\325\333" \ - "\343\342\377\1\273\307\305\377\210\270\305\303\377\1\223\244\241\377" \ - "\202Slg\377\1n\204\200\377\223\270\305\303\377\6\267\303\301\377\257" \ - "\274\272\377\247\265\263\377\232\252\247\377t\210\204\377Tmh\377\202" \ - "Slg\377\2Woj\377\330\340\337\377\354\333\343\342\377\1u\225\217\377\227" \ - "o\221\212\377\15q\222\213\377\221\252\245\377\223\254\247\377\256\301" \ - "\275\377\277\316\313\377\223\254\247\377\242\267\263\377\334\344\343" \ - "\377\354\360\357\377\323\335\333\377\232\261\255\377\223\254\247\377" \ - "\327\340\337\377\202\377\377\377\377\3\243\271\264\377\223\254\247\377" \ - "\217\251\243\377\217o\221\212\377\7\205\242\234\377\223\254\247\377\341" \ - "\350\346\377\377\377\377\377\356\362\361\377\223\254\247\377\212\245" \ - "\240\377\217o\221\212\377\22\213\246\240\377\223\254\247\377\233\262" \ - "\255\377\373\374\374\377\377\377\377\377\343\352\350\377\223\254\247" \ - "\377\226\257\252\377\316\331\327\377\354\360\357\377\340\347\345\377" \ - "\250\274\270\377\223\254\247\377\265\306\303\377\271\311\306\377\223" \ - "\254\247\377\222\253\246\377s\224\215\377\230o\221\212\377\1\327\340" \ - "\337\377\325\333\343\342\377\1\\so\377\247Slg\377\1t\210\204\377\355" \ - "\333\343\342\377\1u\225\217\377\227o\221\212\377\1~\234\226\377\202\223" \ - "\254\247\377\4\331\342\340\377\224\255\250\377\230\260\253\377\361\365" \ - "\364\377\203\377\377\377\377\5\341\350\346\377\223\254\247\377\247\274" \ - "\270\377\377\377\377\377\342\351\347\377\202\223\254\247\377\1\200\236" \ - "\230\377\217o\221\212\377\7\205\242\234\377\223\254\247\377\341\350\346" \ - "\377\377\377\377\377\356\362\361\377\223\254\247\377\212\245\240\377" \ - "\217o\221\212\377\1|\232\224\377\202\223\254\247\377\5\326\340\336\377" \ - "\377\377\377\377\262\304\301\377\223\254\247\377\325\337\335\377\203" \ - "\377\377\377\377\4\370\371\371\377\235\264\257\377\223\254\247\377\332" \ - "\342\340\377\202\223\254\247\377\1\202\237\231\377\230o\221\212\377\1" \ - "\327\340\337\377\325\333\343\342\377\1\\so\377\247Slg\377\1\253\271\266" \ - "\377\355\333\343\342\377\1u\225\217\377\227o\221\212\377\6\215\250\242" \ - "\377\223\254\247\377\236\265\260\377\344\352\350\377\223\254\247\377" \ - "\262\304\300\377\205\377\377\377\377\7\233\262\255\377\225\255\250\377" \ - "\374\374\374\377\264\306\302\377\223\254\247\377\222\253\246\377r\223" \ - "\214\377\217o\221\212\377\7\205\242\234\377\223\254\247\377\341\350\346" \ - "\377\377\377\377\377\356\362\361\377\223\254\247\377\212\245\240\377" \ - "\220o\221\212\377\7\220\251\244\377\223\254\247\377\251\275\271\377\377" \ - "\377\377\377\235\264\257\377\223\254\247\377\372\373\373\377\204\377" \ - "\377\377\377\7\275\314\311\377\223\254\247\377\333\343\342\377\247\273" \ - "\267\377\223\254\247\377\220\251\244\377p\221\212\377\227o\221\212\377" \ - "\1\327\340\337\377\325\333\343\342\377\1\\so\377\246Slg\377\2u\211\205" \ - "\377\331\341\340\377\355\333\343\342\377\1u\225\217\377\226o\221\212" \ - "\377\1y\230\222\377\202\223\254\247\377\4\312\326\324\377\353\360\357" \ - "\377\223\254\247\377\254\277\273\377\204\377\377\377\377\7\375\375\375" \ - "\377\227\257\252\377\230\260\253\377\361\364\363\377\224\254\250\377" \ - "\223\254\247\377\206\242\234\377\220o\221\212\377\7\205\242\234\377\223" \ - "\254\247\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254" \ - "\247\377\212\245\240\377\220o\221\212\377\1\201\237\231\377\202\223\254" \ - "\247\377\4\350\355\354\377\243\270\264\377\223\254\247\377\365\367\367" \ - "\377\204\377\377\377\377\4\267\310\304\377\223\254\247\377\340\347\345" \ - "\377\325\336\334\377\202\223\254\247\377\1|\233\224\377\227o\221\212" \ - "\377\1\327\340\337\377\325\333\343\342\377\1\\so\377\245Slg\377\2}\220" \ - "\215\377\321\332\331\377\356\333\343\342\377\1u\225\217\377\226o\221" \ - "\212\377\10\210\243\236\377\223\254\247\377\225\255\251\377\365\367\367" \ - "\377\376\376\376\377\231\261\254\377\223\254\247\377\342\351\347\377" \ - "\203\377\377\377\377\4\315\331\326\377\223\254\247\377\260\302\276\377" \ - "\306\323\321\377\202\223\254\247\377\1w\227\220\377\220o\221\212\377" \ - "\7\205\242\234\377\223\254\247\377\341\350\346\377\377\377\377\377\356" \ - "\362\361\377\223\254\247\377\212\245\240\377\220o\221\212\377\7s\224" \ - "\215\377\222\253\246\377\223\254\247\377\272\312\307\377\273\313\307" \ - "\377\223\254\247\377\301\317\315\377\203\377\377\377\377\10\354\360\357" \ - "\377\226\256\251\377\225\256\251\377\366\370\370\377\373\374\373\377" \ - "\232\261\254\377\223\254\247\377\213\246\240\377\227o\221\212\377\1\327" \ - "\340\337\377\325\333\343\342\377\1\\so\377\241Slg\377\4Xpk\377n\204\200" \ - "\377\213\235\232\377\274\310\306\377\360\333\343\342\377\1u\225\217\377" \ - "\210o\221\212\377\1u\225\216\377\214x\230\221\377\4{\232\223\377\222" \ - "\253\246\377\223\254\247\377\271\311\306\377\202\377\377\377\377\14\324" \ - "\336\334\377\223\254\247\377\225\256\251\377\277\316\313\377\321\334" \ - "\331\377\266\307\303\377\223\254\247\377\225\256\251\377\347\354\353" \ - "\377\233\262\256\377\223\254\247\377\215\250\242\377\221x\230\221\377" \ - "\7\210\244\237\377\223\254\247\377\341\350\346\377\377\377\377\377\356" \ - "\362\361\377\223\254\247\377\214\247\241\377\221x\230\221\377\14\212" \ - "\245\240\377\223\254\247\377\225\256\251\377\352\356\356\377\231\260" \ - "\253\377\223\254\247\377\260\302\277\377\320\333\331\377\303\321\316" \ - "\377\230\260\253\377\223\254\247\377\312\326\324\377\202\377\377\377" \ - "\377\1\303\321\316\377\202\223\254\247\377\1}\234\225\377\214x\230\221" \ - "\377\1v\226\217\377\211o\221\212\377\1\327\340\337\377\325\333\343\342" \ - "\377\1\317\330\327\377\210\316\327\326\377\1\240\260\255\377\202Slg\377" \ - "\1t\211\205\377\223\316\327\326\377\2\320\331\330\377\327\340\337\377" \ - "\364\333\343\342\377\1\236\265\260\377\210\232\262\255\377\1\307\323" \ - "\321\377\214\333\343\342\377\1\264\305\302\377\202\223\254\247\377\1" \ - "\346\354\353\377\203\377\377\377\377\2\314\330\325\377\226\256\251\377" \ - "\203\223\254\247\377\3\233\263\256\377\335\345\343\377\330\341\337\377" \ - "\202\223\254\247\377\1\276\315\312\377\221\333\343\342\377\7\255\300" \ - "\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356\362\361" \ - "\377\223\254\247\377\245\272\265\377\221\333\343\342\377\1\307\324\322" \ - "\377\202\223\254\247\377\3\314\327\325\377\343\352\351\377\237\265\261" \ - "\377\203\223\254\247\377\3\224\255\250\377\305\322\320\377\375\376\376" \ - "\377\202\377\377\377\377\1\360\363\362\377\202\223\254\247\377\1\255" \ - "\300\274\377\214\333\343\342\377\1\317\331\330\377\211\232\262\255\377" \ - "\1\331\341\340\377\336\333\343\342\377\1\250\267\264\377\202Slg\377\1" \ - "x\214\210\377\377\333\343\342\377\237\333\343\342\377\4\330\341\340\377" \ - "\230\260\253\377\223\254\247\377\250\274\270\377\205\377\377\377\377" \ - "\12\360\364\363\377\325\336\334\377\307\324\321\377\331\342\340\377\367" \ - "\371\370\377\377\377\377\377\252\276\272\377\223\254\247\377\227\257" \ - "\252\377\330\340\337\377\221\333\343\342\377\7\255\300\275\377\223\254" \ - "\247\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247" \ - "\377\245\272\265\377\221\333\343\342\377\12\332\342\341\377\236\264\260" \ - "\377\223\254\247\377\240\266\261\377\375\376\375\377\371\373\373\377" \ - "\333\343\342\377\310\325\322\377\322\334\332\377\355\361\361\377\205" \ - "\377\377\377\377\4\262\304\300\377\223\254\247\377\224\255\250\377\325" \ - "\336\335\377\364\333\343\342\377\1\250\267\264\377\202Slg\377\1x\214" \ - "\210\377\377\333\343\342\377\237\333\343\342\377\1\277\316\313\377\202" \ - "\223\254\247\377\1\325\337\335\377\212\377\377\377\377\1\351\356\355" \ - "\377\202\223\254\247\377\1\263\304\301\377\222\333\343\342\377\7\255" \ - "\300\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356\362" \ - "\361\377\223\254\247\377\245\272\265\377\222\333\343\342\377\1\274\313" \ - "\310\377\202\223\254\247\377\1\335\345\343\377\212\377\377\377\377\1" \ - "\337\346\345\377\202\223\254\247\377\1\271\311\306\377\364\333\343\342" \ - "\377\1\250\267\264\377\202Slg\377\1x\214\210\377\377\333\343\342\377" \ - "\237\333\343\342\377\4\241\267\263\377\223\254\247\377\232\261\255\377" \ - "\373\374\373\377\212\377\377\377\377\1\274\313\310\377\202\223\254\247" \ - "\377\1\320\333\331\377\222\333\343\342\377\7\255\300\275\377\223\254" \ - "\247\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247" \ - "\377\245\272\265\377\222\333\343\342\377\4\327\337\336\377\226\256\251" \ - "\377\223\254\247\377\260\302\276\377\212\377\377\377\377\5\376\376\376" \ - "\377\241\267\263\377\223\254\247\377\233\262\256\377\332\342\341\377" \ - "\363\333\343\342\377\1\264\300\276\377\202p\205\201\377\1\215\237\234" \ - "\377\377\333\343\342\377\236\333\343\342\377\1\313\327\325\377\202\223" \ - "\254\247\377\1\304\321\317\377\212\377\377\377\377\4\367\371\370\377" \ - "\226\256\251\377\223\254\247\377\247\273\267\377\223\333\343\342\377" \ - "\7\255\300\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356" \ - "\362\361\377\223\254\247\377\245\272\265\377\223\333\343\342\377\1\260" \ - "\302\277\377\202\223\254\247\377\1\356\362\361\377\212\377\377\377\377" \ - "\1\316\331\327\377\202\223\254\247\377\1\304\321\317\377\377\333\343" \ - "\342\377\377\333\343\342\377\226\333\343\342\377\1\255\300\274\377\202" \ - "\223\254\247\377\1\360\363\363\377\212\377\377\377\377\1\315\330\326" \ - "\377\202\223\254\247\377\1\305\322\320\377\223\333\343\342\377\7\255" \ - "\300\275\377\223\254\247\377\341\350\346\377\377\377\377\377\356\362" \ - "\361\377\223\254\247\377\245\272\265\377\223\333\343\342\377\1\316\331" \ - "\327\377\202\223\254\247\377\1\301\317\314\377\212\377\377\377\377\4" \ - "\367\371\371\377\226\256\252\377\223\254\247\377\246\272\266\377\377" \ - "\333\343\342\377\377\333\343\342\377\225\333\343\342\377\4\325\336\335" \ - "\377\224\255\250\377\223\254\247\377\262\304\300\377\212\377\377\377" \ - "\377\5\376\376\376\377\240\266\262\377\223\254\247\377\234\263\256\377" \ - "\332\342\341\377\223\333\343\342\377\7\255\300\275\377\223\254\247\377" \ - "\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247\377\245" \ - "\272\265\377\224\333\343\342\377\4\244\271\265\377\223\254\247\377\230" \ - "\260\253\377\372\373\373\377\212\377\377\377\377\1\274\314\311\377\202" \ - "\223\254\247\377\1\317\332\330\377\377\333\343\342\377\377\333\343\342" \ - "\377\224\333\343\342\377\1\270\310\306\377\202\223\254\247\377\1\340" \ - "\347\345\377\212\377\377\377\377\1\337\346\345\377\202\223\254\247\377" \ - "\1\272\311\307\377\224\333\343\342\377\7\255\300\275\377\223\254\247" \ - "\377\341\350\346\377\377\377\377\377\356\362\361\377\223\254\247\377" \ - "\245\272\265\377\224\333\343\342\377\1\303\320\316\377\202\223\254\247" \ - "\377\1\322\335\333\377\212\377\377\377\377\1\352\357\356\377\202\223" \ - "\254\247\377\1\262\303\300\377\377\333\343\342\377\377\333\343\342\377" \ - "\223\333\343\342\377\5\332\342\341\377\233\262\255\377\223\254\247\377" \ - "\241\267\263\377\376\376\376\377\212\377\377\377\377\4\261\303\277\377" \ - "\223\254\247\377\225\255\251\377\325\337\335\377\224\333\343\342\377" \ - "\7\264\305\302\377\223\254\247\377\316\331\327\377\377\377\377\377\331" \ - "\342\340\377\223\254\247\377\252\276\273\377\224\333\343\342\377\4\331" \ - "\342\341\377\232\261\255\377\223\254\247\377\245\272\266\377\213\377" \ - "\377\377\377\4\253\276\273\377\223\254\247\377\226\257\252\377\327\340" \ - "\337\377\377\333\343\342\377\206\333\343\342\377\6\330\340\337\377\304" \ - "\316\315\377\255\272\270\377\254\272\270\377\273\307\305\377\325\336" \ - "\335\377\377\333\343\342\377\206\333\343\342\377\1\304\321\317\377\202" \ - "\223\254\247\377\1\316\331\327\377\212\377\377\377\377\1\357\363\362" \ - "\377\202\223\254\247\377\1\256\301\275\377\225\333\343\342\377\7\310" \ - "\324\323\377\222\253\246\377\225\255\250\377\256\301\275\377\227\257" \ - "\252\377\223\254\247\377\300\316\314\377\225\333\343\342\377\1\267\310" \ - "\305\377\202\223\254\247\377\1\344\352\351\377\212\377\377\377\377\1" \ - "\330\341\337\377\202\223\254\247\377\1\275\314\311\377\377\333\343\342" \ - "\377\204\333\343\342\377\3\320\331\330\377\205\227\224\377Uni\377\204" \ - "Slg\377\3Xpk\377\201\225\221\377\310\323\321\377\377\333\343\342\377" \ - "\204\333\343\342\377\4\246\272\266\377\223\254\247\377\227\257\252\377" \ - "\367\371\371\377\212\377\377\377\377\1\302\320\315\377\202\223\254\247" \ - "\377\1\314\330\326\377\226\333\343\342\377\2\274\313\311\377\225\255" \ - "\250\377\202\223\254\247\377\1\264\305\302\377\226\333\343\342\377\4" \ - "\324\335\334\377\224\255\250\377\223\254\247\377\267\307\304\377\212" \ - "\377\377\377\377\4\374\375\374\377\234\263\256\377\223\254\247\377\237" \ - "\265\261\377\363\333\343\342\377\1\200\224\220\377\205t\211\205\377\1" \ - "w\213\207\377\210\333\343\342\377\2\262\277\275\377\\to\377\210Slg\377" \ - "\2Xql\377\252\270\266\377\377\333\343\342\377\202\333\343\342\377\1\317" \ - "\332\330\377\202\223\254\247\377\1\275\314\311\377\212\377\377\377\377" \ - "\4\372\373\373\377\231\261\254\377\223\254\247\377\242\270\263\377\230" \ - "\333\343\342\377\3\330\341\340\377\313\326\324\377\327\337\336\377\230" \ - "\333\343\342\377\4\253\276\273\377\223\254\247\377\224\255\250\377\363" \ - "\366\366\377\212\377\377\377\377\1\307\324\321\377\202\223\254\247\377" \ - "\1\311\325\323\377\361\333\343\342\377\1\275\311\307\377\206Slg\377\1" \ - "Vni\377\207\333\343\342\377\2\306\321\317\377Yrm\377\212Slg\377\2Tmh" \ - "\377\256\273\271\377\377\333\343\342\377\2\333\343\342\377\261\303\300" \ - "\377\202\223\254\247\377\1\352\357\356\377\212\377\377\377\377\1\324" \ - "\336\334\377\202\223\254\247\377\1\301\317\314\377\263\333\343\342\377" \ - "\1\312\326\324\377\202\223\254\247\377\1\310\325\322\377\212\377\377" \ - "\377\377\4\363\365\365\377\224\255\250\377\223\254\247\377\253\276\272" \ - "\377\361\333\343\342\377\1\212\234\231\377\206Slg\377\1Vni\377\206\333" \ - "\343\342\377\2\326\337\336\377l\201}\377\214Slg\377\2Xpk\377\313\325" \ - "\323\377\376\333\343\342\377\4\327\340\337\377\226\257\252\377\223\254" \ - "\247\377\253\277\273\377\213\377\377\377\377\4\247\273\267\377\223\254" \ - "\247\377\231\260\254\377\331\341\340\377\264\333\343\342\377\4\240\266" \ - "\261\377\223\254\247\377\235\263\257\377\374\375\375\377\212\377\377" \ - "\377\377\4\266\307\303\377\223\254\247\377\224\254\247\377\323\335\333" \ - "\377\357\333\343\342\377\2\331\342\341\377]up\377\204Slg\377\3czu\377" \ - "\203\226\222\377\243\262\257\377\206\333\343\342\377\1\235\255\252\377" \ - "\216Slg\377\1\177\222\217\377\376\333\343\342\377\1\275\314\311\377\202" \ - "\223\254\247\377\1\331\342\340\377\212\377\377\377\377\1\346\353\352" \ - "\377\202\223\254\247\377\1\265\306\303\377\265\333\343\342\377\1\276" \ - "\315\312\377\202\223\254\247\377\1\331\342\340\377\212\377\377\377\377" \ - "\1\343\351\350\377\202\223\254\247\377\1\266\307\304\377\357\333\343" \ - "\342\377\1\276\311\307\377\204Slg\377\2\224\244\241\377\331\341\340\377" \ - "\207\333\343\342\377\2\332\342\341\377f|x\377\205Slg\377\6byt\377\252" \ - "\270\266\377\307\321\320\377\313\325\324\377\257\275\272\377\202\225" \ - "\221\377\204Slg\377\1\313\325\323\377\375\333\343\342\377\4\237\265\260" \ - "\377\223\254\247\377\235\263\257\377\374\375\375\377\212\377\377\377" \ - "\377\1\270\310\305\377\202\223\254\247\377\1\322\334\333\377\265\333" \ - "\343\342\377\4\330\340\337\377\227\257\252\377\223\254\247\377\254\277" \ - "\273\377\213\377\377\377\377\4\244\271\265\377\223\254\247\377\231\261" \ - "\254\377\331\341\340\377\356\333\343\342\377\1\227\250\245\377\203Sl" \ - "g\377\1\255\273\271\377\211\333\343\342\377\1\266\303\301\377\205Slg" \ - "\377\2l\202~\377\321\332\331\377\205\333\343\342\377\1\233\253\250\377" \ - "\203Slg\377\1\232\252\247\377\374\333\343\342\377\1\310\325\323\377\202" \ - "\223\254\247\377\1\307\324\322\377\212\377\377\377\377\4\364\367\366" \ - "\377\225\255\250\377\223\254\247\377\251\275\271\377\267\333\343\342" \ - "\377\1\262\304\301\377\202\223\254\247\377\1\353\357\356\377\212\377" \ - "\377\377\377\1\322\334\332\377\202\223\254\247\377\1\302\320\315\377" \ - "\356\333\343\342\377\1z\216\212\377\202Slg\377\1w\214\210\377\212\333" \ - "\343\342\377\1\177\222\217\377\204Slg\377\2Tlg\377\277\312\310\377\207" \ - "\333\343\342\377\1y\215\211\377\202Slg\377\1v\212\206\377\374\333\343" \ - "\342\377\4\252\276\272\377\223\254\247\377\224\255\250\377\363\366\365" \ - "\377\212\377\377\377\377\1\312\326\323\377\202\223\254\247\377\1\310" \ - "\324\322\377\267\333\343\342\377\1\320\333\331\377\202\223\254\247\377" \ - "\1\275\314\311\377\212\377\377\377\377\4\371\373\372\377\230\260\253" \ - "\377\223\254\247\377\243\270\264\377\356\333\343\342\377\1ayt\377\202" \ - "Slg\377\1\277\312\310\377\211\333\343\342\377\2\325\335\334\377Woj\377" \ - "\204Slg\377\1\211\233\230\377\210\333\343\342\377\1\265\302\300\377\202" \ - "Slg\377\1\\so\377\373\333\343\342\377\4\323\335\333\377\224\254\247\377" \ - "\223\254\247\377\266\307\303\377\212\377\377\377\377\4\375\375\375\377" \ - "\236\264\260\377\223\254\247\377\236\264\260\377\271\333\343\342\377" \ - "\4\247\273\267\377\223\254\247\377\227\257\252\377\370\371\371\377\212" \ - "\377\377\377\377\1\300\317\314\377\202\223\254\247\377\1\315\330\327" \ - "\377\354\333\343\342\377\1\324\335\334\377\202Slg\377\1Xql\377\212\333" \ - "\343\342\377\1\260\275\273\377\205Slg\377\1\301\315\313\377\211\333\343" \ - "\342\377\1[sn\377\202Slg\377\1\315\327\325\377\372\333\343\342\377\1" \ - "\266\306\303\377\202\223\254\247\377\1\343\352\350\377\212\377\377\377" \ - "\377\1\333\343\342\377\202\223\254\247\377\1\274\313\311\377\271\333" \ - "\343\342\377\1\305\322\320\377\202\223\254\247\377\1\317\332\330\377" \ - "\212\377\377\377\377\1\356\361\361\377\202\223\254\247\377\1\257\301" \ - "\276\377\354\333\343\342\377\1\312\324\323\377\202Slg\377\1l\201}\377" \ - "\212\333\343\342\377\1\207\231\226\377\204Slg\377\1l\202~\377\212\333" \ - "\343\342\377\1k\201|\377\202Slg\377\1\304\317\315\377\371\333\343\342" \ - "\377\4\331\341\340\377\231\260\254\377\223\254\247\377\245\271\265\377" \ - "\213\377\377\377\377\4\256\300\275\377\223\254\247\377\226\256\252\377" \ - "\327\340\336\377\271\333\343\342\377\5\332\342\341\377\234\263\256\377" \ - "\223\254\247\377\242\267\263\377\376\376\376\377\212\377\377\377\377" \ - "\4\257\301\276\377\223\254\247\377\225\256\251\377\326\337\336\377\353" \ - "\333\343\342\377\1\301\315\313\377\202Slg\377\1~\222\216\377\211\333" \ - "\343\342\377\2\332\342\341\377_vr\377\204Slg\377\1\237\257\254\377\212" \ - "\333\343\342\377\1y\215\211\377\202Slg\377\1\275\310\306\377\371\333" \ - "\343\342\377\1\301\317\315\377\202\223\254\247\377\1\322\334\332\377" \ - "\212\377\377\377\377\1\354\361\360\377\202\223\254\247\377\1\260\302" \ - "\277\377\273\333\343\342\377\1\271\311\306\377\202\223\254\247\377\1" \ - "\340\347\346\377\212\377\377\377\377\1\334\344\343\377\202\223\254\247" \ - "\377\1\273\312\307\377\353\333\343\342\377\1\301\315\313\377\202Slg\377" \ - "\1y\216\212\377\211\333\343\342\377\1\270\305\303\377\204Slg\377\2Tm" \ - "h\377\317\331\327\377\212\333\343\342\377\1\202\225\221\377\202Slg\377" \ - "\1\273\307\305\377\371\333\343\342\377\4\243\270\264\377\223\254\247" \ - "\377\230\260\253\377\371\373\372\377\212\377\377\377\377\1\277\316\313" \ - "\377\202\223\254\247\377\1\317\331\330\377\273\333\343\342\377\4\325" \ - "\337\335\377\225\255\250\377\223\254\247\377\263\304\301\377\212\377" \ - "\377\377\377\5\375\376\375\377\237\265\261\377\223\254\247\377\235\263" \ - "\257\377\332\342\341\377\352\333\343\342\377\1\310\323\321\377\202Sl" \ - "g\377\1k\201}\377\211\333\343\342\377\1\205\230\224\377\204Slg\377\1" \ - "v\212\206\377\213\333\343\342\377\1t\210\204\377\202Slg\377\1\301\315" \ - "\313\377\370\333\343\342\377\1\315\330\326\377\202\223\254\247\377\1" \ - "\301\317\314\377\212\377\377\377\377\4\371\372\372\377\230\257\253\377" \ - "\223\254\247\377\245\272\266\377\275\333\343\342\377\1\256\300\275\377" \ - "\202\223\254\247\377\1\361\364\363\377\212\377\377\377\377\1\313\327" \ - "\324\377\202\223\254\247\377\1\306\323\321\377\352\333\343\342\377\1" \ - "\321\332\331\377\202Slg\377\2\\to\377\332\342\341\377\207\333\343\342" \ - "\377\2\324\335\334\377Xql\377\204Slg\377\1\243\262\257\377\213\333\343" \ - "\342\377\1czu\377\202Slg\377\1\310\323\321\377\370\333\343\342\377\1" \ - "\257\301\276\377\202\223\254\247\377\1\356\362\361\377\212\377\377\377" \ - "\377\1\321\333\331\377\202\223\254\247\377\1\303\321\316\377\275\333" \ - "\343\342\377\1\314\330\326\377\202\223\254\247\377\1\304\322\317\377" \ - "\212\377\377\377\377\4\366\370\367\377\225\255\251\377\223\254\247\377" \ - "\250\274\270\377\353\333\343\342\377\1ayt\377\202Slg\377\1\267\303\301" \ - "\377\207\333\343\342\377\1\241\260\255\377\204Slg\377\2Tlg\377\316\330" \ - "\326\377\212\333\343\342\377\2\330\340\337\377Tmh\377\202Slg\377\1\325" \ - "\336\335\377\367\333\343\342\377\4\326\337\336\377\225\256\251\377\223" \ - "\254\247\377\257\302\276\377\213\377\377\377\377\4\243\271\264\377\223" \ - "\254\247\377\232\262\255\377\331\342\341\377\276\333\343\342\377\4\242" \ - "\270\263\377\223\254\247\377\232\261\255\377\373\374\374\377\212\377" \ - "\377\377\377\1\271\311\306\377\202\223\254\247\377\1\321\333\332\377" \ - "\352\333\343\342\377\1~\222\216\377\202Slg\377\1\177\222\217\377\206" \ - "\333\343\342\377\2\320\332\330\377\\to\377\204Slg\377\1z\216\212\377" \ - "\213\333\343\342\377\1\253\271\266\377\202Slg\377\1e|w\377\370\333\343" \ - "\342\377\1\272\312\307\377\202\223\254\247\377\1\335\344\343\377\212" \ - "\377\377\377\377\1\342\351\347\377\202\223\254\247\377\1\267\310\305" \ - "\377\277\333\343\342\377\1\301\317\314\377\202\223\254\247\377\1\325" \ - "\337\335\377\212\377\377\377\377\1\347\354\353\377\202\223\254\247\377" \ - "\1\264\305\302\377\352\333\343\342\377\1\251\270\265\377\203Slg\377\2" \ - "\220\242\236\377\331\342\341\377\203\333\343\342\377\2\320\331\330\377" \ - "x\214\210\377\205Slg\377\1\264\300\276\377\212\333\343\342\377\2\331" \ - "\342\341\377h~z\377\202Slg\377\1}\220\215\377\367\333\343\342\377\5\332" \ - "\342\341\377\234\263\257\377\223\254\247\377\237\265\261\377\375\376" \ - "\375\377\212\377\377\377\377\4\264\306\302\377\223\254\247\377\224\255" \ - "\250\377\324\336\334\377\277\333\343\342\377\4\331\341\340\377\230\260" \ - "\253\377\223\254\247\377\250\274\270\377\213\377\377\377\377\4\250\274" \ - "\270\377\223\254\247\377\230\257\253\377\330\341\340\377\351\333\343" \ - "\342\377\2\325\336\335\377[sn\377\203Slg\377\5i\177{\377\207\232\226" \ - "\377\230\251\246\377\204\227\223\377^vq\377\205Slg\377\2e|w\377\332\342" \ - "\341\377\212\333\343\342\377\1\232\252\247\377\203Slg\377\1\234\253\251" \ - "\377\367\333\343\342\377\1\306\323\321\377\202\223\254\247\377\1\313" \ - "\327\325\377\212\377\377\377\377\4\362\365\364\377\224\254\250\377\223" \ - "\254\247\377\254\277\273\377\301\333\343\342\377\1\265\306\303\377\202" \ - "\223\254\247\377\1\347\354\353\377\212\377\377\377\377\1\325\337\335" \ - "\377\202\223\254\247\377\1\277\316\313\377\352\333\343\342\377\1\237" \ - "\257\254\377\215Slg\377\1\244\262\260\377\211\333\343\342\377\2\320\332" \ - "\330\377}\220\215\377\204Slg\377\1\301\314\312\377\367\333\343\342\377" \ - "\4\250\274\270\377\223\254\247\377\225\256\251\377\366\370\367\377\212" \ - "\377\377\377\377\1\306\323\321\377\202\223\254\247\377\1\312\326\324" \ - "\377\301\333\343\342\377\1\322\334\333\377\202\223\254\247\377\1\271" \ - "\311\306\377\212\377\377\377\377\4\373\374\374\377\233\262\255\377\223" \ - "\254\247\377\241\267\262\377\352\333\343\342\377\2\331\342\341\377t\211" \ - "\205\377\213Slg\377\1|\220\214\377\207\333\343\342\377\4\274\310\306" \ - "\377\211\233\230\377n\204\200\377Voj\377\204Slg\377\2_vr\377\332\342" \ - "\341\377\366\333\343\342\377\1\321\333\332\377\202\223\254\247\377\1" \ - "\272\312\307\377\212\377\377\377\377\4\374\375\374\377\233\262\256\377" \ - "\223\254\247\377\240\266\262\377\303\333\343\342\377\4\251\275\271\377" \ - "\223\254\247\377\225\255\251\377\365\367\367\377\212\377\377\377\377" \ - "\1\304\322\317\377\202\223\254\247\377\1\313\326\325\377\352\333\343" \ - "\342\377\2\323\334\333\377o\204\200\377\211Slg\377\2d{v\377\321\332\331" \ - "\377\207\333\343\342\377\1\227\250\245\377\207Slg\377\1\217\240\235\377" \ - "\367\333\343\342\377\1\263\305\301\377\202\223\254\247\377\1\350\355" \ - "\354\377\212\377\377\377\377\1\330\341\337\377\202\223\254\247\377\1" \ - "\277\315\313\377\303\333\343\342\377\1\310\324\322\377\202\223\254\247" \ - "\377\1\313\327\324\377\212\377\377\377\377\1\361\364\363\377\202\223" \ - "\254\247\377\1\254\277\274\377\353\333\343\342\377\3\327\337\336\377" \ - "\226\247\244\377Xql\377\205Slg\377\3Umh\377\216\240\235\377\323\334\333" \ - "\377\210\333\343\342\377\1\227\250\245\377\207Slg\377\1\305\320\316\377" \ - "\366\333\343\342\377\4\330\341\337\377\230\257\253\377\223\254\247\377" \ - "\251\274\270\377\213\377\377\377\377\4\252\276\272\377\223\254\247\377" \ - "\227\257\252\377\330\341\337\377\304\333\343\342\377\4\236\264\260\377" \ - "\223\254\247\377\237\265\261\377\375\376\375\377\212\377\377\377\377" \ - "\4\263\304\301\377\223\254\247\377\224\255\250\377\325\336\335\377\354" \ - "\333\343\342\377\7\326\337\336\377\261\277\274\377\231\251\246\377\213" \ - "\235\232\377\226\246\243\377\256\273\271\377\312\324\323\377\212\333" \ - "\343\342\377\1\257\274\272\377\206\201\224\220\377\1\221\242\237\377" \ - "\367\333\343\342\377\1\277\315\313\377\202\223\254\247\377\1\326\337" \ - "\335\377\212\377\377\377\377\1\351\356\355\377\202\223\254\247\377\1" \ - "\263\304\301\377\305\333\343\342\377\1\274\313\311\377\202\223\254\247" \ - "\377\1\334\344\343\377\212\377\377\377\377\1\340\347\346\377\202\223" \ - "\254\247\377\1\270\310\305\377\377\333\343\342\377\375\333\343\342\377" \ - "\4\241\266\262\377\223\254\247\377\233\262\255\377\373\374\374\377\212" \ - "\377\377\377\377\1\274\313\310\377\202\223\254\247\377\1\321\333\331" \ - "\377\305\333\343\342\377\4\327\337\336\377\226\256\251\377\223\254\247" \ - "\377\257\301\276\377\212\377\377\377\377\5\376\376\376\377\242\267\263" \ - "\377\223\254\247\377\233\262\255\377\332\342\341\377\377\333\343\342" \ - "\377\373\333\343\342\377\1\312\326\324\377\202\223\254\247\377\1\304" \ - "\322\317\377\212\377\377\377\377\4\367\371\370\377\226\256\251\377\223" \ - "\254\247\377\247\273\270\377\307\333\343\342\377\1\260\302\277\377\202" \ - "\223\254\247\377\1\355\361\360\377\212\377\377\377\377\1\317\332\330" \ - "\377\202\223\254\247\377\1\304\321\317\377\377\333\343\342\377\373\333" \ - "\343\342\377\1\254\277\274\377\202\223\254\247\377\1\361\364\363\377" \ - "\212\377\377\377\377\1\315\330\326\377\202\223\254\247\377\1\306\323" \ - "\320\377\307\333\343\342\377\1\316\331\330\377\202\223\254\247\377\1" \ - "\300\317\314\377\212\377\377\377\377\4\370\371\371\377\227\257\252\377" \ - "\223\254\247\377\245\272\266\377\377\333\343\342\377\372\333\343\342" \ - "\377\4\324\336\334\377\224\255\250\377\223\254\247\377\263\305\301\377" \ - "\212\377\377\377\377\5\376\376\376\377\240\266\262\377\223\254\247\377" \ - "\234\263\256\377\332\342\341\377\310\333\343\342\377\4\245\271\265\377" \ - "\223\254\247\377\230\260\253\377\371\372\372\377\212\377\377\377\377" \ - "\1\275\314\311\377\202\223\254\247\377\1\317\332\330\377\345\333\343" \ - "\342\377\1\316\330\326\377\202\270\305\303\377\1\302\315\313\377\377" \ - "\333\343\342\377\220\333\343\342\377\1\270\310\305\377\202\223\254\247" \ - "\377\1\341\350\346\377\212\377\377\377\377\1\337\346\345\377\202\223" \ - "\254\247\377\1\272\312\307\377\311\333\343\342\377\1\303\321\316\377" \ - "\202\223\254\247\377\1\322\334\332\377\212\377\377\377\377\1\353\357" \ - "\356\377\202\223\254\247\377\1\261\303\277\377\345\333\343\342\377\1" \ - "\250\267\264\377\202Slg\377\1x\214\210\377\377\333\343\342\377\217\333" \ - "\343\342\377\5\332\342\341\377\232\262\255\377\223\254\247\377\242\270" \ - "\263\377\376\376\376\377\212\377\377\377\377\4\261\303\277\377\223\254" \ - "\247\377\225\255\251\377\326\337\336\377\311\333\343\342\377\4\331\342" \ - "\341\377\232\261\255\377\223\254\247\377\244\271\265\377\213\377\377" \ - "\377\377\4\254\277\273\377\223\254\247\377\226\256\252\377\327\340\337" \ - "\377\344\333\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377" \ - "\377\333\343\342\377\217\333\343\342\377\1\303\321\317\377\202\223\254" \ - "\247\377\1\317\332\330\377\212\377\377\377\377\1\357\363\362\377\202" \ - "\223\254\247\377\1\256\301\275\377\313\333\343\342\377\1\267\310\305" \ - "\377\202\223\254\247\377\1\343\351\350\377\212\377\377\377\377\1\331" \ - "\342\340\377\202\223\254\247\377\1\275\314\311\377\344\333\343\342\377" \ - "\1\250\267\264\377\202Slg\377\1x\214\210\377\377\333\343\342\377\217" \ - "\333\343\342\377\4\245\272\266\377\223\254\247\377\227\257\252\377\370" \ - "\372\371\377\212\377\377\377\377\1\303\321\316\377\202\223\254\247\377" \ - "\1\315\330\326\377\313\333\343\342\377\4\324\336\334\377\224\255\250" \ - "\377\223\254\247\377\266\307\303\377\212\377\377\377\377\4\374\375\375" \ - "\377\235\263\257\377\223\254\247\377\236\265\260\377\344\333\343\342" \ - "\377\1\250\267\264\377\202Slg\377\1x\214\210\377\377\333\343\342\377" \ - "\216\333\343\342\377\1\317\332\330\377\202\223\254\247\377\1\276\315" \ - "\312\377\212\377\377\377\377\4\372\373\373\377\231\261\254\377\223\254" \ - "\247\377\243\270\264\377\315\333\343\342\377\4\254\277\273\377\223\254" \ - "\247\377\224\254\250\377\363\365\365\377\212\377\377\377\377\1\310\325" \ - "\322\377\202\223\254\247\377\1\310\324\322\377\343\333\343\342\377\1" \ - "\250\267\264\377\202Slg\377\1r\207\203\377\232\305\320\316\377\3\306" \ - "\320\317\377\316\327\326\377\330\340\337\377\360\333\343\342\377\1\261" \ - "\303\277\377\202\223\254\247\377\1\353\360\357\377\212\377\377\377\377" \ - "\1\324\336\334\377\202\223\254\247\377\1\301\317\315\377\315\333\343" \ - "\342\377\1\312\326\324\377\202\223\254\247\377\1\307\324\321\377\212" \ - "\377\377\377\377\4\363\366\366\377\224\255\250\377\223\254\247\377\252" \ - "\275\272\377\343\333\343\342\377\1\250\267\264\377\240Slg\377\4[sn\377" \ - "t\211\205\377\226\247\244\377\273\307\305\377\353\333\343\342\377\4\327" \ - "\340\336\377\226\256\252\377\223\254\247\377\254\277\274\377\213\377" \ - "\377\377\377\4\247\273\267\377\223\254\247\377\231\260\254\377\331\341" \ - "\340\377\316\333\343\342\377\4\240\266\262\377\223\254\247\377\234\263" \ - "\256\377\374\375\374\377\212\377\377\377\377\4\267\307\304\377\223\254" \ - "\247\377\224\254\247\377\323\334\333\377\342\333\343\342\377\1\250\267" \ - "\264\377\244Slg\377\2n\203\177\377\257\274\272\377\351\333\343\342\377" \ - "\1\274\313\311\377\202\223\254\247\377\1\332\343\341\377\212\377\377" \ - "\377\377\1\346\353\352\377\202\223\254\247\377\1\265\306\303\377\317" \ - "\333\343\342\377\1\276\315\312\377\202\223\254\247\377\1\330\341\337" \ - "\377\212\377\377\377\377\1\344\352\351\377\202\223\254\247\377\1\266" \ - "\306\303\377\342\333\343\342\377\1\250\267\264\377\246Slg\377\2\177\222" \ - "\217\377\324\335\334\377\347\333\343\342\377\4\236\264\260\377\223\254" \ - "\247\377\235\264\257\377\374\375\375\377\212\377\377\377\377\1\270\310" \ - "\305\377\202\223\254\247\377\1\323\334\333\377\317\333\343\342\377\4" \ - "\330\340\337\377\227\257\252\377\223\254\247\377\253\276\272\377\213" \ - "\377\377\377\377\4\245\272\266\377\223\254\247\377\231\260\254\377\331" \ - "\341\340\377\341\333\343\342\377\1\250\267\264\377\247Slg\377\2i\200" \ - "{\377\317\330\327\377\345\333\343\342\377\1\310\324\322\377\202\223\254" \ - "\247\377\1\310\325\322\377\212\377\377\377\377\4\365\367\367\377\225" \ - "\255\250\377\223\254\247\377\252\275\271\377\321\333\343\342\377\1\263" \ - "\304\301\377\202\223\254\247\377\1\352\357\356\377\212\377\377\377\377" \ - "\1\322\335\333\377\202\223\254\247\377\1\301\317\315\377\341\333\343" \ - "\342\377\1\250\267\264\377\250Slg\377\2u\212\206\377\331\341\340\377" \ - "\344\333\343\342\377\4\252\275\271\377\223\254\247\377\225\255\250\377" \ - "\364\366\366\377\212\377\377\377\377\1\312\326\323\377\202\223\254\247" \ - "\377\1\310\324\322\377\321\333\343\342\377\1\321\333\331\377\202\223" \ - "\254\247\377\1\274\314\311\377\212\377\377\377\377\4\372\373\373\377" \ - "\231\260\254\377\223\254\247\377\243\270\264\377\341\333\343\342\377" \ - "\1\321\333\331\377\203\301\314\312\377\2\247\266\263\377[sn\377\203S" \ - "lg\377\6r\207\203\377\216\240\235\377\247\265\263\377\264\301\277\377" \ - "\273\307\305\377\300\314\312\377\202\301\314\312\377\7\300\314\312\377" \ - "\273\307\305\377\265\301\277\377\250\266\264\377\220\241\236\377t\210" \ - "\204\377Tlg\377\202Slg\377\2Zrm\377\246\264\262\377\203\301\314\312\377" \ - "\6\274\310\306\377\266\302\300\377\254\271\267\377\223\244\241\377w\214" \ - "\210\377Uni\377\205Slg\377\1\225\246\243\377\343\333\343\342\377\1\323" \ - "\334\333\377\202\223\254\247\377\1\267\307\304\377\212\377\377\377\377" \ - "\4\375\375\375\377\236\264\260\377\223\254\247\377\236\265\260\377\323" \ - "\333\343\342\377\4\247\273\267\377\223\254\247\377\226\256\252\377\367" \ - "\371\371\377\212\377\377\377\377\1\301\317\314\377\202\223\254\247\377" \ - "\1\315\330\326\377\342\333\343\342\377\7\332\342\341\377\236\255\253" \ - "\377Vni\377Slg\377Wpk\377\225\245\242\377\313\325\324\377\216\333\343" \ - "\342\377\7\315\326\325\377\230\250\245\377Yrm\377Slg\377Uni\377\232\252" \ - "\247\377\331\342\341\377\206\333\343\342\377\3\320\331\330\377\235\255" \ - "\252\377[sn\377\203Slg\377\2Yql\377\321\332\331\377\342\333\343\342\377" \ - "\1\265\306\303\377\202\223\254\247\377\1\345\353\351\377\212\377\377" \ - "\377\377\1\333\343\342\377\202\223\254\247\377\1\274\313\311\377\323" \ - "\333\343\342\377\1\305\322\320\377\202\223\254\247\377\1\316\331\327" \ - "\377\212\377\377\377\377\1\356\362\361\377\202\223\254\247\377\1\256" \ - "\301\275\377\342\333\343\342\377\1\226\246\243\377\202Slg\377\2o\205" \ - "\201\377\313\325\324\377\222\333\343\342\377\2\316\330\326\377v\212\206" \ - "\377\202Slg\377\1\217\241\235\377\210\333\343\342\377\2\316\330\326\377" \ - "q\206\202\377\203Slg\377\1\230\250\245\377\341\333\343\342\377\4\331" \ - "\341\340\377\231\260\254\377\223\254\247\377\246\272\266\377\213\377" \ - "\377\377\377\4\256\300\275\377\223\254\247\377\226\256\252\377\327\340" \ - "\336\377\323\333\343\342\377\5\332\342\341\377\234\263\256\377\223\254" \ - "\247\377\241\267\262\377\376\376\376\377\212\377\377\377\377\4\260\302" \ - "\276\377\223\254\247\377\225\255\251\377\326\337\336\377\340\333\343" \ - "\342\377\1\262\277\275\377\202Slg\377\2q\207\202\377\325\335\334\377" \ - "\224\333\343\342\377\2\327\337\336\377v\212\206\377\202Slg\377\1\254" \ - "\272\270\377\210\333\343\342\377\2\321\333\331\377g}y\377\202Slg\377" \ - "\1i\177{\377\341\333\343\342\377\1\301\317\314\377\202\223\254\247\377" \ - "\1\323\335\333\377\212\377\377\377\377\1\354\361\360\377\202\223\254" \ - "\247\377\1\261\303\277\377\325\333\343\342\377\1\272\311\307\377\202" \ - "\223\254\247\377\1\337\346\345\377\212\377\377\377\377\1\335\345\344" \ - "\377\202\223\254\247\377\1\272\312\307\377\337\333\343\342\377\5\327" \ - "\337\336\377]up\377Slg\377Voj\377\306\320\317\377\226\333\343\342\377" \ - "\5\312\324\323\377Xpk\377Slg\377Yrm\377\324\335\334\377\210\333\343\342" \ - "\377\1\261\277\274\377\203Slg\377\1\317\331\327\377\340\333\343\342\377" \ - "\4\243\270\264\377\223\254\247\377\231\260\254\377\372\373\373\377\212" \ - "\377\377\377\377\1\277\316\313\377\202\223\254\247\377\1\317\332\330" \ - "\377\325\333\343\342\377\4\325\337\335\377\225\255\251\377\223\254\247" \ - "\377\261\303\300\377\212\377\377\377\377\5\376\376\376\377\240\266\261" \ - "\377\223\254\247\377\234\263\257\377\332\342\341\377\336\333\343\342" \ - "\377\1\254\272\270\377\202Slg\377\1\201\224\220\377\230\333\343\342\377" \ - "\1\206\230\225\377\202Slg\377\1\246\265\262\377\211\333\343\342\377\1" \ - "g}y\377\202Slg\377\1\257\274\272\377\337\333\343\342\377\1\314\330\326" \ - "\377\202\223\254\247\377\1\302\320\315\377\212\377\377\377\377\4\371" \ - "\372\372\377\230\257\253\377\223\254\247\377\245\272\266\377\327\333" \ - "\343\342\377\1\256\301\275\377\202\223\254\247\377\1\360\363\362\377" \ - "\212\377\377\377\377\1\314\327\325\377\202\223\254\247\377\1\306\323" \ - "\320\377\336\333\343\342\377\1x\215\211\377\202Slg\377\1\254\272\270" \ - "\377\230\333\343\342\377\1\257\274\272\377\202Slg\377\1r\207\203\377" \ - "\211\333\343\342\377\1\214\235\232\377\202Slg\377\1\237\257\254\377\337" \ - "\333\343\342\377\1\256\301\275\377\202\223\254\247\377\1\357\362\362" \ - "\377\212\377\377\377\377\1\321\333\331\377\202\223\254\247\377\1\303" \ - "\321\317\377\327\333\343\342\377\1\314\330\326\377\202\223\254\247\377" \ - "\1\303\321\316\377\212\377\377\377\377\4\366\370\370\377\225\256\251" \ - "\377\223\254\247\377\247\273\270\377\336\333\343\342\377\1\\so\377\202" \ - "Slg\377\1\277\313\311\377\230\333\343\342\377\1\301\315\313\377\202S" \ - "lg\377\2Vni\377\332\342\341\377\210\333\343\342\377\1\244\263\260\377" \ - "\202Slg\377\1\226\246\243\377\336\333\343\342\377\4\325\337\335\377\225" \ - "\255\251\377\223\254\247\377\260\302\277\377\213\377\377\377\377\4\243" \ - "\271\264\377\223\254\247\377\232\262\255\377\332\342\341\377\330\333" \ - "\343\342\377\4\243\270\264\377\223\254\247\377\232\261\254\377\373\374" \ - "\373\377\212\377\377\377\377\1\272\312\307\377\202\223\254\247\377\1" \ - "\321\333\332\377\334\333\343\342\377\1\326\336\335\377\203Slg\377\1\311" \ - "\324\322\377\230\333\343\342\377\1\314\325\324\377\203Slg\377\1\317\331" \ - "\327\377\210\333\343\342\377\1\256\274\271\377\202Slg\377\1\215\236\233" \ - "\377\336\333\343\342\377\1\272\311\307\377\202\223\254\247\377\1\336" \ - "\345\344\377\212\377\377\377\377\1\342\351\347\377\202\223\254\247\377" \ - "\1\270\310\305\377\331\333\343\342\377\1\301\317\314\377\202\223\254" \ - "\247\377\1\325\336\334\377\212\377\377\377\377\1\350\355\354\377\202" \ - "\223\254\247\377\1\263\304\301\377\334\333\343\342\377\1\307\322\320" \ - "\377\203Slg\377\1\276\311\307\377\230\333\343\342\377\1\302\315\313\377" \ - "\203Slg\377\1\301\314\312\377\210\333\343\342\377\1\261\276\274\377\202" \ - "Slg\377\1\215\237\234\377\335\333\343\342\377\5\332\342\341\377\234\263" \ - "\256\377\223\254\247\377\240\266\262\377\376\376\376\377\212\377\377" \ - "\377\377\4\265\306\302\377\223\254\247\377\224\255\250\377\324\336\334" \ - "\377\331\333\343\342\377\6\331\341\340\377\231\260\254\377\222\253\247" \ - "\377\237\265\261\377\351\356\355\377\370\371\371\377\211\377\377\377" \ - "\377\4\251\275\271\377\223\254\247\377\227\257\252\377\330\341\337\377" \ - "\333\333\343\342\377\1\303\316\314\377\203Slg\377\1\251\267\265\377\230" \ - "\333\343\342\377\1\257\274\272\377\203Slg\377\1\275\310\306\377\210\333" \ - "\343\342\377\1\243\262\257\377\202Slg\377\1\224\245\242\377\335\333\343" \ - "\342\377\1\305\322\320\377\202\223\254\247\377\1\315\330\326\377\212" \ - "\377\377\377\377\4\362\365\364\377\224\254\250\377\223\254\247\377\254" \ - "\277\274\377\333\333\343\342\377\2\265\306\303\377\222\254\246\377\203" \ - "\223\254\247\377\7\233\262\255\377\252\276\272\377\271\311\306\377\310" \ - "\325\322\377\330\341\337\377\347\354\353\377\366\370\370\377\202\377" \ - "\377\377\377\1\327\340\336\377\202\223\254\247\377\1\277\315\313\377" \ - "\333\333\343\342\377\1\321\332\331\377\203Slg\377\1|\220\214\377\230" \ - "\333\343\342\377\1\200\223\220\377\203Slg\377\1\313\325\323\377\210\333" \ - "\343\342\377\1\225\245\242\377\202Slg\377\1\234\253\251\377\335\333\343" \ - "\342\377\4\247\273\267\377\223\254\247\377\226\256\251\377\366\370\370" \ - "\377\212\377\377\377\377\1\306\323\321\377\202\223\254\247\377\1\312" \ - "\326\324\377\333\333\343\342\377\1\322\334\333\377\202\223\254\247\377" \ - "\5\245\271\266\377\307\324\321\377\267\310\304\377\247\274\270\377\230" \ - "\260\253\377\204\223\254\247\377\6\231\261\254\377\250\274\270\377\266" \ - "\306\303\377\226\256\251\377\222\254\247\377\236\265\261\377\334\333" \ - "\343\342\377\1Woj\377\202Slg\377\2Umh\377\277\312\310\377\226\333\343" \ - "\342\377\2\300\314\312\377Uni\377\202Slg\377\2Tlg\377\330\340\337\377" \ - "\210\333\343\342\377\1\177\223\217\377\202Slg\377\1\252\270\266\377\334" \ - "\333\343\342\377\1\321\333\331\377\202\223\254\247\377\1\273\312\307" \ - "\377\212\377\377\377\377\4\374\375\374\377\233\262\256\377\223\254\247" \ - "\377\241\266\262\377\335\333\343\342\377\4\245\271\265\377\223\254\247" \ - "\377\224\254\247\377\365\367\367\377\203\377\377\377\377\7\365\367\367" \ - "\377\345\353\352\377\325\337\335\377\306\323\320\377\267\307\304\377" \ - "\247\273\267\377\230\260\253\377\202\223\254\247\377\2\222\253\247\377" \ - "\312\326\324\377\333\333\343\342\377\1y\215\211\377\203Slg\377\2f}x\377" \ - "\316\330\326\377\224\333\343\342\377\2\317\330\327\377g~y\377\203Slg" \ - "\377\1s\210\204\377\210\333\343\342\377\2\316\327\326\377Vni\377\202" \ - "Slg\377\1\276\311\307\377\334\333\343\342\377\1\263\304\301\377\202\223" \ - "\254\247\377\1\350\356\355\377\212\377\377\377\377\1\330\341\337\377" \ - "\202\223\254\247\377\1\277\315\313\377\335\333\343\342\377\1\310\324" \ - "\322\377\202\222\254\247\377\1\310\325\323\377\212\377\377\377\377\4" \ - "\347\355\354\377\223\253\246\377\222\253\246\377\250\274\267\377\202" \ - "\333\343\342\377\2\306\323\321\377\331\340\337\377\327\333\343\342\377" \ - "\1\250\266\264\377\204Slg\377\2ayt\377\274\310\306\377\222\333\343\342" \ - "\377\2\275\310\306\377czu\377\204Slg\377\1\243\262\257\377\210\333\343" \ - "\342\377\1\223\244\241\377\203Slg\377\1\321\333\331\377\333\333\343\342" \ - "\377\4\330\340\337\377\227\257\252\377\223\254\247\377\251\275\271\377" \ - "\213\377\377\377\377\4\252\276\272\377\223\254\247\377\230\257\253\377" \ - "\330\341\337\377\336\333\343\342\377\4\232\261\254\377\223\254\247\377" \ - "\232\260\254\377\375\375\375\377\212\377\377\377\377\7\256\301\274\377" \ - "\223\254\247\377\223\253\247\377\311\325\323\377\234\264\256\377\223" \ - "\254\247\377\277\316\313\377\327\333\343\342\377\2\323\334\333\377^u" \ - "q\377\205Slg\377\3}\221\215\377\270\305\303\377\330\340\337\377\214\333" \ - "\343\342\377\3\330\340\337\377\270\304\302\377}\220\215\377\205Slg\377" \ - "\2]tp\377\321\332\331\377\207\333\343\342\377\2\237\256\253\377Tlg\377" \ - "\202Slg\377\1h~z\377\334\333\343\342\377\1\276\315\312\377\202\223\254" \ - "\247\377\1\327\340\336\377\212\377\377\377\377\1\351\356\355\377\202" \ - "\223\254\247\377\1\263\305\301\377\337\333\343\342\377\4\272\312\310" \ - "\377\223\253\247\377\222\253\246\377\333\343\342\377\212\377\377\377" \ - "\377\7\341\350\347\377\222\254\246\377\223\253\247\377\264\305\302\377" \ - "\230\257\253\377\223\254\247\377\241\267\263\377\330\333\343\342\377" \ - "\1\251\270\265\377\207Slg\377\6Yrm\377z\216\212\377\220\242\236\377\245" \ - "\264\261\377\263\300\276\377\270\305\303\377\202\276\312\310\377\6\271" \ - "\305\303\377\263\300\276\377\246\264\262\377\220\242\236\377y\216\212" \ - "\377Yql\377\207Slg\377\1\250\267\264\377\205\333\343\342\377\3\331\342" \ - "\341\377\271\306\304\377\204\226\223\377\204Slg\377\1\212\234\231\377" \ - "\334\333\343\342\377\4\240\266\262\377\223\254\247\377\233\262\256\377" \ - "\374\374\374\377\212\377\377\377\377\1\274\313\310\377\202\223\254\247" \ - "\377\1\321\333\332\377\337\333\343\342\377\4\327\340\336\377\224\254" \ - "\250\377\223\254\247\377\250\273\267\377\212\377\377\377\377\5\376\376" \ - "\376\377\236\264\257\377\223\254\247\377\227\257\252\377\263\304\302" \ - "\377\202\223\254\247\377\1\313\327\325\377\330\333\343\342\377\1}\221" \ - "\215\377\232Slg\377\1~\222\216\377\205\333\343\342\377\2\325\336\335" \ - "\377`xs\377\206Slg\377\1\256\274\271\377\333\333\343\342\377\1\312\326" \ - "\324\377\202\223\254\247\377\1\306\323\320\377\212\377\377\377\377\4" \ - "\367\371\370\377\226\256\251\377\223\254\247\377\247\273\270\377\341" \ - "\333\343\342\377\4\255\277\274\377\223\253\246\377\222\253\246\377\354" \ - "\361\360\377\212\377\377\377\377\4\317\332\330\377\222\253\246\377\223" \ - "\253\246\377\274\314\311\377\202\223\254\247\377\1\254\277\274\377\330" \ - "\333\343\342\377\2\327\340\337\377}\221\215\377\230Slg\377\2}\221\215" \ - "\377\330\340\337\377\205\333\343\342\377\1\323\334\333\377\206Slg\377" \ - "\2[sn\377\327\337\336\377\333\333\343\342\377\4\254\277\273\377\223\254" \ - "\247\377\224\254\250\377\362\365\364\377\212\377\377\377\377\1\315\330" \ - "\326\377\202\223\254\247\377\1\306\323\321\377\341\333\343\342\377\4" \ - "\317\331\330\377\222\253\247\377\223\253\246\377\273\313\310\377\212" \ - "\377\377\377\377\10\370\372\371\377\225\255\251\377\223\254\247\377\240" \ - "\266\262\377\251\274\271\377\223\254\247\377\225\255\250\377\324\336" \ - "\335\377\330\333\343\342\377\2\330\341\340\377\213\235\232\377\226Sl" \ - "g\377\2\211\234\230\377\330\340\337\377\206\333\343\342\377\1\323\334" \ - "\333\377\206Slg\377\1\212\234\231\377\333\333\343\342\377\4\324\336\334" \ - "\377\224\255\250\377\223\254\247\377\264\305\302\377\212\377\377\377" \ - "\377\5\376\376\376\377\240\266\262\377\223\254\247\377\234\263\257\377" \ - "\332\342\341\377\342\333\343\342\377\4\240\266\262\377\223\254\247\377" \ - "\225\255\250\377\371\372\372\377\203\377\377\377\377\3\367\371\371\377" \ - "\300\317\314\377\273\313\307\377\204\377\377\377\377\4\271\312\306\377" \ - "\223\254\246\377\223\254\247\377\276\314\311\377\202\223\254\247\377" \ - "\1\271\311\305\377\332\333\343\342\377\2\270\304\302\377e|w\377\222S" \ - "lg\377\2d{v\377\267\303\301\377\211\333\343\342\377\206\322\333\332\377" \ - "\1\327\340\337\377\333\333\343\342\377\1\267\310\305\377\202\223\254" \ - "\247\377\1\342\350\347\377\212\377\377\377\377\1\337\346\345\377\202" \ - "\223\254\247\377\1\272\312\307\377\343\333\343\342\377\4\303\321\317" \ - "\377\222\254\247\377\223\254\246\377\320\332\330\377\203\377\377\377" \ - "\377\4\373\374\374\377\233\262\255\377\224\255\250\377\363\366\365\377" \ - "\203\377\377\377\377\10\354\360\357\377\222\253\246\377\222\254\247\377" \ - "\255\300\274\377\233\262\255\377\223\254\247\377\233\262\255\377\332" \ - "\342\341\377\332\333\343\342\377\3\327\337\336\377\251\270\265\377q\207" \ - "\202\377\216Slg\377\3q\206\202\377\251\267\265\377\326\337\336\377\353" \ - "\333\343\342\377\5\331\342\341\377\232\261\255\377\223\254\247\377\243" \ - "\270\264\377\376\376\376\377\212\377\377\377\377\4\261\303\277\377\223" \ - "\254\247\377\225\255\251\377\326\337\336\377\343\333\343\342\377\4\332" \ - "\342\341\377\227\257\252\377\223\254\247\377\235\264\257\377\204\377" \ - "\377\377\377\3\304\321\317\377\223\254\247\377\307\324\321\377\204\377" \ - "\377\377\377\4\246\273\267\377\223\254\247\377\222\253\247\377\222\253" \ - "\246\377\202\223\254\247\377\1\304\321\317\377\335\333\343\342\377\6" \ - "\306\321\317\377\247\265\263\377\212\234\231\377o\205\201\377dzv\377" \ - "[sn\377\202Tlg\377\6[sn\377dzv\377o\205\201\377\212\234\231\377\247\265" \ - "\263\377\306\320\317\377\356\333\343\342\377\1\303\320\316\377\202\223" \ - "\254\247\377\1\320\333\331\377\212\377\377\377\377\1\357\363\362\377" \ - "\202\223\254\247\377\1\256\301\275\377\345\333\343\342\377\4\265\306" \ - "\303\377\223\254\247\377\222\254\246\377\342\351\347\377\203\377\377" \ - "\377\377\4\361\364\363\377\224\255\250\377\234\263\257\377\374\375\375" \ - "\377\203\377\377\377\377\4\333\343\341\377\223\253\246\377\222\254\246" \ - "\377\221\254\246\377\202\223\254\247\377\1\246\272\266\377\343\333\343" \ - "\342\377\2\332\342\341\377\331\342\341\377\364\333\343\342\377\4\245" \ - "\271\265\377\223\254\247\377\230\257\253\377\371\372\372\377\212\377" \ - "\377\377\377\1\303\321\316\377\202\223\254\247\377\1\315\330\326\377" \ - "\345\333\343\342\377\4\324\336\334\377\223\253\247\377\223\254\247\377" \ - "\257\302\275\377\204\377\377\377\377\3\262\304\301\377\223\254\247\377" \ - "\330\341\337\377\203\377\377\377\377\5\375\375\375\377\231\260\253\377" \ - "\223\254\247\377\230\260\253\377\257\301\276\377\202\223\254\247\377" \ - "\1\317\332\330\377\377\333\343\342\377\330\333\343\342\377\1\316\331" \ - "\330\377\202\223\254\247\377\1\277\316\313\377\212\377\377\377\377\4" \ - "\372\373\373\377\232\261\254\377\223\254\247\377\243\270\264\377\347" \ - "\333\343\342\377\4\247\273\270\377\222\253\246\377\223\253\247\377\362" \ - "\365\364\377\203\377\377\377\377\3\340\347\345\377\223\254\247\377\253" \ - "\276\272\377\204\377\377\377\377\4\307\323\321\377\223\253\247\377\223" \ - "\253\246\377\276\314\312\377\202\223\254\247\377\1\261\303\300\377\377" \ - "\333\343\342\377\330\333\343\342\377\1\260\302\277\377\202\223\254\247" \ - "\377\1\354\361\360\377\212\377\377\377\377\1\324\336\334\377\202\223" \ - "\254\247\377\1\301\317\315\377\347\333\343\342\377\1\312\326\324\377" \ - "\202\223\253\246\377\1\302\321\316\377\204\377\377\377\377\3\242\267" \ - "\263\377\223\254\247\377\351\356\355\377\203\377\377\377\377\10\364\367" \ - "\366\377\223\253\247\377\223\254\247\377\245\271\266\377\243\270\264" \ - "\377\223\254\247\377\227\257\252\377\327\340\337\377\377\333\343\342" \ - "\377\326\333\343\342\377\4\327\337\336\377\226\256\251\377\223\254\247" \ - "\377\256\300\275\377\213\377\377\377\377\4\247\273\267\377\223\254\247" \ - "\377\231\260\254\377\331\341\340\377\350\333\343\342\377\4\234\262\256" \ - "\377\223\254\247\377\227\257\252\377\374\374\374\377\203\377\377\377" \ - "\377\3\316\332\327\377\223\254\247\377\274\314\310\377\204\377\377\377" \ - "\377\4\261\304\300\377\222\253\246\377\222\254\247\377\274\313\311\377" \ - "\202\223\254\247\377\1\275\314\311\377\356\333\343\342\377\1\277\313" \ - "\311\377\202\260\275\273\377\1\311\323\322\377\343\333\343\342\377\1" \ - "\274\313\310\377\202\223\254\247\377\1\333\343\342\377\212\377\377\377" \ - "\377\1\346\353\352\377\202\223\254\247\377\1\266\306\303\377\351\333" \ - "\343\342\377\4\276\314\312\377\223\254\246\377\222\253\246\377\330\341" \ - "\337\377\203\377\377\377\377\4\370\371\371\377\227\257\252\377\226\257" \ - "\252\377\367\371\370\377\203\377\377\377\377\7\345\353\352\377\223\254" \ - "\246\377\223\253\246\377\261\303\301\377\231\261\254\377\223\254\247" \ - "\377\236\265\261\377\356\333\343\342\377\1\202\225\221\377\202Slg\377" \ - "\1\243\262\257\377\343\333\343\342\377\4\236\264\260\377\223\254\247" \ - "\377\236\264\260\377\375\375\375\377\212\377\377\377\377\4\270\310\305" \ - "\377\223\254\247\377\224\254\247\377\323\335\333\377\351\333\343\342" \ - "\377\4\330\341\337\377\224\255\251\377\223\254\247\377\244\271\264\377" \ - "\204\377\377\377\377\3\275\314\311\377\223\254\247\377\315\331\326\377" \ - "\204\377\377\377\377\7\240\266\262\377\223\254\247\377\226\255\251\377" \ - "\265\306\302\377\225\255\250\377\255\277\274\377\327\340\337\377\355" \ - "\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\342\333" \ - "\343\342\377\1\307\324\322\377\202\223\254\247\377\1\312\326\323\377" \ - "\212\377\377\377\377\4\365\367\367\377\225\255\250\377\223\254\247\377" \ - "\252\275\272\377\353\333\343\342\377\4\260\301\276\377\223\253\246\377" \ - "\222\253\247\377\351\356\355\377\203\377\377\377\377\4\352\357\356\377" \ - "\223\254\247\377\241\266\262\377\376\376\376\377\203\377\377\377\377" \ - "\1\323\335\333\377\202\223\254\246\377\2\275\314\311\377\324\336\334" \ - "\377\357\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\342\333\343\342\377\4\251\275\271\377\223\254\247\377\225\255\250\377" \ - "\364\367\366\377\212\377\377\377\377\1\312\326\323\377\202\223\254\247" \ - "\377\1\310\324\322\377\353\333\343\342\377\4\321\333\331\377\223\254" \ - "\246\377\222\254\246\377\266\307\304\377\204\377\377\377\377\3\253\277" \ - "\273\377\223\254\247\377\336\346\344\377\203\377\377\377\377\4\372\373" \ - "\373\377\226\257\251\377\223\254\247\377\236\264\260\377\360\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\341\333\343\342" \ - "\377\1\322\334\333\377\202\223\254\247\377\1\270\310\305\377\212\377" \ - "\377\377\377\4\375\375\375\377\236\264\260\377\223\254\247\377\236\265" \ - "\260\377\355\333\343\342\377\4\243\270\264\377\223\254\247\377\224\255" \ - "\247\377\366\370\370\377\203\377\377\377\377\3\331\342\340\377\223\254" \ - "\247\377\261\303\300\377\204\377\377\377\377\4\276\314\312\377\223\253" \ - "\246\377\223\253\247\377\314\330\326\377\331\333\343\342\377\6\331\341" \ - "\340\377\306\320\317\377\256\273\271\377\237\257\254\377\230\250\245" \ - "\377\220\242\236\377\220\216\237\234\377\1g~y\377\202Slg\377\1\243\262" \ - "\257\377\341\333\343\342\377\1\265\306\302\377\202\223\254\247\377\1" \ - "\346\353\352\377\212\377\377\377\377\1\333\343\342\377\202\223\254\247" \ - "\377\1\275\314\311\377\355\333\343\342\377\4\306\323\320\377\222\253" \ - "\246\377\223\254\246\377\313\327\325\377\203\377\377\377\377\4\374\375" \ - "\375\377\234\263\257\377\223\254\247\377\357\363\362\377\203\377\377" \ - "\377\377\4\357\363\362\377\223\254\247\377\223\253\246\377\253\275\272" \ - "\377\327\333\343\342\377\3\271\306\304\377\205\230\224\377Yrm\377\230" \ - "Slg\377\1\243\262\257\377\340\333\343\342\377\4\331\341\340\377\230\260" \ - "\253\377\223\254\247\377\247\273\267\377\213\377\377\377\377\4\256\300" \ - "\275\377\223\254\247\377\226\256\252\377\327\340\337\377\355\333\343" \ - "\342\377\5\332\342\341\377\230\260\254\377\223\254\247\377\233\262\255" \ - "\377\376\376\376\377\203\377\377\377\377\3\307\324\321\377\223\254\247" \ - "\377\302\320\315\377\204\377\377\377\377\1\245\272\265\377\202\223\254" \ - "\247\377\1\325\337\335\377\324\333\343\342\377\2\317\330\327\377\200" \ - "\224\220\377\233Slg\377\1\243\262\257\377\340\333\343\342\377\1\300\316" \ - "\314\377\202\223\254\247\377\1\324\336\334\377\212\377\377\377\377\1" \ - "\354\361\360\377\202\223\254\247\377\1\261\303\277\377\357\333\343\342" \ - "\377\1\270\311\306\377\202\222\254\247\377\1\336\346\344\377\203\377" \ - "\377\377\377\13\363\366\365\377\224\255\250\377\231\261\254\377\372\373" \ - "\373\377\374\375\375\377\330\341\337\377\252\276\272\377\223\254\247" \ - "\377\222\254\246\377\223\253\247\377\271\311\306\377\323\333\343\342" \ - "\377\2\320\331\330\377h\177z\377\234Slg\377\1\243\262\257\377\340\333" \ - "\343\342\377\4\242\267\263\377\223\254\247\377\232\261\254\377\372\373" \ - "\373\377\212\377\377\377\377\1\277\316\313\377\202\223\254\247\377\1" \ - "\317\332\330\377\357\333\343\342\377\4\326\337\336\377\224\254\247\377" \ - "\223\254\247\377\252\276\272\377\204\377\377\377\377\13\266\307\303\377" \ - "\223\254\247\377\260\302\276\377\233\263\256\377\223\254\247\377\234" \ - "\263\257\377\306\323\320\377\236\265\260\377\223\254\247\377\234\263" \ - "\256\377\332\342\341\377\322\333\343\342\377\1x\214\210\377\235Slg\377" \ - "\1\243\262\257\377\337\333\343\342\377\1\314\327\325\377\202\223\254" \ - "\247\377\1\303\321\316\377\212\377\377\377\377\4\371\372\372\377\230" \ - "\257\253\377\223\254\247\377\245\272\266\377\361\333\343\342\377\4\252" \ - "\276\272\377\222\254\246\377\223\253\246\377\357\362\362\377\202\377" \ - "\377\377\377\11\341\350\346\377\253\276\273\377\223\253\247\377\223\254" \ - "\246\377\253\276\272\377\330\341\340\377\374\375\375\377\377\377\377" \ - "\377\315\330\326\377\202\223\254\247\377\1\305\322\320\377\321\333\343" \ - "\342\377\1\267\304\302\377\212Slg\377\3Xpk\377byt\377k\201|\377\216l" \ - "\201}\377\1[sn\377\202Slg\377\1\243\262\257\377\337\333\343\342\377\1" \ - "\256\300\275\377\202\223\254\247\377\1\357\363\362\377\212\377\377\377" \ - "\377\1\321\333\331\377\202\223\254\247\377\1\304\321\317\377\361\333" \ - "\343\342\377\12\315\330\326\377\222\254\246\377\222\254\247\377\272\312" \ - "\307\377\317\332\330\377\242\270\263\377\223\254\247\377\227\257\252" \ - "\377\275\314\311\377\352\357\356\377\204\377\377\377\377\4\366\370\370" \ - "\377\226\256\251\377\223\254\247\377\247\273\267\377\321\333\343\342" \ - "\377\1\204\226\223\377\205Slg\377\5]up\377\212\234\231\377\270\305\303" \ - "\377\315\326\325\377\327\337\336\377\221\333\343\342\377\1\202\225\221" \ - "\377\202Slg\377\1\243\262\257\377\336\333\343\342\377\4\325\336\335\377" \ - "\225\255\250\377\223\254\247\377\261\303\300\377\213\377\377\377\377" \ - "\4\243\271\264\377\223\254\247\377\233\262\255\377\332\342\341\377\362" \ - "\333\343\342\377\7\236\264\261\377\223\254\247\377\222\253\246\377\223" \ - "\254\247\377\241\267\263\377\316\331\327\377\367\371\371\377\207\377" \ - "\377\377\377\1\274\313\310\377\202\223\254\247\377\1\320\333\331\377" \ - "\320\333\343\342\377\1`ws\377\204Slg\377\2\220\241\236\377\330\341\340" \ - "\377\225\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\336\333\343\342\377\1\271\311\306\377\202\223\254\247\377\1\337\346" \ - "\345\377\212\377\377\377\377\1\342\351\347\377\202\223\254\247\377\1" \ - "\270\310\305\377\363\333\343\342\377\5\301\317\315\377\222\253\246\377" \ - "\223\253\247\377\300\317\314\377\376\376\376\377\211\377\377\377\377" \ - "\1\351\356\355\377\202\223\254\247\377\1\262\304\301\377\317\333\343" \ - "\342\377\1\322\333\332\377\204Slg\377\2{\217\213\377\331\342\341\377" \ - "\226\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\335" \ - "\333\343\342\377\5\332\342\341\377\234\262\256\377\223\254\247\377\241" \ - "\267\262\377\376\376\376\377\212\377\377\377\377\4\265\306\302\377\223" \ - "\254\247\377\224\255\250\377\324\336\334\377\363\333\343\342\377\4\331" \ - "\341\340\377\231\260\254\377\223\254\247\377\246\272\266\377\213\377" \ - "\377\377\377\4\252\275\271\377\223\254\247\377\227\257\252\377\330\340" \ - "\337\377\316\333\343\342\377\1\307\321\320\377\204Slg\377\1\311\323\322" \ - "\377\227\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377" \ - "\335\333\343\342\377\1\305\322\320\377\202\223\254\247\377\1\315\331" \ - "\326\377\212\377\377\377\377\4\362\365\364\377\224\254\250\377\223\254" \ - "\247\377\254\277\274\377\365\333\343\342\377\1\266\306\303\377\202\223" \ - "\254\247\377\1\345\353\352\377\212\377\377\377\377\1\330\341\337\377" \ - "\202\223\254\247\377\1\276\315\312\377\316\333\343\342\377\1\303\316" \ - "\314\377\203Slg\377\2Zrm\377\332\342\341\377\227\333\343\342\377\1\267" \ - "\303\301\377\202\243\262\257\377\1\304\316\315\377\335\333\343\342\377" \ - "\4\247\273\267\377\223\254\247\377\226\256\252\377\367\371\370\377\212" \ - "\377\377\377\377\1\306\323\321\377\202\223\254\247\377\1\313\326\325" \ - "\377\365\333\343\342\377\1\323\334\333\377\202\223\254\247\377\1\267" \ - "\310\305\377\212\377\377\377\377\4\374\374\374\377\233\262\256\377\223" \ - "\254\247\377\240\266\261\377\316\333\343\342\377\1\322\333\332\377\203" \ - "Slg\377\1q\207\202\377\370\333\343\342\377\1\320\333\331\377\202\223" \ - "\254\247\377\1\274\313\310\377\212\377\377\377\377\4\374\375\374\377" \ - "\234\263\256\377\223\254\247\377\241\266\262\377\367\333\343\342\377" \ - "\4\252\275\271\377\223\254\247\377\225\255\250\377\364\366\366\377\212" \ - "\377\377\377\377\1\306\323\321\377\202\223\254\247\377\1\312\326\324" \ - "\377\316\333\343\342\377\1[sn\377\202Slg\377\1{\217\213\377\370\333\343" \ - "\342\377\1\262\304\300\377\202\223\254\247\377\1\351\356\355\377\212" \ - "\377\377\377\377\1\330\341\337\377\202\223\254\247\377\1\277\316\313" \ - "\377\367\333\343\342\377\1\310\324\322\377\202\223\254\247\377\1\311" \ - "\325\323\377\212\377\377\377\377\4\362\365\364\377\224\254\250\377\223" \ - "\254\247\377\253\276\273\377\316\333\343\342\377\1y\215\211\377\202S" \ - "lg\377\1o\204\200\377\367\333\343\342\377\4\330\340\337\377\227\257\252" \ - "\377\223\254\247\377\253\276\272\377\213\377\377\377\377\4\252\276\272" \ - "\377\223\254\247\377\230\257\253\377\330\341\337\377\370\333\343\342" \ - "\377\4\236\265\260\377\223\254\247\377\236\264\257\377\375\375\375\377" \ - "\212\377\377\377\377\4\265\306\302\377\223\254\247\377\224\255\250\377" \ - "\324\335\334\377\315\333\343\342\377\1\270\304\302\377\202Slg\377\2U" \ - "ni\377\320\332\330\377\366\333\343\342\377\1\276\315\312\377\202\223" \ - "\254\247\377\1\330\341\337\377\212\377\377\377\377\1\351\356\355\377" \ - "\202\223\254\247\377\1\264\305\302\377\371\333\343\342\377\1\275\314" \ - "\311\377\202\223\254\247\377\1\333\343\341\377\212\377\377\377\377\1" \ - "\342\351\347\377\202\223\254\247\377\1\267\307\304\377\316\333\343\342" \ - "\377\1q\206\202\377\202Slg\377\1\233\253\250\377\227\333\343\342\377" \ - "\1\205\230\224\377\202Voj\377\1\244\263\260\377\333\333\343\342\377\4" \ - "\237\265\261\377\223\254\247\377\234\263\256\377\374\375\374\377\212" \ - "\377\377\377\377\1\274\313\310\377\202\223\254\247\377\1\321\333\332" \ - "\377\371\333\343\342\377\4\327\340\336\377\226\256\252\377\223\254\247" \ - "\377\255\300\274\377\213\377\377\377\377\4\243\271\264\377\223\254\247" \ - "\377\232\261\255\377\331\342\341\377\315\333\343\342\377\5\313\325\323" \ - "\377ayt\377Slg\377Xpk\377\305\317\316\377\226\333\343\342\377\1\202\225" \ - "\221\377\202Slg\377\1\243\262\257\377\332\333\343\342\377\1\311\325\323" \ - "\377\202\223\254\247\377\1\310\325\322\377\212\377\377\377\377\4\367" \ - "\371\370\377\226\256\251\377\223\254\247\377\250\274\270\377\373\333" \ - "\343\342\377\1\261\303\277\377\202\223\254\247\377\1\356\361\361\377" \ - "\212\377\377\377\377\1\322\334\332\377\202\223\254\247\377\1\303\320" \ - "\316\377\316\333\343\342\377\5\305\317\316\377]up\377Slg\377^vq\377\275" \ - "\311\307\377\225\333\343\342\377\1\202\225\221\377\202Slg\377\1\243\262" \ - "\257\377\332\333\343\342\377\4\253\276\273\377\223\254\247\377\224\255" \ - "\250\377\363\366\366\377\212\377\377\377\377\1\315\330\326\377\202\223" \ - "\254\247\377\1\306\323\321\377\373\333\343\342\377\1\317\332\330\377" \ - "\202\223\254\247\377\1\300\317\314\377\212\377\377\377\377\4\371\373" \ - "\372\377\230\260\253\377\223\254\247\377\244\271\265\377\317\333\343" \ - "\342\377\6\314\325\324\377}\221\215\377Slg\377Tlg\377\206\230\225\377" \ - "\277\312\310\377\223\333\343\342\377\1\202\225\221\377\202Slg\377\1\243" \ - "\262\257\377\331\333\343\342\377\4\323\335\334\377\224\255\250\377\223" \ - "\254\247\377\267\307\304\377\212\377\377\377\377\5\376\376\376\377\240" \ - "\266\262\377\223\254\247\377\235\263\257\377\332\342\341\377\374\333" \ - "\343\342\377\4\245\272\266\377\223\254\247\377\230\260\253\377\371\373" \ - "\372\377\212\377\377\377\377\1\301\317\314\377\202\223\254\247\377\1" \ - "\316\331\327\377\313\333\343\342\377\1\313\325\324\377\204\260\275\273" \ - "\377\1\206\230\225\377\203Slg\377\5czu\377\177\223\217\377\227\250\245" \ - "\377\244\262\260\377\253\271\267\377\216\260\275\273\377\1s\210\204\377" \ - "\202Slg\377\1\243\262\257\377\331\333\343\342\377\1\267\307\304\377\202" \ - "\223\254\247\377\1\344\352\351\377\212\377\377\377\377\1\336\346\344" \ - "\377\202\223\254\247\377\1\273\312\307\377\375\333\343\342\377\1\304" \ - "\321\317\377\202\223\254\247\377\1\322\334\332\377\212\377\377\377\377" \ - "\1\356\361\361\377\202\223\254\247\377\1\260\302\277\377\313\333\343" \ - "\342\377\1\250\267\264\377\236Slg\377\1\243\262\257\377\330\333\343\342" \ - "\377\4\331\342\341\377\232\261\255\377\223\254\247\377\245\272\266\377" \ - "\213\377\377\377\377\4\261\303\277\377\223\254\247\377\225\256\251\377" \ - "\326\337\336\377\375\333\343\342\377\4\332\342\341\377\233\262\255\377" \ - "\223\254\247\377\244\271\265\377\213\377\377\377\377\4\257\302\276\377" \ - "\223\254\247\377\226\256\251\377\327\337\336\377\312\333\343\342\377" \ - "\1\250\267\264\377\236Slg\377\1\243\262\257\377\330\333\343\342\377\1" \ - "\302\320\316\377\202\223\254\247\377\1\322\335\333\377\212\377\377\377" \ - "\377\1\357\363\362\377\202\223\254\247\377\1\257\301\276\377\377\333" \ - "\343\342\377\1\270\310\305\377\202\223\254\247\377\1\343\351\350\377" \ - "\212\377\377\377\377\1\335\344\343\377\202\223\254\247\377\1\273\313" \ - "\310\377\312\333\343\342\377\1\250\267\264\377\236Slg\377\1\243\262\257" \ - "\377\330\333\343\342\377\4\244\271\265\377\223\254\247\377\231\260\254" \ - "\377\372\373\373\377\212\377\377\377\377\1\302\320\315\377\202\223\254" \ - "\247\377\1\315\330\327\377\377\333\343\342\377\4\324\336\334\377\224" \ - "\255\250\377\223\254\247\377\266\307\303\377\212\377\377\377\377\5\375" \ - "\376\375\377\237\265\261\377\223\254\247\377\236\264\260\377\332\342" \ - "\341\377\311\333\343\342\377\1\250\267\264\377\236Slg\377\1\243\262\257" \ - "\377\327\333\343\342\377\1\316\331\327\377\202\223\254\247\377\1\301" \ - "\317\314\377\212\377\377\377\377\4\372\373\373\377\231\261\254\377\223" \ - "\254\247\377\243\270\264\377\377\333\343\342\377\202\333\343\342\377" \ - "\4\254\277\274\377\223\254\247\377\224\255\250\377\363\366\365\377\212" \ - "\377\377\377\377\1\313\327\325\377\202\223\254\247\377\1\307\324\322" \ - "\377\311\333\343\342\377\1\250\267\264\377\236Slg\377\1\243\262\257\377" \ - "\327\333\343\342\377\1\260\302\276\377\202\223\254\247\377\1\356\362" \ - "\361\377\212\377\377\377\377\1\324\336\334\377\202\223\254\247\377\1" \ - "\301\317\315\377\377\333\343\342\377\202\333\343\342\377\1\312\326\324" \ - "\377\202\223\254\247\377\1\307\324\321\377\212\377\377\377\377\4\366" \ - "\370\367\377\225\256\251\377\223\254\247\377\251\275\271\377\311\333" \ - "\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\230\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\326\333\343\342" \ - "\377\4\326\337\336\377\226\256\251\377\223\254\247\377\260\302\276\377" \ - "\213\377\377\377\377\4\246\273\267\377\223\254\247\377\231\261\254\377" \ - "\331\341\340\377\377\333\343\342\377\203\333\343\342\377\4\241\266\262" \ - "\377\223\254\247\377\234\263\256\377\374\375\374\377\212\377\377\377" \ - "\377\1\272\312\307\377\202\223\254\247\377\1\322\334\333\377\310\333" \ - "\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\230\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\326\333\343\342" \ - "\377\1\273\313\310\377\202\223\254\247\377\1\335\345\344\377\212\377" \ - "\377\377\377\1\346\353\352\377\202\223\254\247\377\1\266\306\303\377" \ - "\377\333\343\342\377\204\333\343\342\377\1\277\315\313\377\202\223\254" \ - "\247\377\1\330\341\337\377\212\377\377\377\377\1\350\355\354\377\202" \ - "\223\254\247\377\1\264\305\302\377\310\333\343\342\377\1\250\267\264" \ - "\377\202Slg\377\1x\214\210\377\230\333\343\342\377\1\202\225\221\377" \ - "\202Slg\377\1\243\262\257\377\325\333\343\342\377\5\332\342\341\377\235" \ - "\264\257\377\223\254\247\377\240\266\261\377\376\376\376\377\212\377" \ - "\377\377\377\4\270\310\305\377\223\254\247\377\224\254\247\377\323\335" \ - "\333\377\377\333\343\342\377\204\333\343\342\377\4\330\341\337\377\230" \ - "\257\253\377\223\254\247\377\253\276\273\377\213\377\377\377\377\4\251" \ - "\274\270\377\223\254\247\377\230\260\253\377\331\341\340\377\307\333" \ - "\343\342\377\1\250\267\264\377\202Slg\377\1x\214\210\377\230\333\343" \ - "\342\377\1\202\225\221\377\202Slg\377\1\243\262\257\377\325\333\343\342" \ - "\377\1\307\324\322\377\202\223\254\247\377\1\314\330\325\377\212\377" \ - "\377\377\377\4\364\367\366\377\225\255\250\377\223\254\247\377\252\276" \ - "\272\377\377\333\343\342\377\206\333\343\342\377\1\263\305\301\377\202" \ - "\223\254\247\377\1\352\357\356\377\212\377\377\377\377\1\326\340\336" \ - "\377\202\223\254\247\377\1\300\316\314\377\307\333\343\342\377\1\250" \ - "\267\264\377\202Slg\377\1x\214\210\377\230\333\343\342\377\1\223\244" \ - "\241\377\202l\201}\377\1\255\272\270\377\325\333\343\342\377\4\251\274" \ - "\271\377\223\254\247\377\225\256\251\377\366\370\370\377\212\377\377" \ - "\377\377\1\312\326\323\377\202\223\254\247\377\1\310\325\323\377\377" \ - "\333\343\342\377\206\333\343\342\377\1\321\333\332\377\202\223\254\247" \ - "\377\1\274\314\311\377\212\377\377\377\377\4\373\374\374\377\233\262" \ - "\255\377\223\254\247\377\242\267\263\377\377\333\343\342\377\274\333" \ - "\343\342\377\1\322\334\332\377\202\223\254\247\377\1\272\312\307\377" \ - "\212\377\377\377\377\4\375\375\375\377\236\264\260\377\223\254\247\377" \ - "\237\265\260\377\377\333\343\342\377\210\333\343\342\377\4\250\274\270" \ - "\377\223\254\247\377\226\256\252\377\367\371\371\377\212\377\377\377" \ - "\377\1\304\322\317\377\202\223\254\247\377\1\314\327\325\377\377\333" \ - "\343\342\377\273\333\343\342\377\1\264\305\302\377\202\223\254\247\377" \ - "\1\350\355\354\377\212\377\377\377\377\1\333\343\342\377\202\223\254" \ - "\247\377\1\275\314\311\377\377\333\343\342\377\210\333\343\342\377\1" \ - "\306\323\321\377\202\223\254\247\377\1\316\331\327\377\212\377\377\377" \ - "\377\1\361\364\363\377\202\223\254\247\377\1\255\300\274\377\377\333" \ - "\343\342\377\272\333\343\342\377\4\331\341\340\377\230\260\253\377\223" \ - "\254\247\377\251\275\271\377\213\377\377\377\377\4\256\300\275\377\223" \ - "\254\247\377\226\257\252\377\327\340\337\377\377\333\343\342\377\210" \ - "\333\343\342\377\5\332\342\341\377\234\263\257\377\223\254\247\377\241" \ - "\267\263\377\376\376\376\377\212\377\377\377\377\4\263\305\301\377\223" \ - "\254\247\377\225\255\250\377\325\336\335\377\377\333\343\342\377\271" \ - "\333\343\342\377\1\300\316\314\377\202\223\254\247\377\1\327\340\336" \ - "\377\212\377\377\377\377\1\354\361\360\377\202\223\254\247\377\1\261" \ - "\303\300\377\377\333\343\342\377\212\333\343\342\377\1\272\312\307\377" \ - "\202\223\254\247\377\1\340\347\345\377\212\377\377\377\377\1\341\350" \ - "\346\377\202\223\254\247\377\1\271\311\306\377\340\333\343\342\377\1" \ - "\317\330\327\377\202\305\320\316\377\1\320\331\330\377\324\333\343\342" \ - "\377\4\241\267\263\377\223\254\247\377\233\262\255\377\374\374\374\377" \ - "\212\377\377\377\377\1\277\316\313\377\202\223\254\247\377\1\317\332" \ - "\330\377\377\333\343\342\377\212\333\343\342\377\4\326\337\336\377\225" \ - "\256\251\377\223\254\247\377\262\304\300\377\212\377\377\377\377\5\376" \ - "\376\376\377\243\270\264\377\223\254\247\377\234\262\256\377\332\342" \ - "\341\377\337\333\343\342\377\1\216\237\234\377\202Slg\377\1\227\247\244" \ - "\377\323\333\343\342\377\1\314\327\325\377\202\223\254\247\377\1\305" \ - "\323\320\377\212\377\377\377\377\4\371\372\372\377\230\257\253\377\223" \ - "\254\247\377\246\272\266\377\377\333\343\342\377\214\333\343\342\377" \ - "\1\257\301\276\377\202\223\254\247\377\1\360\363\363\377\212\377\377" \ - "\377\377\1\317\332\330\377\202\223\254\247\377\1\305\322\320\377\337" \ - "\333\343\342\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\323\333" \ - "\343\342\377\1\255\300\274\377\202\223\254\247\377\1\361\364\364\377" \ - "\212\377\377\377\377\1\320\333\331\377\202\223\254\247\377\1\304\321" \ - "\317\377\377\333\343\342\377\214\333\343\342\377\1\315\330\326\377\202" \ - "\223\254\247\377\1\304\321\317\377\212\377\377\377\377\4\370\372\371" \ - "\377\227\257\252\377\223\254\247\377\246\273\267\377\337\333\343\342" \ - "\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\322\333\343\342\377" \ - "\4\325\336\335\377\224\255\250\377\223\254\247\377\264\305\302\377\213" \ - "\377\377\377\377\4\243\271\264\377\223\254\247\377\233\262\255\377\332" \ - "\342\341\377\377\333\343\342\377\215\333\343\342\377\4\243\270\264\377" \ - "\223\254\247\377\232\261\255\377\373\374\373\377\212\377\377\377\377" \ - "\1\276\315\312\377\202\223\254\247\377\1\320\332\331\377\336\333\343" \ - "\342\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\322\333\343\342" \ - "\377\1\271\311\306\377\202\223\254\247\377\1\341\350\347\377\212\377" \ - "\377\377\377\1\342\351\347\377\202\223\254\247\377\1\270\310\306\377" \ - "\377\333\343\342\377\216\333\343\342\377\1\301\317\315\377\202\223\254" \ - "\247\377\1\325\337\335\377\212\377\377\377\377\1\353\360\357\377\202" \ - "\223\254\247\377\1\262\303\300\377\334\333\343\342\377\3\304\317\316" \ - "\377\220\242\236\377]to\377\202Slg\377\1\227\247\244\377\321\333\343" \ - "\342\377\5\332\342\341\377\233\262\256\377\223\254\247\377\243\270\264" \ - "\377\376\376\376\377\212\377\377\377\377\4\264\306\302\377\223\254\247" \ - "\377\224\255\250\377\325\336\335\377\377\333\343\342\377\216\333\343" \ - "\342\377\4\331\341\340\377\231\260\254\377\223\254\247\377\247\273\267" \ - "\377\213\377\377\377\377\4\255\300\274\377\223\254\247\377\227\257\252" \ - "\377\327\340\337\377\330\333\343\342\377\3\323\335\333\377\246\263\261" \ - "\377p\206\202\377\205Slg\377\1\227\247\244\377\321\333\343\342\377\1" \ - "\304\322\317\377\202\223\254\247\377\1\320\333\331\377\212\377\377\377" \ - "\377\4\362\365\364\377\224\254\250\377\223\254\247\377\236\264\260\377" \ - "\377\333\343\342\377\220\333\343\342\377\1\266\306\303\377\202\223\254" \ - "\247\377\1\346\354\353\377\202\377\377\377\377\4\370\371\371\377\342" \ - "\351\347\377\333\343\342\377\360\363\363\377\204\377\377\377\377\1\332" \ - "\343\341\377\202\223\254\247\377\1\276\315\312\377\326\333\343\342\377" \ - "\3\273\306\304\377\206\230\225\377Xpl\377\207Slg\377\1\227\247\244\377" \ - "\321\333\343\342\377\4\246\272\266\377\223\254\247\377\227\257\252\377" \ - "\370\372\371\377\212\377\377\377\377\1\306\323\321\377\203\223\254\247" \ - "\377\1\314\327\325\377\377\333\343\342\377\217\333\343\342\377\6\323" \ - "\335\333\377\224\254\247\377\223\254\247\377\267\307\304\377\304\321" \ - "\317\377\242\267\263\377\204\223\254\247\377\10\232\262\255\377\263\304" \ - "\301\377\353\360\357\377\377\377\377\377\374\375\375\377\235\264\257" \ - "\377\223\254\247\377\237\265\261\377\323\333\343\342\377\3\315\327\325" \ - "\377\233\253\250\377g}y\377\212Slg\377\1\227\247\244\377\320\333\343" \ - "\342\377\1\320\332\331\377\202\223\254\247\377\1\277\315\312\377\212" \ - "\377\377\377\377\6\374\374\374\377\233\262\256\377\223\254\247\377\235" \ - "\264\257\377\223\254\247\377\266\307\304\377\377\333\343\342\377\220" \ - "\333\343\342\377\3\252\275\272\377\222\253\247\377\222\254\247\377\202" \ - "\223\254\247\377\12\237\265\261\377\266\307\304\377\276\315\312\377\250" \ - "\274\270\377\225\256\251\377\223\254\247\377\225\256\251\377\312\327" \ - "\324\377\375\376\376\377\311\325\323\377\202\223\254\247\377\1\311\325" \ - "\323\377\317\333\343\342\377\4\330\341\340\377\260\275\273\377|\217\214" \ - "\377Umh\377\214Slg\377\1\227\247\244\377\320\333\343\342\377\1\262\303" \ - "\300\377\202\223\254\247\377\1\354\360\357\377\212\377\377\377\377\1" \ - "\330\341\337\377\202\223\254\247\377\3\306\323\320\377\223\254\247\377" \ - "\250\273\270\377\377\333\343\342\377\220\333\343\342\377\1\263\305\301" \ - "\377\202\223\254\247\377\2\263\305\301\377\362\365\365\377\204\377\377" \ - "\377\377\11\374\374\374\377\317\332\330\377\226\257\252\377\223\254\247" \ - "\377\257\301\276\377\363\365\365\377\225\255\250\377\223\254\247\377" \ - "\253\276\272\377\315\333\343\342\377\3\305\320\316\377\220\242\236\377" \ - "_vr\377\217Slg\377\1\227\247\244\377\317\333\343\342\377\4\327\340\337" \ - "\377\227\257\252\377\223\254\247\377\255\300\274\377\213\377\377\377" \ - "\377\6\252\275\271\377\223\254\247\377\233\262\255\377\366\370\370\377" \ - "\224\255\250\377\230\260\254\377\377\333\343\342\377\217\333\343\342" \ - "\377\4\321\333\331\377\226\256\251\377\223\254\247\377\324\336\334\377" \ - "\210\377\377\377\377\10\355\361\361\377\243\270\264\377\223\254\247\377" \ - "\315\330\326\377\267\310\305\377\223\254\247\377\224\255\250\377\323" \ - "\335\334\377\311\333\343\342\377\3\324\335\334\377\245\264\262\377q\206" \ - "\203\377\217Slg\377\1\\to\377\202Slg\377\1\227\247\244\377\317\333\343" \ - "\342\377\1\275\314\311\377\202\223\254\247\377\1\333\343\341\377\212" \ - "\377\377\377\377\1\351\356\355\377\202\223\254\247\377\5\304\322\317" \ - "\377\377\377\377\377\231\261\254\377\224\254\247\377\331\342\341\377" \ - "\377\333\343\342\377\215\333\343\342\377\4\332\342\341\377\244\271\265" \ - "\377\223\254\247\377\302\320\316\377\212\377\377\377\377\4\351\356\355" \ - "\377\225\255\250\377\226\256\251\377\327\340\335\377\202\223\254\247" \ - "\377\1\266\307\304\377\307\333\343\342\377\3\273\307\305\377\206\231" \ - "\225\377Xpl\377\216Slg\377\4d{w\377\230\250\245\377\313\325\323\377\216" \ - "\237\234\377\202Slg\377\1\227\247\244\377\317\333\343\342\377\4\237\265" \ - "\261\377\223\254\247\377\236\264\257\377\375\375\375\377\212\377\377" \ - "\377\377\1\274\313\310\377\202\223\254\247\377\202\361\364\363\377\2" \ - "\223\254\247\377\240\265\261\377\377\333\343\342\377\216\333\343\342" \ - "\377\4\306\323\321\377\223\254\247\377\244\271\264\377\373\374\374\377" \ - "\213\377\377\377\377\7\310\325\322\377\223\254\247\377\267\310\305\377" \ - "\246\272\266\377\223\254\247\377\232\261\254\377\331\341\340\377\303" \ - "\333\343\342\377\3\316\327\326\377\233\253\251\377g}y\377\216Slg\377" \ - "\4Wpj\377\204\226\223\377\270\305\302\377\332\342\341\377\202\333\343" \ - "\342\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\316\333\343\342" \ - "\377\1\311\325\323\377\202\223\254\247\377\1\311\325\323\377\206\377" \ - "\377\377\377\14\346\353\352\377\301\317\314\377\337\346\345\377\376\376" \ - "\376\377\367\371\370\377\226\256\251\377\223\254\247\377\263\304\301" \ - "\377\377\377\377\377\332\342\341\377\223\254\247\377\256\302\276\377" \ - "\377\333\343\342\377\216\333\343\342\377\3\267\307\304\377\223\254\247" \ - "\377\316\331\327\377\214\377\377\377\377\4\367\370\370\377\223\254\247" \ - "\377\240\266\262\377\323\335\333\377\202\223\254\247\377\1\302\320\316" \ - "\377\300\333\343\342\377\4\330\341\340\377\261\275\273\377|\220\214\377" \ - "Umh\377\216Slg\377\3p\205\201\377\244\263\260\377\323\334\333\377\205" \ - "\333\343\342\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\316\333" \ - "\343\342\377\4\253\276\272\377\223\254\247\377\225\255\250\377\364\367" \ - "\366\377\205\377\377\377\377\1\326\337\336\377\203\223\254\247\377\2" \ - "\302\320\315\377\315\330\326\377\202\223\254\247\377\5\340\347\346\377" \ - "\377\377\377\377\257\301\276\377\223\254\247\377\276\315\313\377\377" \ - "\333\343\342\377\216\333\343\342\377\3\251\274\271\377\223\254\247\377" \ - "\344\352\351\377\215\377\377\377\377\6\240\266\262\377\223\254\247\377" \ - "\362\365\364\377\231\261\254\377\223\254\247\377\244\271\265\377\252" \ - "\333\343\342\377\11\330\340\337\377\243\262\257\377\204\227\224\377j" \ - "\200{\377Wpj\377f|x\377{\216\213\377\255\274\271\377\330\341\340\377" \ - "\213\333\343\342\377\3\305\320\316\377\221\242\237\377_vr\377\216Slg" \ - "\377\3^vq\377\220\241\236\377\304\317\315\377\210\333\343\342\377\1\216" \ - "\237\234\377\202Slg\377\1\227\247\244\377\316\333\343\342\377\3\226\256" \ - "\251\377\223\254\247\377\266\307\303\377\206\377\377\377\377\15\252\276" \ - "\272\377\223\254\247\377\302\320\316\377\223\254\247\377\232\261\255" \ - "\377\237\265\261\377\223\254\247\377\242\270\263\377\376\376\376\377" \ - "\321\334\331\377\223\254\247\377\235\263\257\377\330\340\340\377\377" \ - "\333\343\342\377\216\333\343\342\377\3\234\262\256\377\223\254\247\377" \ - "\370\372\371\377\215\377\377\377\377\4\264\306\302\377\223\254\247\377" \ - "\344\352\351\377\300\316\313\377\202\223\254\247\377\1\325\336\335\377" \ - "\250\333\343\342\377\2\303\316\315\377m\202~\377\207Slg\377\2g}y\377" \ - "\306\321\317\377\207\333\343\342\377\3\324\335\334\377\246\265\263\377" \ - "q\206\203\377\216Slg\377\4Umh\377|\217\214\377\260\275\273\377\330\340" \ - "\337\377\212\333\343\342\377\1\257\274\273\377\202\216\237\234\377\1" \ - "\264\300\277\377\316\333\343\342\377\3\230\257\253\377\223\254\247\377" \ - "\276\315\312\377\206\377\377\377\377\5\270\311\305\377\223\254\247\377" \ - "\244\271\264\377\223\254\247\377\240\266\262\377\202\223\254\247\377" \ - "\5\317\332\330\377\335\345\343\377\226\256\251\377\223\254\247\377\312" \ - "\326\324\377\377\333\343\342\377\217\333\343\342\377\3\241\267\263\377" \ - "\223\254\247\377\356\362\362\377\215\377\377\377\377\4\253\276\272\377" \ - "\223\254\247\377\355\361\360\377\310\325\322\377\202\223\254\247\377" \ - "\1\327\340\336\377\247\333\343\342\377\2\261\275\273\377Woj\377\211S" \ - "lg\377\2[to\377\301\314\312\377\204\333\343\342\377\3\273\307\305\377" \ - "\207\231\225\377Yql\377\206Slg\377\4Rkg\377Skf\377Slf\377Rkg\377\204" \ - "Slg\377\3h~z\377\234\254\251\377\316\327\326\377\337\333\343\342\377" \ - "\3\233\262\255\377\223\254\247\377\271\311\306\377\206\377\377\377\377" \ - "\10\351\356\355\377\240\266\261\377\223\254\247\377\233\262\256\377\247" \ - "\273\266\377\223\254\247\377\226\256\252\377\267\310\304\377\202\223" \ - "\254\247\377\1\267\307\305\377\377\333\343\342\377\220\333\343\342\377" \ - "\3\260\302\277\377\223\254\247\377\330\341\340\377\214\377\377\377\377" \ - "\5\375\376\376\377\226\257\252\377\227\257\252\377\376\376\376\377\304" \ - "\321\317\377\202\223\254\247\377\1\332\342\341\377\246\333\343\342\377" \ - "\2\315\327\325\377]to\377\203Slg\377\5Zqm\377x\214\210\377\210\232\226" \ - "\377r\210\204\377Vnj\377\203Slg\377\5j\200{\377\327\340\336\377\316\327" \ - "\326\377\233\253\251\377g}y\377\211Slg\377\10Skf\377Rkg\377Slg\377Rl" \ - "f\377Slg\377Zqm\377\207\233\227\377\275\310\306\377\342\333\343\342\377" \ - "\3\236\264\260\377\223\254\247\377\264\306\302\377\207\377\377\377\377" \ - "\3\376\376\376\377\346\354\353\377\354\360\357\377\204\223\254\247\377" \ - "\2\232\261\255\377\305\322\320\377\377\333\343\342\377\221\333\343\342" \ - "\377\3\276\315\312\377\223\254\247\377\274\313\310\377\214\377\377\377" \ - "\377\7\344\352\351\377\223\254\247\377\253\277\273\377\377\377\377\377" \ - "\277\315\312\377\223\254\247\377\225\255\250\377\247\333\343\342\377" \ - "\1y\215\212\377\203Slg\377\2x\214\211\377\315\327\325\377\203\333\343" \ - "\342\377\2\301\314\312\377h~z\377\203Slg\377\2j\200{\377Umh\377\213S" \ - "lg\377\6Skf\377Rkg\377Slg\377Xqk\377\250\266\263\377\325\336\335\377" \ - "\344\333\343\342\377\3\241\266\262\377\223\254\247\377\260\302\276\377" \ - "\211\377\377\377\377\1\302\320\315\377\202\223\254\247\377\3\231\260" \ - "\253\377\260\302\277\377\325\336\336\377\377\333\343\342\377\222\333" \ - "\343\342\377\4\323\334\334\377\226\256\251\377\223\254\247\377\344\352" \ - "\351\377\212\377\377\377\377\10\374\374\374\377\245\272\265\377\223\254" \ - "\247\377\320\333\331\377\377\377\377\377\272\312\307\377\223\254\247" \ - "\377\230\257\253\377\246\333\343\342\377\1\314\325\325\377\203Slg\377" \ - "\2j\201|\377\326\337\336\377\205\333\343\342\377\2\311\323\321\377Yq" \ - "l\377\217Slg\377\4_uq\377Slh\377Slg\377i\200{\377\346\333\343\342\377" \ - "\3\244\271\265\377\223\254\247\377\253\276\273\377\210\377\377\377\377" \ - "\4\372\373\373\377\231\261\254\377\223\254\247\377\242\267\263\377\377" \ - "\333\343\342\377\226\333\343\342\377\4\275\314\311\377\223\254\247\377" \ - "\241\266\262\377\371\372\372\377\211\377\377\377\377\10\303\321\316\377" \ - "\223\254\247\377\254\277\273\377\376\376\376\377\377\377\377\377\265" \ - "\306\303\377\223\254\247\377\233\262\255\377\246\333\343\342\377\1\263" \ - "\300\276\377\203Slg\377\1\263\300\276\377\207\333\343\342\377\1\222\243" \ - "\237\377\214Slg\377\7Vnj\377\200\223\220\377\264\300\277\377\300\313" \ - "\311\377Umi\377Slg\377i\200{\377\346\333\343\342\377\3\247\273\267\377" \ - "\223\254\247\377\246\273\267\377\210\377\377\377\377\1\324\336\334\377" \ - "\202\223\254\247\377\1\302\320\315\377\377\333\343\342\377\227\333\343" \ - "\342\377\4\246\272\267\377\223\254\247\377\241\267\262\377\345\353\352" \ - "\377\206\377\377\377\377\5\367\371\370\377\267\310\305\377\223\254\247" \ - "\377\227\257\252\377\357\363\362\377\202\377\377\377\377\3\261\303\277" \ - "\377\223\254\247\377\236\264\260\377\246\333\343\342\377\1\232\252\247" \ - "\377\203Slg\377\1\317\330\327\377\207\333\343\342\377\1\260\275\273\377" \ - "\212Slg\377\3l\201}\377\240\260\254\377\320\332\331\377\202\333\343\342" \ - "\377\4\301\314\312\377Umi\377Slg\377i\200{\377\346\333\343\342\377\3" \ - "\252\275\272\377\223\254\247\377\242\267\263\377\210\377\377\377\377" \ - "\4\246\273\267\377\223\254\247\377\231\261\254\377\331\341\340\377\377" \ - "\333\343\342\377\227\333\343\342\377\16\325\336\334\377\246\272\267\377" \ - "\223\254\247\377\224\255\250\377\271\311\306\377\322\334\332\377\351" \ - "\356\355\377\361\364\363\377\333\343\341\377\304\322\317\377\235\264" \ - "\257\377\223\254\247\377\235\263\257\377\341\350\346\377\203\377\377" \ - "\377\377\3\254\277\273\377\223\254\247\377\241\267\262\377\246\333\343" \ - "\342\377\1\233\253\250\377\203Slg\377\1\315\327\325\377\207\333\343\342" \ - "\377\1\256\274\272\377\207Slg\377\3[to\377\214\236\232\377\300\314\312" \ - "\377\205\333\343\342\377\4\301\314\312\377Umi\377Slg\377i\200{\377\346" \ - "\333\343\342\377\3\255\300\274\377\223\254\247\377\235\263\257\377\207" \ - "\377\377\377\377\1\346\353\352\377\202\223\254\247\377\1\266\307\304" \ - "\377\377\333\343\342\377\232\333\343\342\377\2\275\314\311\377\226\256" \ - "\251\377\207\223\254\247\377\2\267\310\305\377\367\371\370\377\204\377" \ - "\377\377\377\3\247\273\267\377\223\254\247\377\244\271\265\377\246\333" \ - "\343\342\377\1\265\301\300\377\203Slg\377\1\261\275\273\377\207\333\343" \ - "\342\377\1\217\240\235\377\206Slg\377\2p\205\201\377\311\324\322\377" \ - "\207\333\343\342\377\4\301\314\312\377Umi\377Slg\377i\200{\377\346\333" \ - "\343\342\377\3\260\302\277\377\223\254\247\377\230\260\253\377\207\377" \ - "\377\377\377\4\270\310\305\377\223\254\247\377\224\254\247\377\323\335" \ - "\333\377\377\333\343\342\377\233\333\343\342\377\10\324\336\335\377\302" \ - "\321\316\377\264\305\302\377\244\271\265\377\223\254\247\377\223\253" \ - "\246\377\241\266\262\377\353\360\357\377\206\377\377\377\377\3\242\270" \ - "\263\377\223\254\247\377\247\273\267\377\246\333\343\342\377\1\316\327" \ - "\326\377\203Slg\377\2i\177{\377\326\337\336\377\205\333\343\342\377\2" \ - "\307\322\320\377Vpk\377\207Slg\377\4Umh\377|\217\214\377\260\275\273" \ - "\377\330\341\340\377\204\333\343\342\377\4\301\314\312\377Umi\377Slg" \ - "\377i\200{\377\346\333\343\342\377\1\263\304\301\377\202\223\254\247" \ - "\377\206\377\377\377\377\4\364\367\366\377\225\255\250\377\223\254\247" \ - "\377\253\276\272\377\377\333\343\342\377\240\333\343\342\377\1\264\305" \ - "\302\377\202\223\254\247\377\1\351\356\355\377\206\377\377\377\377\3" \ - "\236\264\257\377\223\254\247\377\252\275\272\377\247\333\343\342\377" \ - "\1\177\222\216\377\203Slg\377\2v\212\206\377\312\324\323\377\203\333" \ - "\343\342\377\2\271\305\303\377e|w\377\203Slg\377\2j\201|\377Umh\377\206" \ - "Slg\377\3^vq\377\220\242\236\377\304\317\316\377\202\333\343\342\377" \ - "\4\301\314\312\377Umi\377Slg\377i\200{\377\346\333\343\342\377\1\266" \ - "\307\304\377\202\223\254\247\377\1\373\374\374\377\205\377\377\377\377" \ - "\1\312\326\323\377\202\223\254\247\377\1\311\325\323\377\377\333\343" \ - "\342\377\240\333\343\342\377\1\321\333\332\377\202\223\254\247\377\1" \ - "\274\313\310\377\206\377\377\377\377\3\231\260\254\377\223\254\247\377" \ - "\255\300\274\377\247\333\343\342\377\2\320\332\331\377_wr\377\203Slg" \ - "\377\4Uni\377k\201|\377{\216\213\377e}w\377\204Slg\377\5m\203\177\377" \ - "\330\340\337\377\316\330\326\377\235\254\252\377i\177z\377\207Slg\377" \ - "\6p\206\202\377\246\263\261\377\273\307\304\377Umi\377Slg\377i\200{\377" \ - "\346\333\343\342\377\1\271\311\306\377\202\223\254\247\377\1\366\370" \ - "\370\377\204\377\377\377\377\4\375\375\375\377\236\264\260\377\223\254" \ - "\247\377\237\265\261\377\377\333\343\342\377\242\333\343\342\377\4\250" \ - "\274\270\377\223\254\247\377\226\256\252\377\367\371\370\377\205\377" \ - "\377\377\377\3\224\255\250\377\223\254\247\377\260\302\277\377\250\333" \ - "\343\342\377\2\266\303\300\377Yql\377\211Slg\377\2_vr\377\305\320\316" \ - "\377\204\333\343\342\377\3\274\311\307\377\210\232\227\377Zrm\377\206" \ - "Slg\377\4Wnj\377Skg\377Slg\377i\200{\377\346\333\343\342\377\1\274\313" \ - "\311\377\202\223\254\247\377\1\361\364\364\377\204\377\377\377\377\1" \ - "\333\343\342\377\202\223\254\247\377\1\275\314\311\377\377\333\343\342" \ - "\377\242\333\343\342\377\1\306\323\321\377\202\223\254\247\377\1\315" \ - "\331\326\377\204\377\377\377\377\1\374\374\374\377\202\223\254\247\377" \ - "\1\263\305\301\377\251\333\343\342\377\2\311\324\322\377v\212\206\377" \ - "\207Slg\377\2k\201|\377\311\324\322\377\207\333\343\342\377\3\325\336" \ - "\335\377\251\267\264\377t\211\205\377\204Slg\377\6Skf\377Rkg\377Slg\377" \ - "Uoi\377\232\253\247\377\314\326\325\377\344\333\343\342\377\1\277\316" \ - "\313\377\202\223\254\247\377\1\355\361\360\377\204\377\377\377\377\4" \ - "\256\300\275\377\223\254\247\377\226\257\252\377\327\340\337\377\377" \ - "\333\343\342\377\242\333\343\342\377\5\332\342\341\377\235\263\257\377" \ - "\223\254\247\377\241\267\262\377\376\376\376\377\203\377\377\377\377" \ - "\1\367\371\370\377\202\223\254\247\377\1\266\307\304\377\252\333\343" \ - "\342\377\11\332\342\341\377\260\275\273\377\222\243\237\377w\213\210" \ - "\377d{w\377r\207\203\377\206\230\225\377\265\302\300\377\332\342\341" \ - "\377\213\333\343\342\377\5\307\322\320\377\225\245\242\377bxt\377Slg" \ - "\377Skf\377\203Slf\377\5Slg\377Tmh\377{\216\213\377\257\274\273\377\330" \ - "\340\337\377\341\333\343\342\377\1\302\320\316\377\202\223\254\247\377" \ - "\1\350\355\354\377\203\377\377\377\377\1\354\361\360\377\202\223\254" \ - "\247\377\1\262\303\300\377\377\333\343\342\377\244\333\343\342\377\1" \ - "\273\312\307\377\202\223\254\247\377\1\337\346\345\377\203\377\377\377" \ - "\377\1\362\365\364\377\202\223\254\247\377\1\271\311\306\377\300\333" \ - "\343\342\377\6\332\342\341\377\265\301\300\377~\223\217\377Vnj\377Sk" \ - "g\377Slf\377\204Slg\377\3^uq\377\217\241\236\377\304\317\315\377\337" \ - "\333\343\342\377\1\305\322\320\377\202\223\254\247\377\1\343\352\350" \ - "\377\203\377\377\377\377\1\277\316\313\377\202\223\254\247\377\1\317" \ - "\332\330\377\377\333\343\342\377\244\333\343\342\377\4\326\337\336\377" \ - "\225\256\251\377\223\254\247\377\261\303\300\377\203\377\377\377\377" \ - "\1\356\361\361\377\202\223\254\247\377\1\274\313\311\377\303\333\343" \ - "\342\377\3\321\332\331\377\240\257\255\377m\202~\377\207Slg\377\3p\205" \ - "\201\377\244\263\260\377\323\334\333\377\212\333\343\342\377\1\257\274" \ - "\273\377\202\216\237\234\377\1\264\300\277\377\316\333\343\342\377\1" \ - "\310\325\323\377\202\223\254\247\377\7\243\271\264\377\272\312\307\377" \ - "\315\330\326\377\336\345\344\377\230\257\253\377\223\254\247\377\246" \ - "\272\266\377\377\333\343\342\377\246\333\343\342\377\1\257\301\276\377" \ - "\202\223\254\247\377\4\332\342\340\377\317\332\330\377\274\313\310\377" \ - "\246\273\267\377\202\223\254\247\377\1\277\316\313\377\306\333\343\342" \ - "\377\3\301\314\312\377\215\237\233\377\\to\377\206Slg\377\3Xpk\377\204" \ - "\227\224\377\271\305\303\377\210\333\343\342\377\1\216\237\234\377\202" \ - "Slg\377\1\227\247\244\377\316\333\343\342\377\1\313\327\325\377\210\223" \ - "\254\247\377\1\304\321\317\377\377\333\343\342\377\246\333\343\342\377" \ - "\1\315\330\327\377\210\223\254\247\377\1\303\320\316\377\310\333\343" \ - "\342\377\3\326\337\336\377\255\272\270\377x\215\210\377\207Slg\377\3" \ - "e}w\377\232\252\246\377\314\325\325\377\205\333\343\342\377\1\216\237" \ - "\234\377\202Slg\377\1\227\247\244\377\316\333\343\342\377\5\326\337\336" \ - "\377\271\311\306\377\217\245\241\377\206\237\232\377\220\251\244\377" \ - "\203\223\254\247\377\2\233\262\256\377\332\342\341\377\377\333\343\342" \ - "\377\247\333\343\342\377\1\243\270\264\377\203\223\254\247\377\5\221" \ - "\252\245\377\210\241\234\377\203\233\226\377\267\310\305\377\323\335" \ - "\333\377\313\333\343\342\377\3\313\326\324\377\230\251\246\377f|x\377" \ - "\206Slg\377\4Tmh\377z\216\212\377\256\274\272\377\330\340\337\377\202" \ - "\333\343\342\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\320\333" \ - "\343\342\377\1p\206\202\377\202Slg\377\4\\up\377o\207\203\377\270\310" \ - "\305\377\303\321\316\377\377\333\343\342\377\250\333\343\342\377\10\307" \ - "\324\322\377\267\307\304\377\200\226\221\377]vq\377Tmh\377Slg\377Woj" \ - "\377\331\342\341\377\316\333\343\342\377\4\332\342\341\377\271\305\303" \ - "\377\204\227\224\377Xpk\377\206Slg\377\4]up\377\217\240\235\377\303\316" \ - "\315\377\216\237\234\377\202Slg\377\1\227\247\244\377\320\333\343\342" \ - "\377\1Zrm\377\203Slg\377\1y\216\211\377\377\333\343\342\377\254\333\343" \ - "\342\377\2\226\247\244\377Tmh\377\202Slg\377\2[sn\377\307\322\320\377" \ - "\321\333\343\342\377\3\323\334\333\377\245\264\261\377q\205\201\377\207" \ - "Slg\377\1Xpl\377\202Slg\377\1\227\247\244\377\320\333\343\342\377\1_" \ - "wr\377\203Slg\377\1\227\247\244\377\377\333\343\342\377\254\333\343\342" \ - "\377\2\261\276\274\377[sn\377\202Slg\377\2Zrm\377\260\276\273\377\324" \ - "\333\343\342\377\3\304\317\316\377\221\242\237\377_vr\377\207Slg\377" \ - "\1\227\247\244\377\320\333\343\342\377\1p\206\202\377\202Slg\377\2Xp" \ - "l\377\317\330\327\377\377\333\343\342\377\254\333\343\342\377\2\311\324" \ - "\322\377Zrn\377\202Slg\377\2Yrm\377\313\325\324\377\326\333\343\342\377" \ - "\4\330\341\340\377\261\276\274\377|\221\215\377Umh\377\204Slg\377\1\227" \ - "\247\244\377\320\333\343\342\377\1\203\226\222\377\202Slg\377\1\222\243" \ - "\237\377\377\333\343\342\377\256\333\343\342\377\4Xpk\377Slg\377Yql\377" \ - "\241\261\256\377\332\333\343\342\377\3\316\330\326\377\235\254\252\377" \ - "byu\377\202Slg\377\1\227\247\244\377\320\333\343\342\377\4\224\245\242" \ - "\377Slg\377Yql\377\320\331\330\377\377\333\343\342\377\256\333\343\342" \ - "\377\4j\200{\377Slg\377o\204\200\377\332\342\341\377\334\333\343\342" \ - "\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\320\333\343\342\377" \ - "\3\245\264\262\377Slg\377\223\243\241\377\377\333\343\342\377\257\333" \ - "\343\342\377\3\205\230\224\377Vnj\377\312\324\323\377\335\333\343\342" \ - "\377\1\216\237\234\377\202Slg\377\1\227\247\244\377\320\333\343\342\377" \ - "\3\267\304\302\377Zqm\377\320\332\331\377\377\333\343\342\377\257\333" \ - "\343\342\377\2\304\317\315\377\264\301\277\377\336\333\343\342\377\1" \ - "\216\237\234\377\202Slg\377\1\227\247\244\377\320\333\343\342\377\2\311" \ - "\323\321\377\223\244\242\377\377\333\343\342\377\377\333\343\342\377" \ - "\221\333\343\342\377\1\256\273\270\377\202\211\233\230\377\1\262\277" \ - "\275\377\320\333\343\342\377\2\330\341\340\377\321\332\331\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\231\333\343" \ - "\342\377") - - diff --git a/packages/psplash/files/angstrom/psplash-hand-img.h b/packages/psplash/files/angstrom/psplash-hand-img.h index a03d16e57a..263befa564 100644 --- a/packages/psplash/files/angstrom/psplash-hand-img.h +++ b/packages/psplash/files/angstrom/psplash-hand-img.h @@ -1,1336 +1,1454 @@ /* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ -#define HAND_IMG_ROWSTRIDE (1016) -#define HAND_IMG_WIDTH (254) -#define HAND_IMG_HEIGHT (264) +#define HAND_IMG_ROWSTRIDE (920) +#define HAND_IMG_WIDTH (230) +#define HAND_IMG_HEIGHT (231) #define HAND_IMG_BYTES_PER_PIXEL (4) /* 3:RGB, 4:RGBA */ #define HAND_IMG_RLE_PIXEL_DATA ((uint8*) \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\331\333\343\342\377\5\327" \ - "\340\337\377\314\327\325\377\306\323\320\377\321\333\331\377\332\342" \ - "\341\377\377\333\343\342\377\206\333\343\342\377\1\276\311\307\377\202" \ - "g~y\377\357\333\343\342\377\2\253\276\272\377\233\262\255\377\204\223" \ - "\254\247\377\3\225\255\250\377\240\266\262\377\303\321\316\377\377\333" \ - "\343\342\377\204\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \ - "\343\342\377\11\231\260\254\377\223\254\247\377\243\271\264\377\267\307" \ - "\304\377\277\316\313\377\256\301\275\377\232\261\255\377\223\254\247" \ - "\377\271\311\306\377\377\333\343\342\377\204\333\343\342\377\1\270\305" \ - "\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377" \ - "\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\364\333\343" \ - "\342\377\4\332\342\341\377\316\330\326\377\277\312\310\377\260\275\273" \ - "\377\213\254\271\267\377\1\225\246\243\377\202Slg\377\357\333\343\342" \ - "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \ - "\247\377\271\311\306\377\362\333\343\342\377\3\266\302\300\377v\212\206" \ - "\377Vni\377\221Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\360\333" \ - "\343\342\377\2\320\331\330\377n\204\200\377\224Slg\377\357\333\343\342" \ - "\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254" \ - "\247\377\271\311\306\377\357\333\343\342\377\2\332\342\341\377x\215\211" \ - "\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377" \ - "\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333\343\342" \ - "\377\1\240\260\255\377\204Slg\377\4Uni\377s\210\203\377\177\222\217\377" \ - "\213\235\231\377\213\222\243\240\377\1\202\225\221\377\202Slg\377\357" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1{\217\213\377" \ - "\203Slg\377\2\230\250\245\377\317\330\327\377\216\333\343\342\377\1\270" \ - "\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1byt\377\202Slg\377\1\230\250\245\377\220\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231\260\254\377" \ - "\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377" \ - "\356\333\343\342\377\1\324\335\334\377\203Slg\377\1\324\334\333\377\220" \ - "\333\343\342\377\1\274\307\306\377\202_vr\377\357\333\343\342\377\202" \ - "\231\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377" \ - "\271\311\306\377\356\333\343\342\377\4\332\342\341\377Xql\377Slg\377" \ - "f|x\377\377\333\343\342\377\204\333\343\342\377\202\231\260\254\377\204" \ - "\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357" \ - "\333\343\342\377\3n\204\200\377Slg\377_vr\377\377\333\343\342\377\204" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\1\243\262\257" \ - "\377\202Slg\377\1\311\324\322\377\220\333\343\342\377\1\325\336\335\377" \ - "\202\305\320\316\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\4\327\337\336\377dzv\377Slg\377\220\242\236\377\220\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\360\333\343\342\377\4\307\321\320\377`ws\377Slg\377\240" \ - "\260\255\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\357\333" \ - "\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335\377" \ - "\223\254\247\377\271\311\306\377\361\333\343\342\377\6\307\322\320\377" \ - "u\211\205\377Slg\377m\202~\377\246\265\262\377\321\333\331\377\214\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\362\333\343\342\377\2\332\342\341\377\213\235\231\377\203" \ - "Slg\377\3Xpk\377f}x\377s\210\203\377\211t\211\205\377\1l\201}\377\202" \ - "Slg\377\357\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3" \ - "\326\337\335\377\223\254\247\377\271\311\306\377\361\333\343\342\377" \ - "\2\265\302\300\377i\177{\377\223Slg\377\357\333\343\342\377\202\231\260" \ - "\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271\311" \ - "\306\377\360\333\343\342\377\2\255\272\270\377Uni\377\224Slg\377\357" \ - "\333\343\342\377\202\231\260\254\377\204\377\377\377\377\3\326\337\335" \ - "\377\223\254\247\377\271\311\306\377\357\333\343\342\377\2\316\327\326" \ - "\377Wpk\377\225Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1\220\241\236\377\203Slg\377\5Woj\377\205\227\224\377\254" \ - "\271\267\377\270\304\302\377\304\316\315\377\213\311\324\322\377\1\254" \ - "\271\267\377\202Slg\377\357\333\343\342\377\202\231\260\254\377\204\377" \ - "\377\377\377\3\326\337\335\377\223\254\247\377\271\311\306\377\357\333" \ - "\343\342\377\1i\177{\377\202Slg\377\2dzv\377\316\327\326\377\217\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\357\333\343\342\377\202\231" \ - "\260\254\377\204\377\377\377\377\3\326\337\335\377\223\254\247\377\271" \ - "\311\306\377\356\333\343\342\377\2\331\342\341\377Voj\377\202Slg\377" \ - "\1\273\307\305\377\220\333\343\342\377\1\270\305\303\377\202Slg\377\357" \ - "\333\343\342\377\3\241\267\262\377\223\254\247\377\363\366\365\377\203" \ - "\377\377\377\377\3\304\321\317\377\223\254\247\377\301\317\314\377\356" \ - "\333\343\342\377\1\324\335\334\377\202Slg\377\2Xpk\377\331\342\341\377" \ - "\220\333\343\342\377\1\311\324\322\377\202\226\247\244\377\357\333\343" \ - "\342\377\3\264\305\302\377\223\254\247\377\326\337\335\377\203\377\377" \ - "\377\377\3\246\273\267\377\223\254\247\377\324\335\334\377\357\333\343" \ - "\342\377\3_vr\377Slg\377i\177{\377\377\333\343\342\377\202\333\343\342" \ - "\377\5\317\332\331\377\257\301\276\377\217\251\244\377\223\254\247\377" \ - "\270\310\305\377\202\377\377\377\377\6\365\367\367\377\223\254\247\377" \ - "\217\251\244\377\234\263\257\377\275\314\312\377\330\341\340\377\355" \ - "\333\343\342\377\4\177\222\217\377Slg\377Vni\377\327\337\336\377\376" \ - "\333\343\342\377\2\277\316\313\377\207\243\236\377\203o\221\212\377\7" \ - "\221\253\246\377\233\262\256\377\376\376\376\377\377\377\377\377\330" \ - "\341\337\377\223\254\247\377\202\237\231\377\202o\221\212\377\3t\225" \ - "\216\377\234\263\257\377\322\334\333\377\353\333\343\342\377\1\277\313" \ - "\311\377\202Slg\377\1\273\307\305\377\220\333\343\342\377\1\307\322\320" \ - "\377\202\216\237\234\377\351\333\343\342\377\2\310\325\323\377\216\251" \ - "\243\377\204o\221\212\377\10v\226\220\377\221\252\245\377\223\254\247" \ - "\377\324\336\334\377\340\347\346\377\262\304\300\377\223\254\247\377" \ - "\210\244\237\377\204o\221\212\377\3u\225\217\377\250\274\270\377\327" \ - "\340\337\377\352\333\343\342\377\4\226\246\243\377Slg\377h\177z\377\321" \ - "\333\331\377\217\333\343\342\377\1\270\305\303\377\202Slg\377\350\333" \ - "\343\342\377\2\264\305\302\377q\223\214\377\202o\221\212\377\5q\223\214" \ - "\377\233\263\256\377\300\317\314\377\331\342\340\377\273\312\307\377" \ - "\204\223\254\247\377\5\225\255\250\377\330\341\337\377\321\333\332\377" \ - "\261\303\277\377\206\243\235\377\203o\221\212\377\2\205\242\234\377\317" \ - "\332\331\377\352\333\343\342\377\4\230\250\245\377Tmh\377q\206\202\377" \ - "\276\311\307\377\216\333\343\342\377\1\270\305\303\377\202Slg\377\346" \ - "\333\343\342\377\2\332\342\341\377\241\267\263\377\203o\221\212\377\2" \ - "\227\257\253\377\315\331\327\377\203\333\343\342\377\1\321\333\332\377" \ - "\204\262\303\300\377\1\272\312\307\377\204\333\343\342\377\2\270\310" \ - "\306\377\177\235\227\377\202o\221\212\377\2z\231\222\377\304\322\320" \ - "\377\347\333\343\342\377\1\317\330\327\377\202\301\314\312\377\10\247" \ - "\266\263\377^vq\377Slg\377o\204\200\377\232\252\247\377\247\266\263\377" \ - "\264\301\277\377\277\313\311\377\211\301\314\312\377\1\245\264\261\377" \ - "\202Slg\377\346\333\343\342\377\1\236\265\260\377\202o\221\212\377\2" \ - "t\225\216\377\273\313\310\377\220\333\343\342\377\2\327\340\337\377\225" \ - "\256\251\377\202o\221\212\377\2t\225\216\377\310\325\323\377\346\333" \ - "\343\342\377\1\233\253\250\377\226Slg\377\345\333\343\342\377\1\261\303" \ - "\277\377\202o\221\212\377\2|\233\225\377\311\325\323\377\223\333\343" \ - "\342\377\1\247\273\267\377\202o\221\212\377\2|\233\225\377\322\334\333" \ - "\377\345\333\343\342\377\1\233\253\250\377\226Slg\377\344\333\343\342" \ - "\377\5\304\321\317\377q\222\213\377o\221\212\377u\226\217\377\312\326" \ - "\324\377\225\333\343\342\377\1\242\270\264\377\202o\221\212\377\2\211" \ - "\244\237\377\332\342\341\377\344\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\344\333\343\342\377\4\207\243\236\377o\221\212\377p\222\213\377" \ - "\275\314\312\377\226\333\343\342\377\2\332\342\341\377\220\252\245\377" \ - "\202o\221\212\377\1\264\305\302\377\344\333\343\342\377\3\233\253\250" \ - "\377Slg\377\\so\377\221x\215\211\377\1o\204\200\377\202Slg\377\343\333" \ - "\343\342\377\1\267\310\305\377\202o\221\212\377\1\237\265\261\377\230" \ - "\333\343\342\377\5\324\336\334\377v\226\220\377o\221\212\377|\233\225" \ - "\377\330\341\337\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211" \ - "\205\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343" \ - "\342\377\5\332\342\341\377~\234\226\377o\221\212\377t\225\216\377\322" \ - "\334\333\377\231\333\343\342\377\1\251\275\271\377\202o\221\212\377\1" \ - "\255\300\275\377\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205" \ - "\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\342\333\343\342" \ - "\377\1\304\321\317\377\202o\221\212\377\1\245\272\266\377\232\333\343" \ - "\342\377\4\327\340\337\377y\231\222\377o\221\212\377\207\243\236\377" \ - "\343\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343" \ - "\342\377\1\270\305\303\377\202Slg\377\342\333\343\342\377\1\243\270\264" \ - "\377\202o\221\212\377\1\314\327\325\377\233\333\343\342\377\1\234\263" \ - "\257\377\202o\221\212\377\1\321\333\332\377\342\333\343\342\377\3\277" \ - "\312\310\377\237\256\253\377\256\273\271\377\221\333\343\342\377\1\323" \ - "\334\333\377\202\275\310\306\377\342\333\343\342\377\3\202\237\231\377" \ - "o\221\212\377\201\236\230\377\234\333\343\342\377\1\276\315\312\377\202" \ - "o\221\212\377\1\261\303\300\377\377\333\343\342\377\333\333\343\342\377" \ - "\1\330\341\340\377\202o\221\212\377\1\234\263\256\377\234\333\343\342" \ - "\377\1\330\341\337\377\202o\221\212\377\1\234\263\257\377\377\333\343" \ - "\342\377\333\333\343\342\377\1\317\332\330\377\202o\221\212\377\1\250" \ - "\274\270\377\235\333\343\342\377\3y\230\222\377o\221\212\377\222\254" \ - "\246\377\377\333\343\342\377\333\333\343\342\377\1\304\322\320\377\202" \ - "o\221\212\377\1\264\306\302\377\235\333\343\342\377\3\205\242\234\377" \ - "o\221\212\377\207\243\236\377\350\333\343\342\377\13\327\340\337\377" \ - "\267\303\301\377\225\246\243\377{\217\213\377p\205\201\377f}x\377k\201" \ - "}\377u\211\205\377\205\227\224\377\245\263\261\377\310\323\321\377\347" \ - "\333\343\342\377\1\275\314\312\377\202o\221\212\377\1\274\314\311\377" \ - "\235\333\343\342\377\3\215\250\242\377o\221\212\377\200\236\230\377\346" \ - "\333\343\342\377\3\324\334\333\377\231\251\246\377_wr\377\212Slg\377" \ - "\2x\215\211\377\270\304\302\377\345\333\343\342\377\1\306\323\321\377" \ - "\202o\221\212\377\1\263\304\301\377\235\333\343\342\377\3\203\240\232" \ - "\377o\221\212\377\211\244\237\377\345\333\343\342\377\2\300\314\312\377" \ - "f|x\377\216Slg\377\2\216\240\235\377\330\340\337\377\343\333\343\342" \ - "\377\1\320\333\331\377\202o\221\212\377\1\247\273\267\377\235\333\343" \ - "\342\377\3w\227\221\377o\221\212\377\223\254\250\377\344\333\343\342" \ - "\377\2\273\307\305\377Woj\377\220Slg\377\2y\216\212\377\330\341\340\377" \ - "\342\333\343\342\377\4\331\342\340\377p\221\213\377o\221\212\377\231" \ - "\261\254\377\234\333\343\342\377\1\326\337\336\377\202o\221\212\377\1" \ - "\236\265\260\377\331\333\343\342\377\3\272\306\304\377\231\251\246\377" \ - "\310\322\321\377\207\333\343\342\377\2\310\322\321\377\\to\377\205Sl" \ - "g\377\7Woj\377dzv\377q\206\202\377}\221\215\377w\214\210\377k\201|\377" \ - "]up\377\206Slg\377\1\211\233\230\377\343\333\343\342\377\3\206\242\234" \ - "\377o\221\212\377|\233\225\377\234\333\343\342\377\1\271\311\306\377" \ - "\202o\221\212\377\1\265\306\303\377\330\333\343\342\377\1\222\243\240" \ - "\377\203Slg\377\1\271\306\304\377\206\333\343\342\377\1|\217\214\377" \ - "\203Slg\377\3dzv\377\231\252\247\377\314\326\324\377\207\333\343\342" \ - "\377\4\330\340\337\377\267\304\302\377\201\224\220\377Vni\377\203Slg" \ - "\377\1\274\307\306\377\342\333\343\342\377\1\247\274\270\377\202o\221" \ - "\212\377\1\307\323\321\377\233\333\343\342\377\4\227\257\253\377o\221" \ - "\212\377q\222\213\377\324\336\334\377\327\333\343\342\377\2\325\335\334" \ - "\377Zrm\377\203Slg\377\1\205\227\224\377\205\333\343\342\377\1\275\310" \ - "\306\377\202Slg\377\3Umh\377\251\270\265\377\331\342\341\377\214\333" \ - "\343\342\377\2\317\331\327\377y\216\212\377\202Slg\377\1t\211\205\377" \ - "\342\333\343\342\377\1\310\325\323\377\202o\221\212\377\1\237\265\261" \ - "\377\232\333\343\342\377\4\325\336\335\377v\226\217\377o\221\212\377" \ - "\213\246\241\377\330\333\343\342\377\2\331\341\340\377czu\377\203Slg" \ - "\377\1\221\243\237\377\205\333\343\342\377\4\220\241\236\377Slg\377T" \ - "lg\377\253\271\267\377\217\333\343\342\377\2\326\336\335\377s\210\204" \ - "\377\202Slg\377\1\317\331\327\377\342\333\343\342\377\4\203\240\232\377" \ - "o\221\212\377r\223\214\377\317\331\330\377\205\333\343\342\377\2\305" \ - "\322\320\377\322\334\332\377\212\333\343\342\377\3\332\342\341\377\305" \ - "\322\320\377\322\334\333\377\205\333\343\342\377\1\243\270\264\377\202" \ - "o\221\212\377\1\262\304\301\377\331\333\343\342\377\5\250\266\264\377" \ - "Yql\377Slg\377f|x\377\310\322\321\377\205\333\343\342\377\3k\201}\377" \ - "Slg\377\212\234\231\377\221\333\343\342\377\4\321\332\331\377Tmh\377" \ - "Slg\377\253\271\267\377\342\333\343\342\377\1\276\315\312\377\202o\221" \ - "\212\377\1\227\257\253\377\204\333\343\342\377\6\327\340\337\377\227" \ - "\257\252\377\223\254\247\377\251\275\271\377\307\324\322\377\332\342" \ - "\341\377\205\333\343\342\377\5\325\337\335\377\272\311\307\377\234\263" \ - "\256\377\223\254\247\377\263\304\301\377\204\333\343\342\377\5\317\332" \ - "\331\377s\224\215\377o\221\212\377\201\236\230\377\331\342\340\377\332" \ - "\333\343\342\377\3\324\334\333\377\274\307\306\377\332\342\341\377\206" \ - "\333\343\342\377\3Xql\377Slg\377\255\272\270\377\222\333\343\342\377" \ - "\3m\202~\377Slg\377\230\251\246\377\343\333\343\342\377\1\216\250\243" \ - "\377\202o\221\212\377\1\264\305\302\377\203\333\343\342\377\3\275\314" \ - "\312\377\223\254\247\377\225\255\250\377\202\223\254\247\377\7\236\264" \ - "\260\377\273\313\310\377\327\337\336\377\333\343\342\377\315\330\326" \ - "\377\256\301\275\377\225\255\251\377\202\223\254\247\377\3\224\254\250" \ - "\377\227\257\252\377\330\341\337\377\202\333\343\342\377\2\330\341\337" \ - "\377\207\243\236\377\202o\221\212\377\1\273\312\310\377\343\333\343\342" \ - "\377\1\324\335\334\377\202Slg\377\1\314\326\324\377\222\333\343\342\377" \ - "\3\214\236\233\377Slg\377\214\235\232\377\343\333\343\342\377\5\312\326" \ - "\324\377t\225\216\377o\221\212\377q\223\214\377\303\320\316\377\202\333" \ - "\343\342\377\5\237\265\261\377\223\254\247\377\347\355\354\377\335\344" \ - "\343\377\257\301\276\377\202\223\254\247\377\2\250\274\270\377\321\334" \ - "\332\377\202\223\254\247\377\6\231\261\254\377\303\321\316\377\360\363" \ - "\363\377\271\311\306\377\223\254\247\377\277\315\313\377\202\333\343" \ - "\342\377\1\227\257\252\377\202o\221\212\377\1\222\254\246\377\344\333" \ - "\343\342\377\1\325\335\334\377\202Slg\377\1\313\325\323\377\222\333\343" \ - "\342\377\3\213\235\231\377Slg\377\214\236\233\377\344\333\343\342\377" \ - "\1\273\312\310\377\202o\221\212\377\5v\226\220\377\277\316\313\377\311" \ - "\325\323\377\223\254\247\377\251\275\271\377\203\377\377\377\377\7\355" \ - "\361\360\377\227\257\253\377\226\256\251\377\273\312\307\377\223\254" \ - "\247\377\271\311\306\377\372\373\373\377\202\377\377\377\377\5\346\354" \ - "\353\377\223\254\247\377\240\266\262\377\330\341\340\377\232\261\255" \ - "\377\202o\221\212\377\2\203\240\232\377\326\337\336\377\334\333\343\342" \ - "\377\3\322\333\332\377\267\303\301\377\331\341\340\377\206\333\343\342" \ - "\377\3Yql\377Slg\377\253\271\267\377\222\333\343\342\377\3k\201}\377" \ - "Slg\377\231\251\246\377\345\333\343\342\377\1\252\276\272\377\202o\221" \ - "\212\377\4p\222\213\377\234\263\256\377\223\254\247\377\327\340\336\377" \ - "\203\377\377\377\377\2\344\352\351\377\232\261\254\377\202\223\254\247" \ - "\377\3\224\255\250\377\262\303\300\377\371\372\372\377\203\377\377\377" \ - "\377\3\250\274\270\377\223\254\247\377\214\246\241\377\202o\221\212\377" \ - "\2y\231\222\377\317\331\330\377\334\333\343\342\377\5\247\266\263\377" \ - "Xql\377Slg\377`ws\377\305\320\316\377\205\333\343\342\377\3l\201}\377" \ - "Slg\377\210\233\227\377\221\333\343\342\377\4\317\331\327\377Tlg\377" \ - "Slg\377\254\271\267\377\346\333\343\342\377\6\257\301\276\377p\222\213" \ - "\377r\223\214\377\222\253\246\377\233\262\256\377\374\374\374\377\202" \ - "\377\377\377\377\11\316\331\327\377\223\254\247\377\252\275\272\377\320" \ - "\333\331\377\332\343\341\377\305\323\320\377\227\257\253\377\237\265" \ - "\261\377\362\365\364\377\202\377\377\377\377\6\325\337\335\377\223\254" \ - "\247\377\206\242\234\377o\221\212\377\202\237\231\377\315\330\326\377" \ - "\334\333\343\342\377\2\331\341\340\377czu\377\203Slg\377\1\217\241\235" \ - "\377\205\333\343\342\377\1\221\243\237\377\202Slg\377\1\251\267\265\377" \ - "\217\333\343\342\377\5\325\335\334\377p\206\202\377Slg\377Tlg\377\320" \ - "\331\330\377\347\333\343\342\377\4\277\316\313\377\204\241\233\377\223" \ - "\254\247\377\306\323\320\377\202\377\377\377\377\4\352\357\356\377\225" \ - "\255\250\377\300\317\314\377\376\376\376\377\203\377\377\377\377\12\361" \ - "\364\363\377\236\264\260\377\257\302\276\377\376\376\376\377\377\377" \ - "\377\377\373\374\373\377\232\261\254\377\222\253\246\377\217\251\244" \ - "\377\325\337\335\377\335\333\343\342\377\2\325\336\335\377[sn\377\203" \ - "Slg\377\1\206\231\225\377\205\333\343\342\377\1\276\312\310\377\202S" \ - "lg\377\3Umh\377\251\267\265\377\331\342\341\377\214\333\343\342\377\2" \ - "\315\326\325\377v\213\207\377\202Slg\377\1v\213\207\377\350\333\343\342" \ - "\377\4\331\341\340\377\230\260\253\377\224\254\247\377\362\365\364\377" \ - "\202\377\377\377\377\3\272\312\307\377\243\270\264\377\374\375\375\377" \ - "\205\377\377\377\377\3\335\345\343\377\223\254\247\377\352\357\356\377" \ - "\202\377\377\377\377\3\304\321\317\377\223\254\247\377\267\307\304\377" \ - "\337\333\343\342\377\1\223\244\240\377\202Slg\377\2Umh\377\275\310\306" \ - "\377\206\333\343\342\377\1~\222\216\377\203Slg\377\4czu\377\227\247\244" \ - "\377\310\322\321\377\331\341\340\377\206\333\343\342\377\4\325\335\334" \ - "\377\263\300\276\377}\220\215\377Tmh\377\203Slg\377\1\277\312\310\377" \ - "\350\333\343\342\377\3\302\320\315\377\223\254\247\377\264\305\302\377" \ - "\203\377\377\377\377\2\243\271\264\377\277\316\313\377\206\377\377\377" \ - "\377\3\373\374\373\377\224\255\250\377\322\335\333\377\202\377\377\377" \ - "\377\4\360\363\363\377\223\254\247\377\232\262\255\377\332\342\341\377" \ - "\337\333\343\342\377\3\274\310\306\377\236\255\253\377\315\327\325\377" \ - "\207\333\343\342\377\2\311\324\322\377^uq\377\205Slg\377\7Tmh\377_wr" \ - "\377m\202~\377y\215\211\377s\210\204\377f}x\377Yql\377\206Slg\377\1\217" \ - "\240\235\377\351\333\343\342\377\3\244\271\265\377\223\254\247\377\342" \ - "\350\347\377\203\377\377\377\377\2\240\266\262\377\302\320\315\377\206" \ - "\377\377\377\377\3\374\375\375\377\225\255\251\377\317\332\330\377\203" \ - "\377\377\377\377\3\262\304\300\377\223\254\247\377\303\321\317\377\352" \ - "\333\343\342\377\2\275\311\307\377Xql\377\220Slg\377\2}\221\215\377\331" \ - "\342\341\377\350\333\343\342\377\4\316\331\327\377\223\254\247\377\243" \ - "\270\264\377\376\376\376\377\203\377\377\377\377\2\267\307\304\377\250" \ - "\274\270\377\206\377\377\377\377\3\345\353\351\377\223\254\247\377\346" \ - "\354\353\377\203\377\377\377\377\3\340\347\345\377\223\254\247\377\245" \ - "\272\266\377\353\333\343\342\377\2\303\316\314\377h\177z\377\215Slg\377" \ - "\3Tlg\377\225\245\242\377\331\341\340\377\351\333\343\342\377\3\257\302" \ - "\276\377\223\254\247\377\320\333\331\377\204\377\377\377\377\3\340\347" \ - "\346\377\223\254\247\377\317\332\330\377\204\377\377\377\377\4\371\372" \ - "\372\377\245\272\266\377\246\272\266\377\374\375\375\377\203\377\377" \ - "\377\377\4\376\376\376\377\242\267\263\377\223\254\247\377\317\331\330" \ - "\377\353\333\343\342\377\3\325\335\334\377\235\255\252\377czu\377\211" \ - "Slg\377\3Tlg\377\177\222\217\377\277\312\310\377\352\333\343\342\377" \ - "\4\326\337\336\377\225\256\251\377\227\257\253\377\371\372\372\377\205" \ - "\377\377\377\377\11\277\316\313\377\223\254\247\377\272\312\307\377\341" \ - "\350\346\377\353\360\357\377\326\340\336\377\240\266\261\377\227\257" \ - "\252\377\352\357\356\377\205\377\377\377\377\3\316\331\327\377\223\254" \ - "\247\377\260\302\277\377\355\333\343\342\377\13\330\341\340\377\273\307" \ - "\305\377\231\252\247\377\177\222\217\377t\211\205\377k\201|\377o\205" \ - "\201\377y\215\211\377\211\233\230\377\251\267\265\377\314\326\324\377" \ - "\354\333\343\342\377\3\273\312\310\377\223\254\247\377\277\316\313\377" \ - "\207\377\377\377\377\2\315\330\327\377\224\255\250\377\203\223\254\247" \ - "\377\2\235\263\257\377\360\363\362\377\206\377\377\377\377\4\370\371" \ - "\371\377\227\257\252\377\226\256\252\377\327\340\336\377\377\333\343" \ - "\342\377\343\333\343\342\377\4\332\342\341\377\235\263\257\377\223\254" \ - "\247\377\354\361\360\377\207\377\377\377\377\7\310\325\322\377\223\254" \ - "\247\377\262\303\300\377\307\323\321\377\231\260\253\377\225\255\251" \ - "\377\365\367\367\377\207\377\377\377\377\3\275\314\311\377\223\254\247" \ - "\377\274\313\311\377\346\333\343\342\377\1\316\327\326\377\205\301\314" \ - "\312\377\1\327\340\337\377\365\333\343\342\377\3\306\323\321\377\223" \ - "\254\247\377\256\300\275\377\207\377\377\377\377\10\374\375\375\377\235" \ - "\264\257\377\224\255\250\377\324\336\334\377\333\343\342\377\266\307" \ - "\304\377\223\254\247\377\312\326\324\377\207\377\377\377\377\3\353\357" \ - "\356\377\223\254\247\377\236\264\260\377\346\333\343\342\377\1\204\227" \ - "\223\377\205Slg\377\1\311\324\322\377\365\333\343\342\377\3\250\274\270" \ - "\377\223\254\247\377\335\345\344\377\207\377\377\377\377\3\332\342\340" \ - "\377\223\254\247\377\254\277\274\377\202\333\343\342\377\4\323\335\334" \ - "\377\224\255\250\377\236\265\260\377\375\376\375\377\207\377\377\377" \ - "\377\3\256\301\275\377\223\254\247\377\310\324\322\377\345\333\343\342" \ - "\377\1i\177{\377\205Slg\377\1\311\324\322\377\364\333\343\342\377\4\321" \ - "\334\332\377\223\254\247\377\240\265\261\377\376\376\376\377\207\377" \ - "\377\377\377\3\254\277\274\377\223\254\247\377\312\326\324\377\203\333" \ - "\343\342\377\3\253\276\272\377\223\254\247\377\334\344\342\377\207\377" \ - "\377\377\377\3\333\343\342\377\223\254\247\377\251\275\271\377\345\333" \ - "\343\342\377\1Vni\377\202Slg\377\4Yrm\377\234\253\251\377\302\315\313" \ - "\377\331\342\341\377\364\333\343\342\377\3\264\305\302\377\223\254\247" \ - "\377\314\330\325\377\207\377\377\377\377\3\353\360\357\377\223\254\247" \ - "\377\241\266\262\377\204\333\343\342\377\3\311\325\323\377\223\254\247" \ - "\377\256\301\275\377\207\377\377\377\377\4\375\375\375\377\236\265\260" \ - "\377\223\254\247\377\322\334\333\377\343\333\343\342\377\1\324\334\333" \ - "\377\203Slg\377\1\261\277\274\377\366\333\343\342\377\4\330\341\340\377" \ - "\230\260\253\377\225\256\251\377\366\370\370\377\207\377\377\377\377" \ - "\3\276\315\312\377\223\254\247\377\277\315\313\377\205\333\343\342\377" \ - "\3\237\265\261\377\223\254\247\377\355\361\360\377\207\377\377\377\377" \ - "\3\312\326\324\377\223\254\247\377\265\306\303\377\343\333\343\342\377" \ - "\1\326\337\336\377\202Slg\377\1]up\377\367\333\343\342\377\3\277\316" \ - "\313\377\223\254\247\377\272\312\307\377\207\377\377\377\377\4\370\371" \ - "\371\377\227\257\252\377\230\257\253\377\330\341\337\377\205\333\343" \ - "\342\377\3\275\314\312\377\223\254\247\377\277\316\313\377\207\377\377" \ - "\377\377\4\365\367\367\377\225\255\251\377\231\260\254\377\331\341\340" \ - "\377\343\333\343\342\377\3`ws\377Slg\377i\200{\377\367\333\343\342\377" \ - "\3\241\267\263\377\223\254\247\377\350\355\354\377\207\377\377\377\377" \ - "\3\317\332\330\377\223\254\247\377\263\305\301\377\206\333\343\342\377" \ - "\4\327\340\337\377\227\257\252\377\230\260\253\377\371\372\372\377\207" \ - "\377\377\377\377\3\271\311\306\377\223\254\247\377\301\317\314\377\343" \ - "\333\343\342\377\4y\215\211\377Slg\377Vni\377\327\340\337\377\220\333" \ - "\343\342\377\1\324\335\334\377\202\301\314\312\377\342\333\343\342\377" \ - "\3\313\327\325\377\223\254\247\377\251\275\271\377\207\377\377\377\377" \ - "\4\376\376\376\377\242\267\263\377\223\254\247\377\321\333\332\377\207" \ - "\333\343\342\377\3\262\303\300\377\223\254\247\377\321\334\332\377\207" \ - "\377\377\377\377\3\346\354\352\377\223\254\247\377\242\270\263\377\343" \ - "\333\343\342\377\1\260\276\273\377\202Slg\377\1\300\313\311\377\220\333" \ - "\343\342\377\1\270\305\303\377\202Slg\377\342\333\343\342\377\3\255\300" \ - "\274\377\223\254\247\377\327\340\336\377\207\377\377\377\377\3\340\347" \ - "\346\377\223\254\247\377\247\273\270\377\210\333\343\342\377\3\320\332" \ - "\331\377\223\254\247\377\244\271\265\377\210\377\377\377\377\3\247\273" \ - "\267\377\223\254\247\377\314\330\326\377\342\333\343\342\377\5\331\342" \ - "\341\377o\205\201\377Slg\377x\215\211\377\331\342\341\377\217\333\343" \ - "\342\377\1\270\305\303\377\202Slg\377\341\333\343\342\377\4\325\336\335" \ - "\377\225\255\250\377\233\262\255\377\374\374\374\377\207\377\377\377" \ - "\377\3\263\305\301\377\223\254\247\377\306\323\321\377\211\333\343\342" \ - "\377\3\246\273\267\377\223\254\247\377\343\351\350\377\207\377\377\377" \ - "\377\3\325\336\334\377\223\254\247\377\256\300\275\377\343\333\343\342" \ - "\377\5\316\330\326\377dzv\377Slg\377\220\241\236\377\332\342\341\377" \ - "\216\333\343\342\377\1\270\305\303\377\202Slg\377\341\333\343\342\377" \ - "\3\270\310\306\377\223\254\247\377\305\323\320\377\207\377\377\377\377" \ - "\4\361\364\363\377\223\254\247\377\234\263\257\377\332\342\341\377\211" \ - "\333\343\342\377\3\304\322\317\377\223\254\247\377\265\306\302\377\207" \ - "\377\377\377\377\4\373\374\373\377\232\261\254\377\225\255\251\377\325" \ - "\337\335\377\343\333\343\342\377\6\316\327\326\377\200\224\220\377Sl" \ - "g\377h~z\377\246\265\262\377\326\336\335\377\214\333\343\342\377\1\270" \ - "\305\303\377\202Slg\377\340\333\343\342\377\4\332\342\341\377\233\262" \ - "\255\377\223\254\247\377\361\364\364\377\207\377\377\377\377\3\304\322" \ - "\317\377\223\254\247\377\272\312\307\377\212\333\343\342\377\4\332\342" \ - "\341\377\233\262\256\377\224\254\247\377\362\365\364\377\207\377\377" \ - "\377\377\3\303\321\316\377\223\254\247\377\272\311\307\377\341\333\343" \ - "\342\377\1\257\274\272\377\203}\220\215\377\1^vq\377\203Slg\377\3^vq" \ - "\377n\203\177\377{\217\213\377\211}\220\215\377\1r\207\203\377\202Sl" \ - "g\377\340\333\343\342\377\3\304\321\317\377\223\254\247\377\264\305\301" \ - "\377\207\377\377\377\377\4\373\374\374\377\232\262\255\377\225\256\251" \ - "\377\326\337\336\377\213\333\343\342\377\3\271\311\306\377\223\254\247" \ - "\377\307\324\321\377\207\377\377\377\377\4\360\363\362\377\223\254\247" \ - "\377\234\263\256\377\332\342\341\377\340\333\343\342\377\1\233\253\250" \ - "\377\226Slg\377\340\333\343\342\377\3\246\272\266\377\223\254\247\377" \ - "\341\350\347\377\207\377\377\377\377\3\326\337\335\377\223\254\247\377" \ - "\256\301\275\377\214\333\343\342\377\4\325\336\335\377\225\255\250\377" \ - "\234\263\256\377\374\375\374\377\207\377\377\377\377\3\262\304\300\377" \ - "\223\254\247\377\305\322\320\377\340\333\343\342\377\1\233\253\250\377" \ - "\226Slg\377\337\333\343\342\377\4\317\332\330\377\223\254\247\377\242" \ - "\270\263\377\376\376\376\377\207\377\377\377\377\3\251\274\270\377\223" \ - "\254\247\377\315\330\326\377\215\333\343\342\377\3\255\300\274\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\337\346\345\377\223" \ - "\254\247\377\247\273\267\377\340\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\337\333\343\342\377\3\261\303\300\377\223\254\247\377\320\333" \ - "\331\377\207\377\377\377\377\3\347\355\354\377\223\254\247\377\243\270" \ - "\264\377\216\333\343\342\377\3\314\327\325\377\223\254\247\377\252\276" \ - "\272\377\207\377\377\377\377\4\376\376\376\377\241\267\262\377\223\254" \ - "\247\377\320\333\331\377\337\333\343\342\377\3\233\253\250\377Slg\377" \ - "m\202~\377\221\275\310\306\377\1\242\261\256\377\202Slg\377\336\333\343" \ - "\342\377\1\327\340\337\377\202\227\257\252\377\1\370\372\371\377\207" \ - "\377\377\377\377\3\272\312\307\377\223\254\247\377\301\317\315\377\217" \ - "\333\343\342\377\3\241\267\263\377\223\254\247\377\351\356\355\377\207" \ - "\377\377\377\377\3\316\331\327\377\223\254\247\377\263\304\301\377\337" \ - "\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\336\333\343\342\377\3\275\314\311\377" \ - "\223\254\247\377\277\315\312\377\207\377\377\377\377\4\366\370\367\377" \ - "\225\256\251\377\231\260\254\377\331\341\340\377\217\333\343\342\377" \ - "\3\300\316\314\377\223\254\247\377\274\313\310\377\207\377\377\377\377" \ - "\4\367\371\371\377\226\256\252\377\227\257\252\377\330\340\337\377\336" \ - "\333\343\342\377\3\233\253\250\377Slg\377t\211\205\377\221\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\336\333\343\342\377\3\237\265\260\377" \ - "\223\254\247\377\354\360\357\377\207\377\377\377\377\3\313\327\325\377" \ - "\223\254\247\377\266\306\303\377\220\333\343\342\377\4\331\341\340\377" \ - "\230\260\253\377\226\256\252\377\367\371\370\377\207\377\377\377\377" \ - "\3\274\314\311\377\223\254\247\377\276\315\312\377\336\333\343\342\377" \ - "\3\237\256\253\377[sn\377{\217\213\377\221\333\343\342\377\1\302\315" \ - "\313\377\202x\215\211\377\335\333\343\342\377\3\310\325\323\377\223\254" \ - "\247\377\255\300\274\377\207\377\377\377\377\4\375\376\375\377\237\265" \ - "\261\377\224\254\247\377\323\334\333\377\221\333\343\342\377\3\264\305" \ - "\302\377\223\254\247\377\315\331\326\377\207\377\377\377\377\3\352\357" \ - "\356\377\223\254\247\377\240\266\261\377\377\333\343\342\377\323\333" \ - "\343\342\377\3\252\276\272\377\223\254\247\377\333\343\341\377\207\377" \ - "\377\377\377\3\335\344\343\377\223\254\247\377\252\275\272\377\222\333" \ - "\343\342\377\4\322\334\332\377\223\254\247\377\241\266\262\377\376\376" \ - "\376\377\207\377\377\377\377\3\253\276\273\377\223\254\247\377\312\326" \ - "\324\377\356\333\343\342\377\1\331\342\341\377\341\333\343\342\377\4" \ - "\323\335\333\377\224\254\247\377\235\264\257\377\375\375\375\377\207" \ - "\377\377\377\377\3\257\302\276\377\223\254\247\377\310\324\322\377\207" \ - "\333\343\342\377\4\327\340\337\377\264\305\302\377\260\302\277\377\305" \ - "\321\317\377\210\333\343\342\377\3\251\274\271\377\223\254\247\377\337" \ - "\346\345\377\207\377\377\377\377\3\330\341\337\377\223\254\247\377\253" \ - "\276\273\377\356\333\343\342\377\5\264\301\277\377^uq\377w\214\210\377" \ - "\236\255\253\377\330\341\340\377\335\333\343\342\377\3\266\306\303\377" \ - "\223\254\247\377\311\325\323\377\207\377\377\377\377\3\356\362\361\377" \ - "\223\254\247\377\236\265\260\377\210\333\343\342\377\5\251\275\272\377" \ - "\226\256\251\377\240\266\261\377\222\253\246\377\316\331\330\377\207" \ - "\333\343\342\377\3\307\323\321\377\223\254\247\377\261\303\300\377\207" \ - "\377\377\377\377\4\374\375\374\377\234\263\256\377\224\255\250\377\324" \ - "\335\334\377\334\333\343\342\377\3\241\260\255\377_vr\377z\216\212\377" \ - "\216\333\343\342\377\1\264\301\277\377\203Slg\377\2m\202~\377\312\324" \ - "\323\377\333\333\343\342\377\4\331\341\340\377\231\261\254\377\225\255" \ - "\250\377\364\367\366\377\207\377\377\377\377\3\301\317\314\377\223\254" \ - "\247\377\275\314\311\377\207\333\343\342\377\6\331\342\341\377\225\255" \ - "\250\377\320\333\331\377\374\375\375\377\234\263\256\377\261\303\300" \ - "\377\207\333\343\342\377\4\332\342\341\377\235\264\257\377\223\254\247" \ - "\377\360\363\362\377\207\377\377\377\377\3\307\324\321\377\223\254\247" \ - "\377\267\310\305\377\334\333\343\342\377\3\233\253\250\377Slg\377p\205" \ - "\201\377\216\333\343\342\377\2\270\305\303\377Woj\377\203Slg\377\1~\221" \ - "\216\377\333\333\343\342\377\3\301\317\315\377\223\254\247\377\270\310" \ - "\305\377\207\377\377\377\377\4\371\373\372\377\230\260\253\377\226\256" \ - "\252\377\327\340\336\377\207\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\210\333\343\342\377\3\273\313\310\377\223\254\247\377\303\321\316" \ - "\377\207\377\377\377\377\4\363\365\365\377\224\255\250\377\232\261\255" \ - "\377\331\342\341\377\333\333\343\342\377\3\233\253\250\377Slg\377p\205" \ - "\201\377\217\333\343\342\377\3\332\342\341\377\306\321\317\377\206\230" \ - "\225\377\202Slg\377\1\300\313\311\377\332\333\343\342\377\3\243\270\264" \ - "\377\223\254\247\377\345\353\352\377\207\377\377\377\377\3\322\335\333" \ - "\377\223\254\247\377\261\303\277\377\210\333\343\342\377\6\331\340\337" \ - "\377\223\254\247\377\332\342\341\377\377\377\377\377\251\275\271\377" \ - "\255\300\275\377\210\333\343\342\377\4\326\337\336\377\226\256\251\377" \ - "\232\261\254\377\372\373\373\377\207\377\377\377\377\3\266\307\303\377" \ - "\223\254\247\377\303\320\316\377\333\333\343\342\377\3\233\253\250\377" \ - "Slg\377p\205\201\377\221\333\343\342\377\4\332\342\341\377q\207\202\377" \ - "Slg\377\246\264\262\377\331\333\343\342\377\3\315\330\326\377\223\254" \ - "\247\377\246\273\267\377\210\377\377\377\377\3\245\272\266\377\223\254" \ - "\247\377\317\332\330\377\210\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\211\333\343\342\377\3\260\302\276\377\223\254\247\377\324\336\334" \ - "\377\207\377\377\377\377\3\343\351\350\377\223\254\247\377\244\271\265" \ - "\377\333\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\222\333" \ - "\343\342\377\3\223\244\240\377Slg\377\223\244\240\377\331\333\343\342" \ - "\377\3\257\301\276\377\223\254\247\377\324\336\334\377\207\377\377\377" \ - "\377\3\344\352\351\377\223\254\247\377\245\272\266\377\211\333\343\342" \ - "\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377\377\377" \ - "\251\275\271\377\255\300\275\377\211\333\343\342\377\3\316\331\327\377" \ - "\223\254\247\377\247\273\267\377\210\377\377\377\377\3\244\271\265\377" \ - "\223\254\247\377\316\331\327\377\332\333\343\342\377\3\233\253\250\377" \ - "Slg\377p\205\201\377\222\333\343\342\377\3\213\235\232\377Slg\377\214" \ - "\235\232\377\330\333\343\342\377\10\326\337\336\377\225\256\251\377\231" \ - "\261\254\377\372\373\373\377\354\360\357\377\301\317\315\377\325\337" \ - "\335\377\373\374\374\377\203\377\377\377\377\3\266\307\303\377\223\254" \ - "\247\377\303\321\317\377\211\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\212\333\343\342\377\3\244\271\265\377\223\254\247\377\346\353\352" \ - "\377\203\377\377\377\377\7\356\362\362\377\303\321\316\377\322\334\332" \ - "\377\372\373\373\377\322\334\332\377\223\254\247\377\260\302\277\377" \ - "\332\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221\333\343" \ - "\342\377\4\314\325\324\377_wr\377Slg\377\235\254\252\377\306\333\343" \ - "\342\377\1\203\240\232\377\205r\223\214\377\1w\227\221\377\213\253\276" \ - "\273\377\16\240\265\262\377\223\254\247\377\302\320\315\377\266\307\304" \ - "\377\223\254\247\377\233\262\256\377\223\254\247\377\233\262\255\377" \ - "\346\353\352\377\377\377\377\377\363\366\365\377\224\255\250\377\225" \ - "\256\251\377\252\275\272\377\211\253\276\273\377\6\252\275\272\377\223" \ - "\254\247\377\332\342\341\377\377\377\377\377\250\274\270\377\233\262" \ - "\256\377\212\253\276\273\377\3\242\267\264\377\223\254\247\377\270\310" \ - "\305\377\202\377\377\377\377\11\275\315\312\377\223\254\247\377\232\262" \ - "\255\377\224\255\250\377\231\261\254\377\332\344\341\377\230\260\253" \ - "\377\224\254\250\377\251\275\271\377\212\253\276\273\377\1\227\257\253" \ - "\377\205r\223\214\377\2s\224\215\377\261\303\300\377\300\333\343\342" \ - "\377\1\267\304\302\377\206\211\234\230\377\3p\205\201\377Slg\377^vq\377" \ - "\216\211\234\230\377\4\206\231\225\377\177\223\217\377r\207\203\377T" \ - "mh\377\202Slg\377\1\257\274\272\377\306\333\343\342\377\1|\233\224\377" \ - "\221o\221\212\377\15\215\250\242\377\223\254\247\377\335\345\343\377" \ - "\223\254\247\377\317\332\330\377\375\375\375\377\360\363\363\377\243" \ - "\270\264\377\265\306\303\377\377\377\377\377\310\325\322\377\223\254" \ - "\247\377\200\236\227\377\212o\221\212\377\6p\221\212\377\223\254\247" \ - "\377\332\342\341\377\377\377\377\377\247\273\267\377\205\242\234\377" \ - "\213o\221\212\377\15\217\251\244\377\224\255\250\377\365\367\367\377" \ - "\361\364\364\377\224\255\250\377\306\323\321\377\374\375\375\377\363" \ - "\366\365\377\252\276\272\377\255\300\274\377\300\317\314\377\223\254" \ - "\247\377~\234\226\377\221o\221\212\377\1\256\301\276\377\300\333\343" \ - "\342\377\1\237\256\253\377\234Slg\377\2]up\377\321\333\331\377\306\333" \ - "\343\342\377\1|\233\224\377\220o\221\212\377\6y\230\222\377\223\254\247" \ - "\377\261\303\277\377\277\316\313\377\235\264\257\377\376\376\376\377" \ - "\202\377\377\377\377\6\317\332\330\377\224\255\250\377\362\366\365\377" \ - "\234\263\257\377\222\253\246\377r\223\214\377\212o\221\212\377\6p\221" \ - "\212\377\223\254\247\377\332\342\341\377\377\377\377\377\247\273\267" \ - "\377\205\242\234\377\213o\221\212\377\6\201\236\230\377\223\254\247\377" \ - "\312\326\323\377\310\324\322\377\227\257\252\377\372\373\373\377\202" \ - "\377\377\377\377\5\331\342\340\377\223\254\247\377\337\346\345\377\223" \ - "\254\247\377\215\247\242\377\221o\221\212\377\1\256\301\276\377\300\333" \ - "\343\342\377\1\237\256\253\377\234Slg\377\1\246\265\262\377\307\333\343" \ - "\342\377\1|\233\224\377\220o\221\212\377\6\210\244\236\377\223\254\247" \ - "\377\336\346\344\377\320\333\330\377\225\256\251\377\365\367\367\377" \ - "\202\377\377\377\377\5\275\315\312\377\236\264\260\377\327\341\337\377" \ - "\223\254\247\377\206\242\234\377\213o\221\212\377\6p\221\212\377\223" \ - "\254\247\377\332\342\341\377\377\377\377\377\247\273\267\377\205\242" \ - "\234\377\213o\221\212\377\6r\223\214\377\222\253\246\377\236\264\260" \ - "\377\327\340\336\377\223\254\247\377\354\360\357\377\202\377\377\377" \ - "\377\6\310\324\322\377\231\260\253\377\371\373\373\377\257\301\276\377" \ - "\223\254\247\377x\230\221\377\220o\221\212\377\1\256\301\276\377\300" \ - "\333\343\342\377\1\237\256\253\377\232Slg\377\2q\207\202\377\267\304" \ - "\302\377\310\333\343\342\377\1|\233\224\377\217o\221\212\377\16s\224" \ - "\215\377\222\253\246\377\240\266\262\377\376\376\376\377\371\372\372" \ - "\377\230\260\253\377\250\274\270\377\326\337\336\377\301\317\315\377" \ - "\226\256\251\377\310\325\322\377\253\277\273\377\223\254\247\377w\227" \ - "\220\377\213o\221\212\377\6p\221\212\377\223\254\247\377\332\342\341" \ - "\377\377\377\377\377\247\273\267\377\205\242\234\377\214o\221\212\377" \ - "\15\206\242\235\377\223\254\247\377\330\341\340\377\234\263\256\377\245" \ - "\272\265\377\324\336\334\377\305\322\317\377\230\260\253\377\301\317" \ - "\314\377\377\377\377\377\334\344\343\377\223\254\247\377\207\243\236" \ - "\377\220o\221\212\377\1\256\301\276\377\300\333\343\342\377\1\306\321" \ - "\317\377\206\254\271\267\377\3\202\225\221\377Slg\377f|x\377\216\254" \ - "\271\267\377\3\263\300\276\377\304\317\315\377\325\335\334\377\312\333" \ - "\343\342\377\1\255\300\274\377\205\244\271\265\377\1\251\275\271\377" \ - "\211\333\343\342\377\3\263\305\301\377\223\254\247\377\315\330\326\377" \ - "\202\377\377\377\377\10\341\350\346\377\257\301\275\377\223\254\247\377" \ - "\234\263\256\377\306\323\321\377\345\352\351\377\223\254\247\377\241" \ - "\266\262\377\214\333\343\342\377\6\331\340\337\377\223\254\247\377\332" \ - "\342\341\377\377\377\377\377\251\275\271\377\255\300\275\377\214\333" \ - "\343\342\377\16\311\325\323\377\223\254\247\377\256\300\275\377\344\352" \ - "\351\377\262\304\301\377\223\254\247\377\231\261\254\377\303\321\316" \ - "\377\365\367\367\377\377\377\377\377\375\376\375\377\237\265\260\377" \ - "\223\254\247\377\322\334\333\377\210\333\343\342\377\1\310\324\322\377" \ - "\206\244\271\265\377\1\304\322\320\377\307\333\343\342\377\3\233\253" \ - "\250\377Slg\377p\205\201\377\352\333\343\342\377\4\330\341\337\377\230" \ - "\257\253\377\226\256\251\377\366\370\370\377\204\377\377\377\377\6\361" \ - "\364\363\377\374\375\375\377\377\377\377\377\275\314\311\377\223\254" \ - "\247\377\277\315\313\377\214\333\343\342\377\6\331\340\337\377\223\254" \ - "\247\377\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275" \ - "\377\215\333\343\342\377\6\237\265\261\377\223\254\247\377\354\361\360" \ - "\377\377\377\377\377\362\365\365\377\372\373\373\377\204\377\377\377" \ - "\377\3\313\327\324\377\223\254\247\377\265\306\302\377\327\333\343\342" \ - "\377\3\233\253\250\377Slg\377p\205\201\377\352\333\343\342\377\3\277" \ - "\315\313\377\223\254\247\377\274\313\310\377\207\377\377\377\377\4\370" \ - "\371\371\377\227\257\252\377\230\257\253\377\330\341\337\377\214\333" \ - "\343\342\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377" \ - "\377\377\251\275\271\377\255\300\275\377\215\333\343\342\377\3\275\314" \ - "\312\377\223\254\247\377\277\316\313\377\207\377\377\377\377\4\366\370" \ - "\367\377\225\256\251\377\230\260\253\377\331\341\340\377\326\333\343" \ - "\342\377\3\253\271\266\377t\211\205\377\213\235\231\377\352\333\343\342" \ - "\377\3\241\266\262\377\223\254\247\377\351\356\355\377\207\377\377\377" \ - "\377\3\317\332\330\377\223\254\247\377\263\305\301\377\215\333\343\342" \ - "\377\6\331\340\337\377\223\254\247\377\332\342\341\377\377\377\377\377" \ - "\251\275\271\377\255\300\275\377\215\333\343\342\377\4\327\340\337\377" \ - "\227\257\252\377\227\257\253\377\371\372\372\377\207\377\377\377\377" \ - "\3\271\311\306\377\223\254\247\377\300\316\314\377\377\333\343\342\377" \ - "\303\333\343\342\377\3\312\326\324\377\223\254\247\377\252\275\271\377" \ - "\207\377\377\377\377\4\376\376\376\377\242\267\263\377\223\254\247\377" \ - "\321\333\332\377\215\333\343\342\377\6\331\340\337\377\223\254\247\377" \ - "\332\342\341\377\377\377\377\377\251\275\271\377\255\300\275\377\216" \ - "\333\343\342\377\3\262\303\300\377\223\254\247\377\320\333\331\377\207" \ - "\377\377\377\377\3\347\354\353\377\223\254\247\377\242\267\263\377\377" \ - "\333\343\342\377\303\333\343\342\377\3\254\277\274\377\223\254\247\377" \ - "\330\341\337\377\207\377\377\377\377\3\340\347\346\377\223\254\247\377" \ - "\247\273\270\377\216\333\343\342\377\6\331\340\337\377\223\254\247\377" \ - "\330\341\337\377\377\377\377\377\250\274\270\377\255\300\275\377\216" \ - "\333\343\342\377\3\320\332\331\377\223\254\247\377\243\271\264\377\210" \ - "\377\377\377\377\3\250\274\270\377\223\254\247\377\314\327\325\377\377" \ - "\333\343\342\377\301\333\343\342\377\4\324\336\334\377\224\255\250\377" \ - "\233\262\256\377\374\374\374\377\207\377\377\377\377\3\263\304\301\377" \ - "\223\254\247\377\306\323\321\377\217\333\343\342\377\5\237\265\261\377" \ - "\252\275\271\377\322\334\332\377\223\254\247\377\275\314\311\377\217" \ - "\333\343\342\377\3\246\273\267\377\223\254\247\377\342\351\347\377\207" \ - "\377\377\377\377\3\325\337\335\377\223\254\247\377\256\300\275\377\343" \ - "\333\343\342\377\6\267\303\301\377\223\244\240\377|\220\214\377\213\235" \ - "\231\377\250\267\264\377\311\323\322\377\327\333\343\342\377\3\270\310" \ - "\305\377\223\254\247\377\306\323\321\377\207\377\377\377\377\4\361\364" \ - "\363\377\223\254\247\377\234\263\257\377\332\342\341\377\217\333\343" \ - "\342\377\1\307\323\321\377\202\223\254\247\377\2\240\265\261\377\332" \ - "\342\341\377\217\333\343\342\377\3\304\322\317\377\223\254\247\377\264" \ - "\306\302\377\207\377\377\377\377\4\373\374\374\377\232\262\255\377\225" \ - "\255\250\377\325\336\335\377\325\333\343\342\377\1\302\315\313\377\204" \ - "\222\243\240\377\1\253\271\267\377\205\333\343\342\377\2\323\334\333" \ - "\377\200\223\220\377\205Slg\377\2Uni\377\247\266\263\377\325\333\343" \ - "\342\377\4\332\342\341\377\233\262\255\377\224\254\247\377\362\365\364" \ - "\377\207\377\377\377\377\3\304\322\317\377\223\254\247\377\272\312\307" \ - "\377\221\333\343\342\377\3\327\337\336\377\326\337\335\377\331\340\337" \ - "\377\220\333\343\342\377\4\332\342\341\377\233\262\256\377\224\254\247" \ - "\377\362\365\364\377\207\377\377\377\377\3\304\322\317\377\223\254\247" \ - "\377\271\311\306\377\325\333\343\342\377\1\211\233\230\377\204Slg\377" \ - "\1\201\224\220\377\205\333\343\342\377\1\200\223\220\377\210Slg\377\1" \ - "\227\247\244\377\324\333\343\342\377\3\303\321\317\377\223\254\247\377" \ - "\265\306\302\377\207\377\377\377\377\4\373\374\374\377\232\261\255\377" \ - "\225\256\251\377\326\337\336\377\245\333\343\342\377\3\271\311\306\377" \ - "\223\254\247\377\306\323\320\377\207\377\377\377\377\4\361\364\363\377" \ - "\223\254\247\377\234\262\256\377\332\342\341\377\323\333\343\342\377" \ - "\2\330\341\340\377]up\377\203Slg\377\2[sn\377\227\247\244\377\204\333" \ - "\343\342\377\1\247\266\263\377\212Slg\377\1\305\317\316\377\323\333\343" \ - "\342\377\3\245\272\266\377\223\254\247\377\342\351\347\377\207\377\377" \ - "\377\377\3\325\337\335\377\223\254\247\377\256\301\275\377\246\333\343" \ - "\342\377\4\325\336\335\377\225\255\250\377\233\262\256\377\374\374\374" \ - "\377\207\377\377\377\377\3\263\304\301\377\223\254\247\377\305\322\320" \ - "\377\323\333\343\342\377\1\265\302\300\377\202Slg\377\3]up\377\263\300" \ - "\275\377\332\342\341\377\205\333\343\342\377\1i\177{\377\203Slg\377\5" \ - "Yrm\377\233\253\250\377\266\302\300\377\246\264\262\377x\214\210\377" \ - "\202Slg\377\1\204\227\223\377\322\333\343\342\377\3\317\332\330\377\223" \ - "\254\247\377\243\270\264\377\210\377\377\377\377\3\250\274\270\377\223" \ - "\254\247\377\315\330\326\377\247\333\343\342\377\3\255\300\274\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\340\347\346\377\223" \ - "\254\247\377\247\273\267\377\323\333\343\342\377\4\212\234\231\377Sl" \ - "g\377Voj\377\307\322\320\377\206\333\343\342\377\1\270\305\303\377\203" \ - "Slg\377\2Vni\377\303\316\314\377\203\333\343\342\377\5\331\342\341\377" \ - "\210\233\227\377Slg\377Umh\377\315\327\325\377\321\333\343\342\377\3" \ - "\261\303\277\377\223\254\247\377\321\333\331\377\207\377\377\377\377" \ - "\3\347\354\353\377\223\254\247\377\243\270\264\377\250\333\343\342\377" \ - "\3\314\327\325\377\223\254\247\377\252\275\271\377\207\377\377\377\377" \ - "\4\376\376\376\377\242\267\263\377\223\254\247\377\320\333\331\377\322" \ - "\333\343\342\377\3u\211\205\377Slg\377\221\242\237\377\207\333\343\342" \ - "\377\1\204\227\223\377\203Slg\377\1\221\243\237\377\205\333\343\342\377" \ - "\4\317\331\327\377Voj\377Slg\377\266\303\301\377\320\333\343\342\377" \ - "\4\327\340\336\377\226\256\252\377\227\257\253\377\371\372\372\377\207" \ - "\377\377\377\377\3\271\311\306\377\223\254\247\377\301\317\315\377\251" \ - "\333\343\342\377\3\241\267\263\377\223\254\247\377\351\356\355\377\207" \ - "\377\377\377\377\3\317\332\330\377\223\254\247\377\262\304\300\377\322" \ - "\333\343\342\377\3dzv\377Slg\377\274\307\306\377\206\333\343\342\377" \ - "\2\331\341\340\377\\to\377\202Slg\377\2Tmh\377\315\327\325\377\206\333" \ - "\343\342\377\3z\216\212\377Slg\377\246\264\262\377\320\333\343\342\377" \ - "\3\274\313\311\377\223\254\247\377\277\316\313\377\207\377\377\377\377" \ - "\4\365\367\367\377\225\255\251\377\231\260\254\377\331\341\340\377\251" \ - "\333\343\342\377\3\300\316\314\377\223\254\247\377\273\313\310\377\207" \ - "\377\377\377\377\1\370\371\371\377\202\227\257\252\377\1\327\340\337" \ - "\377\320\333\343\342\377\4\331\341\340\377Umh\377Slg\377\317\330\327" \ - "\377\206\333\343\342\377\1\271\306\304\377\203Slg\377\1z\216\212\377" \ - "\207\333\343\342\377\3\213\235\231\377Slg\377\225\246\243\377\320\333" \ - "\343\342\377\3\236\265\260\377\223\254\247\377\355\361\360\377\207\377" \ - "\377\377\377\3\313\327\324\377\223\254\247\377\266\306\303\377\252\333" \ - "\343\342\377\4\331\341\340\377\230\260\253\377\226\256\251\377\366\370" \ - "\370\377\207\377\377\377\377\3\275\314\311\377\223\254\247\377\276\315" \ - "\312\377\320\333\343\342\377\1\324\334\333\377\202Slg\377\1\325\336\335" \ - "\377\206\333\343\342\377\1\216\240\235\377\203Slg\377\1\255\272\270\377" \ - "\207\333\343\342\377\3\227\247\244\377Slg\377\210\233\227\377\317\333" \ - "\343\342\377\3\310\324\322\377\223\254\247\377\256\301\275\377\207\377" \ - "\377\377\377\4\375\376\375\377\237\265\260\377\224\254\247\377\323\334" \ - "\333\377\253\333\343\342\377\3\264\305\302\377\223\254\247\377\315\330" \ - "\326\377\207\377\377\377\377\3\353\357\356\377\223\254\247\377\237\265" \ - "\261\377\321\333\343\342\377\3\\to\377Slg\377\310\322\321\377\205\333" \ - "\343\342\377\2\330\341\340\377_vr\377\202Slg\377\2Xpk\377\325\336\335" \ - "\377\207\333\343\342\377\3\214\235\232\377Slg\377\216\237\234\377\317" \ - "\333\343\342\377\3\252\275\271\377\223\254\247\377\333\343\342\377\207" \ - "\377\377\377\377\3\334\344\343\377\223\254\247\377\252\275\272\377\254" \ - "\333\343\342\377\4\322\334\332\377\223\254\247\377\240\266\262\377\376" \ - "\376\376\377\207\377\377\377\377\3\254\277\273\377\223\254\247\377\311" \ - "\325\323\377\320\333\343\342\377\3n\203\177\377Slg\377\257\274\272\377" \ - "\205\333\343\342\377\1\261\277\274\377\203Slg\377\1\200\223\220\377\210" \ - "\333\343\342\377\3{\217\213\377Slg\377\227\247\244\377\316\333\343\342" \ - "\377\4\323\334\333\377\223\254\247\377\236\265\260\377\375\375\375\377" \ - "\207\377\377\377\377\3\257\301\276\377\223\254\247\377\310\324\322\377" \ - "\255\333\343\342\377\3\251\274\271\377\223\254\247\377\336\346\344\377" \ - "\207\377\377\377\377\3\331\342\340\377\223\254\247\377\253\276\273\377" \ - "\320\333\343\342\377\3\201\224\220\377Slg\377v\212\206\377\204\333\343" \ - "\342\377\2\330\340\337\377i\200{\377\203Slg\377\1\260\276\273\377\207" \ - "\333\343\342\377\4\325\335\334\377^uq\377Slg\377\253\271\267\377\316" \ - "\333\343\342\377\3\265\306\303\377\223\254\247\377\312\326\324\377\207" \ - "\377\377\377\377\3\356\361\361\377\223\254\247\377\236\265\260\377\256" \ - "\333\343\342\377\3\307\323\321\377\223\254\247\377\261\303\277\377\207" \ - "\377\377\377\377\4\374\375\375\377\235\263\257\377\224\255\250\377\323" \ - "\335\334\377\317\333\343\342\377\1\263\300\275\377\202Slg\377\5\206\231" \ - "\225\377\314\326\324\377\333\343\342\377\315\327\325\377\177\222\217" \ - "\377\203Slg\377\2czu\377\331\341\340\377\207\333\343\342\377\1\234\253" \ - "\251\377\202Slg\377\1\303\316\314\377\315\333\343\342\377\4\331\341\340" \ - "\377\231\260\254\377\225\255\251\377\365\367\367\377\207\377\377\377" \ - "\377\3\300\317\314\377\223\254\247\377\275\314\311\377\256\333\343\342" \ - "\377\4\332\342\341\377\235\264\257\377\223\254\247\377\357\362\362\377" \ - "\207\377\377\377\377\3\310\325\322\377\223\254\247\377\267\307\304\377" \ - "\320\333\343\342\377\1m\202~\377\203Slg\377\1Xql\377\205Slg\377\1\235" \ - "\254\252\377\207\333\343\342\377\4\241\261\256\377Voj\377Slg\377czu\377" \ - "\316\333\343\342\377\3\301\317\314\377\223\254\247\377\271\311\306\377" \ - "\207\377\377\377\377\4\371\373\372\377\230\260\253\377\226\256\252\377" \ - "\327\340\336\377\257\333\343\342\377\3\273\313\310\377\223\254\247\377" \ - "\302\320\315\377\207\377\377\377\377\4\363\366\366\377\224\255\250\377" \ - "\232\261\254\377\331\341\340\377\317\333\343\342\377\2\265\302\300\377" \ - "Voj\377\207Slg\377\2o\205\201\377\330\340\337\377\204\333\343\342\377" \ - "\3\274\307\306\377\210\233\227\377k\201}\377\203Slg\377\1\221\243\237" \ - "\377\316\333\343\342\377\3\243\270\264\377\223\254\247\377\346\354\352" \ - "\377\207\377\377\377\377\3\322\334\332\377\223\254\247\377\261\303\277" \ - "\377\260\333\343\342\377\4\326\337\336\377\226\256\251\377\231\261\254" \ - "\377\372\373\373\377\207\377\377\377\377\3\267\307\304\377\223\254\247" \ - "\377\302\320\316\377\320\333\343\342\377\2\274\310\306\377_wr\377\205" \ - "Slg\377\2j\200|\377\311\324\322\377\205\333\343\342\377\1\226\247\244" \ - "\377\205Slg\377\1\300\313\311\377\315\333\343\342\377\3\314\330\326\377" \ - "\223\254\247\377\247\273\267\377\210\377\377\377\377\3\244\271\265\377" \ - "\223\254\247\377\317\332\330\377\261\333\343\342\377\3\260\302\276\377" \ - "\223\254\247\377\324\336\334\377\207\377\377\377\377\3\344\352\351\377" \ - "\223\254\247\377\244\271\265\377\321\333\343\342\377\7\316\330\326\377" \ - "\250\266\264\377\214\236\233\377v\213\207\377\206\230\225\377\244\263" \ - "\260\377\330\341\340\377\206\333\343\342\377\1\243\262\257\377\204l\201" \ - "}\377\1x\215\211\377\316\333\343\342\377\3\256\301\275\377\223\254\247" \ - "\377\325\336\334\377\207\377\377\377\377\3\343\351\350\377\223\254\247" \ - "\377\245\272\266\377\262\333\343\342\377\3\316\331\327\377\223\254\247" \ - "\377\246\273\267\377\210\377\377\377\377\3\245\272\266\377\223\254\247" \ - "\377\316\331\327\377\377\333\343\342\377\261\333\343\342\377\4\325\337" \ - "\335\377\225\255\251\377\232\261\254\377\373\374\373\377\207\377\377" \ - "\377\377\3\266\307\303\377\223\254\247\377\303\321\317\377\263\333\343" \ - "\342\377\3\244\271\265\377\223\254\247\377\345\353\352\377\207\377\377" \ - "\377\377\3\322\335\333\377\223\254\247\377\260\302\276\377\377\333\343" \ - "\342\377\261\333\343\342\377\3\272\311\307\377\223\254\247\377\303\321" \ - "\316\377\207\377\377\377\377\4\363\366\365\377\224\255\250\377\232\262" \ - "\255\377\332\342\341\377\263\333\343\342\377\3\302\320\316\377\223\254" \ - "\247\377\270\310\305\377\207\377\377\377\377\4\372\373\373\377\231\260" \ - "\254\377\226\256\251\377\326\337\336\377\377\333\343\342\377\257\333" \ - "\343\342\377\4\332\342\341\377\234\263\256\377\223\254\247\377\360\363" \ - "\362\377\207\377\377\377\377\3\307\324\321\377\223\254\247\377\270\310" \ - "\305\377\264\333\343\342\377\4\331\341\340\377\232\261\254\377\225\255" \ - "\250\377\364\367\366\377\207\377\377\377\377\3\301\317\314\377\223\254" \ - "\247\377\273\313\310\377\314\333\343\342\377\3\277\312\310\377\237\256" \ - "\253\377\254\272\270\377\337\333\343\342\377\3\305\322\320\377\223\254" \ - "\247\377\262\304\300\377\207\377\377\377\377\4\374\375\374\377\234\263" \ - "\256\377\224\255\250\377\324\336\334\377\265\333\343\342\377\3\266\307" \ - "\304\377\223\254\247\377\311\325\323\377\207\377\377\377\377\4\356\362" \ - "\361\377\223\254\247\377\235\264\257\377\332\342\341\377\313\333\343" \ - "\342\377\3\233\253\250\377Slg\377p\205\201\377\337\333\343\342\377\3" \ - "\247\273\267\377\223\254\247\377\337\346\345\377\207\377\377\377\377" \ - "\3\330\341\337\377\223\254\247\377\254\277\274\377\266\333\343\342\377" \ - "\4\323\335\334\377\224\255\250\377\235\264\257\377\375\375\375\377\207" \ - "\377\377\377\377\3\260\302\276\377\223\254\247\377\307\323\321\377\313" \ - "\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\336\333\343\342" \ - "\377\4\321\333\331\377\223\254\247\377\241\266\262\377\376\376\376\377" \ - "\207\377\377\377\377\3\253\276\273\377\223\254\247\377\312\326\324\377" \ - "\267\333\343\342\377\3\253\276\272\377\223\254\247\377\333\343\341\377" \ - "\207\377\377\377\377\3\335\345\343\377\223\254\247\377\251\274\271\377" \ - "\313\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\336\333\343" \ - "\342\377\3\263\304\301\377\223\254\247\377\315\331\326\377\207\377\377" \ - "\377\377\3\351\356\355\377\223\254\247\377\241\266\262\377\270\333\343" \ - "\342\377\3\311\325\323\377\223\254\247\377\254\277\273\377\207\377\377" \ - "\377\377\4\375\376\375\377\240\265\261\377\223\254\247\377\321\334\332" \ - "\377\312\333\343\342\377\3\233\253\250\377Slg\377[sn\377\223x\215\211" \ - "\377\5z\216\212\377\202\225\221\377\214\236\233\377\246\265\262\377\310" \ - "\323\321\377\305\333\343\342\377\4\330\340\337\377\227\257\252\377\226" \ - "\256\252\377\367\371\370\377\207\377\377\377\377\3\274\313\310\377\223" \ - "\254\247\377\277\315\313\377\271\333\343\342\377\3\237\265\261\377\223" \ - "\254\247\377\353\360\357\377\207\377\377\377\377\3\314\327\325\377\223" \ - "\254\247\377\264\305\302\377\312\333\343\342\377\1\233\253\250\377\232" \ - "Slg\377\2x\214\210\377\275\311\307\377\303\333\343\342\377\3\276\315" \ - "\312\377\223\254\247\377\274\313\310\377\207\377\377\377\377\4\367\371" \ - "\370\377\226\256\251\377\230\257\253\377\330\341\337\377\271\333\343" \ - "\342\377\3\275\314\312\377\223\254\247\377\276\315\312\377\207\377\377" \ - "\377\377\4\366\370\370\377\225\256\251\377\230\260\253\377\330\341\340" \ - "\377\311\333\343\342\377\1\233\253\250\377\233Slg\377\2Tmh\377\237\256" \ - "\253\377\302\333\343\342\377\3\240\266\262\377\223\254\247\377\351\356" \ - "\355\377\207\377\377\377\377\3\315\330\326\377\223\254\247\377\263\305" \ - "\301\377\272\333\343\342\377\1\327\340\337\377\202\227\257\252\377\1" \ - "\370\371\371\377\207\377\377\377\377\3\272\312\307\377\223\254\247\377" \ - "\300\316\314\377\311\333\343\342\377\1\233\253\250\377\235Slg\377\1\243" \ - "\262\257\377\300\333\343\342\377\3\312\326\324\377\223\254\247\377\252" \ - "\276\272\377\207\377\377\377\377\4\376\376\376\377\240\266\262\377\223" \ - "\254\247\377\321\333\332\377\273\333\343\342\377\3\262\303\300\377\223" \ - "\254\247\377\317\332\330\377\207\377\377\377\377\3\350\355\354\377\223" \ - "\254\247\377\241\267\263\377\311\333\343\342\377\4\321\332\331\377\305" \ - "\320\316\377\305\317\316\377\207\231\226\377\202Slg\377\5j\200|\377\224" \ - "\245\242\377\244\263\260\377\264\300\276\377\302\315\313\377\202\305" \ - "\320\316\377\16\274\307\306\377\254\272\270\377\235\255\252\377\207\232" \ - "\226\377Xql\377Slg\377^vq\377\257\274\272\377\305\320\316\377\304\316" \ - "\315\377\266\303\301\377\247\265\263\377\227\250\245\377s\210\203\377" \ - "\203Slg\377\2Vni\377\304\317\315\377\277\333\343\342\377\3\254\277\273" \ - "\377\223\254\247\377\330\341\337\377\207\377\377\377\377\3\336\346\344" \ - "\377\223\254\247\377\247\273\270\377\274\333\343\342\377\4\320\332\331" \ - "\377\223\254\247\377\242\270\263\377\376\376\376\377\207\377\377\377" \ - "\377\3\251\275\271\377\223\254\247\377\313\327\325\377\311\333\343\342" \ - "\377\5\327\340\337\377y\215\211\377Slg\377q\207\202\377\266\302\300\377" \ - "\213\333\343\342\377\5\321\333\331\377\233\253\250\377Yrm\377Wpk\377" \ - "\255\273\271\377\205\333\343\342\377\2\271\305\303\377r\207\203\377\202" \ - "Slg\377\1\203\226\222\377\276\333\343\342\377\4\324\336\334\377\224\255" \ - "\250\377\234\263\256\377\374\375\374\377\207\377\377\377\377\3\261\303" \ - "\277\377\223\254\247\377\306\323\321\377\275\333\343\342\377\3\246\273" \ - "\267\377\223\254\247\377\340\347\346\377\207\377\377\377\377\3\326\340" \ - "\336\377\223\254\247\377\255\300\274\377\311\333\343\342\377\4\211\234" \ - "\230\377Slg\377n\204\200\377\325\336\335\377\216\333\343\342\377\4\263" \ - "\300\275\377Tlg\377Wpk\377\300\314\312\377\205\333\343\342\377\5\325" \ - "\335\334\377f}x\377Slg\377Umh\377\324\334\333\377\275\333\343\342\377" \ - "\3\267\310\305\377\223\254\247\377\307\324\321\377\207\377\377\377\377" \ - "\4\357\363\362\377\223\254\247\377\234\263\257\377\332\342\341\377\275" \ - "\333\343\342\377\3\304\322\317\377\223\254\247\377\263\304\301\377\207" \ - "\377\377\377\377\4\373\374\374\377\233\262\255\377\225\255\250\377\325" \ - "\336\335\377\307\333\343\342\377\4\275\311\307\377Slg\377\\so\377\316" \ - "\327\326\377\220\333\343\342\377\3\227\250\245\377Slg\377p\206\202\377" \ - "\206\333\343\342\377\4\276\312\310\377Tlg\377Slg\377\266\302\300\377" \ - "\274\333\343\342\377\4\331\342\341\377\232\261\255\377\224\254\247\377" \ - "\362\365\364\377\207\377\377\377\377\3\302\320\315\377\223\254\247\377" \ - "\272\312\307\377\276\333\343\342\377\4\332\342\341\377\233\262\256\377" \ - "\223\254\247\377\361\364\363\377\207\377\377\377\377\3\305\322\320\377" \ - "\223\254\247\377\271\311\306\377\307\333\343\342\377\3\211\233\230\377" \ - "Slg\377|\217\214\377\221\333\343\342\377\1\304\317\315\377\202Slg\377" \ - "\1\305\317\316\377\206\333\343\342\377\3f}x\377Slg\377\235\254\252\377" \ - "\274\333\343\342\377\3\303\320\316\377\223\254\247\377\265\306\302\377" \ - "\207\377\377\377\377\4\372\373\373\377\231\261\254\377\225\255\251\377" \ - "\326\337\336\377\277\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\304\322\317\377\207\377\377\377\377\4\361\364\363\377\223\254\247\377" \ - "\233\262\256\377\332\342\341\377\306\333\343\342\377\3e{w\377Slg\377" \ - "\227\250\245\377\221\333\343\342\377\4\331\342\341\377Xql\377Slg\377" \ - "\241\261\256\377\206\333\343\342\377\3}\221\215\377Slg\377\221\242\237" \ - "\377\274\333\343\342\377\3\245\271\265\377\223\254\247\377\343\351\350" \ - "\377\207\377\377\377\377\3\324\336\334\377\223\254\247\377\256\301\275" \ - "\377\300\333\343\342\377\4\325\336\335\377\225\255\250\377\232\262\255" \ - "\377\373\374\374\377\207\377\377\377\377\3\264\305\301\377\223\254\247" \ - "\377\304\321\317\377\305\333\343\342\377\4\332\342\341\377Vni\377Slg" \ - "\377\243\262\257\377\222\333\343\342\377\3czu\377Slg\377\223\244\241" \ - "\377\206\333\343\342\377\3\224\244\241\377Slg\377\210\233\227\377\273" \ - "\333\343\342\377\3\316\331\330\377\223\254\247\377\244\271\264\377\210" \ - "\377\377\377\377\3\246\273\267\377\223\254\247\377\315\330\326\377\301" \ - "\333\343\342\377\4\255\300\274\377\222\253\246\377\315\330\326\377\376" \ - "\376\376\377\206\377\377\377\377\3\341\350\346\377\223\254\247\377\246" \ - "\272\266\377\305\333\343\342\377\1\322\333\332\377\202Slg\377\1\205\230" \ - "\224\377\221\333\343\342\377\1\316\327\326\377\202Slg\377\1\211\234\230" \ - "\377\206\333\343\342\377\3\220\242\236\377Slg\377\222\243\240\377\273" \ - "\333\343\342\377\3\260\302\277\377\223\254\247\377\321\334\332\377\207" \ - "\377\377\377\377\3\345\353\352\377\223\254\247\377\243\270\264\377\302" \ - "\333\343\342\377\16\314\327\325\377\223\254\246\377\223\254\247\377\226" \ - "\256\251\377\244\271\265\377\264\305\302\377\303\321\316\377\323\335" \ - "\333\377\342\351\350\377\361\365\364\377\375\375\375\377\242\270\263" \ - "\377\223\254\247\377\317\332\330\377\304\333\343\342\377\4\332\342\341" \ - "\377Vni\377Slg\377f|x\377\221\333\343\342\377\1\256\274\271\377\202S" \ - "lg\377\1\226\246\243\377\206\333\343\342\377\3\202\225\221\377Slg\377" \ - "\237\257\254\377\272\333\343\342\377\4\327\337\336\377\226\256\251\377" \ - "\230\260\253\377\371\372\372\377\207\377\377\377\377\3\270\310\305\377" \ - "\223\254\247\377\301\317\315\377\303\333\343\342\377\15\232\262\255\377" \ - "\223\254\246\377\325\336\335\377\331\342\340\377\312\326\324\377\273" \ - "\313\310\377\254\277\273\377\235\263\257\377\223\254\247\377\226\256" \ - "\251\377\234\263\256\377\222\254\246\377\256\300\274\377\305\333\343" \ - "\342\377\1i\200{\377\202Slg\377\1\224\244\241\377\217\333\343\342\377" \ - "\2\313\325\323\377czu\377\202Slg\377\1\253\271\266\377\205\333\343\342" \ - "\377\4\331\341\340\377czu\377Slg\377\254\272\270\377\272\333\343\342" \ - "\377\3\274\313\310\377\223\254\247\377\277\316\313\377\207\377\377\377" \ - "\377\4\364\367\366\377\225\255\250\377\231\260\254\377\331\341\340\377" \ - "\303\333\343\342\377\3\275\313\311\377\222\254\246\377\257\301\276\377" \ - "\205\377\377\377\377\3\372\373\373\377\353\360\357\377\327\340\335\377" \ - "\202\224\255\250\377\3\327\340\337\377\331\342\341\377\322\334\333\377" \ - "\302\333\343\342\377\1\226\247\244\377\203Slg\377\2\231\252\247\377\330" \ - "\341\340\377\214\333\343\342\377\2\310\323\321\377f|x\377\202Slg\377" \ - "\2Voj\377\323\334\332\377\205\333\343\342\377\1\253\271\266\377\202S" \ - "lg\377\1\272\306\304\377\272\333\343\342\377\3\236\264\260\377\223\254" \ - "\247\377\355\361\360\377\207\377\377\377\377\3\311\325\323\377\223\254" \ - "\247\377\266\306\303\377\304\333\343\342\377\4\331\341\340\377\224\255" \ - "\250\377\224\254\247\377\366\370\367\377\207\377\377\377\377\5\263\305" \ - "\301\377\222\254\246\377\266\306\302\377\232\262\254\377\240\266\262" \ - "\377\302\333\343\342\377\2\314\325\324\377Xql\377\203Slg\377\4_wr\377" \ - "\221\243\237\377\304\316\315\377\330\341\340\377\206\333\343\342\377" \ - "\4\322\333\332\377\254\271\267\377w\214\210\377Tlg\377\203Slg\377\1\211" \ - "\233\230\377\205\333\343\342\377\5\263\300\276\377Xql\377Slg\377Xql\377" \ - "\326\336\335\377\271\333\343\342\377\3\310\324\322\377\223\254\247\377" \ - "\256\301\275\377\207\377\377\377\377\4\375\375\375\377\235\264\257\377" \ - "\223\254\247\377\323\334\333\377\305\333\343\342\377\3\256\300\276\377" \ - "\223\253\246\377\305\322\320\377\207\377\377\377\377\6\353\360\357\377" \ - "\222\254\247\377\231\261\255\377\241\267\262\377\223\254\247\377\312" \ - "\326\324\377\302\333\343\342\377\1\237\256\253\377\206Slg\377\7Tlg\377" \ - "^vq\377l\202~\377y\215\211\377s\210\203\377e|w\377Xpk\377\206Slg\377" \ - "\2_wr\377\321\333\331\377\203\333\343\342\377\2\255\272\270\377q\207" \ - "\202\377\203Slg\377\1~\222\216\377\272\333\343\342\377\3\251\275\271" \ - "\377\223\254\247\377\334\344\342\377\207\377\377\377\377\3\333\343\341" \ - "\377\223\254\247\377\252\275\271\377\306\333\343\342\377\4\322\334\332" \ - "\377\223\253\246\377\231\260\253\377\375\376\375\377\207\377\377\377" \ - "\377\5\242\267\263\377\222\253\246\377\265\305\302\377\223\254\247\377" \ - "\254\277\273\377\303\333\343\342\377\1\220\242\236\377\221Slg\377\2_" \ - "vr\377\304\316\315\377\204\333\343\342\377\1}\220\215\377\204Slg\377" \ - "\1\251\267\265\377\271\333\343\342\377\4\322\334\333\377\223\254\247" \ - "\377\236\265\260\377\375\376\375\377\207\377\377\377\377\3\255\300\274" \ - "\377\223\254\247\377\310\324\322\377\307\333\343\342\377\3\241\266\263" \ - "\377\223\253\247\377\332\342\341\377\203\377\377\377\377\2\371\372\372" \ - "\377\364\367\366\377\202\377\377\377\377\6\326\340\336\377\222\254\246" \ - "\377\243\270\263\377\230\260\253\377\225\255\250\377\324\336\334\377" \ - "\303\333\343\342\377\2\242\261\256\377Yql\377\216Slg\377\2s\210\204\377" \ - "\310\322\321\377\205\333\343\342\377\1\235\255\252\377\204\201\224\220" \ - "\377\1\321\333\331\377\271\333\343\342\377\3\265\306\302\377\223\254" \ - "\247\377\312\326\324\377\207\377\377\377\377\3\354\360\357\377\223\254" \ - "\247\377\236\265\260\377\310\333\343\342\377\3\306\322\320\377\222\253" \ - "\246\377\244\271\266\377\203\377\377\377\377\2\244\271\264\377\272\312" \ - "\307\377\202\377\377\377\377\6\374\375\375\377\227\257\252\377\223\254" \ - "\246\377\260\303\277\377\223\254\247\377\267\310\305\377\304\333\343" \ - "\342\377\3\313\325\323\377\212\234\231\377Yrm\377\212Slg\377\3n\203\177" \ - "\377\247\266\263\377\332\342\341\377\304\333\343\342\377\4\331\341\340" \ - "\377\230\260\253\377\225\255\251\377\365\367\367\377\207\377\377\377" \ - "\377\3\277\315\312\377\223\254\247\377\275\314\311\377\310\333\343\342" \ - "\377\4\332\342\341\377\227\257\253\377\223\253\246\377\356\361\361\377" \ - "\202\377\377\377\377\3\312\326\324\377\226\256\251\377\367\370\370\377" \ - "\202\377\377\377\377\6\300\316\314\377\223\253\246\377\226\256\250\377" \ - "\223\254\247\377\233\261\255\377\332\342\341\377\305\333\343\342\377" \ - "\13\324\335\334\377\261\277\274\377\224\244\241\377|\217\214\377r\207" \ - "\203\377j\200|\377n\203\177\377v\213\207\377\205\227\224\377\242\261" \ - "\256\377\303\316\314\377\307\333\343\342\377\3\301\317\314\377\223\254" \ - "\247\377\271\311\306\377\207\377\377\377\377\4\370\372\371\377\227\257" \ - "\252\377\226\256\252\377\327\340\336\377\311\333\343\342\377\3\267\310" \ - "\305\377\223\253\246\377\266\307\304\377\202\377\377\377\377\3\365\367" \ - "\367\377\225\256\251\377\315\330\326\377\202\377\377\377\377\6\364\366" \ - "\366\377\223\254\246\377\223\253\247\377\235\263\260\377\223\254\247" \ - "\377\303\321\317\377\377\333\343\342\377\230\333\343\342\377\3\242\267" \ - "\263\377\223\254\247\377\346\354\353\377\207\377\377\377\377\3\320\333" \ - "\331\377\223\254\247\377\261\303\277\377\312\333\343\342\377\4\326\337" \ - "\336\377\223\254\247\377\224\255\250\377\371\373\372\377\202\377\377" \ - "\377\377\3\271\311\306\377\241\266\262\377\376\376\376\377\202\377\377" \ - "\377\377\5\253\277\273\377\223\253\247\377\263\305\302\377\223\254\247" \ - "\377\245\271\265\377\377\333\343\342\377\227\333\343\342\377\3\314\330" \ - "\326\377\223\254\247\377\247\273\267\377\207\377\377\377\377\4\376\376" \ - "\376\377\243\270\264\377\223\254\247\377\317\332\330\377\313\333\343" \ - "\342\377\3\251\274\270\377\222\254\247\377\315\330\325\377\202\377\377" \ - "\377\377\3\346\354\353\377\223\254\247\377\337\346\345\377\202\377\377" \ - "\377\377\2\344\352\350\377\223\254\246\377\202\235\263\257\377\2\223" \ - "\254\247\377\316\331\330\377\377\333\343\342\377\226\333\343\342\377" \ - "\3\256\300\275\377\223\254\247\377\325\337\335\377\207\377\377\377\377" \ - "\3\341\350\347\377\223\254\247\377\245\272\266\377\314\333\343\342\377" \ - "\3\316\331\327\377\222\253\246\377\234\263\256\377\203\377\377\377\377" \ - "\2\247\274\270\377\261\303\300\377\203\377\377\377\377\5\234\263\256" \ - "\377\223\253\246\377\263\305\301\377\223\254\247\377\260\303\277\377" \ - "\322\333\343\342\377\1\304\317\315\377\202\201\224\220\377\277\333\343" \ - "\342\377\4\325\336\335\377\225\255\250\377\232\261\255\377\373\374\373" \ - "\377\207\377\377\377\377\3\264\305\302\377\223\254\247\377\303\321\317" \ - "\377\315\333\343\342\377\3\235\263\260\377\223\253\246\377\342\351\347" \ - "\377\202\377\377\377\377\3\325\336\334\377\223\254\247\377\360\363\363" \ - "\377\202\377\377\377\377\5\315\330\326\377\223\253\246\377\247\274\267" \ - "\377\227\256\251\377\253\276\273\377\322\333\343\342\377\1\270\305\303" \ - "\377\202Slg\377\277\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\303\321\316\377\207\377\377\377\377\4\361\364\364\377\224\254\247\377" \ - "\232\262\255\377\332\342\341\377\315\333\343\342\377\3\300\317\315\377" \ - "\223\254\246\377\253\277\272\377\202\377\377\377\377\3\373\374\374\377" \ - "\232\262\255\377\303\321\316\377\202\377\377\377\377\4\372\373\373\377" \ - "\225\255\251\377\224\254\247\377\321\333\332\377\323\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\276\333\343\342\377\4\332\342\341\377\234" \ - "\263\256\377\223\254\247\377\360\363\363\377\207\377\377\377\377\3\305" \ - "\323\320\377\223\254\247\377\270\310\305\377\316\333\343\342\377\4\331" \ - "\341\340\377\226\255\251\377\223\253\247\377\363\366\365\377\202\377" \ - "\377\377\377\3\304\321\317\377\232\262\255\377\373\374\374\377\202\377" \ - "\377\377\377\3\267\310\304\377\222\253\246\377\270\310\304\377\306\333" \ - "\343\342\377\2\317\331\327\377\301\314\312\377\213\275\310\306\377\1" \ - "\242\261\256\377\202Slg\377\276\333\343\342\377\3\305\322\320\377\223" \ - "\254\247\377\262\304\300\377\207\377\377\377\377\4\374\374\374\377\233" \ - "\262\255\377\224\255\250\377\324\336\334\377\317\333\343\342\377\3\261" \ - "\303\300\377\223\253\246\377\276\315\313\377\202\377\377\377\377\3\360" \ - "\364\363\377\223\254\247\377\325\337\335\377\202\377\377\377\377\4\357" \ - "\362\362\377\222\253\246\377\231\260\253\377\332\342\341\377\301\333" \ - "\343\342\377\4\305\320\316\377\204\227\223\377e|w\377Voj\377\220Slg\377" \ - "\276\333\343\342\377\3\247\273\267\377\223\254\247\377\340\347\345\377" \ - "\207\377\377\377\377\3\327\340\336\377\223\254\247\377\254\277\274\377" \ - "\320\333\343\342\377\4\323\335\334\377\223\253\247\377\226\256\252\377" \ - "\374\375\374\377\202\377\377\377\377\2\262\304\301\377\250\274\270\377" \ - "\202\377\377\377\377\4\354\360\357\377\232\262\255\377\223\253\247\377" \ - "\306\323\321\377\277\333\343\342\377\3\325\335\334\377\202\225\221\377" \ - "Tlg\377\223Slg\377\275\333\343\342\377\4\320\333\331\377\223\254\247" \ - "\377\241\267\262\377\376\376\376\377\207\377\377\377\377\3\251\275\271" \ - "\377\223\254\247\377\312\326\324\377\321\333\343\342\377\3\244\271\264" \ - "\377\223\254\247\377\325\337\335\377\202\377\377\377\377\10\340\347\346" \ - "\377\223\254\247\377\312\327\324\377\255\300\274\377\226\256\251\377" \ - "\255\277\274\377\222\254\247\377\250\274\270\377\277\333\343\342\377" \ - "\1\207\232\226\377\225Slg\377\275\333\343\342\377\3\262\304\300\377\223" \ - "\254\247\377\316\331\327\377\207\377\377\377\377\3\350\355\354\377\223" \ - "\254\247\377\240\266\262\377\322\333\343\342\377\16\311\325\323\377\223" \ - "\254\246\377\241\266\263\377\377\377\377\377\364\367\366\377\310\325" \ - "\322\377\227\257\252\377\234\263\256\377\312\327\324\377\365\370\367" \ - "\377\376\376\376\377\240\266\261\377\223\254\247\377\321\333\332\377" \ - "\275\333\343\342\377\1\257\275\272\377\205Slg\377\4Voj\377axt\377k\201" \ - "|\377t\211\205\377\212x\215\211\377\1o\204\200\377\202Slg\377\274\333" \ - "\343\342\377\4\330\340\337\377\227\257\252\377\226\256\252\377\367\371" \ - "\371\377\207\377\377\377\377\3\273\312\307\377\223\254\247\377\277\315" \ - "\313\377\323\333\343\342\377\7\231\260\254\377\223\253\247\377\260\302" \ - "\276\377\225\256\251\377\257\301\276\377\334\344\343\377\376\376\376" \ - "\377\203\377\377\377\377\3\315\330\326\377\223\254\247\377\264\305\302" \ - "\377\275\333\343\342\377\1\201\225\221\377\203Slg\377\3~\222\216\377" \ - "\261\277\274\377\327\340\337\377\215\333\343\342\377\1\270\305\303\377" \ - "\202Slg\377\274\333\343\342\377\3\276\315\312\377\223\254\247\377\274" \ - "\314\311\377\207\377\377\377\377\4\366\370\370\377\225\256\251\377\230" \ - "\257\253\377\330\341\337\377\323\333\343\342\377\4\273\312\310\377\222" \ - "\254\246\377\244\271\265\377\356\362\361\377\206\377\377\377\377\4\366" \ - "\370\370\377\226\256\251\377\230\257\253\377\330\341\340\377\274\333" \ - "\343\342\377\1i\200{\377\202Slg\377\1\204\226\223\377\220\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\274\333\343\342\377\3\237\265\261\377" \ - "\223\254\247\377\352\357\356\377\207\377\377\377\377\3\314\330\325\377" \ - "\223\254\247\377\263\304\301\377\324\333\343\342\377\4\327\340\337\377" \ - "\227\257\252\377\226\256\252\377\367\371\371\377\207\377\377\377\377" \ - "\3\273\313\310\377\223\254\247\377\277\316\313\377\273\333\343\342\377" \ - "\2\330\340\337\377Uni\377\202Slg\377\1\321\333\331\377\220\333\343\342" \ - "\377\1\270\305\303\377\202Slg\377\273\333\343\342\377\3\312\326\324\377" \ - "\223\254\247\377\253\276\273\377\207\377\377\377\377\4\376\376\376\377" \ - "\240\265\261\377\223\254\247\377\321\333\332\377\325\333\343\342\377" \ - "\3\262\303\300\377\223\254\247\377\316\331\327\377\207\377\377\377\377" \ - "\3\350\356\355\377\223\254\247\377\241\267\262\377\273\333\343\342\377" \ - "\4\326\337\336\377Tlg\377Slg\377byt\377\221\333\343\342\377\1\330\341" \ - "\340\377\202\322\333\332\377\273\333\343\342\377\3\253\276\273\377\223" \ - "\254\247\377\330\341\337\377\207\377\377\377\377\3\335\345\344\377\223" \ - "\254\247\377\247\273\270\377\326\333\343\342\377\4\320\332\331\377\223" \ - "\254\247\377\241\267\262\377\376\376\376\377\207\377\377\377\377\3\252" \ - "\275\271\377\223\254\247\377\313\326\325\377\273\333\343\342\377\3cz" \ - "u\377Slg\377l\202~\377\316\333\343\342\377\4\323\335\334\377\224\255" \ - "\250\377\234\263\256\377\374\375\374\377\207\377\377\377\377\3\260\302" \ - "\276\377\223\254\247\377\306\323\321\377\327\333\343\342\377\3\246\273" \ - "\267\377\223\254\247\377\340\347\345\377\207\377\377\377\377\3\327\340" \ - "\336\377\223\254\247\377\254\277\274\377\273\333\343\342\377\4\207\231" \ - "\226\377Slg\377Vni\377\327\337\336\377\315\333\343\342\377\3\267\307" \ - "\304\377\223\254\247\377\307\324\321\377\207\377\377\377\377\4\356\362" \ - "\361\377\223\254\247\377\234\263\257\377\332\342\341\377\327\333\343" \ - "\342\377\3\304\322\317\377\223\254\247\377\262\304\300\377\207\377\377" \ - "\377\377\4\374\374\374\377\233\262\256\377\224\255\250\377\325\336\335" \ - "\377\272\333\343\342\377\1\305\317\316\377\202Slg\377\1\271\306\304\377" \ - "\220\333\343\342\377\1\307\322\320\377\202\216\237\234\377\271\333\343" \ - "\342\377\4\331\342\341\377\232\261\255\377\224\255\250\377\363\366\365" \ - "\377\207\377\377\377\377\3\302\320\315\377\223\254\247\377\272\312\307" \ - "\377\330\333\343\342\377\4\332\342\341\377\233\262\256\377\223\254\247" \ - "\377\360\363\363\377\207\377\377\377\377\3\306\323\320\377\223\254\247" \ - "\377\270\310\305\377\273\333\343\342\377\4\232\252\247\377Slg\377d{v" \ - "\377\317\330\327\377\217\333\343\342\377\1\270\305\303\377\202Slg\377" \ - "\271\333\343\342\377\3\303\320\316\377\223\254\247\377\266\307\303\377" \ - "\207\377\377\377\377\4\372\373\373\377\231\260\254\377\225\255\251\377" \ - "\326\337\336\377\331\333\343\342\377\3\271\311\306\377\223\254\247\377" \ - "\303\321\316\377\207\377\377\377\377\4\362\365\364\377\224\254\247\377" \ - "\233\262\255\377\332\342\341\377\273\333\343\342\377\4\226\246\243\377" \ - "Tmh\377l\201}\377\267\303\301\377\216\333\343\342\377\1\270\305\303\377" \ - "\202Slg\377\271\333\343\342\377\3\244\271\265\377\223\254\247\377\343" \ - "\352\350\377\207\377\377\377\377\3\323\335\333\377\223\254\247\377\256" \ - "\301\275\377\332\333\343\342\377\4\325\336\335\377\225\255\250\377\232" \ - "\261\254\377\373\374\373\377\207\377\377\377\377\3\264\306\302\377\223" \ - "\254\247\377\304\321\317\377\271\333\343\342\377\1\317\330\327\377\202" \ - "\301\314\312\377\10\246\265\262\377^vq\377Slg\377k\201}\377\226\247\244" \ - "\377\245\264\261\377\263\300\276\377\277\313\311\377\211\301\314\312" \ - "\377\1\245\264\261\377\202Slg\377\270\333\343\342\377\3\316\331\327\377" \ - "\223\254\247\377\245\271\265\377\210\377\377\377\377\3\246\272\266\377" \ - "\223\254\247\377\315\330\326\377\333\333\343\342\377\3\255\300\274\377" \ - "\223\254\247\377\325\336\334\377\207\377\377\377\377\3\342\350\347\377" \ - "\223\254\247\377\245\272\266\377\271\333\343\342\377\1\233\253\250\377" \ - "\226Slg\377\270\333\343\342\377\3\260\302\276\377\223\254\247\377\322" \ - "\334\332\377\207\377\377\377\377\3\344\352\351\377\223\254\247\377\243" \ - "\270\264\377\334\333\343\342\377\3\314\327\325\377\223\254\247\377\247" \ - "\273\267\377\207\377\377\377\377\4\376\376\376\377\243\270\264\377\223" \ - "\254\247\377\317\332\330\377\270\333\343\342\377\1\233\253\250\377\226" \ - "Slg\377\267\333\343\342\377\4\326\337\336\377\226\256\251\377\230\260" \ - "\253\377\371\373\372\377\207\377\377\377\377\3\267\307\304\377\223\254" \ - "\247\377\301\317\315\377\335\333\343\342\377\3\241\267\263\377\223\254" \ - "\247\377\346\354\353\377\207\377\377\377\377\3\320\333\331\377\223\254" \ - "\247\377\261\303\277\377\270\333\343\342\377\1\233\253\250\377\226Sl" \ - "g\377\267\333\343\342\377\3\273\313\310\377\223\254\247\377\300\317\314" \ - "\377\207\377\377\377\377\4\363\366\366\377\224\255\250\377\231\260\254" \ - "\377\331\341\340\377\335\333\343\342\377\3\300\316\314\377\223\254\247" \ - "\377\271\311\306\377\207\377\377\377\377\4\371\372\372\377\227\257\253" \ - "\377\226\256\252\377\327\340\337\377\267\333\343\342\377\3\233\253\250" \ - "\377Slg\377[sn\377\221x\215\211\377\1o\204\200\377\202Slg\377\266\333" \ - "\343\342\377\4\332\342\341\377\235\264\257\377\223\254\247\377\356\361" \ - "\361\377\207\377\377\377\377\3\310\325\322\377\223\254\247\377\266\306" \ - "\303\377\336\333\343\342\377\4\330\341\340\377\230\260\253\377\225\255" \ - "\251\377\365\367\367\377\207\377\377\377\377\3\277\316\313\377\223\254" \ - "\247\377\275\314\311\377\267\333\343\342\377\3\233\253\250\377Slg\377" \ - "p\205\201\377\221\333\343\342\377\1\270\305\303\377\202Slg\377\266\333" \ - "\343\342\377\3\307\324\322\377\223\254\247\377\257\301\276\377\207\377" \ - "\377\377\377\4\374\375\375\377\235\264\257\377\223\254\247\377\323\334" \ - "\333\377\337\333\343\342\377\3\264\305\302\377\223\254\247\377\312\326" \ - "\324\377\207\377\377\377\377\3\354\361\360\377\223\254\247\377\236\265" \ - "\260\377\267\333\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221" \ - "\333\343\342\377\1\270\305\303\377\202Slg\377\266\333\343\342\377\3\251" \ - "\274\271\377\223\254\247\377\334\344\343\377\207\377\377\377\377\3\332" \ - "\342\340\377\223\254\247\377\252\275\271\377\340\333\343\342\377\4\322" \ - "\334\332\377\223\254\247\377\236\265\260\377\375\375\375\377\207\377" \ - "\377\377\377\3\256\300\275\377\223\254\247\377\310\324\322\377\266\333" \ - "\343\342\377\3\233\253\250\377Slg\377p\205\201\377\221\333\343\342\377" \ - "\1\270\305\303\377\202Slg\377\265\333\343\342\377\4\322\334\332\377\223" \ - "\254\247\377\237\265\260\377\375\376\375\377\207\377\377\377\377\3\254" \ - "\277\273\377\223\254\247\377\310\324\322\377\341\333\343\342\377\3\251" \ - "\274\271\377\223\254\247\377\333\343\342\377\207\377\377\377\377\3\333" \ - "\343\342\377\223\254\247\377\252\275\272\377\266\333\343\342\377\3\277" \ - "\312\310\377\237\256\253\377\254\272\270\377\221\333\343\342\377\1\323" \ - "\334\333\377\202\275\310\306\377\265\333\343\342\377\3\264\305\302\377" \ - "\223\254\247\377\313\327\324\377\207\377\377\377\377\3\353\360\357\377" \ - "\223\254\247\377\236\265\260\377\342\333\343\342\377\3\307\323\321\377" \ - "\223\254\247\377\256\301\275\377\207\377\377\377\377\4\375\375\375\377" \ - "\236\264\260\377\224\254\247\377\323\334\333\377\377\333\343\342\377" \ - "\5\333\343\342\377\331\341\340\377\230\260\253\377\225\256\251\377\366" \ - "\370\367\377\207\377\377\377\377\3\275\314\311\377\223\254\247\377\274" \ - "\313\311\377\342\333\343\342\377\4\332\342\341\377\235\264\257\377\223" \ - "\254\247\377\355\361\360\377\207\377\377\377\377\3\312\326\323\377\223" \ - "\254\247\377\266\306\303\377\377\333\343\342\377\4\333\343\342\377\300" \ - "\316\314\377\223\254\247\377\271\311\306\377\207\377\377\377\377\4\370" \ - "\371\371\377\227\257\252\377\226\256\252\377\327\340\336\377\343\333" \ - "\343\342\377\3\273\313\310\377\223\254\247\377\277\316\313\377\207\377" \ - "\377\377\377\4\364\367\366\377\225\255\250\377\231\260\254\377\331\341" \ - "\340\377\310\333\343\342\377\3\307\322\320\377\305\320\316\377\324\334" \ - "\333\377\264\333\343\342\377\3\241\267\263\377\223\254\247\377\347\354" \ - "\353\377\207\377\377\377\377\3\317\332\330\377\223\254\247\377\261\303" \ - "\277\377\344\333\343\342\377\4\326\337\336\377\226\256\251\377\227\257" \ - "\253\377\371\372\372\377\207\377\377\377\377\3\270\310\305\377\223\254" \ - "\247\377\301\317\315\377\310\333\343\342\377\3_vr\377Slg\377\254\271" \ - "\267\377\263\333\343\342\377\3\314\327\325\377\223\254\247\377\250\274" \ - "\270\377\207\377\377\377\377\4\376\376\376\377\242\270\263\377\223\254" \ - "\247\377\317\332\330\377\345\333\343\342\377\3\260\302\276\377\223\254" \ - "\247\377\321\333\331\377\207\377\377\377\377\3\346\353\352\377\223\254" \ - "\247\377\243\270\264\377\310\333\343\342\377\3_vr\377Slg\377\254\271" \ - "\267\377\263\333\343\342\377\3\255\300\274\377\223\254\247\377\325\337" \ - "\335\377\207\377\377\377\377\3\340\347\346\377\223\254\247\377\245\272" \ - "\266\377\346\333\343\342\377\3\316\331\327\377\223\254\247\377\244\271" \ - "\265\377\210\377\377\377\377\3\247\273\267\377\223\254\247\377\315\330" \ - "\326\377\307\333\343\342\377\3^vq\377Slg\377\254\271\267\377\262\333" \ - "\343\342\377\4\325\336\335\377\225\255\250\377\232\261\255\377\373\374" \ - "\374\377\207\377\377\377\377\3\263\304\301\377\223\254\247\377\303\321" \ - "\317\377\347\333\343\342\377\3\244\271\265\377\223\254\247\377\342\351" \ - "\347\377\207\377\377\377\377\3\324\336\334\377\223\254\247\377\256\301" \ - "\275\377\304\333\343\342\377\3\317\331\327\377\236\255\253\377i\177{" \ - "\377\202Slg\377\1\254\271\267\377\262\333\343\342\377\3\271\311\306\377" \ - "\223\254\247\377\304\322\317\377\207\377\377\377\377\4\361\364\363\377" \ - "\223\254\247\377\226\256\251\377\332\342\341\377\347\333\343\342\377" \ - "\3\302\320\316\377\223\254\247\377\265\306\302\377\202\377\377\377\377" \ - "\3\371\373\372\377\356\361\361\377\375\375\375\377\202\377\377\377\377" \ - "\4\372\373\373\377\232\261\254\377\225\255\251\377\326\337\336\377\300" \ - "\333\343\342\377\4\331\341\340\377\263\300\276\377~\222\216\377Uni\377" \ - "\204Slg\377\1\254\271\267\377\261\333\343\342\377\4\332\342\341\377\233" \ - "\262\256\377\223\254\247\377\361\364\363\377\207\377\377\377\377\1\304" \ - "\322\317\377\202\223\254\247\377\1\312\326\324\377\347\333\343\342\377" \ - "\5\331\341\340\377\232\261\254\377\223\254\247\377\302\320\315\377\244" \ - "\271\265\377\202\223\254\247\377\7\226\256\251\377\251\275\271\377\331" \ - "\342\340\377\377\377\377\377\303\321\316\377\223\254\247\377\272\312" \ - "\307\377\276\333\343\342\377\3\310\322\321\377\224\244\241\377axt\377" \ - "\207Slg\377\1\254\271\267\377\261\333\343\342\377\3\304\322\317\377\223" \ - "\254\247\377\263\304\301\377\207\377\377\377\377\5\373\374\374\377\233" \ - "\262\255\377\225\255\251\377\233\262\256\377\264\305\302\377\350\333" \ - "\343\342\377\1\260\303\277\377\202\224\255\250\377\13\277\315\312\377" \ - "\330\341\337\377\345\353\351\377\322\334\332\377\263\304\301\377\223" \ - "\254\247\377\267\307\304\377\353\357\356\377\223\254\247\377\234\263" \ - "\257\377\332\342\341\377\272\333\343\342\377\3\326\336\335\377\251\267" \ - "\265\377t\211\205\377\212Slg\377\1\254\271\267\377\261\333\343\342\377" \ - "\3\246\272\266\377\223\254\247\377\340\347\346\377\207\377\377\377\377" \ - "\5\326\337\335\377\223\254\247\377\271\311\306\377\262\304\300\377\246" \ - "\272\266\377\347\333\343\342\377\4\331\341\340\377\236\264\260\377\240" \ - "\266\261\377\351\356\355\377\205\377\377\377\377\6\330\341\337\377\226" \ - "\256\252\377\275\314\311\377\261\303\300\377\223\254\247\377\306\323" \ - "\320\377\270\333\343\342\377\3\276\312\310\377\211\234\230\377[sn\377" \ - "\211Slg\377\4Voj\377Umh\377Slg\377\254\271\267\377\260\333\343\342\377" \ - "\4\320\332\331\377\223\254\247\377\242\267\263\377\376\376\376\377\207" \ - "\377\377\377\377\5\250\274\270\377\223\254\247\377\346\354\353\377\272" \ - "\312\307\377\242\267\263\377\347\333\343\342\377\3\265\306\302\377\225" \ - "\255\250\377\352\357\356\377\207\377\377\377\377\5\322\334\332\377\223" \ - "\254\247\377\311\325\323\377\223\254\247\377\247\273\270\377\265\333" \ - "\343\342\377\3\320\332\330\377\237\256\253\377k\201|\377\212Slg\377\6" \ - "n\204\200\377\242\261\256\377\321\333\331\377_vr\377Slg\377\254\271\267" \ - "\377\260\333\343\342\377\3\262\303\300\377\223\254\247\377\317\332\330" \ - "\377\204\377\377\377\377\11\367\371\370\377\352\357\356\377\377\377\377" \ - "\377\347\355\354\377\223\254\247\377\247\273\267\377\377\377\377\377" \ - "\244\271\265\377\257\301\276\377\347\333\343\342\377\2\234\263\256\377" \ - "\303\321\316\377\211\377\377\377\377\5\250\274\270\377\267\307\304\377" \ - "\241\266\262\377\223\254\247\377\321\333\332\377\261\333\343\342\377" \ - "\4\331\342\341\377\264\301\277\377\200\223\220\377Vni\377\211Slg\377" \ - "\3^vq\377\220\241\236\377\303\316\314\377\203\333\343\342\377\3_vr\377" \ - "Slg\377\254\271\267\377\257\333\343\342\377\1\327\340\337\377\202\227" \ - "\257\252\377\1\370\371\371\377\203\377\377\377\377\12\352\357\356\377" \ - "\226\256\252\377\223\254\247\377\277\316\313\377\271\311\306\377\223" \ - "\254\247\377\325\337\335\377\351\356\355\377\223\254\247\377\277\316" \ - "\313\377\346\333\343\342\377\3\325\336\335\377\223\254\247\377\335\344" \ - "\343\377\211\377\377\377\377\5\302\320\315\377\241\267\262\377\315\331" \ - "\326\377\223\254\247\377\263\304\301\377\241\333\343\342\377\6\274\307" \ - "\306\377\217\241\235\377t\211\205\377|\217\214\377\242\261\256\377\310" \ - "\322\321\377\210\333\343\342\377\3\311\323\322\377\225\246\243\377by" \ - "t\377\213Slg\377\2\245\264\261\377\330\341\340\377\205\333\343\342\377" \ - "\3_vr\377Slg\377\254\271\267\377\257\333\343\342\377\3\314\327\325\377" \ - "\223\254\247\377\264\305\301\377\204\377\377\377\377\12\307\324\322\377" \ - "\226\256\252\377\261\303\300\377\230\260\253\377\224\255\250\377\232" \ - "\261\255\377\367\371\370\377\244\271\265\377\241\266\262\377\331\341" \ - "\340\377\346\333\343\342\377\3\312\326\324\377\223\254\247\377\353\360" \ - "\357\377\211\377\377\377\377\5\320\333\331\377\223\254\247\377\361\364" \ - "\364\377\223\254\247\377\243\270\264\377\237\333\343\342\377\3\327\340" \ - "\337\377\217\241\235\377Tlg\377\205Slg\377\1\236\255\253\377\204\333" \ - "\343\342\377\3\326\337\336\377\253\271\266\377v\212\206\377\212Slg\377" \ - "\2g}y\377\222\243\240\377\202Slg\377\1\305\320\316\377\206\333\343\342" \ - "\377\3\264\301\277\377\260\275\273\377\314\326\324\377\257\333\343\342" \ - "\377\3\316\331\330\377\223\254\247\377\263\304\301\377\204\377\377\377" \ - "\377\11\351\356\355\377\226\256\251\377\223\254\247\377\251\275\271\377" \ - "\223\254\247\377\272\312\307\377\244\271\265\377\225\255\251\377\316" \ - "\331\327\377\347\333\343\342\377\3\326\337\336\377\223\254\247\377\332" \ - "\343\341\377\211\377\377\377\377\5\277\316\313\377\243\270\264\377\363" \ - "\365\365\377\223\254\247\377\246\272\266\377\237\333\343\342\377\1\217" \ - "\241\235\377\203Slg\377\2e{w\377czu\377\203Slg\377\5\254\271\267\377" \ - "\333\343\342\377\300\313\311\377\213\235\232\377[sn\377\211Slg\377\5" \ - "Yql\377\206\231\225\377\273\307\305\377\333\343\342\377\316\327\326\377" \ - "\202Slg\377\1\305\320\316\377\270\333\343\342\377\3\321\334\332\377\223" \ - "\254\247\377\256\301\275\377\205\377\377\377\377\3\366\370\367\377\346" \ - "\354\352\377\237\265\260\377\202\223\254\247\377\2\240\266\262\377\315" \ - "\330\327\377\351\333\343\342\377\2\235\264\257\377\275\314\311\377\210" \ - "\377\377\377\377\6\375\375\375\377\243\271\264\377\271\311\306\377\356" \ - "\362\361\377\223\254\247\377\251\275\271\377\236\333\343\342\377\5\274" \ - "\307\306\377Tlg\377Slg\377e{w\377\300\313\311\377\202\333\343\342\377" \ - "\5\274\307\306\377axt\377Slg\377Vni\377k\201}\377\212Slg\377\3r\207\203" \ - "\377\246\265\262\377\324\335\334\377\203\333\343\342\377\1\316\327\326" \ - "\377\202Slg\377\1\305\320\316\377\270\333\343\342\377\3\324\336\334\377" \ - "\223\254\247\377\251\275\271\377\206\377\377\377\377\5\335\344\343\377" \ - "\223\254\247\377\233\262\255\377\300\316\314\377\331\341\340\377\352" \ - "\333\343\342\377\3\272\312\307\377\223\254\247\377\343\351\350\377\207" \ - "\377\377\377\377\6\310\325\322\377\224\254\250\377\350\355\354\377\351" \ - "\356\355\377\223\254\247\377\254\277\273\377\236\333\343\342\377\1\217" \ - "\241\235\377\202Slg\377\1\300\313\311\377\204\333\343\342\377\1\270\305" \ - "\303\377\212Slg\377\3_wr\377\222\243\240\377\306\320\317\377\206\333" \ - "\343\342\377\1\316\327\326\377\202Slg\377\1\305\320\316\377\270\333\343" \ - "\342\377\3\327\340\337\377\223\254\247\377\245\272\266\377\206\377\377" \ - "\377\377\3\257\301\276\377\223\254\247\377\306\323\320\377\354\333\343" \ - "\342\377\4\332\342\341\377\244\271\265\377\233\262\255\377\335\345\343" \ - "\377\204\377\377\377\377\10\375\376\375\377\312\326\324\377\224\254\250" \ - "\377\307\324\321\377\377\377\377\377\344\352\351\377\223\254\247\377" \ - "\257\301\276\377\236\333\343\342\377\3t\211\205\377Slg\377g~y\377\206" \ - "\333\343\342\377\1\\to\377\206Slg\377\4Uni\377}\221\215\377\261\277\274" \ - "\377\330\341\340\377\210\333\343\342\377\1\316\327\326\377\202Slg\377" \ - "\1\305\320\316\377\270\333\343\342\377\3\332\342\341\377\223\254\247" \ - "\377\240\266\262\377\205\377\377\377\377\4\356\361\361\377\223\254\247" \ - "\377\234\263\257\377\332\342\341\377\355\333\343\342\377\17\324\336\334" \ - "\377\250\273\270\377\223\254\247\377\261\303\277\377\312\326\324\377" \ - "\327\340\336\377\304\322\317\377\246\273\267\377\223\254\247\377\304" \ - "\322\317\377\375\375\375\377\377\377\377\377\340\347\345\377\223\254" \ - "\247\377\262\303\300\377\236\333\343\342\377\3v\212\206\377Slg\377f|" \ - "x\377\206\333\343\342\377\1[sn\377\204Slg\377\3i\177{\377\235\255\252" \ - "\377\317\330\327\377\213\333\343\342\377\1\316\327\326\377\202Slg\377" \ - "\1\305\320\316\377\271\333\343\342\377\2\225\255\251\377\234\263\256" \ - "\377\205\377\377\377\377\3\300\317\314\377\223\254\247\377\272\312\307" \ - "\377\360\333\343\342\377\7\277\316\313\377\245\272\266\377\227\257\252" \ - "\377\223\254\247\377\225\255\250\377\257\301\276\377\346\353\352\377" \ - "\203\377\377\377\377\3\333\343\342\377\223\254\247\377\265\306\302\377" \ - "\236\333\343\342\377\1\220\242\236\377\202Slg\377\1\277\312\310\377\204" \ - "\333\343\342\377\1\266\302\300\377\205Slg\377\3z\216\212\377\257\274" \ - "\272\377\330\340\337\377\213\333\343\342\377\1\316\327\326\377\202Sl" \ - "g\377\1\305\320\316\377\271\333\343\342\377\2\230\260\253\377\230\257" \ - "\253\377\204\377\377\377\377\4\371\373\372\377\230\260\253\377\225\255" \ - "\251\377\326\337\336\377\362\333\343\342\377\4\332\342\341\377\266\307" \ - "\304\377\223\254\247\377\302\320\315\377\204\377\377\377\377\3\326\337" \ - "\335\377\223\254\247\377\267\310\305\377\236\333\343\342\377\14\276\311" \ - "\307\377Tmh\377Slg\377d{v\377\274\307\306\377\333\343\342\377\321\332" \ - "\331\377\235\255\252\377^vq\377Slg\377Vni\377k\201}\377\204Slg\377\3" \ - "^uq\377\217\241\235\377\304\317\315\377\211\333\343\342\377\1\316\327" \ - "\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\2\233\262\255" \ - "\377\223\254\247\377\204\377\377\377\377\3\322\334\332\377\223\254\247" \ - "\377\256\301\275\377\364\333\343\342\377\4\325\336\335\377\225\255\250" \ - "\377\231\261\254\377\372\373\373\377\203\377\377\377\377\3\321\334\332" \ - "\377\223\254\247\377\272\312\307\377\237\333\343\342\377\1\223\244\240" \ - "\377\203Slg\377\2_vr\377Wpk\377\203Slg\377\5\254\271\267\377\333\343" \ - "\342\377\300\314\312\377\214\236\233\377\\so\377\204Slg\377\3p\205\201" \ - "\377\245\263\261\377\324\334\333\377\206\333\343\342\377\1\316\327\326" \ - "\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\3\236\264\260\377" \ - "\223\254\247\377\373\374\374\377\203\377\377\377\377\3\245\271\265\377" \ - "\223\254\247\377\315\330\326\377\365\333\343\342\377\3\255\300\274\377" \ - "\223\254\247\377\324\336\334\377\203\377\377\377\377\3\315\330\326\377" \ - "\223\254\247\377\275\314\312\377\237\333\343\342\377\3\330\340\337\377" \ - "\225\246\243\377Umh\377\205Slg\377\1\236\255\253\377\204\333\343\342" \ - "\377\4\327\337\336\377\254\271\267\377w\214\210\377Tlg\377\203Slg\377" \ - "\3Xpk\377\205\230\224\377\272\306\304\377\204\333\343\342\377\1\316\327" \ - "\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377\3\241\266\262" \ - "\377\223\254\247\377\366\370\370\377\202\377\377\377\377\3\343\352\350" \ - "\377\223\254\247\377\243\270\264\377\366\333\343\342\377\3\314\327\325" \ - "\377\223\254\247\377\246\273\267\377\203\377\377\377\377\3\307\324\322" \ - "\377\223\254\247\377\300\316\314\377\241\333\343\342\377\6\302\315\313" \ - "\377\230\250\245\377}\220\215\377\203\226\222\377\246\265\262\377\311" \ - "\324\322\377\210\333\343\342\377\3\313\325\323\377\227\250\245\377d{" \ - "v\377\204Slg\377\5f}x\377\233\253\250\377\315\327\325\377\333\343\342" \ - "\377\316\327\326\377\202Slg\377\1\305\320\316\377\271\333\343\342\377" \ - "\3\244\271\265\377\223\254\247\377\362\365\364\377\202\377\377\377\377" \ - "\3\266\307\303\377\223\254\247\377\301\317\315\377\367\333\343\342\377" \ - "\3\241\267\263\377\223\254\247\377\345\353\352\377\202\377\377\377\377" \ - "\3\303\321\316\377\223\254\247\377\303\321\317\377\261\333\343\342\377" \ - "\4\332\342\341\377\267\304\302\377\203\226\222\377Wpk\377\203Slg\377" \ - "\3Tmh\377|\217\214\377\245\264\261\377\202Slg\377\1\305\320\316\377\206" \ - "\333\343\342\377\3\317\331\327\377\316\327\326\377\326\337\336\377\260" \ - "\333\343\342\377\10\247\273\267\377\223\254\247\377\301\317\314\377\333" \ - "\343\341\377\344\352\351\377\224\255\250\377\231\260\254\377\331\341" \ - "\340\377\367\333\343\342\377\10\300\316\314\377\223\254\247\377\265\306" \ - "\303\377\345\353\351\377\322\335\333\377\250\274\270\377\223\254\247" \ - "\377\306\323\321\377\264\333\343\342\377\3\323\334\332\377\243\262\257" \ - "\377o\204\200\377\206Slg\377\1\267\304\302\377\206\333\343\342\377\3" \ - "_vr\377Slg\377\254\271\267\377\260\333\343\342\377\1\252\275\271\377" \ - "\205\223\254\247\377\1\266\306\303\377\370\333\343\342\377\2\330\341" \ - "\340\377\230\260\253\377\205\223\254\247\377\1\311\325\323\377\267\333" \ - "\343\342\377\3\303\316\314\377\217\240\235\377]up\377\204Slg\377\3r\207" \ - "\203\377\246\265\262\377\324\335\334\377\203\333\343\342\377\3_vr\377" \ - "Slg\377\254\271\267\377\260\333\343\342\377\7\327\337\336\377\220\243" \ - "\237\377k\204\177\377u\216\211\377\205\235\230\377\235\263\257\377\323" \ - "\334\333\377\371\333\343\342\377\7\267\307\304\377\233\261\255\377~\227" \ - "\222\377q\212\205\377m\206\201\377\273\310\306\377\332\342\341\377\271" \ - "\333\343\342\377\4\330\340\337\377\256\274\271\377z\216\212\377Tmh\377" \ - "\203Slg\377\7Yql\377\206\231\225\377\273\307\305\377\333\343\342\377" \ - "_vr\377Slg\377\254\271\267\377\261\333\343\342\377\1x\214\210\377\202" \ - "Slg\377\1~\221\216\377\374\333\343\342\377\5\325\335\334\377axt\377S" \ - "lg\377Tmh\377\251\270\265\377\275\333\343\342\377\3\315\326\325\377\232" \ - "\252\247\377f}x\377\204Slg\377\4g}y\377Woj\377Slg\377\254\271\267\377" \ - "\261\333\343\342\377\1}\220\215\377\202Slg\377\1\240\257\254\377\375" \ - "\333\343\342\377\1f}x\377\202Slg\377\1\222\243\240\377\300\333\343\342" \ - "\377\3\272\306\304\377\206\230\225\377Xql\377\204Slg\377\1\254\271\267" \ - "\377\261\333\343\342\377\4\216\237\234\377Slg\377_wr\377\326\336\335" \ - "\377\375\333\343\342\377\4r\207\203\377Slg\377axt\377\317\330\327\377" \ - "\302\333\343\342\377\3\324\334\333\377\246\264\262\377q\207\202\377\202" \ - "Slg\377\1\254\271\267\377\261\333\343\342\377\3\237\257\254\377Slg\377" \ - "\240\257\254\377\376\333\343\342\377\3\216\240\235\377Wpk\377\246\264" \ - "\262\377\306\333\343\342\377\3_vr\377Slg\377\254\271\267\377\261\333" \ - "\343\342\377\3\260\276\273\377axt\377\326\337\336\377\376\333\343\342" \ - "\377\2\265\302\277\377v\213\207\377\307\333\343\342\377\3_vr\377Slg\377" \ - "\254\271\267\377\261\333\343\342\377\2\302\315\313\377\242\261\256\377" \ - "\377\333\343\342\377\311\333\343\342\377\3z\216\212\377p\205\201\377" \ - "\266\303\301\377\261\333\343\342\377\2\326\336\335\377\327\340\337\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343" \ - "\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377" \ - "\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333" \ - "\343\342\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342" \ - "\377\377\333\343\342\377\377\333\343\342\377\377\333\343\342\377\377" \ - "\333\343\342\377\344\333\343\342\377") + "\307\354\354\341\377\2\342\345\333\377\344\346\334\377\377\354\354\341" \ + "\377\221\354\354\341\377\3\242\256\246\377t\210\201\377\222\241\231\377" \ + "\315\354\354\341\377\4\325\333\322\377\264\304\275\377\245\271\263\377" \ + "\230\257\252\377\202\223\254\247\377\4\231\261\253\377\250\273\264\377" \ + "\266\305\276\377\333\340\326\377\377\354\354\341\377\215\354\354\341" \ + "\377\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341\377\1\275" \ + "\312\302\377\203\223\254\247\377\2\237\265\261\377\235\264\257\377\203" \ + "\223\254\247\377\1\310\322\311\377\377\354\354\341\377\215\354\354\341" \ + "\377\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341\377\4\275" \ + "\312\302\377\223\254\247\377\304\321\317\377\370\372\371\377\202\377" \ + "\377\377\377\4\370\371\371\377\267\307\304\377\223\254\247\377\310\322" \ + "\311\377\377\354\354\341\377\1\351\351\337\377\214\347\350\335\377\3" \ + "\213\233\223\377Slg\377y\214\205\377\315\354\354\341\377\3\275\312\302" \ + "\377\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313" \ + "\377\223\254\247\377\310\322\311\377\371\354\354\341\377\6\353\353\341" \ + "\377\307\315\304\377\226\244\234\377x\213\204\377`wr\377Woj\377\217S" \ + "lg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377\223\254\247" \ + "\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377\223\254\247" \ + "\377\310\322\311\377\370\354\354\341\377\2\320\324\313\377r\206\200\377" \ + "\224Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377\223" \ + "\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377\223" \ + "\254\247\377\310\322\311\377\367\354\354\341\377\2\314\321\307\377[s" \ + "m\377\225Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377" \ + "\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377" \ + "\223\254\247\377\310\322\311\377\366\354\354\341\377\2\351\351\337\377" \ + "i~x\377\226Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377" \ + "\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377" \ + "\223\254\247\377\310\322\311\377\366\354\354\341\377\1\270\300\267\377" \ + "\204Slg\377\5`wr\377\231\246\236\377\267\277\266\377\304\313\301\377" \ + "\322\326\314\377\214\331\334\322\377\3\205\226\217\377Slg\377y\214\205" \ + "\377\315\354\354\341\377\3\275\312\302\377\223\254\247\377\320\333\330" \ + "\377\204\377\377\377\377\3\277\316\313\377\223\254\247\377\310\322\311" \ + "\377\366\354\354\341\377\1\215\234\225\377\203Slg\377\2\225\243\234\377" \ + "\351\351\337\377\220\354\354\341\377\3\215\234\225\377Slg\377y\214\205" \ + "\377\315\354\354\341\377\3\275\312\302\377\223\254\247\377\320\333\330" \ + "\377\204\377\377\377\377\3\277\316\313\377\223\254\247\377\310\322\311" \ + "\377\366\354\354\341\377\1x\213\205\377\202Slg\377\2y\214\205\377\353" \ + "\353\340\377\221\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377" \ + "\315\354\354\341\377\3\275\312\302\377\223\254\247\377\320\333\330\377" \ + "\204\377\377\377\377\3\277\316\313\377\223\254\247\377\310\322\311\377" \ + "\366\354\354\341\377\1p\204~\377\202Slg\377\1\250\263\252\377\222\354" \ + "\354\341\377\3\250\263\252\377~\220\211\377\231\247\237\377\315\354\354" \ + "\341\377\3\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377" \ + "\377\377\3\277\316\313\377\223\254\247\377\310\322\311\377\366\354\354" \ + "\341\377\1\204\225\216\377\202Slg\377\1\301\310\277\377\342\354\354\341" \ + "\377\3\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377" \ + "\377\3\277\316\313\377\223\254\247\377\310\322\311\377\366\354\354\341" \ + "\377\1\234\251\241\377\202Slg\377\1\262\274\263\377\342\354\354\341\377" \ + "\3\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377\377" \ + "\3\277\316\313\377\223\254\247\377\310\322\311\377\366\354\354\341\377" \ + "\4\326\332\320\377Unh\377Slg\377\221\240\231\377\222\354\354\341\377" \ + "\3\341\342\330\377\331\334\322\377\336\340\326\377\315\354\354\341\377" \ + "\3\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377\377" \ + "\3\277\316\313\377\223\254\247\377\310\322\311\377\367\354\354\341\377" \ + "\4\215\234\225\377Slg\377cys\377\336\340\326\377\221\354\354\341\377" \ + "\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341\377\3\275\312" \ + "\302\377\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316" \ + "\313\377\223\254\247\377\310\322\311\377\367\354\354\341\377\5\346\347" \ + "\334\377y\214\205\377Slg\377q\205\177\377\345\346\333\377\220\354\354" \ + "\341\377\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341\377\3" \ + "\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377\377" \ + "\3\277\316\313\377\223\254\247\377\310\322\311\377\370\354\354\341\377" \ + "\6\345\346\334\377\206\227\220\377Slg\377e{u\377\243\257\247\377\337" \ + "\341\326\377\216\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377" \ + "\315\354\354\341\377\3\275\312\302\377\223\254\247\377\320\333\330\377" \ + "\204\377\377\377\377\3\277\316\313\377\223\254\247\377\310\322\311\377" \ + "\372\354\354\341\377\10\303\312\300\377dzt\377Slg\377Voi\377k\200z\377" \ + "|\216\210\377\214\234\224\377\231\247\237\377\212\232\250\240\377\3n" \ + "\203}\377Slg\377y\214\205\377\315\354\354\341\377\3\275\312\302\377\223" \ + "\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377\223" \ + "\254\247\377\310\322\311\377\371\354\354\341\377\2\273\303\272\377y\214" \ + "\205\377\223Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302" \ + "\377\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313" \ + "\377\223\254\247\377\310\322\311\377\370\354\354\341\377\1\232\247\237" \ + "\377\225Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377" \ + "\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377" \ + "\223\254\247\377\310\322\311\377\367\354\354\341\377\1\242\256\246\377" \ + "\226Slg\377\1y\214\205\377\315\354\354\341\377\3\275\312\302\377\223" \ + "\254\247\377\320\333\330\377\204\377\377\377\377\3\277\316\313\377\223" \ + "\254\247\377\310\322\311\377\366\354\354\341\377\2\341\342\330\377[s" \ + "m\377\204Slg\377\4Zrm\377o\203}\377{\216\207\377\210\230\221\377\214" \ + "\214\234\224\377\3i~x\377Slg\377y\214\205\377\315\354\354\341\377\3\275" \ + "\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377\377\3\277" \ + "\316\313\377\223\254\247\377\310\322\311\377\366\354\354\341\377\1\244" \ + "\260\250\377\203Slg\377\3f|v\377\261\272\262\377\345\346\334\377\217" \ + "\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341" \ + "\377\3\275\312\302\377\223\254\247\377\320\333\330\377\204\377\377\377" \ + "\377\3\277\316\313\377\223\254\247\377\310\322\311\377\366\354\354\341" \ + "\377\1\212\232\223\377\202Slg\377\2[sn\377\324\330\316\377\221\354\354" \ + "\341\377\3\215\234\225\377Slg\377y\214\205\377\315\354\354\341\377\3" \ + "\275\312\302\377\223\254\247\377\315\331\326\377\204\377\377\377\377" \ + "\3\274\314\310\377\223\254\247\377\310\322\312\377\366\354\354\341\377" \ + "\1u\211\202\377\202Slg\377\1\232\247\237\377\222\354\354\341\377\3\215" \ + "\234\225\377Slg\377y\214\205\377\315\354\354\341\377\3\314\325\314\377" \ + "\223\254\247\377\264\305\302\377\204\377\377\377\377\3\243\270\264\377" \ + "\223\254\247\377\327\335\324\377\366\354\354\341\377\1v\212\203\377\202" \ + "Slg\377\1\265\276\265\377\222\354\354\341\377\3\330\333\321\377\312\320" \ + "\306\377\323\327\315\377\315\354\354\341\377\4\344\346\334\377\223\254" \ + "\247\377\231\261\254\377\375\376\376\377\202\377\377\377\377\4\362\365" \ + "\365\377\223\254\247\377\230\260\252\377\353\353\340\377\366\354\354" \ + "\341\377\1\215\235\225\377\202Slg\377\1\301\310\277\377\340\354\354\341" \ + "\377\6\337\342\330\377\271\307\275\377\223\253\242\377\215\250\242\377" \ + "\223\254\247\377\346\354\353\377\202\377\377\377\377\6\325\337\335\377" \ + "\223\254\247\377\212\246\240\377\230\257\246\377\276\313\301\377\343" \ + "\345\333\377\364\354\354\341\377\1\270\300\267\377\202Slg\377\1\242\256" \ + "\246\377\336\354\354\341\377\3\320\330\316\377\216\250\237\377p\221\212" \ + "\377\202o\221\212\377\3\203\240\232\377\223\254\247\377\310\325\322\377" \ + "\202\377\377\377\377\3\267\310\305\377\223\254\247\377~\234\226\377\202" \ + "o\221\212\377\3q\222\213\377\226\256\246\377\330\336\324\377\362\354" \ + "\354\341\377\4\353\353\340\377k\200z\377Slg\377|\216\210\377\222\354" \ + "\354\341\377\3\256\270\257\377\207\230\221\377\240\255\245\377\307\354" \ + "\354\341\377\2\333\337\324\377\230\257\247\377\205o\221\212\377\3\207" \ + "\243\233\377\223\254\247\377\250\274\270\377\202\344\352\351\377\3\233" \ + "\262\256\377\223\254\247\377\203\240\231\377\204o\221\212\377\3q\223" \ + "\214\377\242\266\256\377\342\345\332\377\361\354\354\341\377\4\315\322" \ + "\311\377\\tn\377Slg\377\253\265\255\377\221\354\354\341\377\3\215\234" \ + "\225\377Slg\377y\214\205\377\306\354\354\341\377\2\302\315\304\377s\224" \ + "\215\377\203o\221\212\377\5\211\244\234\377\267\305\274\377\333\340\326" \ + "\377\351\352\337\377\225\256\251\377\204\223\254\247\377\5\235\263\256" \ + "\377\354\354\341\377\331\336\324\377\262\302\271\377\201\236\227\377" \ + "\203o\221\212\377\2y\230\221\377\316\326\314\377\361\354\354\341\377" \ + "\5\312\317\306\377`wq\377Unh\377\253\265\255\377\346\347\334\377\217" \ + "\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\304\354\354\341" \ + "\377\3\353\354\341\377\256\277\265\377p\221\212\377\202o\221\212\377" \ + "\2\201\236\227\377\302\315\304\377\204\354\354\341\377\1\272\310\300" \ + "\377\204\254\276\267\377\1\303\317\306\377\203\354\354\341\377\3\352" \ + "\352\337\377\271\307\275\377{\232\222\377\202o\221\212\377\2r\224\214" \ + "\377\273\310\277\377\356\354\354\341\377\1\353\353\341\377\202\347\350" \ + "\335\377\11\334\337\325\377\211\231\222\377Slg\377]to\377\226\244\234" \ + "\377\270\300\267\377\311\316\305\377\331\334\322\377\346\347\334\377" \ + "\212\347\350\335\377\3\213\233\223\377Slg\377y\214\205\377\304\354\354" \ + "\341\377\1\244\270\257\377\203o\221\212\377\2\242\266\256\377\351\352" \ + "\340\377\220\354\354\341\377\2\346\350\334\377\227\256\245\377\203o\221" \ + "\212\377\1\266\305\274\377\355\354\354\341\377\1\320\324\313\377\227" \ + "Slg\377\1y\214\205\377\303\354\354\341\377\1\272\310\276\377\202o\221" \ + "\212\377\2q\223\214\377\270\306\274\377\223\354\354\341\377\6\353\354" \ + "\341\377\255\276\264\377p\221\212\377o\221\212\377q\223\214\377\313\324" \ + "\312\377\354\354\354\341\377\1\320\324\313\377\227Slg\377\1y\214\205" \ + "\377\302\354\354\341\377\5\315\326\313\377r\223\213\377o\221\212\377" \ + "p\222\213\377\305\317\305\377\226\354\354\341\377\1\265\304\273\377\202" \ + "o\221\212\377\2x\230\220\377\333\340\325\377\353\354\354\341\377\1\320" \ + "\324\313\377\227Slg\377\1y\214\205\377\301\354\354\341\377\2\351\352" \ + "\337\377\177\234\224\377\202o\221\212\377\1\263\303\272\377\230\354\354" \ + "\341\377\1\240\265\254\377\202o\221\212\377\1\216\247\240\377\353\354" \ + "\354\341\377\1\320\324\313\377\227Slg\377\1y\214\205\377\301\354\354" \ + "\341\377\1\264\303\272\377\202o\221\212\377\1\227\256\245\377\231\354" \ + "\354\341\377\2\351\352\340\377\210\243\233\377\202o\221\212\377\1\310" \ + "\322\310\377\352\354\354\341\377\1\320\324\313\377\202Slg\377\1\300\307" \ + "\276\377\222\331\334\322\377\3\205\226\217\377Slg\377y\214\205\377\300" \ + "\354\354\341\377\5\344\346\334\377x\230\220\377o\221\212\377r\223\213" \ + "\377\332\337\324\377\232\354\354\341\377\1\315\326\313\377\202o\221\212" \ + "\377\2\205\241\231\377\353\353\340\377\351\354\354\341\377\1\320\324" \ + "\313\377\202Slg\377\1\317\324\312\377\222\354\354\341\377\3\215\234\225" \ + "\377Slg\377y\214\205\377\300\354\354\341\377\1\264\303\272\377\202o\221" \ + "\212\377\1\243\267\256\377\234\354\354\341\377\1\224\254\244\377\202" \ + "o\221\212\377\1\305\320\306\377\351\354\354\341\377\1\320\324\313\377" \ + "\202Slg\377\1\317\324\312\377\222\354\354\341\377\3\215\234\225\377S" \ + "lg\377y\214\205\377\300\354\354\341\377\4\214\246\237\377o\221\212\377" \ + "p\222\213\377\340\343\331\377\234\354\354\341\377\1\316\326\314\377\202" \ + "o\221\212\377\1\236\263\253\377\351\354\354\341\377\1\320\324\313\377" \ + "\202Slg\377\1\317\324\312\377\222\354\354\341\377\3\234\251\241\377j" \ + "\200z\377\213\233\223\377\277\354\354\341\377\4\342\345\332\377p\222" \ + "\213\377o\221\212\377\214\246\236\377\235\354\354\341\377\5\353\353\340" \ + "\377{\231\222\377o\221\212\377y\231\221\377\352\353\340\377\350\354\354" \ + "\341\377\1\352\352\337\377\202\336\340\326\377\1\352\352\337\377\324" \ + "\354\354\341\377\1\275\312\300\377\202o\221\212\377\1\262\302\271\377" \ + "\236\354\354\341\377\1\241\265\255\377\202o\221\212\377\1\317\327\315" \ + "\377\377\354\354\341\377\301\354\354\341\377\1\255\276\264\377\202o\221" \ + "\212\377\1\317\327\314\377\236\354\354\341\377\1\276\312\301\377\202" \ + "o\221\212\377\1\274\311\277\377\377\354\354\341\377\301\354\354\341\377" \ + "\1\237\264\254\377\202o\221\212\377\1\334\340\326\377\236\354\354\341" \ + "\377\1\313\324\312\377\202o\221\212\377\1\260\300\267\377\377\354\354" \ + "\341\377\301\354\354\341\377\4\222\252\242\377o\221\212\377p\222\213" \ + "\377\351\352\340\377\236\354\354\341\377\1\330\335\323\377\202o\221\212" \ + "\377\1\244\270\257\377\357\354\354\341\377\14\331\334\322\377\257\271" \ + "\260\377\212\232\223\377p\204~\377e{u\377[sm\377_vq\377j\177y\377x\213" \ + "\204\377\232\247\237\377\277\306\275\377\350\350\336\377\305\354\354" \ + "\341\377\3\210\243\233\377o\221\212\377w\227\217\377\237\354\354\341" \ + "\377\1\342\345\332\377\202o\221\212\377\1\233\261\250\377\355\354\354" \ + "\341\377\3\320\324\313\377\206\227\220\377Tmh\377\212Slg\377\3bys\377" \ + "\245\261\251\377\345\346\334\377\303\354\354\341\377\4\223\253\243\377" \ + "o\221\212\377p\221\212\377\351\352\337\377\236\354\354\341\377\1\326" \ + "\334\322\377\202o\221\212\377\1\245\270\257\377\353\354\354\341\377\3" \ + "\353\353\341\377\246\261\251\377Uni\377\216Slg\377\2k\200z\377\322\326" \ + "\314\377\302\354\354\341\377\1\240\265\254\377\202o\221\212\377\1\333" \ + "\340\325\377\236\354\354\341\377\1\311\323\311\377\202o\221\212\377\1" \ + "\261\301\270\377\352\354\354\341\377\2\353\353\341\377\212\232\223\377" \ + "\221Slg\377\2Xqk\377\306\314\303\377\301\354\354\341\377\1\256\277\265" \ + "\377\202o\221\212\377\1\314\325\313\377\236\354\354\341\377\1\274\311" \ + "\277\377\202o\221\212\377\1\276\312\301\377\337\354\354\341\377\2\322" \ + "\326\314\377\311\316\305\377\211\354\354\341\377\1\231\247\237\377\207" \ + "Slg\377\6Xpk\377^vp\377dzt\377axr\377[sn\377Tmh\377\206Slg\377\2]to\377" \ + "\322\326\314\377\300\354\354\341\377\1\300\314\303\377\202o\221\212\377" \ + "\1\256\277\266\377\236\354\354\341\377\1\236\263\253\377\202o\221\212" \ + "\377\1\323\332\317\377\335\354\354\341\377\2\353\353\341\377~\220\211" \ + "\377\202Slg\377\2m\202|\377\344\345\333\377\206\354\354\341\377\1\312" \ + "\317\306\377\204Slg\377\4h~x\377\231\247\237\377\302\311\300\377\334" \ + "\336\324\377\205\354\354\341\377\5\347\350\335\377\320\324\313\377\262" \ + "\273\263\377\205\226\217\377Xpk\377\203Slg\377\1s\207\201\377\300\354" \ + "\354\341\377\4\343\346\333\377q\223\214\377o\221\212\377\210\243\233" \ + "\377\235\354\354\341\377\5\352\352\337\377x\230\220\377o\221\212\377" \ + "{\232\222\377\353\354\341\377\335\354\354\341\377\1\300\307\276\377\204" \ + "Slg\377\1\256\270\260\377\206\354\354\341\377\1x\213\204\377\202Slg\377" \ + "\3`wr\377\265\276\265\377\353\353\340\377\214\354\354\341\377\2\335\337" \ + "\325\377\217\236\227\377\203Slg\377\1\272\302\271\377\300\354\354\341" \ + "\377\1\220\251\241\377\202o\221\212\377\1\333\340\326\377\234\354\354" \ + "\341\377\1\312\323\311\377\202o\221\212\377\1\241\265\255\377\336\354" \ + "\354\341\377\1\246\262\252\377\204Slg\377\1\226\244\235\377\205\354\354" \ + "\341\377\1\326\331\317\377\202Slg\377\2i~x\377\333\335\323\377\220\354" \ + "\354\341\377\1\256\270\257\377\202Slg\377\1~\220\211\377\300\354\354" \ + "\341\377\1\271\307\275\377\202o\221\212\377\1\235\263\252\377\206\354" \ + "\354\341\377\1\353\353\340\377\216\354\354\341\377\1\353\353\341\377" \ + "\206\354\354\341\377\1\216\247\240\377\202o\221\212\377\1\311\323\311" \ + "\377\336\354\354\341\377\2\337\341\327\377Wpj\377\203Slg\377\1\320\324" \ + "\313\377\205\354\354\341\377\4\251\264\253\377Slg\377Tmg\377\316\323" \ + "\311\377\222\354\354\341\377\4\211\231\222\377Slg\377Xpk\377\346\347" \ + "\334\377\277\354\354\341\377\5\347\351\335\377{\232\222\377o\221\212" \ + "\377p\222\213\377\325\334\321\377\205\354\354\341\377\4\271\307\300\377" \ + "\253\275\267\377\321\330\317\377\353\353\341\377\210\354\354\341\377" \ + "\4\352\352\337\377\314\325\314\377\246\272\263\377\306\321\310\377\205" \ + "\354\354\341\377\1\307\321\307\377\202o\221\212\377\1\212\245\235\377" \ + "\340\354\354\341\377\4\314\321\310\377\215\235\225\377\205\226\217\377" \ + "\300\307\276\377\206\354\354\341\377\3\210\230\221\377Slg\377x\213\205" \ + "\377\223\354\354\341\377\1\315\322\311\377\202Slg\377\1\312\320\306\377" \ + "\300\354\354\341\377\1\272\310\276\377\202o\221\212\377\2\220\251\241" \ + "\377\353\354\341\377\203\354\354\341\377\2\350\351\336\377\230\260\252" \ + "\377\202\223\254\247\377\3\236\264\256\377\303\316\306\377\345\347\335" \ + "\377\204\354\354\341\377\3\342\344\332\377\275\312\303\377\232\261\254" \ + "\377\202\223\254\247\377\1\242\267\261\377\204\354\354\341\377\2\347" \ + "\351\335\377\203\237\227\377\202o\221\212\377\1\316\326\314\377\352\354" \ + "\354\341\377\3z\215\206\377Slg\377\235\252\242\377\224\354\354\341\377" \ + "\3[sn\377Slg\377\275\304\273\377\300\354\354\341\377\2\352\353\340\377" \ + "\203\237\227\377\202o\221\212\377\1\251\273\263\377\203\354\354\341\377" \ + "\4\307\322\311\377\223\254\247\377\243\270\264\377\244\271\264\377\202" \ + "\223\254\247\377\6\226\256\251\377\265\304\275\377\345\347\334\377\340" \ + "\343\331\377\257\300\271\377\224\255\250\377\202\223\254\247\377\4\251" \ + "\275\271\377\236\264\260\377\223\254\247\377\325\334\322\377\202\354" \ + "\354\341\377\2\353\354\341\377\227\256\246\377\202o\221\212\377\1\224" \ + "\254\244\377\353\354\354\341\377\3o\203}\377Slg\377\256\270\257\377\224" \ + "\354\354\341\377\3k\200z\377Slg\377\261\273\262\377\301\354\354\341\377" \ + "\2\325\333\321\377t\224\216\377\202o\221\212\377\1\273\310\277\377\202" \ + "\354\354\341\377\22\242\267\261\377\223\254\247\377\332\343\341\377\377" \ + "\377\377\377\341\350\347\377\263\305\301\377\224\255\250\377\223\254" \ + "\247\377\311\323\312\377\276\313\303\377\223\254\247\377\225\256\251" \ + "\377\271\311\306\377\347\355\354\377\377\377\377\377\315\330\326\377" \ + "\223\254\247\377\260\301\272\377\202\354\354\341\377\1\252\274\264\377" \ + "\202o\221\212\377\2|\233\223\377\340\343\331\377\353\354\354\341\377" \ + "\3w\212\204\377Slg\377\242\256\246\377\224\354\354\341\377\3`wq\377S" \ + "lg\377\272\302\271\377\302\354\354\341\377\2\303\316\304\377p\221\212" \ + "\377\202o\221\212\377\5\255\276\264\377\325\334\322\377\223\254\247\377" \ + "\235\264\257\377\375\375\375\377\203\377\377\377\377\6\321\334\332\377" \ + "\223\254\247\377\252\274\266\377\242\267\261\377\223\254\247\377\337" \ + "\346\345\377\203\377\377\377\377\5\367\370\370\377\226\256\251\377\224" \ + "\255\250\377\340\343\332\377\240\265\254\377\202o\221\212\377\2s\223" \ + "\215\377\323\332\317\377\342\354\354\341\377\4\346\347\334\377\261\272" \ + "\262\377\247\262\252\377\340\342\327\377\206\354\354\341\377\3\204\225" \ + "\216\377Slg\377\204\225\216\377\223\354\354\341\377\1\331\334\322\377" \ + "\202Slg\377\1\307\315\303\377\303\354\354\341\377\1\256\277\266\377\203" \ + "o\221\212\377\3\224\255\247\377\223\254\247\377\310\325\322\377\203\377" \ + "\377\377\377\2\361\364\364\377\252\276\272\377\203\223\254\247\377\3" \ + "\224\255\250\377\266\307\304\377\367\371\370\377\203\377\377\377\377" \ + "\3\273\313\307\377\223\254\247\377\220\251\243\377\202o\221\212\377\2" \ + "p\221\212\377\300\314\303\377\342\354\354\341\377\2\347\350\335\377c" \ + "ys\377\202Slg\377\2Xpk\377\334\337\325\377\205\354\354\341\377\4\236" \ + "\253\243\377Slg\377Xpk\377\336\340\326\377\222\354\354\341\377\4\234" \ + "\251\241\377Slg\377Tmh\377\340\342\327\377\304\354\354\341\377\6\271" \ + "\307\275\377q\223\214\377s\224\215\377\223\254\247\377\225\255\250\377" \ + "\364\367\366\377\202\377\377\377\377\12\352\357\356\377\230\260\253\377" \ + "\232\262\255\377\315\331\326\377\347\355\354\377\344\352\351\377\306" \ + "\323\321\377\225\256\251\377\235\264\257\377\363\366\365\377\202\377" \ + "\377\377\377\6\351\356\355\377\223\254\247\377\220\252\244\377p\222\213" \ + "\377u\226\216\377\306\320\306\377\343\354\354\341\377\1\262\273\263\377" \ + "\204Slg\377\1\241\255\245\377\205\354\354\341\377\1\313\320\307\377\202" \ + "Slg\377\2~\220\211\377\351\351\337\377\220\354\354\341\377\4\312\317" \ + "\306\377Voi\377Slg\377u\210\202\377\306\354\354\341\377\4\314\325\313" \ + "\377\206\242\234\377\223\254\247\377\267\310\304\377\202\377\377\377" \ + "\377\4\374\375\375\377\245\272\266\377\237\265\261\377\363\366\365\377" \ + "\204\377\377\377\377\3\352\357\356\377\227\257\253\377\261\303\300\377" \ + "\203\377\377\377\377\4\251\275\271\377\223\254\247\377\206\242\234\377" \ + "\327\334\322\377\344\354\354\341\377\1\262\273\263\377\204Slg\377\1\241" \ + "\255\245\377\205\354\354\341\377\2\353\353\341\377h~x\377\202Slg\377" \ + "\2x\213\205\377\331\334\322\377\215\354\354\341\377\3\353\353\340\377" \ + "\261\272\262\377Xqk\377\202Slg\377\1\251\264\254\377\306\354\354\341" \ + "\377\4\352\353\340\377\232\261\254\377\223\254\247\377\344\352\351\377" \ + "\202\377\377\377\377\3\336\345\344\377\223\254\247\377\337\347\345\377" \ + "\206\377\377\377\377\3\317\332\330\377\223\254\247\377\356\362\362\377" \ + "\202\377\377\377\377\3\327\340\336\377\223\254\247\377\246\272\263\377" \ + "\345\354\354\341\377\2\347\350\335\377cys\377\202Slg\377\2Xpk\377\334" \ + "\337\325\377\206\354\354\341\377\1\270\300\267\377\203Slg\377\4Voi\377" \ + "\215\235\225\377\300\307\276\377\347\347\335\377\210\354\354\341\377" \ + "\3\327\332\320\377\250\263\252\377l\201{\377\203Slg\377\2e{u\377\350" \ + "\350\336\377\306\354\354\341\377\3\315\326\315\377\223\254\247\377\246" \ + "\272\266\377\203\377\377\377\377\3\310\324\322\377\225\255\250\377\374" \ + "\375\375\377\206\377\377\377\377\3\360\364\363\377\223\254\247\377\330" \ + "\341\340\377\202\377\377\377\377\4\374\374\374\377\233\263\256\377\223" \ + "\254\247\377\333\340\326\377\345\354\354\341\377\4\346\347\334\377\261" \ + "\272\262\377\247\262\252\377\340\342\327\377\207\354\354\341\377\2\353" \ + "\353\341\377~\220\211\377\205Slg\377\11Tmh\377f|v\377y\214\205\377\200" \ + "\222\213\377\205\226\217\377\203\224\215\377}\217\210\377r\206\177\377" \ + "[sn\377\205Slg\377\2Tmh\377\276\305\274\377\307\354\354\341\377\3\250" \ + "\273\264\377\223\254\247\377\323\335\333\377\203\377\377\377\377\2\277" \ + "\316\313\377\231\261\254\377\207\377\377\377\377\3\370\371\371\377\223" \ + "\254\247\377\320\333\331\377\203\377\377\377\377\3\305\323\320\377\223" \ + "\254\247\377\266\305\276\377\361\354\354\341\377\2\344\345\333\377o\204" \ + "}\377\222Slg\377\1\251\264\254\377\307\354\354\341\377\4\334\340\326" \ + "\377\223\254\247\377\231\261\254\377\372\373\373\377\203\377\377\377" \ + "\377\3\325\336\334\377\223\254\247\377\361\364\363\377\206\377\377\377" \ + "\377\3\341\350\346\377\223\254\247\377\346\353\352\377\203\377\377\377" \ + "\377\4\362\365\364\377\224\255\250\377\226\256\251\377\346\350\335\377" \ + "\361\354\354\341\377\2\341\343\330\377\200\222\213\377\217Slg\377\2Z" \ + "rl\377\262\274\263\377\310\354\354\341\377\3\266\305\276\377\223\254" \ + "\247\377\302\320\315\377\204\377\377\377\377\3\361\364\364\377\226\256" \ + "\252\377\267\310\304\377\205\377\377\377\377\4\375\375\375\377\250\274" \ + "\270\377\234\263\256\377\373\374\374\377\204\377\377\377\377\3\264\305" \ + "\302\377\223\254\247\377\304\317\307\377\362\354\354\341\377\3\353\353" \ + "\341\377\254\267\256\377e{u\377\213Slg\377\3Tmh\377\204\225\216\377\325" \ + "\330\316\377\310\354\354\341\377\4\346\350\335\377\227\257\251\377\223" \ + "\254\247\377\356\362\362\377\205\377\377\377\377\4\316\332\327\377\223" \ + "\254\247\377\273\313\307\377\370\372\371\377\202\377\377\377\377\4\363" \ + "\366\365\377\260\302\276\377\223\254\247\377\334\344\342\377\205\377" \ + "\377\377\377\3\341\350\347\377\223\254\247\377\237\265\257\377\364\354" \ + "\354\341\377\4\352\352\337\377\271\301\270\377\215\235\225\377h~x\377" \ + "\205Slg\377\4Wpj\377x\213\205\377\235\252\242\377\325\330\316\377\312" \ + "\354\354\341\377\3\305\320\307\377\223\254\247\377\260\302\277\377\206" \ + "\377\377\377\377\2\376\376\376\377\312\326\324\377\202\225\255\250\377" \ + "\5\243\270\264\377\241\267\262\377\223\254\247\377\230\257\253\377\325" \ + "\337\335\377\207\377\377\377\377\3\243\270\264\377\223\254\247\377\323" \ + "\332\320\377\367\354\354\341\377\6\350\350\336\377\335\337\325\377\323" \ + "\327\315\377\327\332\320\377\342\343\331\377\353\353\340\377\315\354" \ + "\354\341\377\3\240\265\257\377\223\254\247\377\336\345\344\377\210\377" \ + "\377\377\377\6\240\266\262\377\223\254\247\377\246\272\263\377\243\270" \ + "\262\377\223\254\247\377\260\302\276\377\210\377\377\377\377\3\320\333" \ + "\331\377\223\254\247\377\255\277\270\377\377\354\354\341\377\312\354" \ + "\354\341\377\4\323\332\321\377\223\254\247\377\240\266\262\377\376\376" \ + "\376\377\207\377\377\377\377\10\341\350\346\377\223\254\247\377\236\264" \ + "\256\377\353\353\341\377\347\350\336\377\227\257\252\377\224\255\250" \ + "\377\361\364\364\377\207\377\377\377\377\4\371\372\372\377\230\260\253" \ + "\377\224\255\247\377\340\343\331\377\354\354\354\341\377\1\322\326\314" \ + "\377\205\226\244\234\377\1\253\266\255\377\325\354\354\341\377\3\256" \ + "\277\270\377\223\254\247\377\314\330\326\377\210\377\377\377\377\3\264" \ + "\305\302\377\223\254\247\377\302\316\306\377\202\354\354\341\377\3\267" \ + "\306\276\377\223\254\247\377\305\322\317\377\210\377\377\377\377\3\277" \ + "\316\313\377\223\254\247\377\273\311\301\377\354\354\354\341\377\1\250" \ + "\263\252\377\205Slg\377\1y\214\205\377\324\354\354\341\377\4\340\344" \ + "\331\377\224\255\247\377\226\256\251\377\367\370\370\377\207\377\377" \ + "\377\377\4\361\365\364\377\224\255\250\377\225\256\251\377\345\347\334" \ + "\377\202\354\354\341\377\4\334\341\327\377\223\254\247\377\233\262\255" \ + "\377\374\374\374\377\207\377\377\377\377\4\354\360\357\377\223\254\247" \ + "\377\231\261\253\377\351\352\337\377\353\354\354\341\377\1\213\233\224" \ + "\377\205Slg\377\1\205\226\217\377\324\354\354\341\377\3\274\311\302\377" \ + "\223\254\247\377\273\313\307\377\210\377\377\377\377\3\305\323\320\377" \ + "\223\254\247\377\264\304\274\377\204\354\354\341\377\3\250\273\265\377" \ + "\223\254\247\377\326\337\336\377\210\377\377\377\377\3\255\300\274\377" \ + "\223\254\247\377\312\323\313\377\353\354\354\341\377\1{\216\207\377\203" \ + "Slg\377\2\226\244\234\377\341\342\330\377\324\354\354\341\377\4\351\352" \ + "\337\377\232\261\253\377\223\254\247\377\350\355\354\377\207\377\377" \ + "\377\377\4\374\374\374\377\233\263\256\377\223\254\247\377\331\336\325" \ + "\377\204\354\354\341\377\3\316\326\315\377\223\254\247\377\251\275\271" \ + "\377\210\377\377\377\377\3\333\343\341\377\223\254\247\377\244\271\262" \ + "\377\353\354\354\341\377\1p\204~\377\202Slg\377\1\203\224\215\377\326" \ + "\354\354\341\377\3\312\324\313\377\223\254\247\377\251\275\271\377\210" \ + "\377\377\377\377\3\327\340\336\377\223\254\247\377\245\271\263\377\205" \ + "\354\354\341\377\4\352\353\340\377\234\262\255\377\223\254\247\377\350" \ + "\355\354\377\207\377\377\377\377\4\375\375\375\377\236\264\260\377\223" \ + "\254\247\377\330\336\324\377\352\354\354\341\377\1v\212\203\377\202S" \ + "lg\377\1\266\277\266\377\326\354\354\341\377\3\245\271\263\377\223\254" \ + "\247\377\327\340\336\377\210\377\377\377\377\3\251\275\271\377\223\254" \ + "\247\377\313\324\313\377\206\354\354\341\377\3\277\314\304\377\223\254" \ + "\247\377\272\312\307\377\210\377\377\377\377\3\311\326\323\377\223\254" \ + "\247\377\263\303\274\377\352\354\354\341\377\1\211\231\222\377\202Sl" \ + "g\377\1\303\311\300\377\325\354\354\341\377\4\331\336\324\377\223\254" \ + "\247\377\233\262\256\377\374\374\374\377\207\377\377\377\377\4\351\356" \ + "\355\377\223\254\247\377\232\261\253\377\351\352\337\377\206\354\354" \ + "\341\377\4\343\346\333\377\224\255\250\377\226\256\251\377\366\370\370" \ + "\377\207\377\377\377\377\4\364\367\366\377\225\256\251\377\225\256\250" \ + "\377\344\346\334\377\351\354\354\341\377\1\242\256\246\377\202Slg\377" \ + "\1\251\264\253\377\222\354\354\341\377\3\344\345\332\377\336\340\326" \ + "\377\341\343\330\377\300\354\354\341\377\3\263\303\274\377\223\254\247" \ + "\377\305\322\320\377\210\377\377\377\377\3\273\313\310\377\223\254\247" \ + "\377\274\312\302\377\210\354\354\341\377\3\261\302\273\377\223\254\247" \ + "\377\314\330\325\377\210\377\377\377\377\3\267\310\305\377\223\254\247" \ + "\377\301\315\305\377\351\354\354\341\377\4\334\336\324\377Uni\377Slg" \ + "\377\212\232\223\377\222\354\354\341\377\3\215\234\225\377Slg\377y\214" \ + "\205\377\277\354\354\341\377\4\345\347\334\377\225\256\251\377\224\255" \ + "\250\377\361\365\364\377\207\377\377\377\377\4\367\370\370\377\226\256" \ + "\251\377\224\255\247\377\341\344\332\377\210\354\354\341\377\4\326\334" \ + "\323\377\223\254\247\377\240\266\261\377\376\376\376\377\207\377\377" \ + "\377\377\4\345\353\352\377\223\254\247\377\235\263\256\377\353\353\340" \ + "\377\351\354\354\341\377\4\215\234\225\377Slg\377\\tn\377\326\332\320" \ + "\377\221\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\277\354" \ + "\354\341\377\3\302\316\305\377\223\254\247\377\264\305\302\377\210\377" \ + "\377\377\377\3\315\330\326\377\223\254\247\377\256\277\271\377\212\354" \ + "\354\341\377\3\243\267\261\377\223\254\247\377\335\345\343\377\210\377" \ + "\377\377\377\3\246\273\267\377\223\254\247\377\320\330\317\377\351\354" \ + "\354\341\377\5\347\347\335\377u\211\202\377Slg\377m\202|\377\345\346" \ + "\334\377\220\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\276" \ + "\354\354\341\377\4\353\353\340\377\235\264\256\377\223\254\247\377\341" \ + "\350\347\377\207\377\377\377\377\4\376\376\376\377\241\266\262\377\223" \ + "\254\247\377\323\332\321\377\212\354\354\341\377\3\310\322\312\377\223" \ + "\254\247\377\260\302\276\377\210\377\377\377\377\3\323\335\333\377\223" \ + "\254\247\377\252\275\266\377\352\354\354\341\377\6\341\342\330\377\201" \ + "\223\214\377Slg\377l\201{\377\265\276\265\377\352\352\340\377\216\354" \ + "\354\341\377\3\215\234\225\377Slg\377y\214\205\377\276\354\354\341\377" \ + "\3\320\330\317\377\223\254\247\377\243\270\264\377\210\377\377\377\377" \ + "\3\336\346\344\377\223\254\247\377\240\265\257\377\213\354\354\341\377" \ + "\4\350\351\336\377\230\260\252\377\223\254\247\377\356\362\362\377\207" \ + "\377\377\377\377\4\372\373\373\377\231\261\254\377\223\254\247\377\336" \ + "\342\330\377\347\354\354\341\377\1\344\345\333\377\203\301\310\277\377" \ + "\1\213\233\224\377\202Slg\377\5g}w\377\215\235\225\377\237\254\244\377" \ + "\261\272\262\377\300\307\276\377\212\301\310\277\377\3|\217\210\377S" \ + "lg\377y\214\205\377\276\354\354\341\377\3\253\275\266\377\223\254\247" \ + "\377\320\333\330\377\210\377\377\377\377\3\261\303\277\377\223\254\247" \ + "\377\305\320\310\377\214\354\354\341\377\3\271\310\300\377\223\254\247" \ + "\377\301\317\315\377\210\377\377\377\377\3\302\320\315\377\223\254\247" \ + "\377\271\307\300\377\347\354\354\341\377\1\320\324\313\377\227Slg\377" \ + "\1y\214\205\377\275\354\354\341\377\4\336\342\330\377\223\254\247\377" \ + "\230\260\253\377\371\372\372\377\207\377\377\377\377\4\357\363\362\377" \ + "\223\254\247\377\227\257\251\377\346\350\335\377\214\354\354\341\377" \ + "\4\336\342\330\377\223\254\247\377\231\261\254\377\372\373\373\377\207" \ + "\377\377\377\377\4\357\363\362\377\223\254\247\377\230\260\252\377\350" \ + "\351\336\377\346\354\354\341\377\1\320\324\313\377\227Slg\377\1y\214" \ + "\205\377\275\354\354\341\377\3\271\307\300\377\223\254\247\377\276\315" \ + "\312\377\210\377\377\377\377\3\302\320\316\377\223\254\247\377\267\306" \ + "\276\377\216\354\354\341\377\3\253\275\267\377\223\254\247\377\323\335" \ + "\333\377\210\377\377\377\377\3\261\303\277\377\223\254\247\377\307\321" \ + "\311\377\346\354\354\341\377\1\320\324\313\377\227Slg\377\1y\214\205" \ + "\377\274\354\354\341\377\4\350\351\336\377\230\260\252\377\223\254\247" \ + "\377\354\360\357\377\207\377\377\377\377\4\373\374\374\377\232\261\255" \ + "\377\223\254\247\377\334\340\327\377\216\354\354\341\377\3\320\330\317" \ + "\377\223\254\247\377\246\272\266\377\210\377\377\377\377\3\336\346\344" \ + "\377\223\254\247\377\242\267\261\377\346\354\354\341\377\1\320\324\313" \ + "\377\202Slg\377\1bys\377\222f|v\377\3Zrm\377Slg\377y\214\205\377\274" \ + "\354\354\341\377\3\310\322\311\377\223\254\247\377\255\300\274\377\210" \ + "\377\377\377\377\3\324\336\334\377\223\254\247\377\250\273\265\377\217" \ + "\354\354\341\377\4\353\353\340\377\235\264\256\377\223\254\247\377\344" \ + "\352\351\377\207\377\377\377\377\4\376\376\376\377\240\266\262\377\223" \ + "\254\247\377\326\334\322\377\345\354\354\341\377\1\320\324\313\377\202" \ + "Slg\377\1\317\324\312\377\222\354\354\341\377\3\215\234\225\377Slg\377" \ + "y\214\205\377\274\354\354\341\377\3\242\267\261\377\223\254\247\377\332" \ + "\343\341\377\210\377\377\377\377\3\246\273\267\377\223\254\247\377\316" \ + "\326\315\377\220\354\354\341\377\3\302\316\306\377\223\254\247\377\267" \ + "\310\304\377\210\377\377\377\377\3\315\330\326\377\223\254\247\377\260" \ + "\301\272\377\345\354\354\341\377\1\320\324\313\377\202Slg\377\1\317\324" \ + "\312\377\222\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\273" \ + "\354\354\341\377\4\326\334\323\377\223\254\247\377\236\264\260\377\375" \ + "\375\375\377\207\377\377\377\377\4\346\353\352\377\223\254\247\377\233" \ + "\262\254\377\352\353\340\377\220\354\354\341\377\4\345\347\334\377\225" \ + "\256\251\377\225\255\250\377\364\367\366\377\207\377\377\377\377\4\367" \ + "\370\370\377\226\257\252\377\224\255\250\377\343\345\333\377\344\354" \ + "\354\341\377\1\320\324\313\377\202Slg\377\1\317\324\312\377\222\354\354" \ + "\341\377\3\215\234\225\377Slg\377y\214\205\377\273\354\354\341\377\3" \ + "\261\301\272\377\223\254\247\377\311\325\323\377\210\377\377\377\377" \ + "\3\270\311\305\377\223\254\247\377\277\314\304\377\222\354\354\341\377" \ + "\3\263\303\274\377\223\254\247\377\310\325\322\377\210\377\377\377\377" \ + "\3\273\313\310\377\223\254\247\377\277\313\303\377\344\354\354\341\377" \ + "\1\325\330\316\377\202j\200z\377\1\323\327\315\377\222\354\354\341\377" \ + "\3\264\275\264\377\221\240\230\377\250\263\252\377\272\354\354\341\377" \ + "\4\343\345\333\377\224\255\250\377\225\255\250\377\364\367\366\377\207" \ + "\377\377\377\377\4\365\367\367\377\225\256\251\377\224\255\250\377\343" \ + "\345\333\377\222\354\354\341\377\4\331\336\324\377\223\254\247\377\235" \ + "\264\257\377\375\375\375\377\207\377\377\377\377\4\351\356\355\377\223" \ + "\254\247\377\233\262\254\377\352\353\340\377\377\354\354\341\377\267" \ + "\354\354\341\377\3\277\314\304\377\223\254\247\377\267\310\305\377\210" \ + "\377\377\377\377\3\312\326\324\377\223\254\247\377\261\301\272\377\224" \ + "\354\354\341\377\3\245\271\263\377\223\254\247\377\332\343\341\377\210" \ + "\377\377\377\377\3\251\275\271\377\223\254\247\377\315\326\315\377\366" \ + "\354\354\341\377\1\336\340\326\377\276\354\354\341\377\4\352\353\340" \ + "\377\233\262\254\377\223\254\247\377\345\353\352\377\207\377\377\377" \ + "\377\4\375\376\376\377\236\264\260\377\223\254\247\377\326\334\323\377" \ + "\210\354\354\341\377\4\327\335\324\377\254\276\270\377\273\311\301\377" \ + "\330\336\325\377\210\354\354\341\377\3\312\324\313\377\223\254\247\377" \ + "\255\300\274\377\210\377\377\377\377\3\327\340\337\377\223\254\247\377" \ + "\250\273\264\377\366\354\354\341\377\4f|v\377^up\377{\215\207\377\276" \ + "\305\274\377\273\354\354\341\377\3\316\326\315\377\223\254\247\377\246" \ + "\273\267\377\210\377\377\377\377\3\333\344\342\377\223\254\247\377\242" \ + "\267\261\377\210\354\354\341\377\6\335\341\330\377\224\255\250\377\235" \ + "\264\257\377\230\260\254\377\233\262\255\377\352\353\340\377\207\354" \ + "\354\341\377\4\351\352\337\377\232\261\253\377\223\254\247\377\354\360" \ + "\357\377\207\377\377\377\377\4\374\375\375\377\233\263\256\377\223\254" \ + "\247\377\333\340\326\377\342\354\354\341\377\1\321\325\313\377\202Wp" \ + "j\377\1\314\321\307\377\217\354\354\341\377\1f|v\377\203Slg\377\2\207" \ + "\227\220\377\352\352\337\377\271\354\354\341\377\3\250\273\265\377\223" \ + "\254\247\377\323\335\333\377\210\377\377\377\377\3\256\301\275\377\223" \ + "\254\247\377\310\322\311\377\210\354\354\341\377\6\300\315\305\377\224" \ + "\255\250\377\366\370\367\377\345\353\352\377\223\254\247\377\316\326" \ + "\315\377\210\354\354\341\377\3\274\311\302\377\223\254\247\377\276\315" \ + "\312\377\210\377\377\377\377\3\306\323\320\377\223\254\247\377\266\305" \ + "\276\377\342\354\354\341\377\1\320\324\313\377\202Slg\377\1\312\320\306" \ + "\377\217\354\354\341\377\1i~x\377\204Slg\377\1\254\266\256\377\270\354" \ + "\354\341\377\4\334\340\327\377\223\254\247\377\231\261\254\377\372\373" \ + "\373\377\207\377\377\377\377\4\355\361\360\377\223\254\247\377\230\260" \ + "\252\377\350\351\336\377\210\354\354\341\377\6\272\310\300\377\232\261" \ + "\254\377\377\377\377\377\370\372\371\377\223\254\247\377\310\322\311" \ + "\377\210\354\354\341\377\4\340\344\331\377\224\255\247\377\230\260\253" \ + "\377\371\372\372\377\207\377\377\377\377\4\362\365\364\377\224\255\250" \ + "\377\227\257\251\377\346\350\335\377\341\354\354\341\377\1\320\324\313" \ + "\377\202Slg\377\1\312\320\306\377\217\354\354\341\377\7\353\353\341\377" \ + "\335\337\325\377\260\272\261\377cys\377Slg\377_vq\377\350\351\336\377" \ + "\267\354\354\341\377\3\267\306\276\377\223\254\247\377\302\320\315\377" \ + "\210\377\377\377\377\3\277\316\313\377\223\254\247\377\271\310\300\377" \ + "\211\354\354\341\377\6\272\310\300\377\232\261\254\377\377\377\377\377" \ + "\370\372\371\377\223\254\247\377\310\322\311\377\211\354\354\341\377" \ + "\3\256\277\270\377\223\254\247\377\320\333\330\377\210\377\377\377\377" \ + "\3\264\305\302\377\223\254\247\377\305\320\307\377\341\354\354\341\377" \ + "\1\320\324\313\377\202Slg\377\1\312\320\306\377\222\354\354\341\377\1" \ + "\312\317\306\377\202Slg\377\1\325\331\317\377\266\354\354\341\377\4\346" \ + "\350\335\377\227\257\251\377\223\254\247\377\357\363\362\377\207\377" \ + "\377\377\377\4\371\372\372\377\230\260\253\377\223\254\247\377\336\342" \ + "\330\377\211\354\354\341\377\6\272\310\300\377\232\261\254\377\377\377" \ + "\377\377\370\372\371\377\223\254\247\377\310\322\311\377\211\354\354" \ + "\341\377\3\323\332\321\377\223\254\247\377\243\270\264\377\210\377\377" \ + "\377\377\3\342\351\347\377\223\254\247\377\240\265\257\377\341\354\354" \ + "\341\377\1\320\324\313\377\202Slg\377\1\312\320\306\377\223\354\354\341" \ + "\377\3`wq\377Slg\377\301\310\277\377\266\354\354\341\377\3\305\320\310" \ + "\377\223\254\247\377\260\302\277\377\210\377\377\377\377\3\321\334\332" \ + "\377\223\254\247\377\253\275\266\377\212\354\354\341\377\6\272\310\300" \ + "\377\232\261\254\377\377\377\377\377\370\372\371\377\223\254\247\377" \ + "\310\322\311\377\212\354\354\341\377\3\240\265\257\377\223\254\247\377" \ + "\341\350\347\377\210\377\377\377\377\3\243\270\264\377\223\254\247\377" \ + "\323\332\321\377\340\354\354\341\377\1\320\324\313\377\202Slg\377\1\312" \ + "\320\306\377\223\354\354\341\377\3f|v\377Slg\377\262\274\263\377\266" \ + "\354\354\341\377\6\240\265\257\377\223\254\247\377\336\346\344\377\377" \ + "\377\377\377\366\370\370\377\364\367\366\377\205\377\377\377\377\3\244" \ + "\271\265\377\223\254\247\377\320\330\317\377\212\354\354\341\377\6\272" \ + "\310\300\377\232\261\254\377\377\377\377\377\370\372\371\377\223\254" \ + "\247\377\310\322\311\377\212\354\354\341\377\3\305\320\307\377\223\254" \ + "\247\377\264\305\302\377\205\377\377\377\377\6\361\364\363\377\372\373" \ + "\373\377\377\377\377\377\320\333\331\377\223\254\247\377\256\277\270" \ + "\377\340\354\354\341\377\1\320\324\313\377\202Slg\377\1\312\320\306\377" \ + "\222\354\354\341\377\4\326\331\317\377Tmg\377Slg\377\303\311\300\377" \ + "\241\354\354\341\377\1\347\350\335\377\207\261\301\270\377\1\347\350" \ + "\335\377\213\354\354\341\377\11\323\332\321\377\223\254\247\377\240\266" \ + "\262\377\353\357\356\377\272\312\307\377\226\256\251\377\225\255\250" \ + "\377\267\310\304\377\347\354\353\377\202\377\377\377\377\4\343\351\350" \ + "\377\223\254\247\377\235\264\256\377\353\353\340\377\212\354\354\341" \ + "\377\6\272\310\300\377\232\261\254\377\377\377\377\377\370\372\371\377" \ + "\223\254\247\377\310\322\311\377\212\354\354\341\377\4\346\350\335\377" \ + "\227\257\251\377\224\255\250\377\361\365\364\377\202\377\377\377\377" \ + "\11\340\347\345\377\261\303\277\377\224\255\250\377\231\260\253\377\300" \ + "\317\314\377\354\360\360\377\230\260\253\377\224\255\247\377\340\344" \ + "\331\377\213\354\354\341\377\1\337\343\330\377\206\261\301\270\377\1" \ + "\263\303\272\377\305\354\354\341\377\1\336\340\326\377\206\324\330\316" \ + "\377\1\275\304\273\377\202Slg\377\1\270\300\267\377\216\324\330\316\377" \ + "\5\323\327\315\377\312\317\306\377\300\307\276\377\240\254\244\377e{" \ + "u\377\202Slg\377\1\327\332\320\377\241\354\354\341\377\1\340\344\331" \ + "\377\207o\221\212\377\1u\226\217\377\213v\226\217\377\16\212\245\240" \ + "\377\223\254\247\377\314\330\326\377\243\270\264\377\232\262\255\377" \ + "\303\321\316\377\306\323\320\377\234\263\257\377\233\262\256\377\374" \ + "\375\375\377\377\377\377\377\265\306\303\377\223\254\247\377\204\240" \ + "\232\377\213v\226\217\377\6\206\242\234\377\230\260\253\377\377\377\377" \ + "\377\370\372\371\377\223\254\247\377\202\237\231\377\213v\226\217\377" \ + "\16\210\243\236\377\223\254\247\377\305\323\320\377\377\377\377\377\365" \ + "\367\367\377\225\256\251\377\241\266\262\377\313\327\325\377\275\314" \ + "\311\377\227\257\252\377\260\302\277\377\277\316\313\377\223\254\247" \ + "\377\206\242\234\377\213v\226\217\377\1t\225\216\377\206o\221\212\377" \ + "\1r\223\214\377\305\354\354\341\377\1\215\234\225\377\236Slg\377\2]t" \ + "o\377\351\351\337\377\241\354\354\341\377\1\340\344\331\377\222o\221" \ + "\212\377\6t\224\216\377\223\254\247\377\226\256\251\377\334\344\342\377" \ + "\223\254\247\377\333\343\341\377\202\377\377\377\377\7\344\352\351\377" \ + "\223\254\247\377\330\341\337\377\363\366\365\377\224\255\250\377\222" \ + "\253\246\377r\223\214\377\213o\221\212\377\6\203\240\232\377\230\260" \ + "\253\377\377\377\377\377\370\372\371\377\223\254\247\377~\234\226\377" \ + "\213o\221\212\377\7v\226\217\377\223\254\247\377\233\262\256\377\374" \ + "\374\374\377\312\326\324\377\223\254\247\377\361\365\364\377\202\377" \ + "\377\377\377\6\315\331\326\377\224\255\250\377\337\346\344\377\223\254" \ + "\247\377\220\252\245\377p\222\213\377\221o\221\212\377\1r\223\214\377" \ + "\305\354\354\341\377\1\215\234\225\377\236Slg\377\1\253\265\255\377\242" \ + "\354\354\341\377\1\340\344\331\377\222o\221\212\377\6\202\240\232\377" \ + "\223\254\247\377\273\313\307\377\304\321\317\377\223\254\247\377\367" \ + "\371\371\377\202\377\377\377\377\6\375\376\376\377\230\260\253\377\272" \ + "\312\306\377\307\324\321\377\223\254\247\377\206\242\234\377\214o\221" \ + "\212\377\6\203\240\232\377\230\260\253\377\377\377\377\377\370\372\371" \ + "\377\223\254\247\377~\234\226\377\214o\221\212\377\5\213\246\240\377" \ + "\223\254\247\377\327\340\336\377\254\300\274\377\243\270\264\377\203" \ + "\377\377\377\377\6\352\357\356\377\223\254\247\377\321\334\332\377\255" \ + "\300\274\377\223\254\247\377}\233\225\377\221o\221\212\377\1r\223\214" \ + "\377\305\354\354\341\377\1\215\234\225\377\235Slg\377\2\204\225\216\377" \ + "\352\352\340\377\242\354\354\341\377\1\340\344\331\377\221o\221\212\377" \ + "\3p\222\213\377\220\252\245\377\223\254\247\377\202\351\356\355\377\2" \ + "\223\254\247\377\323\335\333\377\202\377\377\377\377\6\335\345\343\377" \ + "\223\254\247\377\335\345\344\377\234\263\257\377\223\254\247\377w\227" \ + "\220\377\214o\221\212\377\6\203\240\232\377\230\260\253\377\377\377\377" \ + "\377\370\372\371\377\223\254\247\377~\234\226\377\214o\221\212\377\6" \ + "|\232\224\377\223\254\247\377\251\275\271\377\321\334\332\377\223\254" \ + "\247\377\353\357\356\377\202\377\377\377\377\6\305\323\320\377\225\255" \ + "\250\377\364\367\366\377\333\343\341\377\223\254\247\377\214\247\241" \ + "\377\221o\221\212\377\1r\223\214\377\305\354\354\341\377\1\215\234\225" \ + "\377\230Slg\377\5Tmg\377axr\377s\207\200\377\207\230\221\377\311\317" \ + "\305\377\244\354\354\341\377\1\340\344\331\377\207o\221\212\377\1\207" \ + "\243\233\377\211\212\245\235\377\3\215\250\241\377\223\254\247\377\251" \ + "\275\271\377\202\377\377\377\377\11\252\276\272\377\224\255\250\377\262" \ + "\304\300\377\265\306\303\377\225\255\250\377\240\266\262\377\327\340" \ + "\337\377\223\254\247\377\221\253\245\377\215\212\245\235\377\6\217\251" \ + "\242\377\231\260\253\377\377\377\377\377\370\372\371\377\223\254\247" \ + "\377\216\250\241\377\215\212\245\235\377\16\222\253\246\377\223\254\247" \ + "\377\344\352\351\377\227\257\253\377\227\257\252\377\272\312\307\377" \ + "\254\277\273\377\223\254\247\377\267\310\305\377\377\377\377\377\375" \ + "\376\376\377\236\264\260\377\223\254\247\377\214\247\237\377\211\212" \ + "\245\235\377\1\204\241\231\377\206o\221\212\377\1r\223\214\377\305\354" \ + "\354\341\377\1\352\352\337\377\206\347\350\335\377\1\314\321\310\377" \ + "\202Slg\377\1\307\315\303\377\216\347\350\335\377\1\352\352\337\377\250" \ + "\354\354\341\377\1\351\352\337\377\207\305\317\305\377\1\351\352\337" \ + "\377\211\354\354\341\377\3\245\271\263\377\223\254\247\377\327\340\336" \ + "\377\202\377\377\377\377\11\366\370\367\377\313\327\325\377\237\266\261" \ + "\377\235\264\257\377\310\324\322\377\363\366\365\377\253\277\273\377" \ + "\223\254\247\377\312\324\313\377\215\354\354\341\377\6\272\310\300\377" \ + "\232\261\254\377\377\377\377\377\370\372\371\377\223\254\247\377\310" \ + "\322\311\377\215\354\354\341\377\11\277\313\303\377\223\254\247\377\273" \ + "\313\307\377\356\362\361\377\301\317\315\377\231\260\254\377\245\272" \ + "\266\377\321\334\332\377\371\372\372\377\202\377\377\377\377\3\311\326" \ + "\323\377\223\254\247\377\263\303\274\377\211\354\354\341\377\1\343\346" \ + "\333\377\206\305\317\305\377\1\307\321\307\377\314\354\354\341\377\1" \ + "\320\324\313\377\202Slg\377\1\312\320\306\377\310\354\354\341\377\4\331" \ + "\336\325\377\223\254\247\377\233\263\256\377\374\375\375\377\204\377" \ + "\377\377\377\7\376\376\376\377\375\375\375\377\377\377\377\377\352\357" \ + "\356\377\223\254\247\377\232\261\253\377\351\352\337\377\215\354\354" \ + "\341\377\6\272\310\300\377\232\261\254\377\377\377\377\377\370\372\371" \ + "\377\223\254\247\377\310\322\311\377\215\354\354\341\377\6\343\345\333" \ + "\377\224\255\250\377\226\256\251\377\367\370\370\377\377\377\377\377" \ + "\374\374\374\377\205\377\377\377\377\1\364\367\366\377\202\225\256\251" \ + "\377\1\345\347\334\377\334\354\354\341\377\1\320\324\313\377\202Slg\377" \ + "\1\312\320\306\377\310\354\354\341\377\3\264\304\274\377\223\254\247" \ + "\377\305\323\320\377\210\377\377\377\377\3\275\314\311\377\223\254\247" \ + "\377\274\311\302\377\216\354\354\341\377\6\272\310\300\377\232\261\254" \ + "\377\377\377\377\377\370\372\371\377\223\254\247\377\310\322\311\377" \ + "\216\354\354\341\377\3\260\301\272\377\223\254\247\377\315\330\326\377" \ + "\210\377\377\377\377\3\270\310\305\377\223\254\247\377\302\316\305\377" \ + "\334\354\354\341\377\1\331\334\322\377\202\207\230\221\377\1\326\331" \ + "\317\377\307\354\354\341\377\4\345\347\334\377\225\256\251\377\224\255" \ + "\250\377\362\365\364\377\207\377\377\377\377\4\367\371\371\377\227\257" \ + "\252\377\224\255\247\377\340\344\331\377\216\354\354\341\377\6\272\310" \ + "\300\377\232\261\254\377\377\377\377\377\370\372\371\377\223\254\247" \ + "\377\310\322\311\377\216\354\354\341\377\4\326\334\322\377\223\254\247" \ + "\377\240\266\262\377\376\376\376\377\207\377\377\377\377\4\345\353\352" \ + "\377\223\254\247\377\235\264\256\377\353\353\340\377\377\354\354\341" \ + "\377\247\354\354\341\377\3\302\316\306\377\223\254\247\377\264\305\302" \ + "\377\210\377\377\377\377\3\316\332\327\377\223\254\247\377\256\277\270" \ + "\377\217\354\354\341\377\6\272\310\300\377\232\261\254\377\377\377\377" \ + "\377\370\372\371\377\223\254\247\377\310\322\311\377\217\354\354\341" \ + "\377\3\242\267\261\377\223\254\247\377\336\346\344\377\210\377\377\377" \ + "\377\3\246\273\267\377\223\254\247\377\320\330\317\377\377\354\354\341" \ + "\377\246\354\354\341\377\4\353\353\341\377\236\264\256\377\223\254\247" \ + "\377\341\350\347\377\210\377\377\377\377\3\241\267\263\377\223\254\247" \ + "\377\323\332\321\377\217\354\354\341\377\6\272\310\300\377\232\261\254" \ + "\377\377\377\377\377\370\372\371\377\223\254\247\377\310\322\311\377" \ + "\217\354\354\341\377\3\307\321\311\377\223\254\247\377\261\303\277\377" \ + "\210\377\377\377\377\3\324\336\334\377\223\254\247\377\253\275\266\377" \ + "\377\354\354\341\377\246\354\354\341\377\3\321\330\317\377\223\254\247" \ + "\377\243\270\264\377\210\377\377\377\377\3\340\347\345\377\223\254\247" \ + "\377\240\265\257\377\220\354\354\341\377\6\306\321\311\377\223\254\247" \ + "\377\337\346\345\377\321\334\331\377\223\254\247\377\324\333\321\377" \ + "\217\354\354\341\377\4\350\351\336\377\230\257\252\377\223\254\247\377" \ + "\357\363\362\377\207\377\377\377\377\4\372\373\373\377\231\261\254\377" \ + "\223\254\247\377\336\342\330\377\351\354\354\341\377\6\343\344\332\377" \ + "\277\306\275\377\245\261\251\377\234\251\241\377\254\266\256\377\325" \ + "\330\316\377\265\354\354\341\377\3\253\275\267\377\223\254\247\377\320" \ + "\333\331\377\210\377\377\377\377\3\262\304\301\377\223\254\247\377\305" \ + "\320\307\377\220\354\354\341\377\2\351\352\340\377\240\266\257\377\202" \ + "\223\254\247\377\1\251\274\266\377\221\354\354\341\377\3\271\307\300" \ + "\377\223\254\247\377\302\320\315\377\210\377\377\377\377\3\302\320\316" \ + "\377\223\254\247\377\271\307\300\377\334\354\354\341\377\1\303\312\300" \ + "\377\204\301\310\277\377\1\337\341\326\377\206\354\354\341\377\2\267" \ + "\277\266\377axr\377\205Slg\377\2\201\222\213\377\335\337\325\377\262" \ + "\354\354\341\377\4\337\342\330\377\223\254\247\377\230\260\253\377\371" \ + "\372\372\377\207\377\377\377\377\4\361\364\363\377\224\255\250\377\227" \ + "\257\251\377\346\350\335\377\221\354\354\341\377\1\334\340\326\377\202" \ + "\312\324\313\377\1\341\344\331\377\221\354\354\341\377\4\336\342\330" \ + "\377\223\254\247\377\231\261\254\377\372\373\373\377\207\377\377\377" \ + "\377\4\357\363\362\377\223\254\247\377\230\260\252\377\350\351\336\377" \ + "\332\354\354\341\377\1\323\327\315\377\205Slg\377\1\274\304\273\377\205" \ + "\354\354\341\377\1\261\273\262\377\210Slg\377\2g}w\377\334\337\325\377" \ + "\261\354\354\341\377\3\272\310\300\377\223\254\247\377\277\316\313\377" \ + "\210\377\377\377\377\3\304\322\317\377\223\254\247\377\266\305\276\377" \ + "\250\354\354\341\377\3\252\275\266\377\223\254\247\377\324\336\334\377" \ + "\210\377\377\377\377\3\261\303\277\377\223\254\247\377\310\322\311\377" \ + "\332\354\354\341\377\1\240\254\244\377\205Slg\377\1\274\304\273\377\204" \ + "\354\354\341\377\2\322\326\314\377Xqk\377\211Slg\377\1z\215\206\377\260" \ + "\354\354\341\377\4\350\351\336\377\230\260\252\377\223\254\247\377\354" \ + "\360\357\377\207\377\377\377\377\4\373\374\374\377\233\262\255\377\223" \ + "\254\247\377\334\340\326\377\250\354\354\341\377\3\317\327\316\377\223" \ + "\254\247\377\246\273\267\377\210\377\377\377\377\3\336\346\344\377\223" \ + "\254\247\377\242\267\261\377\332\354\354\341\377\1m\202|\377\202Slg\377" \ + "\4Yql\377\234\251\241\377\301\310\277\377\346\347\334\377\204\354\354" \ + "\341\377\1\204\225\216\377\204Slg\377\4Xqk\377v\212\203\377y\214\206" \ + "\377[sm\377\203Slg\377\1\276\305\274\377\257\354\354\341\377\3\310\322" \ + "\312\377\223\254\247\377\255\300\274\377\210\377\377\377\377\3\325\337" \ + "\335\377\223\254\247\377\250\273\264\377\251\354\354\341\377\4\353\353" \ + "\340\377\235\263\255\377\223\254\247\377\345\353\352\377\207\377\377" \ + "\377\377\4\376\376\376\377\241\266\262\377\223\254\247\377\326\334\323" \ + "\377\330\354\354\341\377\1\323\327\315\377\202Slg\377\2i~x\377\323\327" \ + "\315\377\206\354\354\341\377\2\334\337\325\377Uni\377\203Slg\377\2s\207" \ + "\201\377\332\335\323\377\202\354\354\341\377\2\352\352\337\377\222\241" \ + "\231\377\202Slg\377\1\203\224\215\377\257\354\354\341\377\3\243\267\261" \ + "\377\223\254\247\377\333\343\341\377\210\377\377\377\377\3\250\274\270" \ + "\377\223\254\247\377\315\326\315\377\252\354\354\341\377\3\301\315\305" \ + "\377\223\254\247\377\270\310\305\377\210\377\377\377\377\3\315\330\326" \ + "\377\223\254\247\377\261\301\272\377\330\354\354\341\377\1\257\271\260" \ + "\377\202Slg\377\1\303\311\300\377\207\354\354\341\377\1\240\255\245\377" \ + "\203Slg\377\2Yql\377\331\334\322\377\205\354\354\341\377\4~\220\211\377" \ + "Slg\377Xqk\377\352\352\337\377\255\354\354\341\377\4\326\334\323\377" \ + "\223\254\247\377\236\264\260\377\375\375\375\377\207\377\377\377\377" \ + "\4\347\355\354\377\223\254\247\377\233\262\254\377\352\353\340\377\252" \ + "\354\354\341\377\4\344\346\334\377\225\256\250\377\225\256\251\377\364" \ + "\367\366\377\207\377\377\377\377\4\367\371\370\377\226\257\252\377\224" \ + "\255\250\377\343\345\333\377\327\354\354\341\377\3\234\251\241\377Sl" \ + "g\377u\210\202\377\210\354\354\341\377\1l\201{\377\203Slg\377\1\235\252" \ + "\242\377\206\354\354\341\377\1\301\310\277\377\202Slg\377\1\321\325\313" \ + "\377\255\354\354\341\377\3\261\302\273\377\223\254\247\377\311\326\323" \ + "\377\210\377\377\377\377\3\272\312\306\377\223\254\247\377\277\313\303" \ + "\377\254\354\354\341\377\3\263\303\274\377\223\254\247\377\311\326\323" \ + "\377\210\377\377\377\377\3\273\313\310\377\223\254\247\377\277\314\304" \ + "\377\327\354\354\341\377\3\210\231\222\377Slg\377\223\242\232\377\207" \ + "\354\354\341\377\1\326\331\317\377\203Slg\377\2Tmg\377\330\333\321\377" \ + "\206\354\354\341\377\4\350\350\336\377Tmg\377Slg\377\275\304\273\377" \ + "\254\354\354\341\377\4\343\346\333\377\225\255\250\377\225\256\251\377" \ + "\364\367\366\377\207\377\377\377\377\4\366\370\367\377\226\256\251\377" \ + "\224\255\250\377\343\345\333\377\254\354\354\341\377\4\330\336\324\377" \ + "\223\254\247\377\236\264\260\377\375\376\376\377\207\377\377\377\377" \ + "\4\351\356\355\377\223\254\247\377\233\262\254\377\352\353\340\377\326" \ + "\354\354\341\377\3u\211\202\377Slg\377\251\264\253\377\207\354\354\341" \ + "\377\1\246\261\251\377\203Slg\377\1y\214\205\377\210\354\354\341\377" \ + "\3`wr\377Slg\377\264\275\264\377\254\354\354\341\377\3\277\314\304\377" \ + "\223\254\247\377\267\310\305\377\210\377\377\377\377\3\313\327\325\377" \ + "\223\254\247\377\260\301\272\377\256\354\354\341\377\3\244\270\262\377" \ + "\223\254\247\377\333\343\342\377\210\377\377\377\377\3\252\276\272\377" \ + "\223\254\247\377\315\326\315\377\326\354\354\341\377\3t\210\201\377S" \ + "lg\377\250\263\253\377\207\354\354\341\377\1s\207\201\377\203Slg\377" \ + "\1\261\273\262\377\210\354\354\341\377\3k\200z\377Slg\377\260\272\261" \ + "\377\253\354\354\341\377\4\352\353\340\377\234\262\255\377\223\254\247" \ + "\377\345\353\352\377\207\377\377\377\377\4\376\376\376\377\237\265\261" \ + "\377\223\254\247\377\326\334\322\377\256\354\354\341\377\3\311\323\312" \ + "\377\223\254\247\377\256\301\275\377\210\377\377\377\377\3\327\340\337" \ + "\377\223\254\247\377\250\273\265\377\326\354\354\341\377\3\207\230\221" \ + "\377Slg\377\227\245\236\377\206\354\354\341\377\1\326\331\317\377\203" \ + "Slg\377\2Woj\377\342\343\331\377\210\354\354\341\377\3Zrm\377Slg\377" \ + "\270\301\270\377\253\354\354\341\377\3\316\326\315\377\223\254\247\377" \ + "\246\273\267\377\210\377\377\377\377\3\335\345\343\377\223\254\247\377" \ + "\242\267\261\377\257\354\354\341\377\4\351\352\337\377\231\260\253\377" \ + "\223\254\247\377\354\361\360\377\207\377\377\377\377\4\374\375\375\377" \ + "\233\263\256\377\223\254\247\377\334\340\326\377\325\354\354\341\377" \ + "\3\232\250\240\377Slg\377x\213\204\377\206\354\354\341\377\1\235\252" \ + "\242\377\203Slg\377\1\201\223\214\377\210\354\354\341\377\1\341\342\330" \ + "\377\202Slg\377\1\303\311\300\377\253\354\354\341\377\3\250\273\265\377" \ + "\223\254\247\377\324\336\334\377\210\377\377\377\377\3\257\302\276\377" \ + "\223\254\247\377\307\322\311\377\260\354\354\341\377\3\273\311\301\377" \ + "\223\254\247\377\277\316\313\377\210\377\377\377\377\3\306\323\320\377" \ + "\223\254\247\377\266\305\276\377\325\354\354\341\377\1\256\270\260\377" \ + "\202Slg\377\1\322\326\314\377\204\354\354\341\377\2\332\335\323\377Z" \ + "rl\377\203Slg\377\1\271\301\270\377\210\354\354\341\377\1\267\300\267" \ + "\377\202Slg\377\1\332\335\323\377\252\354\354\341\377\4\334\341\327\377" \ + "\223\254\247\377\231\261\254\377\372\373\373\377\207\377\377\377\377" \ + "\4\356\362\361\377\223\254\247\377\230\260\252\377\350\351\336\377\260" \ + "\354\354\341\377\4\340\343\331\377\223\254\247\377\230\260\253\377\371" \ + "\372\372\377\207\377\377\377\377\4\362\365\364\377\224\255\250\377\227" \ + "\257\251\377\346\350\335\377\324\354\354\341\377\11\340\342\327\377Z" \ + "rl\377Slg\377e{u\377\312\320\306\377\353\353\341\377\354\354\341\377" \ + "\325\330\316\377p\205~\377\203Slg\377\2axr\377\351\351\337\377\207\354" \ + "\354\341\377\4\353\353\340\377k\200z\377Slg\377[sn\377\253\354\354\341" \ + "\377\3\267\306\276\377\223\254\247\377\302\320\315\377\210\377\377\377" \ + "\377\3\301\317\315\377\223\254\247\377\271\307\300\377\262\354\354\341" \ + "\377\3\254\276\270\377\223\254\247\377\320\333\331\377\210\377\377\377" \ + "\377\3\264\306\302\377\223\254\247\377\305\320\310\377\325\354\354\341" \ + "\377\1\231\246\236\377\203Slg\377\2]to\377dzt\377\205Slg\377\1\235\252" \ + "\242\377\207\354\354\341\377\2\344\345\333\377\210\230\221\377\202Sl" \ + "g\377\1\202\223\214\377\252\354\354\341\377\4\347\350\336\377\227\257" \ + "\252\377\223\254\247\377\357\363\362\377\207\377\377\377\377\4\372\373" \ + "\373\377\231\261\254\377\223\254\247\377\336\342\330\377\262\354\354" \ + "\341\377\3\322\331\320\377\223\254\247\377\244\271\264\377\210\377\377" \ + "\377\377\3\342\351\347\377\223\254\247\377\240\265\257\377\325\354\354" \ + "\341\377\2\336\340\326\377^up\377\210Slg\377\2i\177y\377\344\345\333" \ + "\377\204\354\354\341\377\4\347\347\335\377\267\277\266\377\230\246\236" \ + "\377g}w\377\203Slg\377\1\256\270\257\377\252\354\354\341\377\3\305\320" \ + "\310\377\223\254\247\377\261\303\277\377\210\377\377\377\377\3\323\335" \ + "\333\377\223\254\247\377\252\275\266\377\263\354\354\341\377\4\353\353" \ + "\341\377\237\265\257\377\223\254\247\377\342\351\350\377\210\377\377" \ + "\377\377\3\244\271\264\377\223\254\247\377\323\332\321\377\325\354\354" \ + "\341\377\2\327\332\320\377l\201{\377\206Slg\377\2\\tn\377\317\324\312" \ + "\377\205\354\354\341\377\1\325\330\316\377\205Slg\377\2Voi\377\337\341" \ + "\327\377\252\354\354\341\377\3\240\266\260\377\223\254\247\377\336\346" \ + "\344\377\210\377\377\377\377\3\245\272\266\377\223\254\247\377\320\330" \ + "\317\377\264\354\354\341\377\3\304\317\307\377\223\254\247\377\265\306" \ + "\303\377\210\377\377\377\377\3\320\333\331\377\223\254\247\377\256\277" \ + "\271\377\326\354\354\341\377\10\344\345\333\377\232\250\240\377w\212" \ + "\204\377Xqk\377Slg\377axr\377\213\233\224\377\336\340\326\377\206\354" \ + "\354\341\377\1\325\330\316\377\205Slg\377\1\206\227\220\377\252\354\354" \ + "\341\377\4\324\332\321\377\223\254\247\377\241\266\262\377\376\376\376" \ + "\377\207\377\377\377\377\4\344\352\351\377\223\254\247\377\235\263\256" \ + "\377\353\353\340\377\264\354\354\341\377\4\346\347\335\377\226\256\251" \ + "\377\224\255\250\377\362\365\365\377\207\377\377\377\377\4\371\372\372" \ + "\377\230\260\253\377\224\255\247\377\341\344\332\377\330\354\354\341" \ + "\377\2\352\352\337\377\342\343\331\377\211\354\354\341\377\1\350\351" \ + "\336\377\205\324\330\316\377\1\342\343\331\377\252\354\354\341\377\3" \ + "\256\300\271\377\223\254\247\377\315\330\326\377\210\377\377\377\377" \ + "\3\267\310\304\377\223\254\247\377\301\315\305\377\266\354\354\341\377" \ + "\3\265\305\275\377\223\254\247\377\306\323\321\377\210\377\377\377\377" \ + "\3\277\316\313\377\223\254\247\377\274\312\302\377\377\354\354\341\377" \ + "\224\354\354\341\377\4\341\344\332\377\224\255\247\377\226\257\252\377" \ + "\367\370\370\377\207\377\377\377\377\4\364\367\366\377\225\255\250\377" \ + "\225\256\250\377\345\347\334\377\266\354\354\341\377\4\333\337\326\377" \ + "\223\254\247\377\234\263\256\377\374\375\375\377\207\377\377\377\377" \ + "\4\354\360\357\377\223\254\247\377\232\261\253\377\351\352\337\377\377" \ + "\354\354\341\377\223\354\354\341\377\3\275\312\302\377\223\254\247\377" \ + "\273\313\310\377\210\377\377\377\377\3\310\325\322\377\223\254\247\377" \ + "\263\303\274\377\270\354\354\341\377\3\247\272\264\377\223\254\247\377" \ + "\330\341\337\377\210\377\377\377\377\3\255\300\274\377\223\254\247\377" \ + "\313\324\313\377\377\354\354\341\377\222\354\354\341\377\4\352\352\337" \ + "\377\232\261\254\377\223\254\247\377\351\356\355\377\207\377\377\377" \ + "\377\4\375\375\375\377\235\264\257\377\223\254\247\377\330\336\324\377" \ + "\270\354\354\341\377\3\314\325\314\377\223\254\247\377\252\276\272\377" \ + "\210\377\377\377\377\3\333\343\342\377\223\254\247\377\245\271\263\377" \ + "\321\354\354\341\377\1\331\334\322\377\202\202\224\215\377\1\325\331" \ + "\317\377\274\354\354\341\377\3\313\324\314\377\223\254\247\377\252\276" \ + "\272\377\210\377\377\377\377\3\332\343\341\377\223\254\247\377\245\271" \ + "\263\377\271\354\354\341\377\4\352\352\340\377\233\262\254\377\223\254" \ + "\247\377\351\356\355\377\207\377\377\377\377\4\375\376\376\377\236\264" \ + "\260\377\223\254\247\377\331\336\325\377\320\354\354\341\377\1\320\324" \ + "\313\377\202Slg\377\1\312\320\306\377\274\354\354\341\377\3\246\272\263" \ + "\377\223\254\247\377\327\340\337\377\210\377\377\377\377\3\254\300\274" \ + "\377\223\254\247\377\312\324\313\377\272\354\354\341\377\3\276\313\303" \ + "\377\223\254\247\377\274\314\310\377\210\377\377\377\377\3\311\326\323" \ + "\377\223\254\247\377\264\304\274\377\320\354\354\341\377\1\320\324\313" \ + "\377\202Slg\377\1\312\320\306\377\273\354\354\341\377\4\332\337\325\377" \ + "\223\254\247\377\233\263\256\377\374\375\375\377\207\377\377\377\377" \ + "\4\354\360\357\377\223\254\247\377\231\261\253\377\351\352\337\377\272" \ + "\354\354\341\377\4\342\345\332\377\224\255\250\377\226\257\252\377\367" \ + "\371\371\377\207\377\377\377\377\1\364\367\366\377\202\225\256\251\377" \ + "\1\345\347\334\377\317\354\354\341\377\1\320\324\313\377\202Slg\377\1" \ + "\312\320\306\377\273\354\354\341\377\3\264\304\275\377\223\254\247\377" \ + "\306\323\320\377\210\377\377\377\377\3\276\315\312\377\223\254\247\377" \ + "\273\311\301\377\274\354\354\341\377\3\257\300\271\377\223\254\247\377" \ + "\315\331\327\377\210\377\377\377\377\3\270\310\305\377\223\254\247\377" \ + "\302\316\306\377\317\354\354\341\377\1\320\324\313\377\202Slg\377\1p" \ + "\205~\377\224y\214\205\377\5|\217\210\377\210\231\222\377\226\244\234" \ + "\377\266\277\266\377\334\336\324\377\241\354\354\341\377\4\345\347\334" \ + "\377\226\256\251\377\224\255\250\377\362\365\364\377\207\377\377\377" \ + "\377\4\371\372\372\377\230\260\253\377\224\255\247\377\340\344\331\377" \ + "\274\354\354\341\377\4\325\333\322\377\223\254\247\377\241\267\262\377" \ + "\376\376\376\377\207\377\377\377\377\4\345\353\352\377\223\254\247\377" \ + "\236\264\256\377\353\353\340\377\316\354\354\341\377\1\320\324\313\377" \ + "\234Slg\377\2\202\224\215\377\320\324\313\377\237\354\354\341\377\3\302" \ + "\316\306\377\223\254\247\377\264\306\302\377\210\377\377\377\377\3\320" \ + "\333\330\377\223\254\247\377\255\277\270\377\276\354\354\341\377\3\241" \ + "\266\260\377\223\254\247\377\337\346\345\377\210\377\377\377\377\3\246" \ + "\273\267\377\223\254\247\377\320\330\317\377\316\354\354\341\377\1\320" \ + "\324\313\377\235Slg\377\2Uni\377\250\263\253\377\235\354\354\341\377" \ + "\4\353\353\341\377\236\264\256\377\223\254\247\377\342\351\347\377\210" \ + "\377\377\377\377\3\243\270\264\377\223\254\247\377\323\332\320\377\276" \ + "\354\354\341\377\3\306\321\310\377\223\254\247\377\261\303\300\377\210" \ + "\377\377\377\377\3\324\336\334\377\223\254\247\377\253\275\267\377\316" \ + "\354\354\341\377\1\320\324\313\377\237Slg\377\1\240\254\244\377\234\354" \ + "\354\341\377\3\321\331\317\377\223\254\247\377\243\270\264\377\210\377" \ + "\377\377\377\3\341\350\347\377\223\254\247\377\237\265\257\377\277\354" \ + "\354\341\377\4\347\350\336\377\227\257\252\377\223\254\247\377\360\363" \ + "\363\377\207\377\377\377\377\4\372\373\373\377\232\261\255\377\223\254" \ + "\247\377\336\342\330\377\315\354\354\341\377\1\341\342\330\377\202\256" \ + "\270\257\377\2\252\265\254\377d{u\377\202Slg\377\5[sn\377w\212\204\377" \ + "\210\231\222\377\232\250\240\377\253\265\255\377\202\256\270\257\377" \ + "\4\245\260\250\377\223\242\232\377\201\223\214\377o\203}\377\203Slg\377" \ + "\1\210\230\221\377\202\256\270\257\377\5\251\264\253\377\227\245\236" \ + "\377\206\227\220\377u\210\202\377Xqk\377\203Slg\377\2Tmh\377\304\313" \ + "\301\377\233\354\354\341\377\3\253\276\267\377\223\254\247\377\320\333" \ + "\331\377\210\377\377\377\377\3\264\305\302\377\223\254\247\377\304\317" \ + "\307\377\300\354\354\341\377\3\270\306\277\377\223\254\247\377\303\321" \ + "\316\377\210\377\377\377\377\3\302\320\316\377\223\254\247\377\271\310" \ + "\300\377\317\354\354\341\377\6\326\331\317\377p\205~\377Slg\377g}w\377" \ + "\251\264\254\377\345\346\333\377\212\354\354\341\377\6\322\326\314\377" \ + "\216\235\226\377Wpj\377Tmh\377\234\251\241\377\353\353\340\377\204\354" \ + "\354\341\377\3\336\340\326\377\231\246\236\377Zrl\377\202Slg\377\1s\207" \ + "\201\377\232\354\354\341\377\4\337\343\331\377\223\254\247\377\230\260" \ + "\253\377\371\372\372\377\207\377\377\377\377\4\362\365\364\377\224\255" \ + "\250\377\227\257\251\377\346\350\335\377\300\354\354\341\377\4\335\341" \ + "\327\377\223\254\247\377\232\262\255\377\373\374\374\377\207\377\377" \ + "\377\377\4\357\363\362\377\223\254\247\377\230\260\252\377\350\351\336" \ + "\377\315\354\354\341\377\5\341\343\330\377g}w\377Slg\377\204\225\216" \ + "\377\352\352\340\377\216\354\354\341\377\4\323\327\315\377]to\377Slg" \ + "\377\234\251\241\377\206\354\354\341\377\2\331\334\322\377]uo\377\202" \ + "Slg\377\1\311\316\305\377\231\354\354\341\377\3\272\310\300\377\223\254" \ + "\247\377\277\316\313\377\210\377\377\377\377\3\305\323\320\377\223\254" \ + "\247\377\266\305\276\377\302\354\354\341\377\3\251\274\266\377\223\254" \ + "\247\377\325\336\334\377\210\377\377\377\377\3\261\303\300\377\223\254" \ + "\247\377\310\322\312\377\315\354\354\341\377\4\204\225\216\377Slg\377" \ + "s\207\201\377\347\347\335\377\220\354\354\341\377\4\303\312\300\377U" \ + "ni\377Slg\377\301\310\277\377\206\354\354\341\377\1\272\302\271\377\202" \ + "Slg\377\1\235\252\242\377\230\354\354\341\377\4\350\351\336\377\230\260" \ + "\252\377\223\254\247\377\354\360\357\377\207\377\377\377\377\4\374\375" \ + "\375\377\233\263\256\377\223\254\247\377\333\340\326\377\302\354\354" \ + "\341\377\3\317\327\316\377\223\254\247\377\247\274\270\377\210\377\377" \ + "\377\377\3\336\346\344\377\223\254\247\377\243\267\261\377\314\354\354" \ + "\341\377\4\330\333\321\377Tmg\377Slg\377\310\316\304\377\222\354\354" \ + "\341\377\3\206\227\220\377Slg\377\177\221\212\377\207\354\354\341\377" \ + "\3z\215\206\377Slg\377x\213\205\377\230\354\354\341\377\3\310\322\312" \ + "\377\223\254\247\377\255\300\274\377\210\377\377\377\377\3\327\340\337" \ + "\377\223\254\247\377\247\273\264\377\303\354\354\341\377\4\353\353\340" \ + "\377\234\263\255\377\223\254\247\377\346\354\353\377\207\377\377\377" \ + "\377\4\376\376\376\377\241\266\262\377\223\254\247\377\326\334\323\377" \ + "\313\354\354\341\377\4\241\255\245\377Slg\377Unh\377\345\346\334\377" \ + "\222\354\354\341\377\4\245\261\251\377Slg\377Unh\377\341\342\330\377" \ + "\206\354\354\341\377\3\230\246\236\377Slg\377f|v\377\230\354\354\341" \ + "\377\3\243\270\261\377\223\254\247\377\333\343\342\377\210\377\377\377" \ + "\377\3\251\275\271\377\223\254\247\377\315\326\315\377\304\354\354\341" \ + "\377\3\300\314\304\377\223\254\247\377\271\311\306\377\210\377\377\377" \ + "\377\3\315\331\326\377\223\254\247\377\261\302\273\377\313\354\354\341" \ + "\377\3\207\230\221\377Slg\377m\202|\377\223\354\354\341\377\1\304\312" \ + "\301\377\202Slg\377\1\312\317\306\377\206\354\354\341\377\3\262\273\263" \ + "\377Slg\377Zrm\377\227\354\354\341\377\4\327\335\323\377\223\254\247" \ + "\377\236\264\260\377\375\376\376\377\207\377\377\377\377\4\351\356\355" \ + "\377\223\254\247\377\233\262\254\377\352\352\340\377\304\354\354\341" \ + "\377\4\344\346\334\377\225\255\250\377\226\256\251\377\365\370\367\377" \ + "\207\377\377\377\377\4\367\371\370\377\226\257\252\377\224\255\250\377" \ + "\343\345\333\377\312\354\354\341\377\3v\212\203\377Slg\377o\203}\377" \ + "\223\354\354\341\377\1\306\314\303\377\202Slg\377\1\270\301\270\377\206" \ + "\354\354\341\377\3\306\314\302\377Slg\377Uni\377\227\354\354\341\377" \ + "\3\261\302\273\377\223\254\247\377\311\326\323\377\210\377\377\377\377" \ + "\3\273\313\310\377\223\254\247\377\276\313\303\377\306\354\354\341\377" \ + "\6\262\302\273\377\223\254\247\377\261\304\277\377\336\345\344\377\355" \ + "\361\360\377\374\374\374\377\205\377\377\377\377\3\274\313\310\377\223" \ + "\254\247\377\277\314\304\377\312\354\354\341\377\4q\205\177\377Slg\377" \ + "[sm\377\350\351\336\377\222\354\354\341\377\1\256\270\260\377\202Slg" \ + "\377\1\264\275\264\377\206\354\354\341\377\3\272\302\271\377Slg\377]" \ + "uo\377\226\354\354\341\377\4\343\346\333\377\225\255\250\377\225\256" \ + "\251\377\364\367\366\377\207\377\377\377\377\4\367\371\370\377\226\257" \ + "\252\377\224\255\250\377\343\345\333\377\306\354\354\341\377\4\327\335" \ + "\323\377\223\254\247\377\224\255\250\377\231\261\254\377\202\223\254" \ + "\247\377\11\237\265\261\377\257\301\275\377\276\315\312\377\315\331\326" \ + "\377\334\344\343\377\332\342\340\377\223\254\247\377\234\262\255\377" \ + "\352\353\340\377\311\354\354\341\377\1\201\222\213\377\202Slg\377\1\272" \ + "\302\271\377\222\354\354\341\377\1x\213\204\377\202Slg\377\1\303\311" \ + "\300\377\206\354\354\341\377\3\250\263\253\377Slg\377g}w\377\226\354" \ + "\354\341\377\3\300\314\304\377\223\254\247\377\270\310\305\377\210\377" \ + "\377\377\377\3\315\331\326\377\223\254\247\377\260\301\272\377\310\354" \ + "\354\341\377\12\234\263\255\377\223\254\247\377\333\343\341\377\367\370" \ + "\370\377\350\355\354\377\330\341\340\377\311\326\323\377\272\312\307" \ + "\377\253\277\273\377\234\263\256\377\203\223\254\247\377\1\314\325\314" \ + "\377\311\354\354\341\377\1\232\247\237\377\202Slg\377\2e{u\377\342\343" \ + "\331\377\220\354\354\341\377\1\256\270\260\377\202Slg\377\2Tmg\377\333" \ + "\336\324\377\206\354\354\341\377\3|\216\210\377Slg\377{\216\207\377\225" \ + "\354\354\341\377\4\353\353\340\377\234\263\255\377\223\254\247\377\345" \ + "\353\352\377\207\377\377\377\377\4\376\376\376\377\241\266\262\377\223" \ + "\254\247\377\325\334\322\377\310\354\354\341\377\3\306\320\310\377\223" \ + "\254\247\377\246\273\266\377\207\377\377\377\377\7\371\372\372\377\312" \ + "\326\324\377\223\254\247\377\241\266\260\377\354\354\341\377\341\344" \ + "\331\377\334\340\326\377\306\354\354\341\377\1\315\322\311\377\203Sl" \ + "g\377\2j\177y\377\317\324\312\377\215\354\354\341\377\3\352\352\337\377" \ + "\243\257\247\377Tmh\377\202Slg\377\1v\211\203\377\206\354\354\341\377" \ + "\1\320\324\313\377\202Slg\377\1\221\240\231\377\225\354\354\341\377\3" \ + "\316\327\316\377\223\254\247\377\246\273\267\377\210\377\377\377\377" \ + "\3\336\346\344\377\223\254\247\377\242\267\261\377\311\354\354\341\377" \ + "\4\351\351\337\377\225\255\250\377\223\254\247\377\355\361\361\377\207" \ + "\377\377\377\377\6\374\375\375\377\227\257\252\377\223\254\247\377\306" \ + "\321\310\377\223\254\247\377\251\274\266\377\307\354\354\341\377\1x\213" \ + "\204\377\203Slg\377\4Tmg\377\205\226\217\377\272\302\271\377\342\344" \ + "\331\377\207\354\354\341\377\4\353\353\341\377\322\326\314\377\245\261" \ + "\251\377g}w\377\204Slg\377\1\272\302\271\377\205\354\354\341\377\2\315" \ + "\322\311\377axr\377\202Slg\377\1\264\275\264\377\225\354\354\341\377" \ + "\3\251\274\265\377\223\254\247\377\324\336\334\377\210\377\377\377\377" \ + "\3\261\303\300\377\223\254\247\377\307\321\311\377\312\354\354\341\377" \ + "\3\264\303\274\377\223\254\247\377\271\311\307\377\210\377\377\377\377" \ + "\6\276\315\312\377\223\254\247\377\255\277\270\377\230\260\252\377\223" \ + "\254\247\377\334\341\327\377\306\354\354\341\377\2\324\330\316\377Wp" \ + "j\377\206Slg\377\10cys\377x\213\204\377\177\221\212\377\205\226\217\377" \ + "\203\224\215\377}\217\210\377o\204}\377Yql\377\206Slg\377\1\201\223\214" \ + "\377\204\354\354\341\377\3\276\305\274\377\200\222\213\377Voi\377\203" \ + "Slg\377\1\332\335\323\377\224\354\354\341\377\4\335\341\327\377\223\254" \ + "\247\377\232\261\255\377\373\374\374\377\207\377\377\377\377\4\357\363" \ + "\362\377\223\254\247\377\230\257\252\377\347\351\336\377\312\354\354" \ + "\341\377\4\337\343\331\377\223\254\247\377\225\255\251\377\371\373\373" \ + "\377\207\377\377\377\377\6\362\365\365\377\223\254\247\377\225\255\250" \ + "\377\270\306\277\377\223\254\247\377\267\306\277\377\307\354\354\341" \ + "\377\2\277\306\275\377Wpj\377\222Slg\377\2u\211\202\377\344\345\332\377" \ + "\204\354\354\341\377\1y\214\206\377\204Slg\377\1s\207\200\377\225\354" \ + "\354\341\377\3\267\306\277\377\223\254\247\377\302\320\316\377\210\377" \ + "\377\377\377\3\302\320\316\377\223\254\247\377\271\307\300\377\314\354" \ + "\354\341\377\3\244\270\261\377\223\254\247\377\317\332\330\377\204\377" \ + "\377\377\377\1\370\371\371\377\203\377\377\377\377\6\252\276\271\377" \ + "\223\254\247\377\272\310\302\377\223\254\247\377\227\257\252\377\347" \ + "\350\336\377\307\354\354\341\377\2\304\313\301\377czt\377\220Slg\377" \ + "\2\205\226\217\377\344\345\333\377\205\354\354\341\377\1\210\230\221" \ + "\377\204f|v\377\1\261\272\262\377\224\354\354\341\377\4\347\350\336\377" \ + "\227\257\252\377\223\254\247\377\357\363\362\377\207\377\377\377\377" \ + "\4\373\374\374\377\232\261\255\377\223\254\247\377\336\342\330\377\314" \ + "\354\354\341\377\3\320\331\317\377\223\254\247\377\235\263\257\377\203" \ + "\377\377\377\377\3\324\336\334\377\227\257\252\377\367\370\370\377\202" \ + "\377\377\377\377\6\341\350\346\377\223\254\247\377\232\262\254\377\253" \ + "\275\267\377\223\254\247\377\305\320\310\377\310\354\354\341\377\3\343" \ + "\344\332\377\224\242\233\377Yql\377\214Slg\377\2l\201{\377\273\303\272" \ + "\377\241\354\354\341\377\3\306\320\310\377\223\254\247\377\261\303\300" \ + "\377\210\377\377\377\377\3\324\336\334\377\223\254\247\377\252\275\266" \ + "\377\315\354\354\341\377\4\353\353\341\377\230\260\252\377\223\254\247" \ + "\377\343\352\350\377\202\377\377\377\377\3\357\363\362\377\223\254\247" \ + "\377\315\330\326\377\203\377\377\377\377\5\234\262\256\377\223\254\247" \ + "\377\240\265\257\377\223\254\247\377\241\266\257\377\312\354\354\341" \ + "\377\4\343\344\332\377\255\267\257\377\204\225\216\377bys\377\205Slg" \ + "\377\4Uni\377r\206\177\377\223\242\232\377\306\314\303\377\243\354\354" \ + "\341\377\3\241\266\260\377\223\254\247\377\336\346\344\377\210\377\377" \ + "\377\377\3\247\273\267\377\223\254\247\377\320\330\317\377\316\354\354" \ + "\341\377\3\276\313\303\377\223\254\247\377\255\300\274\377\203\377\377" \ + "\377\377\3\261\303\300\377\241\266\262\377\376\376\376\377\202\377\377" \ + "\377\377\1\313\327\324\377\202\223\254\247\377\3\226\256\251\377\223" \ + "\254\247\377\324\333\321\377\315\354\354\341\377\6\344\345\333\377\333" \ + "\336\324\377\322\326\314\377\326\331\317\377\337\341\326\377\351\351" \ + "\337\377\245\354\354\341\377\4\324\333\322\377\223\254\247\377\241\266" \ + "\262\377\376\376\376\377\207\377\377\377\377\4\346\353\352\377\223\254" \ + "\247\377\235\263\256\377\353\353\340\377\316\354\354\341\377\4\345\347" \ + "\335\377\224\254\250\377\223\254\247\377\363\366\365\377\202\377\377" \ + "\377\377\3\337\346\345\377\223\254\247\377\336\346\344\377\202\377\377" \ + "\377\377\6\371\372\372\377\225\255\250\377\224\254\247\377\275\312\302" \ + "\377\223\254\247\377\256\300\271\377\370\354\354\341\377\3\257\300\271" \ + "\377\223\254\247\377\315\331\326\377\210\377\377\377\377\3\270\311\305" \ + "\377\223\254\247\377\301\315\305\377\320\354\354\341\377\3\254\276\270" \ + "\377\223\254\247\377\301\320\314\377\202\377\377\377\377\3\376\376\376" \ + "\377\241\266\262\377\261\303\300\377\203\377\377\377\377\6\265\306\303" \ + "\377\223\254\247\377\266\303\274\377\225\256\251\377\224\255\250\377" \ + "\341\344\332\377\366\354\354\341\377\4\342\344\332\377\224\255\250\377" \ + "\226\257\252\377\367\371\370\377\207\377\377\377\377\4\365\367\367\377" \ + "\225\256\251\377\225\256\250\377\344\346\334\377\320\354\354\341\377" \ + "\4\332\337\325\377\223\254\247\377\227\257\253\377\374\375\375\377\202" \ + "\377\377\377\377\3\315\331\326\377\223\254\247\377\360\363\363\377\202" \ + "\377\377\377\377\6\354\361\360\377\223\254\247\377\226\256\251\377\263" \ + "\303\274\377\223\254\247\377\275\312\302\377\330\354\354\341\377\3\333" \ + "\335\323\377\317\324\312\377\326\332\320\377\233\354\354\341\377\3\275" \ + "\312\303\377\223\254\247\377\274\313\310\377\210\377\377\377\377\3\312" \ + "\326\324\377\223\254\247\377\263\303\274\377\322\354\354\341\377\3\237" \ + "\265\257\377\223\254\247\377\327\341\337\377\202\377\377\377\377\3\367" \ + "\371\370\377\226\257\252\377\303\321\316\377\203\377\377\377\377\6\243" \ + "\271\264\377\223\254\247\377\276\313\304\377\223\254\247\377\232\262" \ + "\254\377\352\353\340\377\327\354\354\341\377\3\215\234\225\377Slg\377" \ + "y\214\205\377\232\354\354\341\377\4\352\352\337\377\232\261\254\377\223" \ + "\254\247\377\351\356\355\377\207\377\377\377\377\4\375\376\376\377\236" \ + "\265\260\377\223\254\247\377\330\336\324\377\322\354\354\341\377\3\311" \ + "\323\313\377\223\254\247\377\242\270\264\377\203\377\377\377\377\3\274" \ + "\313\310\377\232\262\255\377\373\374\374\377\202\377\377\377\377\6\330" \ + "\341\340\377\223\254\247\377\236\264\256\377\270\307\300\377\315\326" \ + "\315\377\352\353\340\377\327\354\354\341\377\3\215\234\225\377Slg\377" \ + "y\214\205\377\232\354\354\341\377\3\314\325\314\377\223\254\247\377\252" \ + "\276\272\377\210\377\377\377\377\3\333\344\342\377\223\254\247\377\244" \ + "\271\262\377\323\354\354\341\377\4\352\352\337\377\226\256\252\377\223" \ + "\254\247\377\352\357\356\377\202\377\377\377\377\3\351\356\355\377\223" \ + "\254\247\377\325\337\335\377\202\377\377\377\377\4\375\376\376\377\230" \ + "\257\253\377\223\254\247\377\332\337\325\377\331\354\354\341\377\3\215" \ + "\234\225\377Slg\377y\214\205\377\232\354\354\341\377\3\246\272\264\377" \ + "\223\254\247\377\330\341\337\377\210\377\377\377\377\3\256\301\275\377" \ + "\223\254\247\377\312\323\313\377\324\354\354\341\377\3\270\306\276\377" \ + "\223\254\247\377\264\305\301\377\203\377\377\377\377\2\252\276\272\377" \ + "\250\274\270\377\203\377\377\377\377\3\302\321\316\377\223\254\247\377" \ + "\256\300\271\377\310\354\354\341\377\5\343\344\332\377\310\316\304\377" \ + "\262\273\263\377\250\263\253\377\241\255\245\377\214\237\254\244\377" \ + "\3p\204~\377Slg\377y\214\205\377\231\354\354\341\377\4\332\337\325\377" \ + "\223\254\247\377\234\263\256\377\374\375\375\377\207\377\377\377\377" \ + "\4\355\361\360\377\223\254\247\377\231\261\253\377\351\352\337\377\324" \ + "\354\354\341\377\4\341\344\332\377\223\254\247\377\224\255\250\377\370" \ + "\371\371\377\202\377\377\377\377\3\330\341\337\377\223\254\247\377\347" \ + "\355\354\377\202\377\377\377\377\4\365\367\367\377\224\255\247\377\224" \ + "\255\250\377\345\347\334\377\305\354\354\341\377\3\300\307\276\377~\220" \ + "\211\377Unh\377\222Slg\377\1y\214\205\377\231\354\354\341\377\3\265\304" \ + "\275\377\223\254\247\377\306\323\320\377\210\377\377\377\377\3\300\317" \ + "\314\377\223\254\247\377\273\311\301\377\326\354\354\341\377\3\247\272" \ + "\263\377\223\254\247\377\311\326\323\377\202\377\377\377\377\11\374\375" \ + "\375\377\234\263\256\377\272\312\307\377\377\377\377\377\373\374\374" \ + "\377\325\336\334\377\230\260\253\377\223\254\247\377\302\316\306\377" \ + "\303\354\354\341\377\2\353\353\340\377\215\234\225\377\225Slg\377\1y" \ + "\214\205\377\230\354\354\341\377\4\345\347\335\377\226\256\251\377\224" \ + "\255\250\377\362\365\365\377\207\377\377\377\377\4\371\372\372\377\230" \ + "\260\253\377\224\255\247\377\340\343\331\377\326\354\354\341\377\3\324" \ + "\332\321\377\223\254\247\377\232\261\255\377\203\377\377\377\377\11\306" \ + "\323\321\377\226\256\251\377\300\317\314\377\232\262\255\377\231\261" \ + "\254\377\267\307\304\377\223\254\247\377\236\264\256\377\353\353\341" \ + "\377\302\354\354\341\377\1\227\245\235\377\226Slg\377\1y\214\205\377" \ + "\230\354\354\341\377\3\303\316\306\377\223\254\247\377\264\306\302\377" \ + "\210\377\377\377\377\3\321\334\332\377\223\254\247\377\255\277\270\377" \ + "\330\354\354\341\377\16\232\262\254\377\223\254\247\377\337\346\345\377" \ + "\377\377\377\377\341\350\347\377\260\302\277\377\224\254\247\377\245" \ + "\271\266\377\324\336\334\377\372\373\373\377\377\377\377\377\246\273" \ + "\267\377\223\254\247\377\321\330\317\377\301\354\354\341\377\2\326\331" \ + "\317\377Uni\377\205Slg\377\4`wr\377l\201{\377x\213\204\377\204\225\216" \ + "\377\213\207\230\221\377\3g}w\377Slg\377y\214\205\377\227\354\354\341" \ + "\377\4\353\353\341\377\237\264\257\377\223\254\247\377\342\351\350\377" \ + "\210\377\377\377\377\3\244\271\265\377\223\254\247\377\322\331\320\377" \ + "\330\354\354\341\377\7\302\315\306\377\223\254\247\377\237\265\261\377" \ + "\244\271\264\377\225\256\251\377\270\311\305\377\346\353\352\377\204" \ + "\377\377\377\377\3\324\336\334\377\223\254\247\377\253\276\267\377\301" \ + "\354\354\341\377\1\244\260\250\377\203Slg\377\3^vp\377\236\253\243\377" \ + "\324\330\316\377\217\354\354\341\377\3\215\234\225\377Slg\377y\214\205" \ + "\377\227\354\354\341\377\3\321\331\320\377\223\254\247\377\244\271\264" \ + "\377\210\377\377\377\377\3\343\352\350\377\223\254\247\377\237\265\257" \ + "\377\331\354\354\341\377\5\347\350\336\377\225\255\250\377\223\254\247" \ + "\377\303\320\316\377\365\367\367\377\206\377\377\377\377\4\373\374\374" \ + "\377\232\261\254\377\223\254\247\377\337\342\330\377\300\354\354\341" \ + "\377\1\202\224\215\377\202Slg\377\2Woj\377\311\316\305\377\221\354\354" \ + "\341\377\3\215\234\225\377Slg\377y\214\205\377\227\354\354\341\377\3" \ + "\254\276\267\377\223\254\247\377\320\333\331\377\210\377\377\377\377" \ + "\3\265\306\303\377\223\254\247\377\304\317\307\377\332\354\354\341\377" \ + "\3\267\306\276\377\223\254\247\377\304\322\317\377\210\377\377\377\377" \ + "\3\302\320\316\377\223\254\247\377\272\310\300\377\300\354\354\341\377" \ + "\1u\210\202\377\202Slg\377\1\224\243\233\377\222\354\354\341\377\3\215" \ + "\234\225\377Slg\377y\214\205\377\226\354\354\341\377\4\337\343\331\377" \ + "\223\254\247\377\230\260\253\377\371\372\372\377\207\377\377\377\377" \ + "\4\363\366\365\377\224\255\250\377\226\256\251\377\346\350\335\377\332" \ + "\354\354\341\377\4\334\340\327\377\223\254\247\377\233\262\255\377\373" \ + "\374\374\377\207\377\377\377\377\4\357\363\362\377\223\254\247\377\230" \ + "\260\252\377\350\351\336\377\277\354\354\341\377\1r\206\177\377\202S" \ + "lg\377\1\262\274\263\377\222\354\354\341\377\3\325\330\316\377\306\314" \ + "\302\377\317\324\312\377\226\354\354\341\377\3\272\310\301\377\223\254" \ + "\247\377\277\316\313\377\210\377\377\377\377\3\307\324\321\377\223\254" \ + "\247\377\266\305\276\377\334\354\354\341\377\3\250\273\265\377\223\254" \ + "\247\377\325\337\335\377\210\377\377\377\377\3\261\303\300\377\223\254" \ + "\247\377\310\322\312\377\277\354\354\341\377\1\206\227\220\377\202Sl" \ + "g\377\1\310\316\304\377\252\354\354\341\377\4\351\351\337\377\231\260" \ + "\253\377\223\254\247\377\354\361\360\377\207\377\377\377\377\4\374\375" \ + "\375\377\234\263\257\377\223\254\247\377\333\340\326\377\334\354\354" \ + "\341\377\3\316\326\315\377\223\254\247\377\250\274\270\377\210\377\377" \ + "\377\377\3\336\346\344\377\223\254\247\377\243\270\261\377\277\354\354" \ + "\341\377\1\242\256\246\377\202Slg\377\1\261\272\262\377\252\354\354\341" \ + "\377\3\311\323\312\377\223\254\247\377\256\301\275\377\210\377\377\377" \ + "\377\3\330\341\340\377\223\254\247\377\247\272\264\377\335\354\354\341" \ + "\377\4\352\353\340\377\234\262\255\377\223\254\247\377\347\355\354\377" \ + "\207\377\377\377\377\4\376\376\376\377\241\266\262\377\223\254\247\377" \ + "\327\335\323\377\276\354\354\341\377\4\336\340\326\377Xpk\377Slg\377" \ + "\221\240\230\377\222\354\354\341\377\3\336\340\326\377\324\330\316\377" \ + "\332\335\323\377\225\354\354\341\377\3\243\270\262\377\223\254\247\377" \ + "\333\343\342\377\210\377\377\377\377\3\253\277\273\377\223\254\247\377" \ + "\315\325\315\377\336\354\354\341\377\3\277\314\304\377\223\254\247\377" \ + "\272\312\306\377\210\377\377\377\377\3\315\331\326\377\223\254\247\377" \ + "\261\302\273\377\277\354\354\341\377\4\232\250\240\377Slg\377^up\377" \ + "\330\333\321\377\221\354\354\341\377\3\215\234\225\377Slg\377y\214\205" \ + "\377\224\354\354\341\377\4\327\335\324\377\223\254\247\377\236\264\260" \ + "\377\375\376\376\377\207\377\377\377\377\4\352\357\356\377\223\254\247" \ + "\377\233\262\254\377\352\352\340\377\336\354\354\341\377\4\343\345\333" \ + "\377\224\255\250\377\226\256\251\377\366\370\367\377\207\377\377\377" \ + "\377\4\367\371\370\377\226\257\252\377\225\255\250\377\343\346\333\377" \ + "\276\354\354\341\377\5\353\353\340\377\207\230\221\377Slg\377l\201{\377" \ + "\344\345\332\377\220\354\354\341\377\3\215\234\225\377Slg\377y\214\205" \ + "\377\224\354\354\341\377\3\262\302\273\377\223\254\247\377\312\326\324" \ + "\377\210\377\377\377\377\3\275\314\311\377\223\254\247\377\276\313\303" \ + "\377\340\354\354\341\377\3\261\301\272\377\223\254\247\377\313\327\325" \ + "\377\210\377\377\377\377\3\274\313\310\377\223\254\247\377\300\314\304" \ + "\377\277\354\354\341\377\6\351\351\337\377\237\254\244\377Wpj\377axr" \ + "\377\237\254\244\377\336\340\326\377\216\354\354\341\377\3\215\234\225" \ + "\377Slg\377y\214\205\377\223\354\354\341\377\4\344\346\334\377\225\255" \ + "\250\377\225\256\251\377\365\367\367\377\207\377\377\377\377\4\370\371" \ + "\371\377\227\257\252\377\224\255\250\377\342\345\333\377\340\354\354" \ + "\341\377\4\326\334\323\377\223\254\247\377\237\265\261\377\376\376\376" \ + "\377\207\377\377\377\377\4\351\356\355\377\223\254\247\377\234\263\255" \ + "\377\353\353\340\377\274\354\354\341\377\1\335\337\325\377\203\232\250" \ + "\240\377\1\204\225\216\377\202Slg\377\5Voi\377k\200z\377|\216\210\377" \ + "\214\234\224\377\231\247\237\377\212\232\250\240\377\3n\203}\377Slg\377" \ + "y\214\205\377\223\354\354\341\377\3\300\315\305\377\223\254\247\377\270" \ + "\311\305\377\210\377\377\377\377\3\316\332\327\377\223\254\247\377\260" \ + "\301\272\377\342\354\354\341\377\3\242\267\261\377\223\254\247\377\335" \ + "\345\343\377\210\377\377\377\377\3\252\276\272\377\223\254\247\377\316" \ + "\327\316\377\274\354\354\341\377\1\320\324\313\377\227Slg\377\1y\214" \ + "\205\377\222\354\354\341\377\4\353\353\340\377\234\263\255\377\223\254" \ + "\247\377\346\353\352\377\210\377\377\377\377\3\242\267\263\377\223\254" \ + "\247\377\325\333\322\377\342\354\354\341\377\3\310\322\311\377\223\254" \ + "\247\377\257\302\276\377\210\377\377\377\377\3\330\341\337\377\223\254" \ + "\247\377\251\274\265\377\274\354\354\341\377\1\320\324\313\377\227Sl" \ + "g\377\1y\214\205\377\222\354\354\341\377\3\317\327\316\377\223\254\247" \ + "\377\247\273\267\377\210\377\377\377\377\3\340\347\346\377\223\254\247" \ + "\377\241\266\260\377\343\354\354\341\377\4\350\351\336\377\230\260\252" \ + "\377\223\254\247\377\356\362\361\377\207\377\377\377\377\4\374\375\375" \ + "\377\234\263\256\377\223\254\247\377\335\341\327\377\273\354\354\341" \ + "\377\1\320\324\313\377\227Slg\377\1y\214\205\377\222\354\354\341\377" \ + "\3\251\274\266\377\223\254\247\377\324\336\334\377\210\377\377\377\377" \ + "\3\263\304\301\377\223\254\247\377\307\321\311\377\344\354\354\341\377" \ + "\3\271\310\300\377\223\254\247\377\301\317\314\377\210\377\377\377\377" \ + "\3\306\323\321\377\223\254\247\377\267\306\277\377\273\354\354\341\377" \ + "\1\320\324\313\377\202Slg\377\1\177\221\212\377\222\214\234\224\377\3" \ + "i~x\377Slg\377y\214\205\377\221\354\354\341\377\4\335\341\327\377\223" \ + "\254\247\377\232\261\254\377\373\374\374\377\207\377\377\377\377\4\361" \ + "\364\363\377\224\255\250\377\230\257\252\377\347\351\336\377\344\354" \ + "\354\341\377\4\336\342\330\377\223\254\247\377\231\261\254\377\372\373" \ + "\373\377\207\377\377\377\377\4\362\365\365\377\224\255\250\377\227\257" \ + "\252\377\347\350\336\377\272\354\354\341\377\1\320\324\313\377\202Sl" \ + "g\377\1\312\320\306\377\222\354\354\341\377\3\215\234\225\377Slg\377" \ + "y\214\205\377\221\354\354\341\377\3\270\306\277\377\223\254\247\377\303" \ + "\321\316\377\210\377\377\377\377\3\304\322\317\377\223\254\247\377\270" \ + "\307\277\377\346\354\354\341\377\3\253\275\266\377\223\254\247\377\323" \ + "\335\333\377\210\377\377\377\377\3\265\306\303\377\223\254\247\377\306" \ + "\320\310\377\272\354\354\341\377\1\320\324\313\377\202Slg\377\1\312\320" \ + "\306\377\222\354\354\341\377\3\215\234\225\377Slg\377y\214\205\377\220" \ + "\354\354\341\377\4\347\350\336\377\227\257\252\377\223\254\247\377\357" \ + "\363\362\377\207\377\377\377\377\4\373\374\374\377\233\262\255\377\223" \ + "\254\247\377\335\341\327\377\346\354\354\341\377\3\320\330\317\377\223" \ + "\254\247\377\245\272\266\377\210\377\377\377\377\3\342\351\350\377\223" \ + "\254\247\377\241\266\260\377\272\354\354\341\377\1\320\324\313\377\202" \ + "Slg\377\1\312\320\306\377\222\354\354\341\377\3\215\234\225\377Slg\377" \ + "y\214\205\377\220\354\354\341\377\3\306\321\310\377\223\254\247\377\261" \ + "\303\300\377\210\377\377\377\377\3\326\337\336\377\223\254\247\377\252" \ + "\274\266\377\347\354\354\341\377\4\353\353\340\377\235\264\256\377\223" \ + "\254\247\377\344\352\351\377\210\377\377\377\377\3\244\271\264\377\223" \ + "\254\247\377\324\333\321\377\271\354\354\341\377\1\333\336\324\377\202" \ + "\221\240\230\377\1\330\333\321\377\222\354\354\341\377\3\314\321\307" \ + "\377\267\300\267\377\304\313\301\377\220\354\354\341\377\3\241\266\260" \ + "\377\223\254\247\377\337\346\345\377\210\377\377\377\377\3\250\274\270" \ + "\377\223\254\247\377\317\327\316\377\350\354\354\341\377\3\302\316\305" \ + "\377\223\254\247\377\267\307\304\377\210\377\377\377\377\3\321\334\331" \ + "\377\223\254\247\377\257\300\271\377\341\354\354\341\377\4\325\333\322" \ + "\377\223\254\247\377\241\267\262\377\376\376\376\377\207\377\377\377" \ + "\377\4\347\355\354\377\223\254\247\377\235\263\255\377\353\353\340\377" \ + "\350\354\354\341\377\4\345\347\334\377\225\256\251\377\225\255\250\377" \ + "\364\366\366\377\207\377\377\377\377\4\371\372\372\377\230\260\253\377" \ + "\224\255\250\377\342\344\332\377\340\354\354\341\377\3\257\300\271\377" \ + "\223\254\247\377\315\331\327\377\210\377\377\377\377\3\272\312\307\377" \ + "\223\254\247\377\301\315\305\377\352\354\354\341\377\3\263\303\274\377" \ + "\223\254\247\377\310\325\322\377\210\377\377\377\377\3\277\316\313\377" \ + "\223\254\247\377\275\312\302\377\337\354\354\341\377\4\342\345\332\377" \ + "\224\255\250\377\226\257\252\377\367\371\370\377\207\377\377\377\377" \ + "\4\366\370\370\377\226\256\251\377\225\256\250\377\344\346\334\377\352" \ + "\354\354\341\377\4\331\336\324\377\223\254\247\377\235\264\257\377\375" \ + "\375\375\377\207\377\377\377\377\4\354\361\360\377\223\254\247\377\232" \ + "\261\254\377\352\352\337\377\314\354\354\341\377\1\303\312\300\377\202" \ + "t\210\201\377\1\350\351\336\377\216\354\354\341\377\3\276\313\303\377" \ + "\223\254\247\377\274\313\310\377\210\377\377\377\377\3\313\327\325\377" \ + "\223\254\247\377\262\303\273\377\354\354\354\341\377\3\245\271\263\377" \ + "\223\254\247\377\332\342\341\377\210\377\377\377\377\3\256\301\275\377" \ + "\223\254\247\377\314\325\314\377\314\354\354\341\377\1\267\300\267\377" \ + "\202Slg\377\1\347\350\335\377\215\354\354\341\377\4\352\352\337\377\232" \ + "\261\254\377\223\254\247\377\351\356\355\377\207\377\377\377\377\4\376" \ + "\376\376\377\240\266\261\377\223\254\247\377\330\335\324\377\354\354" \ + "\354\341\377\3\312\324\313\377\223\254\247\377\254\277\273\377\210\377" \ + "\377\377\377\3\333\343\342\377\223\254\247\377\246\272\263\377\314\354" \ + "\354\341\377\1\267\300\267\377\202Slg\377\1\347\350\335\377\215\354\354" \ + "\341\377\3\314\325\314\377\223\254\247\377\252\276\272\377\210\377\377" \ + "\377\377\3\335\345\343\377\223\254\247\377\244\270\262\377\355\354\354" \ + "\341\377\4\351\352\337\377\232\261\253\377\223\254\247\377\353\360\357" \ + "\377\207\377\377\377\377\4\375\376\376\377\236\264\260\377\223\254\247" \ + "\377\332\337\325\377\312\354\354\341\377\2\343\344\332\377\225\243\234" \ + "\377\202Slg\377\1\347\350\335\377\215\354\354\341\377\3\247\272\264\377" \ + "\223\254\247\377\330\341\337\377\210\377\377\377\377\3\260\302\276\377" \ + "\223\254\247\377\311\323\312\377\356\354\354\341\377\3\274\311\302\377" \ + "\223\254\247\377\276\315\312\377\210\377\377\377\377\3\312\326\324\377" \ + "\223\254\247\377\265\304\275\377\307\354\354\341\377\4\353\353\341\377" \ + "\306\314\302\377\212\232\223\377Xqk\377\203Slg\377\1\347\350\335\377" \ + "\214\354\354\341\377\4\332\337\325\377\223\254\247\377\234\263\256\377" \ + "\374\375\375\377\207\377\377\377\377\4\356\362\361\377\223\254\247\377" \ + "\224\254\247\377\342\345\332\377\356\354\354\341\377\17\340\344\331\377" \ + "\224\255\247\377\227\257\252\377\370\372\371\377\371\372\372\377\343" \ + "\352\350\377\316\332\327\377\324\336\334\377\352\357\356\377\375\375" \ + "\375\377\377\377\377\377\365\367\367\377\225\256\251\377\226\256\251" \ + "\377\345\347\335\377\304\354\354\341\377\3\334\336\324\377\242\256\246" \ + "\377h~x\377\206Slg\377\1\347\350\335\377\214\354\354\341\377\3\265\304" \ + "\275\377\223\254\247\377\306\323\321\377\210\377\377\377\377\4\301\317" \ + "\315\377\223\254\247\377\224\255\250\377\272\310\300\377\357\354\354" \ + "\341\377\4\256\277\270\377\223\254\247\377\254\277\274\377\224\255\250" \ + "\377\204\223\254\247\377\6\233\262\255\377\332\342\341\377\377\377\377" \ + "\377\270\311\305\377\223\254\247\377\303\316\306\377\301\354\354\341" \ + "\377\4\351\351\337\377\272\302\271\377\177\221\212\377Unh\377\210Slg" \ + "\377\1\347\350\335\377\213\354\354\341\377\4\346\347\335\377\226\256" \ + "\251\377\224\255\250\377\362\365\365\377\207\377\377\377\377\5\372\373" \ + "\373\377\231\261\254\377\223\254\247\377\256\301\275\377\245\271\263" \ + "\377\357\354\354\341\377\17\311\323\313\377\224\256\250\377\224\255\250" \ + "\377\300\317\314\377\342\351\347\377\367\371\370\377\361\364\363\377" \ + "\333\343\341\377\254\277\274\377\223\254\247\377\270\310\305\377\344" \ + "\352\351\377\223\254\247\377\236\264\256\377\353\353\341\377\276\354" \ + "\354\341\377\3\322\326\314\377\227\245\236\377`wq\377\213Slg\377\1\347" \ + "\350\335\377\213\354\354\341\377\3\303\317\306\377\223\254\247\377\265" \ + "\306\303\377\210\377\377\377\377\6\323\335\333\377\223\254\247\377\262" \ + "\304\300\377\311\325\323\377\226\256\251\377\351\352\340\377\355\354" \ + "\354\341\377\4\352\353\340\377\245\271\263\377\234\262\256\377\346\353" \ + "\352\377\205\377\377\377\377\7\376\376\376\377\313\327\325\377\223\254" \ + "\247\377\312\327\324\377\247\273\267\377\223\254\247\377\321\331\317" \ + "\377\273\354\354\341\377\3\344\345\333\377\257\271\261\377t\210\201\377" \ + "\213Slg\377\1cys\377\202Slg\377\1\347\350\335\377\212\354\354\341\377" \ + "\4\353\353\341\377\237\264\257\377\223\254\247\377\342\351\350\377\210" \ + "\377\377\377\377\6\246\272\266\377\223\254\247\377\337\347\345\377\316" \ + "\331\327\377\223\254\247\377\350\351\336\377\355\354\354\341\377\3\302" \ + "\316\305\377\223\254\247\377\337\346\345\377\210\377\377\377\377\5\271" \ + "\311\306\377\225\256\251\377\310\326\323\377\223\254\247\377\254\276" \ + "\267\377\271\354\354\341\377\3\307\315\304\377\214\234\224\377Yql\377" \ + "\212Slg\377\4axr\377\231\247\237\377\323\327\315\377\267\300\267\377" \ + "\202Slg\377\1\347\350\335\377\212\354\354\341\377\3\322\331\320\377\223" \ + "\254\247\377\244\271\265\377\205\377\377\377\377\11\363\366\365\377\364" \ + "\366\366\377\377\377\377\377\344\352\351\377\223\254\247\377\241\267" \ + "\263\377\376\376\376\377\270\310\305\377\241\266\261\377\356\354\354" \ + "\341\377\2\240\265\257\377\263\305\301\377\211\377\377\377\377\6\370" \ + "\372\371\377\226\257\252\377\306\323\321\377\232\261\254\377\223\254" \ + "\247\377\337\343\331\377\265\354\354\341\377\3\335\337\325\377\244\260" \ + "\250\377i\177y\377\212Slg\377\4Voi\377\203\224\215\377\276\305\274\377" \ + "\352\352\337\377\202\354\354\341\377\1\267\300\267\377\202Slg\377\1\347" \ + "\350\335\377\212\354\354\341\377\3\254\276\270\377\223\254\247\377\321" \ + "\334\331\377\204\377\377\377\377\12\320\333\330\377\224\255\250\377\225" \ + "\255\250\377\323\335\333\377\267\310\304\377\223\254\247\377\316\331" \ + "\327\377\367\371\370\377\234\263\256\377\263\303\274\377\355\354\354" \ + "\341\377\3\346\350\335\377\224\255\250\377\315\330\326\377\212\377\377" \ + "\377\377\5\252\276\272\377\261\303\277\377\303\321\316\377\223\254\247" \ + "\377\272\310\301\377\243\354\354\341\377\7\343\344\332\377\257\271\260" \ + "\377\223\241\232\377\203\224\215\377\246\262\252\377\320\324\313\377" \ + "\353\353\341\377\210\354\354\341\377\4\352\352\337\377\274\304\273\377" \ + "\201\222\213\377Unh\377\213Slg\377\2\226\244\234\377\337\341\326\377" \ + "\205\354\354\341\377\1\267\300\267\377\202Slg\377\1\347\350\335\377\212" \ + "\354\354\341\377\202\224\255\250\377\1\371\372\372\377\204\377\377\377" \ + "\377\12\243\271\264\377\250\274\270\377\245\272\265\377\244\272\265\377" \ + "\225\255\250\377\227\257\252\377\367\371\371\377\270\310\305\377\225" \ + "\256\251\377\334\341\327\377\355\354\354\341\377\3\330\335\324\377\223" \ + "\254\247\377\336\346\344\377\212\377\377\377\377\5\275\314\311\377\240" \ + "\266\261\377\353\357\356\377\223\254\247\377\240\265\257\377\242\354" \ + "\354\341\377\2\306\314\302\377e{u\377\205Slg\377\2h~x\377\334\336\324" \ + "\377\205\354\354\341\377\3\324\330\316\377\231\246\236\377axr\377\212" \ + "Slg\377\2[sn\377\202\224\215\377\202Slg\377\1\301\310\277\377\206\354" \ + "\354\341\377\1\323\327\315\377\202\244\260\250\377\1\352\352\340\377" \ + "\212\354\354\341\377\3\227\257\252\377\223\254\247\377\376\376\376\377" \ + "\204\377\377\377\377\1\272\312\307\377\202\223\254\247\377\6\251\274" \ + "\271\377\223\254\247\377\272\312\307\377\275\314\311\377\223\254\247" \ + "\377\300\315\305\377\356\354\354\341\377\3\343\346\333\377\223\254\247" \ + "\377\321\334\331\377\212\377\377\377\377\202\256\301\275\377\3\355\361" \ + "\361\377\223\254\247\377\242\267\261\377\241\354\354\341\377\2\306\314" \ + "\303\377Tmh\377\207Slg\377\6o\203}\377\344\345\332\377\354\354\341\377" \ + "\345\346\333\377\261\272\262\377v\211\203\377\212Slg\377\5Tmg\377y\214" \ + "\205\377\264\275\264\377\346\347\334\377\324\330\316\377\202Slg\377\1" \ + "\301\310\277\377\224\354\354\341\377\3\233\262\254\377\223\254\247\377" \ + "\371\373\373\377\204\377\377\377\377\11\371\372\372\377\320\333\331\377" \ + "\321\333\331\377\235\263\257\377\223\254\247\377\235\263\257\377\225" \ + "\255\251\377\277\313\303\377\353\353\340\377\357\354\354\341\377\2\234" \ + "\262\255\377\272\312\307\377\211\377\377\377\377\6\375\375\375\377\231" \ + "\261\254\377\303\321\316\377\351\356\355\377\223\254\247\377\246\272" \ + "\263\377\240\354\354\341\377\2\344\345\333\377f|v\377\202Slg\377\5\202" \ + "\224\215\377\316\323\311\377\344\345\332\377\306\314\302\377s\207\201" \ + "\377\202Slg\377\3y\214\205\377\216\235\226\377Zrm\377\212Slg\377\3dz" \ + "t\377\235\252\242\377\327\332\320\377\203\354\354\341\377\1\324\330\316" \ + "\377\202Slg\377\1\301\310\277\377\224\354\354\341\377\3\237\264\257\377" \ + "\223\254\247\377\365\367\367\377\206\377\377\377\377\5\332\343\341\377" \ + "\223\254\247\377\225\255\250\377\255\277\267\377\332\337\325\377\361" \ + "\354\354\341\377\3\267\306\277\377\226\256\251\377\354\360\357\377\210" \ + "\377\377\377\377\6\311\326\323\377\223\254\247\377\342\351\350\377\344" \ + "\352\351\377\223\254\247\377\252\274\266\377\240\354\354\341\377\1\257" \ + "\271\261\377\202Slg\377\1\204\225\216\377\204\354\354\341\377\2\350\351" \ + "\336\377m\202|\377\213Slg\377\4Woj\377\205\226\217\377\300\307\276\377" \ + "\353\353\340\377\205\354\354\341\377\1\324\330\316\377\202Slg\377\1\301" \ + "\310\277\377\224\354\354\341\377\3\242\267\261\377\223\254\247\377\360" \ + "\363\363\377\206\377\377\377\377\3\255\300\274\377\223\254\247\377\314" \ + "\325\314\377\363\354\354\341\377\4\347\350\336\377\234\263\255\377\247" \ + "\273\267\377\365\370\367\377\206\377\377\377\377\7\342\351\347\377\225" \ + "\255\250\377\273\313\310\377\377\377\377\377\340\347\345\377\223\254" \ + "\247\377\256\277\270\377\240\354\354\341\377\1\221\240\230\377\202Sl" \ + "g\377\1\320\325\313\377\205\354\354\341\377\1\264\275\264\377\211Slg" \ + "\377\3o\203}\377\251\264\254\377\341\342\330\377\210\354\354\341\377" \ + "\1\324\330\316\377\202Slg\377\1\301\310\277\377\224\354\354\341\377\3" \ + "\246\272\264\377\223\254\247\377\353\360\357\377\205\377\377\377\377" \ + "\4\354\360\357\377\223\254\247\377\233\262\254\377\352\352\340\377\364" \ + "\354\354\341\377\5\325\333\322\377\226\256\252\377\233\262\256\377\327" \ + "\340\337\377\367\370\370\377\202\377\377\377\377\11\360\364\363\377\303" \ + "\321\316\377\223\254\247\377\244\271\265\377\371\372\372\377\377\377" \ + "\377\377\333\344\342\377\223\254\247\377\261\302\273\377\240\354\354" \ + "\341\377\1|\216\210\377\202Slg\377\1\345\346\333\377\205\354\354\341" \ + "\377\1\310\316\304\377\206Slg\377\3]to\377\222\241\231\377\315\322\310" \ + "\377\213\354\354\341\377\1\324\330\316\377\202Slg\377\1\301\310\277\377" \ + "\224\354\354\341\377\3\252\275\266\377\223\254\247\377\346\354\353\377" \ + "\205\377\377\377\377\3\276\315\312\377\223\254\247\377\276\313\303\377" \ + "\366\354\354\341\377\2\340\344\331\377\251\274\265\377\202\223\254\247" \ + "\377\2\236\264\260\377\230\257\253\377\202\223\254\247\377\2\304\322" \ + "\317\377\374\374\374\377\202\377\377\377\377\3\327\340\336\377\223\254" \ + "\247\377\265\305\275\377\240\354\354\341\377\1\224\243\233\377\202Sl" \ + "g\377\1\314\321\310\377\205\354\354\341\377\1\257\271\261\377\204Slg" \ + "\377\3Tmg\377\235\252\242\377\347\350\335\377\215\354\354\341\377\1\324" \ + "\330\316\377\202Slg\377\1\301\310\277\377\224\354\354\341\377\3\256\277" \ + "\271\377\223\254\247\377\342\351\347\377\204\377\377\377\377\4\371\372" \ + "\372\377\230\260\253\377\224\255\250\377\342\345\332\377\370\354\354" \ + "\341\377\6\327\335\323\377\304\317\307\377\253\275\267\377\223\254\247" \ + "\377\233\262\256\377\357\362\362\377\204\377\377\377\377\3\323\335\333" \ + "\377\223\254\247\377\271\307\300\377\240\354\354\341\377\1\264\275\265" \ + "\377\202Slg\377\2{\216\207\377\352\352\340\377\203\354\354\341\377\2" \ + "\345\346\333\377g}w\377\206Slg\377\3u\211\202\377\261\272\262\377\345" \ + "\346\333\377\213\354\354\341\377\1\324\330\316\377\202Slg\377\1\301\310" \ + "\277\377\224\354\354\341\377\3\262\302\273\377\223\254\247\377\335\345" \ + "\343\377\204\377\377\377\377\3\320\333\331\377\223\254\247\377\257\300" \ + "\271\377\374\354\354\341\377\3\242\267\261\377\223\254\247\377\336\345" \ + "\344\377\204\377\377\377\377\3\316\331\327\377\223\254\247\377\275\312" \ + "\302\377\240\354\354\341\377\2\350\351\336\377o\204}\377\202Slg\377\5" \ + "t\210\201\377\272\302\271\377\315\322\310\377\262\273\263\377g}w\377" \ + "\202Slg\377\3\200\222\213\377\227\245\236\377`wq\377\204Slg\377\3Zrm" \ + "\377\216\235\226\377\311\317\305\377\211\354\354\341\377\1\324\330\316" \ + "\377\202Slg\377\1\301\310\277\377\224\354\354\341\377\3\266\305\276\377" \ + "\223\254\247\377\330\341\337\377\204\377\377\377\377\3\243\270\264\377" \ + "\223\254\247\377\325\333\322\377\374\354\354\341\377\3\307\321\311\377" \ + "\223\254\247\377\260\302\277\377\204\377\377\377\377\3\312\326\324\377" \ + "\223\254\247\377\301\315\305\377\241\354\354\341\377\2\321\325\313\377" \ + "Yql\377\207Slg\377\7v\211\203\377\347\347\335\377\354\354\341\377\351" \ + "\351\337\377\273\303\272\377\201\222\213\377Unh\377\204Slg\377\3l\201" \ + "{\377\247\262\252\377\337\341\327\377\206\354\354\341\377\1\324\330\316" \ + "\377\202Slg\377\1\301\310\277\377\224\354\354\341\377\3\271\310\300\377" \ + "\223\254\247\377\323\335\333\377\203\377\377\377\377\3\341\350\347\377" \ + "\223\254\247\377\241\266\260\377\375\354\354\341\377\4\347\351\336\377" \ + "\230\257\252\377\223\254\247\377\356\362\362\377\203\377\377\377\377" \ + "\3\305\322\320\377\223\254\247\377\305\320\307\377\242\354\354\341\377" \ + "\2\325\331\317\377u\210\202\377\204Slg\377\3Tmg\377v\211\203\377\341" \ + "\343\330\377\205\354\354\341\377\3\335\337\325\377\245\260\250\377j\177" \ + "y\377\204Slg\377\4Voi\377\204\225\216\377\300\307\276\377\352\352\340" \ + "\377\203\354\354\341\377\1\324\330\316\377\202Slg\377\1\301\310\277\377" \ + "\224\354\354\341\377\3\275\312\303\377\223\254\247\377\317\332\330\377" \ + "\203\377\377\377\377\3\264\305\302\377\223\254\247\377\306\321\310\377" \ + "\376\354\354\341\377\3\270\307\277\377\223\254\247\377\302\320\315\377" \ + "\203\377\377\377\377\3\300\317\314\377\223\254\247\377\310\322\312\377" \ + "\243\354\354\341\377\6\352\352\340\377\306\314\303\377\250\263\252\377" \ + "\226\244\234\377\270\300\267\377\337\341\326\377\212\354\354\341\377" \ + "\3\310\316\304\377\215\235\225\377Zrm\377\204Slg\377\5dzt\377\235\252" \ + "\242\377\330\333\321\377\354\354\341\377\324\330\316\377\202Slg\377\1" \ + "\301\310\277\377\224\354\354\341\377\3\301\315\305\377\223\254\247\377" \ + "\312\326\324\377\202\377\377\377\377\4\362\365\364\377\224\255\250\377" \ + "\227\257\252\377\347\350\336\377\376\354\354\341\377\4\336\342\330\377" \ + "\223\254\247\377\231\261\254\377\372\373\373\377\202\377\377\377\377" \ + "\3\274\314\310\377\223\254\247\377\314\325\314\377\265\354\354\341\377" \ + "\3\345\346\333\377\261\273\262\377v\212\203\377\204Slg\377\3Tmg\377{" \ + "\215\207\377\243\257\247\377\202Slg\377\1\301\310\277\377\206\354\354" \ + "\341\377\1\342\344\331\377\202\317\324\312\377\1\353\353\341\377\212" \ + "\354\354\341\377\10\305\320\310\377\223\254\247\377\250\274\270\377\316" \ + "\332\327\377\342\351\347\377\301\317\314\377\223\254\247\377\270\307" \ + "\277\377\377\354\354\341\377\11\354\354\341\377\252\275\266\377\223\254" \ + "\247\377\314\330\325\377\337\347\345\377\314\330\325\377\242\270\263" \ + "\377\223\254\247\377\320\330\317\377\270\354\354\341\377\3\325\330\316" \ + "\377\232\250\240\377bys\377\206Slg\377\1\256\270\257\377\206\354\354" \ + "\341\377\1\267\300\267\377\202Slg\377\1\347\350\335\377\212\354\354\341" \ + "\377\1\311\323\312\377\206\223\254\247\377\1\335\341\327\377\377\354" \ + "\354\341\377\2\354\354\341\377\317\327\316\377\206\223\254\247\377\1" \ + "\324\333\321\377\272\354\354\341\377\4\352\352\337\377\276\305\274\377" \ + "\203\224\215\377Voi\377\204Slg\377\3j\200z\377\245\260\250\377\335\337" \ + "\325\377\203\354\354\341\377\1\267\300\267\377\202Slg\377\1\347\350\335" \ + "\377\212\354\354\341\377\7\350\351\336\377\277\310\300\377m\206\201\377" \ + "w\220\213\377\202\233\226\377\225\255\250\377\251\274\265\377\377\354" \ + "\354\341\377\202\354\354\341\377\10\353\353\340\377\235\264\256\377\224" \ + "\253\246\377\200\231\224\377v\217\212\377s\213\205\377\311\320\307\377" \ + "\352\352\337\377\275\354\354\341\377\3\337\341\326\377\247\262\252\377" \ + "l\201{\377\204Slg\377\5Unh\377\200\222\213\377\273\303\272\377\351\351" \ + "\337\377\267\300\267\377\202Slg\377\1\347\350\335\377\213\354\354\341" \ + "\377\1\261\272\262\377\203Slg\377\2\306\314\302\377\353\353\340\377\377" \ + "\354\354\341\377\203\354\354\341\377\6\353\353\340\377\276\306\274\377" \ + "Zrn\377Slg\377Yql\377\274\304\272\377\301\354\354\341\377\3\313\320\307" \ + "\377\220\237\230\377[sn\377\204Slg\377\2_vq\377x\213\205\377\202Slg\377" \ + "\1\347\350\335\377\213\354\354\341\377\1\257\271\261\377\202Slg\377\2" \ + "Woj\377\342\343\331\377\377\354\354\341\377\205\354\354\341\377\2\331" \ + "\334\323\377bys\377\202Slg\377\1\234\251\242\377\303\354\354\341\377" \ + "\4\346\347\334\377\264\275\264\377y\214\205\377Tmg\377\205Slg\377\1\347" \ + "\350\335\377\213\354\354\341\377\1\303\312\300\377\202Slg\377\1\222\241" \ + "\231\377\377\354\354\341\377\207\354\354\341\377\4e{u\377Slg\377_vq\377" \ + "\317\324\312\377\306\354\354\341\377\3\327\332\320\377\235\252\242\377" \ + "dzt\377\203Slg\377\1\347\350\335\377\213\354\354\341\377\4\327\332\320" \ + "\377Slg\377Wpj\377\333\336\324\377\377\354\354\341\377\207\354\354\341" \ + "\377\3m\202|\377Xok\377\227\245\235\377\311\354\354\341\377\2\353\353" \ + "\340\377\242\256\246\377\202Slg\377\1\347\350\335\377\213\354\354\341" \ + "\377\3\351\351\337\377Tmh\377\224\242\233\377\377\354\354\341\377\210" \ + "\354\354\341\377\3\207\227\220\377g}w\377\351\351\337\377\312\354\354" \ + "\341\377\1\267\300\267\377\202Slg\377\1\347\350\335\377\214\354\354\341" \ + "\377\2j\177y\377\334\337\325\377\377\354\354\341\377\210\354\354\341" \ + "\377\2\324\330\316\377\326\332\317\377\313\354\354\341\377\1\267\300" \ + "\267\377\202Slg\377\1\347\350\335\377\214\354\354\341\377\1\273\303\272" \ + "\377\377\354\354\341\377\326\354\354\341\377\1\336\340\326\377\202\301" \ + "\310\277\377\1\353\353\340\377\212\354\354\341\377") diff --git a/packages/psplash/files/logo-math.patch b/packages/psplash/files/logo-math.patch new file mode 100644 index 0000000000..87574b1855 --- /dev/null +++ b/packages/psplash/files/logo-math.patch @@ -0,0 +1,13 @@ +Do better math when showing logo vs progressbar. + +--- psplash/psplash.c.org 2007-09-22 20:33:36.000000000 +0300 ++++ psplash/psplash.c 2007-12-01 21:27:08.000000000 +0200 +@@ -258,7 +258,7 @@ + /* Draw the OH logo */ + psplash_fb_draw_image (fb, + (fb->width - HAND_IMG_WIDTH)/2, +- (fb->height - HAND_IMG_HEIGHT)/2, ++ ((fb->height * 5) / 6 - HAND_IMG_HEIGHT)/2, + HAND_IMG_WIDTH, + HAND_IMG_HEIGHT, + HAND_IMG_BYTES_PER_PIXEL, diff --git a/packages/psplash/files/psplash-init b/packages/psplash/files/psplash-init index 2bd83cfb07..5587346cb1 100644 --- a/packages/psplash/files/psplash-init +++ b/packages/psplash/files/psplash-init @@ -19,3 +19,5 @@ export TMPDIR=/mnt/.psplash mount tmpfs -t tmpfs $TMPDIR -o,size=40k /usr/bin/psplash $psplash_args & + +(sleep 120; psplash-write "QUIT") & diff --git a/packages/psplash/psplash_svn.bb b/packages/psplash/psplash_svn.bb index 98e2a36805..398141de69 100644 --- a/packages/psplash/psplash_svn.bb +++ b/packages/psplash/psplash_svn.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://projects.o-hand.com/psplash" SECTION = "base" LICENSE = "GPL" PV = "0.0+svnr${SRCREV}" -PR = "r9" +PR = "r10" # You can create your own pslash-hand-img.h by doing # ./make-image-header.sh <file>.png HAND @@ -17,6 +17,8 @@ SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \ file://psplash-init" S = "${WORKDIR}/psplash" +# This really should be default, but due yo openmoko hack below, can't be easily +SRC_URI_append_angstrom = " file://logo-math.patch;patch=1 " SRC_URI_append_openmoko = " file://configurability.patch;patch=1 " inherit autotools pkgconfig update-rc.d diff --git a/packages/pulseaudio/pulse.inc b/packages/pulseaudio/pulse.inc index f765bec1a1..08b0b5cd14 100644 --- a/packages/pulseaudio/pulse.inc +++ b/packages/pulseaudio/pulse.inc @@ -3,7 +3,6 @@ HOMEPAGE = "http://www.pulseaudio.org" AUTHOR = "Lennart Poettering" SECTION = "libs/multimedia" LICENSE = "LGPL" - DEPENDS = "libatomics-ops liboil avahi libsamplerate0 libsndfile1 libtool" # optional DEPENDS += "alsa-lib glib-2.0" diff --git a/packages/pulseaudio/pulseaudio_0.9.7.bb b/packages/pulseaudio/pulseaudio_0.9.8.bb index d466086b50..76bf6e8411 100644 --- a/packages/pulseaudio/pulseaudio_0.9.7.bb +++ b/packages/pulseaudio/pulseaudio_0.9.8.bb @@ -5,8 +5,8 @@ SRC_URI += "file://disable-using-glibc-tls.patch;patch=1" PR = "r0" -# problems w/ pulseaudio 0.9.7 atm: -# 1.) needs libtool 1.2.24 (which miscompiles plugins in OE, hence we can't make it the default yet) +# problems w/ pulseaudio 0.9.8 atm: +# 1.) needs libtool >= 1.5.24 (yes, any older version will NOT work) # 2.) doesn't build w/ glibc TLS support (hence patched out) DEFAULT_PREFERENCE = "-1" diff --git a/packages/shasum/shasum-native.bb b/packages/shasum/shasum-native.bb index 2b9dd9a09d..a28d5ac967 100644 --- a/packages/shasum/shasum-native.bb +++ b/packages/shasum/shasum-native.bb @@ -6,6 +6,7 @@ INHIBIT_DEFAULT_DEPS = "1" PATCHTOOL = "patch" do_fetch[depends] = "" -do_populate_staging() { +do_stage() { + install -d ${STAGING_BINDIR} install ${S}/oe_sha256sum ${STAGING_BINDIR} } diff --git a/packages/stage-manager/files/stage-manager b/packages/stage-manager/files/stage-manager index c5b6d17a56..35453992f4 100755 --- a/packages/stage-manager/files/stage-manager +++ b/packages/stage-manager/files/stage-manager @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (C) 2006 Richard Purdie +# Copyright (C) 2006-2007 Richard Purdie # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License version 2 as published by the Free @@ -79,33 +79,54 @@ if __name__ == "__main__": found = False + def updateCache(path, fstamp): + cache[path] = {} + cache[path]['ts'] = fstamp[stat.ST_MTIME] + cache[path]['size'] = fstamp[stat.ST_SIZE] + found = True + + def copyfile(path): + if options.copydir: + copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1)) + mkdirhier(os.path.split(copypath)[0]) + os.system("cp -dp " + path + " " + copypath) + + def copydir(path, fstamp): + if options.copydir: + copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1)) + if os.path.islink(path): + os.symlink(os.readlink(path), copypath) + else: + mkdirhier(copypath) + os.utime(copypath, (fstamp[stat.ST_ATIME], fstamp[stat.ST_MTIME])) + for root, dirs, files in os.walk(options.parentdir): for f in files: path = os.path.join(root, f) if not os.access(path, os.R_OK): continue - fstamp = os.stat(path) + fstamp = os.lstat(path) if path not in cache: print "new file %s" % path - cache[path] = {} - cache[path]['ts'] = fstamp[stat.ST_MTIME] - cache[path]['size'] = fstamp[stat.ST_SIZE] - if options.copydir: - copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1)) - mkdirhier(os.path.split(copypath)[0]) - os.system("mv " + path + " " + copypath) - found = True + updateCache(path, fstamp) + copyfile(path) else: if cache[path]['ts'] != fstamp[stat.ST_MTIME] or cache[path]['size'] != fstamp[stat.ST_SIZE]: print "file %s changed" % path - cache[path] = {} - cache[path]['ts'] = fstamp[stat.ST_MTIME] - cache[path]['size'] = fstamp[stat.ST_SIZE] - if options.copydir: - copypath = os.path.join(options.copydir, path.replace(options.parentdir, '', 1)) - mkdirhier(os.path.split(copypath)[0]) - os.system("mv " + path + " " + copypath) - found = True + updateCache(path, fstamp) + copyfile(path) + for d in dirs: + path = os.path.join(root, d) + fstamp = os.lstat(path) + if path not in cache: + print "new dir %s" % path + updateCache(path, fstamp) + copydir(path, fstamp) + else: + if cache[path]['ts'] != fstamp[stat.ST_MTIME]: + print "dir %s changed" % path + updateCache(path, fstamp) + copydir(path, fstamp) if options.update: print "Updating" diff --git a/packages/stage-manager/stagemanager-native_0.0.1.bb b/packages/stage-manager/stagemanager-native_0.0.1.bb index 7074d37307..828af1fbb5 100644 --- a/packages/stage-manager/stagemanager-native_0.0.1.bb +++ b/packages/stage-manager/stagemanager-native_0.0.1.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Helper script for packaged-staging.bbclass" -PR = "r1" +PR = "r7" SRC_URI = "file://stage-manager" LICENSE = "GPLv2" diff --git a/packages/tasks/task-base.bb b/packages/tasks/task-base.bb index 07de84c8c2..c0b39d34ff 100644 --- a/packages/tasks/task-base.bb +++ b/packages/tasks/task-base.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Merge machine and distro options to create a basic machine task/package" -PR = "r45" +PR = "r46" inherit task @@ -27,6 +27,9 @@ PACKAGES = ' \ task-base-usbgadget \ task-base-usbhost \ task-base-wifi \ + task-base-uboot \ + task-base-redboot \ + task-base-apex \ \ task-base-cramfs \ task-base-ipsec \ @@ -34,6 +37,7 @@ PACKAGES = ' \ task-base-nfs \ task-base-ppp \ task-base-smbfs \ + task-base-raid \ \ ${@base_contains("MACHINE_FEATURES","kernel26","task-base-kernel26","task-base-kernel24",d)} \ ' @@ -96,6 +100,7 @@ RDEPENDS_task-base = "\ ${@base_contains('COMBINED_FEATURES', 'wifi', 'task-base-wifi', '',d)} \ ${@base_contains('COMBINED_FEATURES', 'uboot', 'task-base-uboot', '',d)} \ ${@base_contains('COMBINED_FEATURES', 'redboot', 'task-base-redboot', '',d)} \ + ${@base_contains('COMBINED_FEATURES', 'apex', 'task-base-apex', '',d)} \ \ ${@base_contains('DISTRO_FEATURES', 'nfs', 'task-base-nfs', '',d)} \ ${@base_contains('DISTRO_FEATURES', 'cramfs', 'task-base-cramfs', '',d)} \ @@ -298,6 +303,9 @@ RDEPENDS_task-base-uboot = "\ RDEPENDS_task-base-redboot = "\ fis" +RDEPENDS_task-base-apex = "\ + apex-env" + RDEPENDS_task-base-ppp = "\ ppp \ ppp-dialin" diff --git a/packages/tasks/task-boot.bb b/packages/tasks/task-boot.bb index fb09ad1a83..0435c2aa62 100644 --- a/packages/tasks/task-boot.bb +++ b/packages/tasks/task-boot.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Basic task to get a device booting" -PR = "r41" +PR = "r42" inherit task diff --git a/packages/update-rc.d/files/.mtn2git_empty b/packages/update-rc.d/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/update-rc.d/files/.mtn2git_empty diff --git a/packages/update-rc.d/files/add-verbose.patch b/packages/update-rc.d/files/add-verbose.patch new file mode 100644 index 0000000000..0f068308f6 --- /dev/null +++ b/packages/update-rc.d/files/add-verbose.patch @@ -0,0 +1,47 @@ +--- update-rc.d/update-rc.d.org 2005-01-03 00:30:47.000000000 +0200 ++++ update-rc.d/update-rc.d 2007-12-01 19:41:08.000000000 +0200 +@@ -19,6 +19,7 @@ + notreally=0 + force=0 + dostart=0 ++verbose=0 + + usage() + { +@@ -28,6 +29,7 @@ + update-rc.d [-n] [-r <root>] [-s] <basename> start|stop NN runlvl [runlvl] [...] . + -n: not really + -f: force ++ -v: verbose + -r: alternate root path (default is /) + -s: invoke start methods if appropriate to current runlevel + EOF +@@ -69,7 +71,7 @@ + lev=`echo $2 | cut -d/ -f1` + nn=`echo $2 | cut -d/ -f2` + fn="${etcd}${lev}.d/${startstop}${nn}${bn}" +- echo " $fn -> ../init.d/$bn" ++ [ $verbose -eq 1 ] && echo " $fn -> ../init.d/$bn" + if [ $notreally -eq 0 ]; then + mkdir -p `dirname $fn` + ln -s ../init.d/$bn $fn +@@ -89,7 +91,7 @@ + exit 0 + fi + +- echo " Adding system startup for $initd/$bn ..." ++ echo " Adding system startup for $initd/$bn." + + for i in $startlinks; do + dolink S $i +@@ -105,6 +107,10 @@ + shift + continue + ;; ++ -v) verbose=1 ++ shift ++ continue ++ ;; + -f) force=1 + shift + continue diff --git a/packages/update-rc.d/update-rc.d_0.7.bb b/packages/update-rc.d/update-rc.d_0.7.bb index 8070197b82..dd370e6ff8 100644 --- a/packages/update-rc.d/update-rc.d_0.7.bb +++ b/packages/update-rc.d/update-rc.d_0.7.bb @@ -3,9 +3,10 @@ PRIORITY = "standard" DESCRIPTION = "Manage symlinks in /etc/rcN.d" LICENSE = "GPL" S = "${WORKDIR}/update-rc.d" -PR = "r0" +PR = "r1" -SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_7" +SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_7 \ + file://add-verbose.patch;patch=1" PACKAGE_ARCH = "all" diff --git a/packages/x11vnc/x11vnc_0.9.3.bb b/packages/x11vnc/x11vnc_0.9.3.bb index edd165374f..04ac87b444 100644 --- a/packages/x11vnc/x11vnc_0.9.3.bb +++ b/packages/x11vnc/x11vnc_0.9.3.bb @@ -3,7 +3,7 @@ SECTION = "x11/utils" HOMEPAGE = "http://www.karlrunge.com/x11vnc/" AUTHOR = "Karl Runge" LICENSE = "GPL" -DEPENDS = "openssl virtual/libx11 libxext avahi jpeg-62 zlib" +DEPENDS = "openssl virtual/libx11 libxext avahi jpeg zlib" SRC_URI = "http://www.karlrunge.com/x11vnc/x11vnc-0.9.3.tar.gz" diff --git a/packages/xkbd/xkbd-0.8.15/add-default-common-slides.patch b/packages/xkbd/xkbd-0.8.15/add-default-common-slides.patch new file mode 100644 index 0000000000..0423ee1eed --- /dev/null +++ b/packages/xkbd/xkbd-0.8.15/add-default-common-slides.patch @@ -0,0 +1,44 @@ +diff -r 6b20ef8fbdee src/kb.c +--- a/src/kb.c Tue Nov 27 21:28:21 2007 +0200 ++++ b/src/kb.c Tue Nov 27 22:27:09 2007 +0200 +@@ -954,6 +954,13 @@ void kb_send_keypress(button *b) + int slide_flag = 0; + + struct keycodeEntry vk_keycodes[10]; ++ ++ static KeySym ksSpace, ksBackSpace, ksReturn; ++ if (!ksSpace) { ++ ksSpace = XStringToKeysym("space"); ++ ksBackSpace = XStringToKeysym("BackSpace"); ++ ksReturn = XStringToKeysym("Return"); ++ } + + if (b->kb->state & KB_STATE_SHIFT || b->kb->state & KB_STATE_CAPS) + { +@@ -981,20 +988,17 @@ void kb_send_keypress(button *b) + ks = b->slide_up_ks; + if (ks == 0) ks = b->shift_ks; + break; +- case down : /* hold ctrl */ ++ case down : + ks = b->slide_down_ks; +- if (ks == 0) slide_flag = KB_STATE_CTRL; ++ if (ks == 0) ks = ksReturn; + break; +- case left : /* hold alt */ ++ case left : + ks = b->slide_left_ks; +- if (ks == 0) +- { +- ks = b->mod_ks; +- slide_flag = KB_STATE_MOD; +- } ++ if (ks == 0) ks = ksBackSpace; + break; +- case right : /* hold alt */ ++ case right : + ks = b->slide_right_ks; ++ if (ks == 0) ks = ksSpace; + break; + case none: + break; diff --git a/packages/xkbd/xkbd-0.8.15/differentiate-desktop-name.patch b/packages/xkbd/xkbd-0.8.15/differentiate-desktop-name.patch new file mode 100644 index 0000000000..60617a671c --- /dev/null +++ b/packages/xkbd/xkbd-0.8.15/differentiate-desktop-name.patch @@ -0,0 +1,12 @@ +diff -r 1eb4100bbe39 xkbd.desktop +--- a/xkbd.desktop Wed Nov 28 02:14:35 2007 +0200 ++++ b/xkbd.desktop Wed Nov 28 02:15:01 2007 +0200 +@@ -1,6 +1,6 @@ + [Desktop Entry] +-Name=Keyboard +-Comment=Virtual Keyboard ++Name=Ol' Good Keyboard ++Comment=xkbd the Virtual Keyboard + Exec=xkbd + Type=Application + Icon=xkbd.png diff --git a/packages/xkbd/xkbd-layout-ru/.mtn2git_empty b/packages/xkbd/xkbd-layout-ru/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/xkbd/xkbd-layout-ru/.mtn2git_empty diff --git a/packages/xkbd/xkbd-layout-ru/en-ru-123.xkbd b/packages/xkbd/xkbd-layout-ru/en-ru-123.xkbd new file mode 100644 index 0000000000..0b4ca0f056 --- /dev/null +++ b/packages/xkbd/xkbd-layout-ru/en-ru-123.xkbd @@ -0,0 +1,1353 @@ +#Птн, 01 Апр 2005 01:56:58 +0300 +#It was downloaded from http://whitenoise.ssrlab.com/pda/xkbd +#Copyright: +#This software is copyright (c) 2005 by Dmitry Zhadinets +#You are free to distribute this keyboard file under the terms of +#the GNU General Public License. +#Version: 0.1.1 +#For posting bugreports use this way <whitenoise at ssrlab dot com> +<global> + render xft + font Verdana-6|fixed + col 200:255:200 + down_col 100:100:200 + txt_col 0:0:0 + border_col 128:128:128 + button_style rounded +</global> +<layout> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default Esc + default_ks Escape + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ` + default_ks quoteleft + shift ~ + shift_ks asciitilde + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 1 + default_ks 1 + shift ! + shift_ks exclam + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 2 + default_ks 2 + shift @ + shift_ks at + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 3 + default_ks 3 + shift # + shift_ks numbersign + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 4 + default_ks 4 + shift $ + shift_ks dollar + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 5 + default_ks 5 + shift % + shift_ks percent + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 6 + default_ks 6 + shift ^ + shift_ks asciicircum + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 7 + default_ks 7 + shift & + shift_ks ampersand + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 8 + default_ks 8 + shift * + shift_ks asterisk + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 9 + default_ks 9 + shift ( + shift_ks parenleft + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 0 + default_ks 0 + shift ) + shift_ks parenright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default - + default_ks minus + shift _ + shift_ks underscore + </key> + <key> + key_span_width 1 + bg 248:255:196 + default = + default_ks equal + shift + + shift_ks plus + </key> + <key> + key_span_width 1 + bg 196:216:248 +# img /usr/share/xkbd/img/backspace.xpm + default <- + default_ks BackSpace + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default Tab + default_ks Tab + </key> + <key> + key_span_width 1 + default q + default_ks q + shift Q + shift_ks Q + obey_capslock yes + </key> + <key> + key_span_width 1 + default w + default_ks w + shift W + shift_ks W + obey_capslock yes + </key> + <key> + key_span_width 1 + default e + default_ks e + shift E + shift_ks E + obey_capslock yes + </key> + <key> + key_span_width 1 + default r + default_ks r + shift R + shift_ks R + obey_capslock yes + </key> + <key> + key_span_width 1 + default t + default_ks t + shift T + shift_ks T + obey_capslock yes + </key> + <key> + key_span_width 1 + default y + default_ks y + shift Y + shift_ks Y + obey_capslock yes + </key> + <key> + key_span_width 1 + default u + default_ks u + shift U + shift_ks U + obey_capslock yes + </key> + <key> + key_span_width 1 + default i + default_ks i + shift I + shift_ks I + obey_capslock yes + </key> + <key> + key_span_width 1 + default o + default_ks o + shift O + shift_ks O + obey_capslock yes + </key> + <key> + key_span_width 1 + default p + default_ks p + shift P + shift_ks P + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:255:196 + default [ + default_ks bracketleft + shift { + shift_ks braceleft + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ] + default_ks bracketright + shift } + shift_ks braceright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default \ + default_ks backslash + shift | + shift_ks bar + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default CAP + default_ks Caps_Lock + </key> + <key> + key_span_width 1 + default a + default_ks a + shift A + shift_ks A + obey_capslock yes + </key> + <key> + key_span_width 1 + default s + default_ks s + shift S + shift_ks S + obey_capslock yes + </key> + <key> + key_span_width 1 + default d + default_ks d + shift D + shift_ks D + obey_capslock yes + </key> + <key> + key_span_width 1 + default f + default_ks f + shift F + shift_ks F + obey_capslock yes + </key> + <key> + key_span_width 1 + default g + default_ks g + shift G + shift_ks G + obey_capslock yes + </key> + <key> + key_span_width 1 + default h + default_ks h + shift H + shift_ks H + obey_capslock yes + </key> + <key> + key_span_width 1 + default j + default_ks j + shift J + shift_ks J + obey_capslock yes + </key> + <key> + key_span_width 1 + default k + default_ks k + shift K + shift_ks K + obey_capslock yes + </key> + <key> + key_span_width 1 + default l + default_ks l + shift L + shift_ks L + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ; + default_ks semicolon + shift : + shift_ks colon + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ' + default_ks quoteright + shift " + shift_ks quotedbl + </key> + <key> + key_span_width 1 + bg 196:216:248 + default Ret + default_ks Return + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default SH + default_ks Shift_L + </key> + <key> + key_span_width 1 + default z + default_ks z + shift Z + shift_ks Z + obey_capslock yes + </key> + <key> + key_span_width 1 + default x + default_ks x + shift X + shift_ks X + obey_capslock yes + </key> + <key> + key_span_width 1 + default c + default_ks c + shift C + shift_ks C + obey_capslock yes + </key> + <key> + key_span_width 1 + default v + default_ks v + shift V + shift_ks V + obey_capslock yes + </key> + <key> + key_span_width 1 + default b + default_ks b + shift B + shift_ks B + obey_capslock yes + </key> + <key> + key_span_width 1 + default n + default_ks n + shift N + shift_ks N + obey_capslock yes + </key> + <key> + key_span_width 1 + default m + default_ks m + shift M + shift_ks M + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:255:196 + default , + default_ks comma + shift < + shift_ks less + </key> + <key> + key_span_width 1 + bg 248:255:196 + default . + default_ks period + shift > + shift_ks greater + + </key> + <key> + key_span_width 1 + bg 248:255:196 + default / + default_ks slash + shift ? + shift_ks question + </key> + <key> + key_span_width 1 + bg 196:216:248 + default SH + default_ks Shift_R + </key> + </row> + <row> + <key> + bg 196:216:248 + default Ctrl + default_ks Control_L + </key> + <key> + bg 255:255:255 + default RU + switch 1 + </key> + <key> + bg 255:255:255 + default 123 + switch 2 + </key> + <key> + bg 200:200:200 + default_ks space + width 60 + </key> + <key> + bg 196:216:248 + default Alt + default_ks Alt_L + </key> + <key> + bg 255:255:255 + default < + default_ks Left + </key> + <key> + bg 255:255:255 + default > + default_ks Right + </key> + <key> + bg 255:255:255 + default ^ + default_ks Up + </key> + <key> + bg 255:255:255 + default v + default_ks Down + </key> + </row> +</layout> +<layout> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default Esc + default_ks Escape + </key> + <key> + key_span_width 1 + default ё + default_ks Cyrillic_io + shift Ё + shift_ks Cyrillic_IO + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 1 + default_ks 1 + shift ! + shift_ks exclam + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 2 + default_ks 2 + shift " + shift_ks quotedbl + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 3 + default_ks 3 + shift № + shift_ks numerosign + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 4 + default_ks 4 + shift ; + shift_ks semicolon + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 5 + default_ks 5 + shift % + shift_ks percent + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 6 + default_ks 6 + shift : + shift_ks colon + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 7 + default_ks 7 + shift ? + shift_ks question + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 8 + default_ks 8 + shift * + shift_ks asterisk + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 9 + default_ks 9 + shift ( + shift_ks parenleft + </key> + <key> + key_span_width 1 + bg 248:216:196 + default 0 + default_ks 0 + shift ) + shift_ks parenright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default - + default_ks minus + shift _ + shift_ks underscore + </key> + <key> + key_span_width 1 + bg 248:255:196 + default = + default_ks equal + shift + + shift_ks plus + </key> + <key> + key_span_width 1 + bg 196:216:248 +# img /usr/share/xkbd/img/backspace.xpm + default <- + default_ks BackSpace + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default Tab + default_ks Tab + </key> + <key> + key_span_width 1 + default й + default_ks Cyrillic_shorti + shift Й + shift_ks Cyrillic_SHORTI + obey_capslock yes + </key> + <key> + key_span_width 1 + default ц + default_ks Cyrillic_tse + shift Ц + shift_ks Cyrillic_TSE + obey_capslock yes + </key> + <key> + key_span_width 1 + default у + default_ks Cyrillic_u + shift У + shift_ks Cyrillic_U + obey_capslock yes + </key> + <key> + key_span_width 1 + default к + default_ks Cyrillic_ka + shift К + shift_ks Cyrillic_KA + obey_capslock yes + </key> + <key> + key_span_width 1 + default е + default_ks Cyrillic_ie + shift Е + shift_ks Cyrillic_IE + obey_capslock yes + </key> + <key> + key_span_width 1 + default н + default_ks Cyrillic_en + shift Н + shift_ks Cyrillic_EN + obey_capslock yes + </key> + <key> + key_span_width 1 + default г + default_ks Cyrillic_ghe + shift Г + shift_ks Cyrillic_GHE + obey_capslock yes + </key> + <key> + key_span_width 1 + default ш + default_ks Cyrillic_sha + shift Ш + shift_ks Cyrillic_SHA + obey_capslock yes + </key> + <key> + key_span_width 1 + default щ + default_ks Cyrillic_shcha + shift Щ + shift_ks Cyrillic_SHCHA + obey_capslock yes + </key> + <key> + key_span_width 1 + default з + default_ks Cyrillic_ze + shift З + shift_ks Cyrillic_ZE + obey_capslock yes + </key> + <key> + key_span_width 1 + default х + default_ks Cyrillic_ha + shift Х + shift_ks Cyrillic_HA + obey_capslock yes + </key> + <key> + key_span_width 1 + default ъ + default_ks Cyrillic_hardsign + shift Ъ + shift_ks Cyrillic_HARDSIGN + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:255:196 + default \ + default_ks backslash + shift | + shift_ks bar + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default CAP + default_ks Caps_Lock + </key> + <key> + key_span_width 1 + default ф + default_ks Cyrillic_ef + shift Ф + shift_ks Cyrillic_EF + obey_capslock yes + </key> + <key> + key_span_width 1 + default ы + default_ks Cyrillic_yeru + shift Ы + shift_ks Cyrillic_YERU + obey_capslock yes + </key> + <key> + key_span_width 1 + default в + default_ks Cyrillic_ve + shift В + shift_ks Cyrillic_VE + obey_capslock yes + </key> + <key> + key_span_width 1 + default а + default_ks Cyrillic_a + shift А + shift_ks Cyrillic_A + obey_capslock yes + </key> + <key> + key_span_width 1 + default п + default_ks Cyrillic_pe + shift П + shift_ks Cyrillic_PE + obey_capslock yes + </key> + <key> + key_span_width 1 + default р + default_ks Cyrillic_er + shift Р + shift_ks Cyrillic_ER + obey_capslock yes + </key> + <key> + key_span_width 1 + default о + default_ks Cyrillic_o + shift О + shift_ks Cyrillic_O + obey_capslock yes + </key> + <key> + key_span_width 1 + default л + default_ks Cyrillic_el + shift Л + shift_ks Cyrillic_EL + obey_capslock yes + </key> + <key> + key_span_width 1 + default д + default_ks Cyrillic_de + shift Д + shift_ks Cyrillic_DE + obey_capslock yes + </key> + <key> + key_span_width 1 + default ж + default_ks Cyrillic_zhe + shift Ж + shift_ks Cyrillic_ZHE + obey_capslock yes + </key> + <key> + key_span_width 1 + default э + default_ks Cyrillic_e + shift Э + shift_ks Cyrillic_E + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 196:216:248 + default Ret + default_ks Return + </key> + </row> + <row> + <key> + key_span_width 1 + bg 196:216:248 + default SH + default_ks Shift_L + </key> + <key> + key_span_width 1 + default я + default_ks Cyrillic_ya + shift Я + shift_ks Cyrillic_YA + obey_capslock yes + </key> + <key> + key_span_width 1 + default ч + default_ks Cyrillic_che + shift Ч + shift_ks Cyrillic_CHE + obey_capslock yes + </key> + <key> + key_span_width 1 + default с + default_ks Cyrillic_es + shift С + shift_ks Cyrillic_ES + obey_capslock yes + </key> + <key> + key_span_width 1 + default м + default_ks Cyrillic_em + shift М + shift_ks Cyrillic_EM + obey_capslock yes + </key> + <key> + key_span_width 1 + default и + default_ks Cyrillic_i + shift И + shift_ks Cyrillic_I + obey_capslock yes + </key> + <key> + key_span_width 1 + default т + default_ks Cyrillic_te + shift Т + shift_ks Cyrillic_TE + obey_capslock yes + </key> + <key> + key_span_width 1 + default ь + default_ks Cyrillic_softsign + shift Ь + shift_ks Cyrillic_SOFTSIGN + obey_capslock yes + </key> + <key> + key_span_width 1 + default б + default_ks Cyrillic_be + shift Б + shift_ks Cyrillic_BE + obey_capslock yes + </key> + <key> + key_span_width 1 + default ю + default_ks Cyrillic_yu + shift Ю + shift_ks Cyrillic_YU + obey_capslock yes + </key> + <key> + key_span_width 1 + bg 248:255:196 + default . + default_ks period + shift , + shift_ks comma + </key> + <key> + key_span_width 1 + bg 196:216:248 + default SH + default_ks Shift_R + </key> + </row> + <row> + <key> + bg 196:216:248 + default Ctrl + default_ks Control_L + </key> + <key> + bg 255:255:255 + default EN + switch 0 + </key> + <key> + bg 255:255:255 + default 123 + switch 2 + </key> + <key> + bg 200:200:200 + default_ks space + width 60 + </key> + <key> + bg 196:216:248 + default Alt + default_ks Alt_L + </key> + <key> + bg 255:255:255 + default < + default_ks Left + </key> + <key> + bg 255:255:255 + default > + default_ks Right + </key> + <key> + bg 255:255:255 + default ^ + default_ks Up + </key> + <key> + bg 255:255:255 + default v + default_ks Down + </key> + </row> +</layout> +#[ ] ; : 1 2 3 + @ ± $ <- +#{ } , . 4 5 6 - # _ € Tab +#( ) ' " 7 8 9 * % ° ₤ Space +#< > \ | ^ 0 = / & № ₣ Reurn +# English Russian <>^v +<layout> + <row> + <key> + key_span_width 1 + bg 248:255:196 + default [ + default_ks bracketleft + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ] + default_ks bracketright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ; + default_ks semicolon + </key> + <key> + key_span_width 1 + bg 248:255:196 + default : + default_ks colon + </key> + <key> + bg 248:216:196 + key_span_width 1 + default $ + default_ks dollar + </key> + + <key> + width 1 + </key> + + <key> + key_span_width 1 + default 1 + default_ks 1 + </key> + <key> + key_span_width 1 + default 2 + default_ks 2 + </key> + <key> + key_span_width 1 + default 3 + default_ks 3 + </key> + <key> + width 1 + </key> + <key> + bg 248:216:196 + key_span_width 1 + default + + default_ks plus + </key> + <key> + bg 248:255:196 + key_span_width 1 + default @ + default_ks at + </key> + <key> + bg 248:255:196 + key_span_width 1 + default ± + default_ks plusminus + </key> + + <key> + bg 248:255:196 + key_span_width 1 + default ® + default_ks registered + </key> + <key> + bg 196:216:248 + key_span_width 1 +# img /usr/share/xkbd/img/backspace.xpm + default <- + default_ks BackSpace + </key> + </row> + <row> + <key> + key_span_width 1 + bg 248:255:196 + default { + default_ks braceleft + </key> + <key> + key_span_width 1 + bg 248:255:196 + default } + default_ks braceright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default , + default_ks comma + </key> + <key> + key_span_width 1 + bg 248:255:196 + default . + default_ks period + default_ks period + </key> + <key> + bg 248:216:196 + key_span_width 1 + default € + default_ks EuroSign + </key> + <key> + width 1 + </key> + <key> + key_span_width 1 + default 4 + default_ks 4 + </key> + <key> + key_span_width 1 + default 5 + default_ks 5 + </key> + <key> + key_span_width 1 + default 6 + default_ks 6 + </key> + <key> + width 1 + </key> + <key> + bg 248:216:196 + key_span_width 1 + default - + default_ks minus + </key> + <key> + bg 248:255:196 + key_span_width 1 + default # + default_ks numbersign + </key> + <key> + bg 248:255:196 + key_span_width 1 + default _ + default_ks underscore + </key> + + <key> + bg 248:255:196 + key_span_width 1 + default © + default_ks copyright + </key> + <key> + bg 196:216:248 + key_span_width 1 + default Esc + default_ks Escape + </key> + </row> + <row> + <key> + key_span_width 1 + bg 248:255:196 + default ( + default_ks parenleft + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ) + default_ks parenright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ' + default_ks quoteright + </key> + <key> + key_span_width 1 + bg 248:255:196 + default " + default_ks quotedbl + </key> + <key> + bg 248:216:196 + key_span_width 1 + default ₤ + default_ks sterling + </key> + <key> + width 1 + </key> + <key> + key_span_width 1 + default 7 + default_ks 7 + </key> + <key> + key_span_width 1 + default 8 + default_ks 8 + </key> + <key> + key_span_width 1 + default 9 + default_ks 9 + </key> + <key> + width 1 + </key> + <key> + bg 248:216:196 + key_span_width 1 + default * + default_ks asterisk + </key> + <key> + bg 248:255:196 + key_span_width 1 + default % + default_ks percent + </key> + <key> + bg 248:255:196 + key_span_width 1 + default ° + default_ks degree + </key> + + <key> + bg 248:255:196 + key_span_width 1 + default ¤ + default_ks currency + </key> + <key> + bg 196:216:248 + key_span_width 1 + default Ret + default_ks Return + </key> + </row> + <row> + <key> + key_span_width 1 + bg 248:255:196 + default < + default_ks less + </key> + <key> + key_span_width 1 + bg 248:255:196 + default > + default_ks greater + </key> + <key> + key_span_width 1 + bg 248:255:196 + default \ + default_ks backslash + </key> + <key> + key_span_width 1 + bg 248:255:196 + default | + default_ks bar + </key> + <key> + bg 248:216:196 + key_span_width 1 + default ¥ + default_ks yen + </key> + <key> + width 1 + </key> + <key> + key_span_width 1 + bg 248:255:196 + default ^ + default_ks asciicircum + </key> + <key> + key_span_width 1 + default 0 + default_ks 0 + </key> + <key> + key_span_width 1 + bg 248:255:196 + default = + default_ks equal + </key> + <key> + width 1 + </key> + <key> + bg 248:216:196 + key_span_width 1 + default / + default_ks slash + </key> + <key> + bg 248:255:196 + key_span_width 1 + default & + default_ks ampersand + </key> + <key> + bg 248:255:196 + key_span_width 1 + default № + default_ks numerosign + </key> + <key> + bg 248:255:196 + key_span_width 1 + default ™ + default_ks trademark + </key> + + + + <key> + bg 200:200:200 + key_span_width 1 + default Spc + default_ks space + </key> + </row> + <row> + <key> + bg 255:255:255 + default English + switch 0 + </key> + <key> + bg 255:255:255 + default Russian + switch 1 + </key> + <key> + bg 255:255:255 + default < + default_ks Left + </key> + <key> + bg 255:255:255 + default > + default_ks Right + </key> + <key> + bg 255:255:255 + default ^ + default_ks Up + </key> + <key> + bg 255:255:255 + default v + default_ks Down + </key> + </row> +</layout> diff --git a/packages/xkbd/xkbd-layout-ru_0.1.1.bb b/packages/xkbd/xkbd-layout-ru_0.1.1.bb index e65d91b7c0..53fbb3c7aa 100644 --- a/packages/xkbd/xkbd-layout-ru_0.1.1.bb +++ b/packages/xkbd/xkbd-layout-ru_0.1.1.bb @@ -3,16 +3,16 @@ SECTION = "x11" PRIORITY = "optional" LICENSE = "GPL" PACKAGE_ARCH = "all" -PR = "r0" +PR = "r1" RDEPENDS = "xkbd" -SRC_URI = "http://whitenoise.ssrlab.com/pda/xkbd/xkbd-ru-en-123_0.1.1.tar.gz" +#SRC_URI = "http://whitenoise.ssrlab.com/pda/xkbd/xkbd-ru-en-123_0.1.1.tar.gz" +SRC_URI = "file://en-ru-123.xkbd" S = "${WORKDIR}" do_install () { install -d ${D}${prefix}/share/xkbd - cd usr/share/xkbd/ for i in *.xkbd; do install -m 644 $i ${D}${prefix}/share/xkbd/${i} done diff --git a/packages/xkbd/xkbd_0.8.15.bb b/packages/xkbd/xkbd_0.8.15.bb index 2d070fd7ad..cd41bc68f1 100644 --- a/packages/xkbd/xkbd_0.8.15.bb +++ b/packages/xkbd/xkbd_0.8.15.bb @@ -2,9 +2,11 @@ SRC_URI = "http://handhelds.org/~mallum/xkbd/xkbd-${PV}-CVS.tar.gz \ file://libtool-lossage.patch;patch=1;pnum=1 \ file://fix-equalsign.patch;patch=1 \ file://fix-circumkey.patch;patch=1 \ + file://add-default-common-slides.patch;patch=1 \ + file://differentiate-desktop-name.patch;patch=1 \ file://xkbd.png" LICENSE = "GPL" -PR = "r2" +PR = "r4" SECTION = "x11" DEPENDS = "libxpm libxtst libxft" diff --git a/site/arm-darwin b/site/arm-darwin new file mode 100644 index 0000000000..77a46dc862 --- /dev/null +++ b/site/arm-darwin @@ -0,0 +1,5 @@ +ac_cv_lib_m_sin=${ac_cv_lib_m_sin=yes} +ac_cv_func_posix_spawn=${ac_cv_func_posix_spawn=no} +glib_cv_stack_grows=${glib_cv_stack_grows=no} +glib_cv_uscore=${glib_cv_uscore=no} +ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes} diff --git a/site/common-glibc b/site/common-glibc index 1f9c967dff..0ec53423f1 100644 --- a/site/common-glibc +++ b/site/common-glibc @@ -33,10 +33,14 @@ mono_cv_uscore=${mono_cv_uscore=no} # guile ac_cv_func_pthread_attr_getstack=${ac_cv_func_pthread_attr_getstack=yes} +#gcc-zlib +ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes} +ac_cv_func_memcpy=${ac_cv_func_memcpy=yes} +ac_cv_func_strerror=${ac_cv_func_strerror=yes} + # squid ac_cv_af_unix_large_dgram=${ac_cv_af_unix_large_dgram=yes} ac_cv_func_setresuid=${ac_cv_func_setresuid=yes} ac_cv_func_va_copy=${ac_cv_func_va_copy=yes} ac_cv_func___va_copy=${ac_cv_func___va_copy=yes} ac_cv_epoll_works=${ac_cv_epoll_works=yes} - |