dx-4.4.4/0000777000076500000240000000000010472427107007145 500000000000000dx-4.4.4/._acinclude.m40000400000076500000000000000012210435437434011445 00000000000000Mac OS X  2 RTEXTdx-4.4.4/acinclude.m40000644000076500000240000011120410435437434011254 00000000000000dnl dnl Check for the CYGWIN environment dnl ------------------------------------------------------------- AC_DEFUN([DX_CYGWIN], [AC_CACHE_CHECK(for Cygwin environment, ac_cv_cygwin, [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ #ifndef __CYGWIN__ #define __CYGWIN__ __CYGWIN32__ #endif return __CYGWIN__;]])],[ac_cv_cygwin=yes],[ac_cv_cygwin=no]) rm -f conftest*]) CYGWIN= test "$ac_cv_cygwin" = yes && CYGWIN=yes]) dnl dnl For intel link, list X libs dnl ------------------------------------------------------------ AC_DEFUN([DX_XLIBS], [ AC_SUBST(DX_XLIBS_LIST) if test "$ARCH" = "intelnt" ; then DX_XLIBS_LIST="hclglx.lib xm.lib xt.lib xlibcon.lib xlib.lib" else DX_XLIBS_LIST="" fi ]) dnl dnl If using CYGWIN, then the extensions to the filenames need to be dnl different than that of UN*X. This sets that up. dnl AC_DEFUN([DX_EXEEXT], [AC_REQUIRE([AC_CANONICAL_HOST])[]dnl case $host_os in *cygwin* ) CYGWIN=yes;; * ) CYGWIN=no;; esac AC_MSG_CHECKING([for executable suffix]) AC_PROVIDE([AC_EXEEXT]) AC_CACHE_VAL(ac_cv_exeext, [if test "$CYGWIN" = yes || test "$MINGW32" = yes; then ac_cv_exeext=.exe else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= if AC_TRY_EVAL(ac_link); then for file in conftest.*; do case $file in *.c | *.o | *.obj | *.ilk | *.pdb) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done else AC_MSG_ERROR([installation or configuration problem: compiler cannot create executables.]) fi rm -f conftest* test x"${ac_cv_exeext}" = x && ac_cv_exeext=no fi]) EXEEXT="" test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} AC_MSG_RESULT(${ac_cv_exeext}) dnl Setting ac_exeext will implicitly change the ac_link command. ac_exeext=$EXEEXT AC_SUBST(EXEEXT)]) dnl dnl Learn what an object files extension is. dnl ------------------------------------------------------------- AC_DEFUN([DX_OBJEXT], [AC_MSG_CHECKING([for object file suffix]) AC_CACHE_VAL(ac_cv_objext, [ rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_objext= if AC_TRY_EVAL(ac_compile); then for file in conftest.*; do case $file in *.c ) ;; *) ac_cv_objext=`echo $file | sed -e s/conftest.//` ;; esac done else AC_MSG_ERROR([installation or configuration problem: compiler cannot create executables.]) fi rm -f conftest* test x"${ac_cv_objext}" = x && ac_cv_objext=no ]) OBJEXT="" test x"${ac_cv_objext}" != xno && OBJEXT=${ac_cv_objext} AC_MSG_RESULT(${ac_cv_objext}) ac_objext=$OBJEXT AC_SUBST(OBJEXT)]) dnl dnl Check the headers for the DX build. This is similar to AC_CHECK_HEADER, but dnl avoids putting every header in the dxconfig.h file. dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_HEADER], [dnl Do the transliteration at runtime so arg 1 can be a shell variable. ac_safe=`echo "$1" | sed 'y%./+-%__p_%'` AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(ac_cv_header_$ac_safe, [AC_PREPROC_IFELSE([AC_LANG_SOURCE([[ [#]line __oline__ "configure" #include "confdefs.h" #include <$1> ]])],[ eval "ac_cv_header_$ac_safe=yes" ],[ eval "ac_cv_header_$ac_safe=no" ])])dnl if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then AC_MSG_RESULT(yes) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) ifelse([$3], , , [$3 ])dnl fi ]) dnl dnl Check the headers for the DX build. This is similar to AC_CHECK_HEADERS, but dnl avoids putting every header in the dxconfig.h file. dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_HEADERS], [for ac_hdr in $1 do DX_CHECK_HEADER($ac_hdr, [changequote(, )dnl ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` changequote([, ])dnl AC_DEFINE_UNQUOTED($ac_tr_hdr) $2], $3)dnl done ]) dnl dnl Check whether using glibc tgmath, if so add -D_GNU_SOURCE to CFLAGS dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_TGMATH], [AC_CACHE_CHECK(whether we are using GNU glibc math, ac_cv_lib_glibcmath, [dnl The semicolon is to pacify NeXT's syntax-checking cpp. cat > conftest.c < 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7) yes; #endif EOF if AC_TRY_COMMAND(${CC-cc} -E conftest.c) | egrep yes > foo 2>&1; then ac_cv_lib_glibcmath=-D_GNU_SOURCE fi rm foo ]) if test -n "$ac_cv_lib_glibcmath" ; then CFLAGS="$CFLAGS $ac_cv_lib_glibcmath" fi ]) dnl dnl Determine the architecture that this is being run on. dnl ------------------------------------------------------------- AC_DEFUN([DX_ARCHITECTURE], [ AC_MSG_CHECKING(architecture type) AC_CACHE_VAL(ac_cv_dx_arch, [ ac_cv_dx_arch=$ARCH if test "$ARCH" = "" ; then unameS=`uname -s` unameM="`uname -m`" ac_cv_dx_arch=unknown if test $unameS = "FreeBSD" ; then ac_cv_dx_arch=freebsd elif test `echo $unameS | tr A-Z a-z | sed "s/^.*cygwin.*$/yes/"` = "yes" ; then ac_cv_dx_arch=cygwin elif test $unameS = "Linux" ; then ac_cv_dx_arch=linux elif test $unameS = "IRIX" || test $unameS = "IRIX64" ; then ac_cv_dx_arch=sgi elif test $unameS = "AIX" ; then ac_cv_dx_arch=ibm6000 elif test "$unameM" = "alpha" ; then ac_cv_dx_arch=alphax elif test $unameS = "HP-UX" ; then ac_cv_dx_arch=hp700 elif test $unameS = "SunOS" ; then ac_cv_dx_arch=solaris elif test $unameS = "Darwin" ; then ac_cv_dx_arch=macos fi fi ]) ARCH=$ac_cv_dx_arch AC_MSG_RESULT($ARCH) AC_SUBST(ARCH) AC_DEFINE_UNQUOTED($ARCH) AC_DEFINE_UNQUOTED(DXD_ARCHNAME, "$ARCH", [define architecture name]) ]) dnl dnl Set up some architecture specific, primarily to handle AIX's dnl export flags. (This needs to be fixed if using gcc) dnl (I added the gcc case) dnl ------------------------------------------------------------- AC_DEFUN([DX_ARCH_SPECIFIC], [ AC_MSG_CHECKING(architecture specific stuff) case $ARCH in ibm6000) a=`echo $CC | sed "s/.*gcc.*/YES/"` if test "$a" = "YES" ; then CFLAGS="$CFLAGS -mminimal-toc" CXXFLAGS="$CXXFLAGS -mminimal-toc" DXEXEC_EXP='-Wl,-bexpall' DXEXEC_IMP='' else DXEXEC_EXP='-bE:$(EXP)' DXEXEC_IMP='-bI:$(EXP)' fi AC_DEFINE_UNQUOTED(DXEXEC_EXP, $DXEXEC_EXP, [Architecture exports]) AC_DEFINE_UNQUOTED(DXEXEC_IMP, $DXEXEC_IMP, [Architecture imports]) ;; cygwin) DXEXEC_EXP='$(WEXP) -Wl,--out-implib,dxexec.a' AC_DEFINE_UNQUOTED(DXEXEC_EXP, $DXEXEC_EXP) ;; intelnt) DXEXEC_EXP='-def $(WEXP)' AC_DEFINE_UNQUOTED(DXEXEC_EXP, $DXEXEC_EXP) ;; linux) DXEXEC_EXP='-Wl,-export-dynamic' AC_DEFINE_UNQUOTED(DXEXEC_EXP, $DXEXEC_EXP) ;; freebsd) DXEXEC_EXP='-Wl,-export-dynamic' AC_DEFINE_UNQUOTED(DXEXEC_EXP, $DXEXEC_EXP) ;; macos) DXUI_ALDFLAGS='-framework CoreFoundation -framework ApplicationServices' AC_DEFINE_UNQUOTED(DXUI_ALDFLAGS, $DXUI_ALDFLAGS, [Added arch specific LDFLAGS]) ;; esac AC_MSG_RESULT(done) ]) dnl dnl It is possible that the optimizer can cause problems with fstream. dnl Check for this problem. dnl ------------------------------------------------------------- AC_DEFUN([DX_STREAM_O2], [ AC_MSG_CHECKING(whether -O2 interferes with fstream in C++) AC_LANG_PUSH([C++]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include #if HAVE_FSTREAM #include #elif HAVE_FSTREAM_H #include #endif using namespace std; ]], [[ ifstream *i = new ifstream("foo"); ]])],[AC_MSG_RESULT(no) ],[CXXFLAGS=`echo $CXXFLAGS | sed "s/-O2//"` AC_MSG_RESULT(yes) ]) AC_LANG_POP([]) ]) dnl dnl See if the lexer produces a file with yylineno defined or if dnl yylineno should be defined. dnl ------------------------------------------------------------- AC_DEFUN([DX_LEX_YYLINENO], [ AC_CACHE_CHECK(lex output file root, ac_cv_prog_lex_root, [# The minimal lex program is just a single line: %%. But some broken lexes # (Solaris, I think it was) want two %% lines, so accommodate them. echo '%% %%' | $LEX if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else AC_MSG_ERROR([cannot find output from $LEX; giving up]) fi]) LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root AC_SUBST(LEX_OUTPUT_ROOT)dnl AC_MSG_CHECKING(whether yylineno is defined) cat > conftest.lex < #ifdef $2 yes #endif ], found="yes") done if test $found = "no" ; then for i in $1 do AC_EGREP_HEADER($2, $1, found="yes") done fi if test $found = "yes" ; then AC_DEFINE_UNQUOTED(HAS_$2, 1, [Define to 1 if have symbol $2]) AC_MSG_RESULT("yes") else AC_MSG_RESULT("no") fi ]) dnl dnl Borrowed from acspecific and modified to add paths to Xm headers dnl and libs if different from X11 dnl Set xm_includes and/or xm_libraries. dnl ------------------------------------------------------------- AC_DEFUN([DX_PATH_XM], [ AC_ARG_WITH(motif-includes, [ --with-motif-includes set path for motif includes (default none)],[with_motif_includes=$withval], [with_motif_includes='']) if test "$with_motif_includes" != "yes" && test -z "$with_motif_includes" then with_motif_includes='' fi AC_ARG_WITH(motif-libs, [ --with-motif-libs set path for motif libraries (default none)],[with_motif_libs=$withval], [with_motif_libs='']) if test "$with_motif_libs" != "yes" && test -z "$with_motif_libs" then with_motif_libs='' fi # Guess where to find include files, by looking for this one Xm .h file. test -z "$xm_direct_test_include" && xm_direct_test_include=Xm/Xm.h # First, try using that file with no special directory specified. AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <$xm_direct_test_include>]])],[# We can compile using X headers with no special include directory. xm_includes=],[# Look for the header file in a standard set of common directories. # Check X11 before X11Rn because it is often a symlink to the current release. for ac_dir in \ /usr/X11/include \ /usr/X11R6/include \ /usr/X11R5/include \ /usr/X11R4/include \ \ /usr/include/X11 \ /usr/include/X11R6 \ /usr/include/X11R5 \ /usr/include/X11R4 \ \ /usr/local/X11/include \ /usr/local/X11R6/include \ /usr/local/X11R5/include \ /usr/local/X11R4/include \ \ /usr/local/include/X11 \ /usr/local/include/X11R6 \ /usr/local/include/X11R5 \ /usr/local/include/X11R4 \ \ /usr/X386/include \ /usr/x386/include \ /usr/XFree86/include/X11 \ \ /usr/include \ /usr/local/include \ /usr/unsupported/include \ /usr/athena/include \ /usr/local/x11r5/include \ /usr/lpp/Xamples/include \ \ /usr/openwin/include \ /usr/openwin/share/include \ "$with_motif_includes" \ ; \ do if test -r "$ac_dir/$xm_direct_test_include"; then xm_includes=$ac_dir break fi done]) # Check for the libraries. test -z "$xm_direct_test_library" && xm_direct_test_library=Xm test -z "$xm_direct_test_function" && xm_direct_test_function=XmGetDestination # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS="$LIBS" LIBS="-l$xm_direct_test_library $LIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[${xm_direct_test_function}()]])],[LIBS="$ac_save_LIBS" # We can link Motif programs with no special library path. xm_libraries=],[LIBS="$ac_save_LIBS" # First see if replacing the include by lib works. # Check X11 before X11Rn because it is often a symlink to the current release. for ac_dir in `echo "$xm_includes" | sed s/include/lib/` \ /usr/X11/lib \ /usr/X11R6/lib \ /usr/X11R5/lib \ /usr/X11R4/lib \ \ /usr/lib/X11 \ /usr/lib/X11R6 \ /usr/lib/X11R5 \ /usr/lib/X11R4 \ \ /usr/local/X11/lib \ /usr/local/X11R6/lib \ /usr/local/X11R5/lib \ /usr/local/X11R4/lib \ \ /usr/local/lib/X11 \ /usr/local/lib/X11R6 \ /usr/local/lib/X11R5 \ /usr/local/lib/X11R4 \ \ /usr/X386/lib \ /usr/x386/lib \ /usr/XFree86/lib/X11 \ \ /usr/lib \ /usr/local/lib \ /usr/unsupported/lib \ /usr/athena/lib \ /usr/local/x11r5/lib \ /usr/lpp/Xamples/lib \ /lib/usr/lib/X11 \ \ /usr/openwin/lib \ /usr/openwin/share/lib \ ; \ do dnl Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do if test -r $ac_dir/lib${xm_direct_test_library}.$ac_extension; then xm_libraries=$ac_dir break 2 fi done done]) ]) dnl dnl What is the correct function name and structure def stat... stat, or _stat? dnl dnl What is the correct function name and structure def stat... stat, or _stat? dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_STAT], [ AC_LANG_PUSH([C++]) echo "/* */" > statHdrs.h AC_CHECK_HEADER(windows.h, [ echo "#include " >> statHdrs.h ]) AC_CHECK_HEADER(unistd.h, [ echo "#include " >> statHdrs.h ]) AC_CHECK_HEADER(sys/types.h, [ echo "#include " >> statHdrs.h ]) AC_CHECK_HEADER(sys/stat.h, [ echo "#include " >> statHdrs.h ]) fnc="X" str="X" for f in stat _stat ; do for s in stat _stat ; do AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include "statHdrs.h" ]], [[ $f("foo", (struct $s *)0); ]])],[ fnc=$f str=$s ],[]) done done if test "$fnc" = "X" -o "$str" = "X" ; then echo could not find working combination of stat function and structure exit fi AC_DEFINE_UNQUOTED(STATFUNC, $fnc, [What is the defined stat func]) AC_DEFINE_UNQUOTED(STATSTRUCT, $str, [What is the stat struct]) echo stat function is: $fnc echo stat structure is: $str AC_LANG_POP([]) ]) dnl dnl Figure out what the type is needed for the select function. dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_SELECT_ARG], [ AC_LANG_PUSH([C++]) select_argtype= cat > selectHdrs.h << EOF EOF AC_CHECK_HEADER(windows.h, [ echo "#include " >> selectHdrs.h ]) AC_CHECK_HEADER(unistd.h, [ echo "#include " >> selectHdrs.h ]) AC_CHECK_HEADER(sys/types.h, [ echo "#include " >> selectHdrs.h ]) AC_CHECK_HEADER(select.h, [ echo "#include " >> selectHdrs.h ]) AC_CHECK_HEADER(sys/select.h, [ echo "#include " >> selectHdrs.h ]) AC_LANG_POP([]) for try in sellist fd_set int void do AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include "selectHdrs.h" ]], [[ int i = select(1, ($try *)NULL, ($try *)NULL, ($try *)NULL, (struct timeval *)NULL) ]])],[ select_argtype=$try AC_DEFINE_UNQUOTED(SELECT_ARG_TYPE, $try, [Arguments for select]) ],[]) if test ! -z "$select_argtype" ; then break fi done echo the second third and fourth args to select are pointers to $select_argtype rm selectHdrs.h ]) dnl dnl Figure out what the type is needed for getsockname. dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_SOCK_LENGTH_TYPE], [ AC_LANG_PUSH([C]) socket_argtype= cat > socketHdrs.h << EOF EOF AC_CHECK_HEADER(unistd.h, [ echo "#include " >> socketHdrs.h ]) AC_CHECK_HEADER(sys/types.h, [ echo "#include " >> socketHdrs.h ]) AC_CHECK_HEADER(sys/socket.h, [ echo "#include " >> socketHdrs.h ]) if test "$ARCH" = "intelnt" ; then AC_CHECK_HEADER(winsock2.h, [ echo "#include " >> socketHdrs.h ]) fi AC_LANG_POP([]) AC_LANG_PUSH([C++]) for try in socklen_t size_t int "unsigned int" do AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include "socketHdrs.h" ]], [[ $try *foo = NULL; int i = getsockname(1, (struct sockaddr *)NULL, foo); ]])],[ socket_argtype=$try AC_DEFINE_UNQUOTED(SOCK_LENGTH_TYPE, $try, [socket length type]) ],[]) if test ! -z "$socket_argtype" ; then break fi done echo the third arg to getsockname is pointer to $socket_argtype rm socketHdrs.h AC_LANG_POP([]) ]) dnl dnl More information for setting up CYGWIN dnl ------------------------------------------------------------- AC_DEFUN([DX_CYGWIN_MOUNTS], [ changequote(<<,>>)dnl AC_MSG_CHECKING(if intelnt on cygwin, check for mounts) mnts="none" if test "$ARCH" = "intelnt" ; then tt=`uname -s | tr A-Z a-z | sed "s/^.*cygwin.*$/yes/"` if test "$tt" = "yes" ; then AC_MSG_RESULT(yes) AC_MSG_CHECKING(mounted disks) mnts="`mount | sed '1d' | grep "^[^cC]:" | sed "s?\(.:\)[ ]*\([^ ][^ ]*\).*?-mount:\2=\1?"`" if test ! -z "$mnts" ; then CFLAGS="$CFLAGS $mnts" CPPFLAGS="$CPPFLAGS $mnts" CXXFLAGS="$CXXFLAGS $mnts" else mnts="none" fi AC_MSG_RESULT($mnts) fi AC_MSG_RESULT(no) else AC_MSG_RESULT(no) fi changequote([,])dnl ]) dnl dnl this is AC_CHECK_TYPE with windows.h for DX intelnt port dnl ------------------------------------------------------------- AC_DEFUN([DX_CHECK_TYPE], [ AC_REQUIRE([AC_HEADER_STDC])dnl AC_MSG_CHECKING(for $1) AC_CACHE_VAL(ac_cv_type_$1, [ if test "$ac_cv_header_windows_h" = "yes" ; then AC_EGREP_CPP(dnl changequote(<<,>>)dnl <<[^a-zA-Z_0-9]$1[^a-zA-Z_0-9]>>dnl changequote([,]), [ #include #if STDC_HEADERS #include #include #endif #include ], ac_cv_type_$1=yes, ac_cv_type_$1=no) else AC_EGREP_CPP(dnl changequote(<<,>>)dnl <<[^a-zA-Z_0-9]$1[^a-zA-Z_0-9]>>dnl changequote([,]), [ #include #if STDC_HEADERS #include #include #endif ], ac_cv_type_$1=yes, ac_cv_type_$1=no) fi if test $ac_cv_type_$1 = no; then AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[$1 foo;]])],[ac_cv_type_$1=yes],[ac_cv_type_$1=no]) fi ]) AC_MSG_RESULT($ac_cv_type_$1) if test $ac_cv_type_$1 = no; then AC_DEFINE($1, $2, [Do not define $1 if already have type $1]) fi ]) dnl dnl Determine whether the stdc++ libraries are needed to compile successfully. dnl ------------------------------------------------------------- AC_DEFUN([DX_NEEDS_STDCXX], [ AC_MSG_CHECKING(whether -lstdc++ is needed) tmpLIBS=$LIBS AC_CACHE_VAL(ac_cv_requires_lstdcxx, [ AC_LANG_PUSH([C++]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #ifdef HAVE_IOSTREAM #include #elif HAVE_IOSTREAM_H #include #endif ]], [[ std::cout << "foo"; ]])],[ac_cv_requires_lstdcxx="no"],[ LIBS="$LIBS -lstdc++" AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #ifdef HAVE_IOSTREAM #include #elif HAVE_IOSTREAM_H #include #endif ]], [[ std::cout << "foo"; ]])], [ac_cv_requires_lstdcxx="yes"], [ AC_MSG_RESULT(failed even with lstdc++) exit 1 ] ) ]) AC_LANG_POP([]) ]) AC_MSG_RESULT(${ac_cv_requires_lstdcxx}) ]) dnl Java Stuff ---------------------------------------------------------- dnl Adding the functionality to locate the appropriate Java Architecture dnl information to compile JavaDX. These functions have been proposed on the dnl autoconf mailing list. dnl dnl For compiling the javadx stuff, we need to have available, the compiler, dnl the jar packager, the javah generator, the appropriate classes, dnl and the jni headers. dnl dnl After much discussion as to how this info needs to be found, I propose dnl the following: dnl JavaC, Jar, and JavaH are being found appropriately--if an appropriate dnl program exists for one of these types that I'm not checking, please dnl let me know and it can be added. dnl The big debate is what to do for the jni and jars. For the jni, the list dnl has propsed (from my conclusion) the following (LOSE the prompting): dnl a configure path flag, dnl search for an environment variable, dnl then use Pete's old code for searching for it, dnl then try some standard location (I guesss /usr/include). dnl As for the jars, Pete had not finished that: so I suggest dnl a configure path flag, dnl an environment variable set, dnl search for standard location (/usr/lib/netscape/java/classes?) dnl dnl DX_PROG_JAVAC([ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_PROG_JAVAC],[ AS_MESSAGE([checking for java compiler...]) if test -n "$JAVAC"; then AC_MSG_WARN(JAVAC was preset) AC_CHECK_PROG(JAVAC, $JAVAC) else AC_CHECK_PROGS(JAVAC, javac "gcj -C" guavac jikes) fi if test -z "$JAVAC"; then AC_MSG_WARN(No java compiler found) ifelse([$2], , , [$2]) else DX_PROG_JAVAC_WORKS($JAVAC, $1, $2) fi ]) dnl dnl DX_PROG_JAVAC_WORKS(JAVA-COMPILER, [ACTION-IF-TRUE [, ACTION-IF-FALSE]]) dnl This will fail if the CLASSPATH is bad--that is what we want. dnl ------------------------------------------------------------- AC_DEFUN([DX_PROG_JAVAC_WORKS],[ AC_MSG_CHECKING([if $1 works...]) dx_test_java_classname="dx_conf" dx_test_java_prog=$dx_test_java_classname".java" dx_test_java_class=$dx_test_java_classname".class" cat << EOF_JAVA > $dx_test_java_prog public class $dx_test_java_classname extends Object { public static void main() { } } EOF_JAVA if AC_TRY_COMMAND($1 $dx_test_java_prog) >/dev/null 2>&1; then AC_MSG_RESULT(yes) ifelse([$2], , , [$2]) else AC_MSG_RESULT(no) ifelse([$3], , , [$3]) AC_MSG_WARN([$1 failed to compile (see config.log, check your CLASSPATH?)]) fi rm -f $dx_test_java_prog $dx_test_java_class ]) dnl dnl DX_PROG_JAR([ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_PROG_JAR],[ AS_MESSAGE([checking for jar...]) if test -n "$JAR"; then AC_MSG_WARN(JAR was preset) AC_CHECK_PROG(JAR, $JAR) else AC_CHECK_PROGS(JAR, jar) fi if test -z "$JAR"; then AC_MSG_WARN([jar class packager not found in \$PATH]) ifelse([$2], , , [$2]) else ifelse([$1], , , [$1]) fi ]) dnl dnl DX_PROG_JAVAH([ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_PROG_JAVAH],[ AS_MESSAGE([checking for javah...]) if test -n "$JAVAH"; then AC_MSG_WARN(JAVAH was preset) AC_CHECK_PROG(JAVAH, $JAVAH) else AC_CHECK_PROGS(JAVAH, javah gcjh) fi if test -z "$JAVAH"; then AC_MSG_WARN([no acceptable jni header generator found in \$PATH]) ifelse([$2], , , [$2]) else ifelse([$1], , , [$1]) fi ]) dnl dnl DX_PATH_JAVA([ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_PATH_JAVA],[ if test -n "$JAVA"; then AC_MSG_WARN(JAVA was preset) AC_PATH_PROG(JAVA, $JAVAH) else AC_PATH_PROGS(JAVA, java) fi if test -z "$JAVA"; then AC_MSG_WARN([no java executable found in \$PATH]) ifelse([$2], , , [$2]) else DX_JBASE_TRAILING=`echo $JAVA | sed -e "s&.*/&&"` JBASE=`echo $JAVA | sed -e "s&/$DX_JBASE_TRAILING&&"` ifelse([$1], , , [$1]) fi ]) dnl dnl DX_FIND_JNI_WITH_PATH(JNI-PATH,[ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_JNI_WITH_PATH], [ AC_MSG_CHECKING([for valid jni headers path]) AC_CACHE_VAL([ac_cv_include_jni], [ dnl Now we need to perform the search starting at the specified path root. dnl Need to construct JINC from the given colon separated path, ie $1="/path:/path2" now dnl needs JINC = "-I/path -I/path ...". Test the directories to see if they exist; if not, dnl then don't include them. Then look for jni.h and jni_md.h within these directories. dnl If they don't exist, then do ACTION-IF-FALSE. dx_jniinc='' dx_jnimdinc='' list=`echo $1 | sed -e "s/:/ /g"` for i in $list do if test -r "$i/jni.h" ; then dx_jniinc=$i fi if test -r "$i/jni_md.h" ; then dx_jnimdinc=$i fi done dnl Now determine how successful the search was and return to configure if test -n "$dx_jniinc" && test -n "$dx_jnimdinc" ; then JINC="-I$dx_jniinc -I$dx_jnimdinc" ac_cv_include_jni="$JINC" fi ]) if test -z "$ac_cv_include_jni" ; then AC_MSG_RESULT(no) ifelse([$3], , , [$3]) else AC_MSG_RESULT(yes) ifelse([$2], , , [$2]) if test -z "$JINC"; then JINC="$ac_cv_include_jni" fi fi ]) dnl dnl DX_JAVA_ARCHITECTURE is similar to DX_ARCHITECTURE, but the result dnl is used for part of the search path when looking for jni_md.h dnl This is a problem, since the pathname for linux may not always be dnl genunix. Workaround is to set JAVA_ARCH (to e.g. linux) before configure. dnl Could there be a better solution here? dnl ------------------------------------------------------------- AC_DEFUN([DX_JAVA_ARCHITECTURE], [ AC_MSG_CHECKING(java architecture type) if test "$JAVA_ARCH" = "linux" ; then JNI_CFLAGS=-DIBM_LINUX fi # NLS nuisances. # Needed e.g. for some versions of `tr' so that character classes in `[]' work. if test "${LC_ALL+set}" = 'set'; then LC_ALL=C ; export LC_ALL ; fi if test "${LANG+set}" = 'set'; then LANG=C ; export LANG ; fi changequote(, )dnl if test "`echo ABC | tr '[A-Z]' '[a-z]'`" = "abc" ; then tolower="tr '[A-Z]' '[a-z]'" else tolower="tr A-Z a-z" fi changequote([, ])dnl if test "$JAVA_ARCH" = "" ; then lc=`uname -s | $tolower` case $lc in irix*) JAVA_ARCH=irix ;; cygwin*) JAVA_ARCH=win32 ;; aix) JAVA_ARCH=aix ;; alpha) JAVA_ARCH=alpha ;; osf1) JAVA_ARCH=alpha ;; hp-ux) JAVA_ARCH=hp-ux ;; sunos) JAVA_ARCH=solaris ;; linux) JAVA_ARCH=genunix JNI_CFLAGS=-DIBM_LINUX;; darwin) JAVA_ARCH=macos ;; *) JAVA_ARCH=$lc ;; esac fi AC_MSG_RESULT($JAVA_ARCH) ]) dnl dnl DX_FIND_JDK_CLASSES dnl Only works for sun java. Skips if not "javac". dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_JDK_CLASSES], [ dx_find_jdk="" AC_MSG_CHECKING([for jdk classes]) AC_CACHE_VAL([ac_cv_jdk_classes], [ ac_cv_jdk_classes="" dnl We cannot perform the check if not using Sun's javac, so check if javac. if test "$JAVAC" = "javac" ; then AC_MSG_RESULT([trying javac -verbose]) dnl Create a basic program and run javac -verbose on it. Only works if dnl we are using javac, thus test which java. dnl This should work for both 1.1.x and 1.2. AC_MSG_CHECKING([for jdk classes verbosely]) cat > jdkpath.java <jdkpath.out 2>jdkpath.err dnl Examine "loaded" line for default classes. Output is similar to dnl [loaded /usr/jdk_base/lib/classes.zip(java/lang/Object.class) in 738 ms] dnl Trim off leading stuff and stuff trailing after the left paren to get classes dnl (classes.zip, rt.jar, whatever) DX_JDK_CLASSES now contains the class dnl libraries typically used to run and compile with the JRE or JDK. Because dnl of a bug in some Javas, we need to include this with CLASSPATH environment dnl variable. (As Of Now--this is IBM's J1.1.8 for rh linux). This appears to be dnl a problem as it shouldn't need to be included. This will hardcode the dnl path into runtime areas and could cause problems with upgrades of java. dnl But as for now this is the way we are going to do it. ac_cv_jdk_classes=`egrep "loaded|loading" jdkpath.err | tr '\134' '\057' | sed -e "s/.loaded //" -e "s/.loading //" -e "s&(.*$&&"` dnl Cleanup the files that were created. rm -f jdkpath.* AC_MSG_RESULT($ac_cv_jdk_classes) else AC_MSG_RESULT([none]) fi dx_find_jdk="yes" ]) if test -z "$dx_find_jdk" ; then AC_MSG_RESULT($ac_cv_jdk_classes) fi ]) dnl dnl DX_FIND_JNI([ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_JNI], [ AC_CACHE_VAL([ac_cv_jdk_base], [ dnl Now start the search using the java -verbose search algorithm. dnl Continue on with the search of standard directories [/usr/include]. dnl Find out what system we are on to define $JAVA_ARCH DX_JAVA_ARCHITECTURE DX_FIND_JDK_CLASSES if test -z "$ac_cv_jdk_classes" ; then dnl Fallback to checking the default paths since it is empty. AC_MSG_RESULT([trying default path]) ac_cv_jdk_base="/usr/include:/usr/include/$JAVA_ARCH" else dnl Get anything that isn't between "/"'s DX_JDK_TRAILING=`echo $ac_cv_jdk_classes | sed -e "s&.*/&&"` dnl Now trim off /lib/whatever to get to the base of the jdk installation dnl The result should look something like /usr/jdk_base for 1.1.x and dnl /usr/jdk_base/jre for 1.2. DX_ALMOST_BASE=`echo $ac_cv_jdk_classes | sed -e "s&/lib/$DX_JDK_TRAILING&&"` DX_JBASE=`echo $DX_ALMOST_BASE | sed -e "s&/jre&&"` dnl Now we need to find the subdirectory within the include directory that dnl has jni_md.h for the appropriate architecture. dnl The path that should be used now is DX_JBASE/include and DX_JBASE/include/JAVA_ARCH. DX_FOUND_PATH="$DX_JBASE/include:$DX_JBASE/include/$JAVA_ARCH" if test "$JAVA_ARCH" = "macos" ; then DX_FOUND_PATH="/System/Library/Frameworks/JavaVM.framework/Headers" fi ac_cv_jdk_base="$DX_FOUND_PATH" fi dnl Set a flag to say that we have already answered the MSG. ]) AC_MSG_CHECKING([for jni headers path]) AC_MSG_RESULT($ac_cv_jdk_base) DX_FIND_JNI_WITH_PATH( $ac_cv_jdk_base, $1, $2) ]) dnl dnl DX_FIND_COSMO(PATH [, ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_COSMO], [ AC_MSG_CHECKING([for cosmo jar files]) AC_CACHE_VAL([ac_cv_class_cosmo], [ if test -r $1; then ac_cv_class_cosmo=$1 fi ]) if test -n "$ac_cv_class_cosmo" ; then AC_MSG_RESULT(yes) ifelse([$2], , , [$2]) else AC_MSG_RESULT(no -- comso support will not be complete) ifelse([$3], , , [$3]) fi ]) dnl dnl DX_FIND_DEFAULT_COSMO dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_DEFAULT_COSMO], [ dnl Set the default to be Netscape's default class directory. dnl You got a better idea--let us hear about it dnl (opendx-dev@opendx.watson.ibm.com). DX_FIND_COSMO(/usr/lib/netscape/java/classes/npcosmop211.jar) ]) dnl dnl DX_FIND_NETSCAPE(PATH [, ACTION-IF-TRUE [, ACTION-IF-FALSE ]]) dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_NETSCAPE], [ AC_MSG_CHECKING([for netscape jar files]) AC_CACHE_VAL([ac_cv_class_netscape], [ if test -r $1; then ac_cv_class_netscape=$1 fi ]) if test -n "$ac_cv_class_netscape" ; then AC_MSG_RESULT(yes) ifelse([$2], , , [$2]) else AC_MSG_RESULT(no -- netscape support will not be complete) ifelse([$3], , , [$3]) fi ]) dnl dnl DX_FIND_DEFAULT_NETSCAPE dnl ------------------------------------------------------------- AC_DEFUN([DX_FIND_DEFAULT_NETSCAPE], [ dnl Set the default to be Netscape's default class directory. dnl You got a better idea--let us hear about it dnl (opendx-dev@opendx.watson.ibm.com). DX_FIND_NETSCAPE(/usr/lib/netscape/java/classes/java40.jar) ]) dnl End of the JavaDX stuff ------------------------------------------------- dnl dnl With the architecture determine flags needed to compile runtime loadable modules etc. dnl ------------------------------------------------------------- AC_DEFUN([DX_SET_RTL_FLAGS], [ dnl autoconfigure variables for building runtime loadables / shared objects that are dnl used in dx build. They also go into lib_$(ARCH)/arch.mak for building samples and user modules. dnl These should make it trivial for dx builder or you to construct functional, platform-independent dnl makefiles for your modules. dnl SHARED_LINK dnl allows override of default ($(CC)) with e.g. ld ; some cc's seem incapable of passing dnl make-shared-object flags to ld. dnl DX_RTL_CFLAGS dnl ideally, this, $(DXABI) and -I's should be all $(CC) requires to make the .o . dnl DX_RTL_ALDFLAGS dnl ld flags (prefixed with cc-pass-these-to-ld if SHARED_LINK is a cc) for building any shared object dnl DX_RTL_DXENTRY dnl flags, typically -e DXEntry , the runtime loadable dx module entry point dnl not generic to all shared objects dnl DX_RTL_IMPORTS dnl frequently unnecessary, this flag is for declaring dxexec symbols to the runtime loadable module. dnl not generic to all shared objects dnl don't require SHARED_LINK to be set going in, but if set, it overrides any selection here. ccld_defaulted=0 if test "$SHARED_LINK" = "" ; then SHARED_LINK="$""(CC)" ccld_defaulted=1 fi DX_RTL_SYSLIBS="" if test $ac_cv_c_compiler_gnu = "yes" ; then MDXLDFLAG="-Wl," else MDXLDFLAG="" fi if test $ARCH = "intelnt" ; then DX_RTL_IMPORTS= DX_RTL_CFLAGS="-shared -e DXEntry" fi if test $ARCH = "cygwin" ; then DX_RTL_CFLAGS="-shared " DX_RTL_DXENTRY="${MDXLDFLAG}-e,DXEntry" DX_RTL_IMPORTS="\$(BASE)/lib_$ARCH/dxexec.a" DX_RTL_SYSLIBS="$SYSLIBS kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib wsock32.lib" DX_OUTBOARD_LIBS="$OLIBS \$(BASE)/lib/DXExport.lib" fi if test $ARCH = "hp700" ; then DX_RTL_CFLAGS="-Dhp700 -Aa +z" DX_RTL_ALDFLAGS="${MDXLDFLAG}-q ${MDXLDFLAG}-b ${MDXLDFLAG}-E " DX_RTL_DXENTRY="${MDXLDFLAG}-eDXEntry" DX_RTL_SYSLIBS="$SYSLIBS -ldld" fi if test $ARCH = "ibm6000" ; then DX_RTL_CFLAGS="-Dibm6000" DX_RTL_DXENTRY="${MDXLDFLAG}-eDXEntry " DX_RTL_ALDFLAGS= DX_RTL_IMPORT="${MDXLDFLAG}-bI:\$(BASE)/lib/dxexec.exp" fi if test $ARCH = "sgi" ; then DX_RTL_CFLAGS=" -Dsgi" if test $ac_cv_c_compiler_gnu = "yes" ; then DX_RTL_CFLAGS=" -Dsgi -D_GNU_SOURCE" DX_RTL_ALDFLAGS=" -shared" DX_RTL_DXENTRY=" -e DXEntry -exported_symbol DXEntry" if test $ccld_defaulted != 0 ; then SHARED_LINK="ld" fi else DX_RTL_ALDFLAGS=" -shared -ignore_unresolved " if test $ccld_defaulted != 0 ; then SHARED_LINK=$CC fi fi fi if test $ARCH = "solaris" ; then DX_RTL_CFLAGS=" -Dsolaris" # DX_RTL_ALDFLAGS=" ${MDXLDFLAG}-G ${MDXLDFLAG}-eDXEntry" DX_RTL_ALDFLAGS=" -G " SHARED_LINK="cc" fi if test $ARCH = "alphax" ; then DX_RTL_CFLAGS=" -Dalphax" DX_RTL_ALDFLAGS=" -shared -all -expect_unresolved main " DX_RTL_DXENTRY=" -e DXEntry" DX_RTL_IMPORTS=" -expect_unresolved DX\*" fi if test $ARCH = "linux" ; then DX_RTL_CFLAGS=" -D_GNU_SOURCE -Dlinux" DX_RTL_ALDFLAGS="-fPIC -shared" DX_RTL_DXENTRY=" -eDXEntry" fi if test $ARCH = "freebsd" ; then DX_RTL_CFLAGS="-D_GNU_SOURCE -Dfreebsd" DX_RTL_ALDFLAGS="--shared " DX_RTL_DXENTRY="-eDXEntry" fi ]) # # autoconf macro to remove duplicated elements in a list, but to leave # in place only the *last* occurence of each duplicate element. # Intended for use with lists of -l args, and the like. # # usage: AC_UTILS_UNIQUIFY([list],[shell-var-to-set-to-uniquified-list]) AC_DEFUN([AC_UTILS_UNIQUIFY], [ ac_u_bar="" for arg in $1 ; do changequote(<<,>>)dnl x=`echo $arg | tr -dc '[:alnum:]'` changequote([,])dnl eval test x\${ac_u_$x} = x; if test $? = 0 ; then eval ac_u_$x=1 export eval ac_u_$x else eval ac_u_$x=\`expr \${ac_u_$x} + 1\` export eval ac_u_$x fi done for arg in $1 ; do changequote(<<,>>)dnl x=`echo $arg | tr -dc '[:alnum:]'` changequote([,])dnl eval ac_u_${x}=\`expr \${ac_u_$x} - 1\` eval test \$ac_u_${x} = 0; if test $? = 0 ; then ac_u_bar="$ac_u_bar $arg" fi done $2="$ac_u_bar" ]) dx-4.4.4/aclocal.m40000644000076500000240000077512510472426223010740 00000000000000# generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 48 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_LINKER_BOILERPLATE # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [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]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognise shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognise a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$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' fi _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 lds 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}' 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}' 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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _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 lds _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(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix3*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _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 lds _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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _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 lds _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(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_MSG_RESULT([$SED]) ]) # Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 7 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE]) AC_SUBST([$1_FALSE]) if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH]) ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.58])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. # # Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories # created by `make install' are always world readable, even if the # installer happens to have an overly restrictive umask (e.g. 077). # This was a mistake. There are at least two reasons why we must not # use `-m 0755': # - it causes special bits like SGID to be ignored, # - it may be too restrictive (some setups expect 775 directories). # # Do not use -m 0755 and let people choose whatever they expect by # setting umask. # # We cannot accept any implementation of `mkdir' that recognizes `-p'. # Some implementations (such as Solaris 8's) are not thread-safe: if a # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' # concurrently, both version can detect that a/ is missing, but only # one can create it and the other will error out. Consequently we # restrict ourselves to GNU make (using the --version option ensures # this.) AC_DEFUN([AM_PROG_MKDIR_P], [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi AC_SUBST([mkdir_p])]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([acinclude.m4]) dx-4.4.4/AUTHORS0000644000076500000240000000123207502542136010127 00000000000000OpenDX is based on code and ideas found in the IBM Visualization Data Explorer program product. On May 18, 1999 IBM announced the withdrawal of the program product. A week later the creation of the IBM Open Visualization Data Explorer was announced in conjunction with the creation of the IBM Deep Computing Institute. IBM Visualization Data Explorer was originally written by a team at IBM Research. The Open Source project is now being led by one of its key members at IBM, Greg Abram. An incomplete list of other authors that have contributed to the open source code include: Peter Kirchner, David Thompson, Randall Hopper, Suhaib Siddiqi, Rick Scott dx-4.4.4/bin/0000777000076500000240000000000010472427042007713 500000000000000dx-4.4.4/bin/dx.in0000644000076500000240000013014410056654525010603 00000000000000#!/bin/sh # # shell script to start DX. normally called indirectly from /usr/bin/dx # so that $DXROOT can be interpreted if dx isn't installed in the default # directory. # # Name as reported with -version option version_name="Open Visualization Data Explorer Script" # # Define functions that are used first. # # # Exit function # out() { echo "$0 : $errmsg" echo "(use -help to get usage information)" exit 1 } # # simple help section # shorthelp() { cat << EOFshorthelp command line parameters: -program filename start UI with this network -image start DX with an image window as the anchor window -edit start DX with an editor window as the anchor window -menubar start DX with a small menubar as the anchor window -startup start DX with an initial startup panel (default) -uionly start the UI only (no exec) -script filename start the exec only, in script mode, running this script -script start the exec only, in script mode -host hostname start executive on this machine -memory #Mbytes set the amount of memory the exec uses -macros pathlist directory list to search for UI macros -data pathlist directory list to search for data files -prompter start the DX Data Prompter -builder start the DX Module Builder -tutor start the DX Tutorial -morehelp print man page with information about other options EOFshorthelp exit 1 } # # complete help section # longhelp() { if test -f "$dxroot/man/catl/dx.l" ; then more "$dxroot/man/catl/dx.l" else echo "cannot find $dxroot/man/catl/dx.l" echo "set the DXROOT environment variable to the root of the" echo "dx installation tree and try again." fi exit 1 cat << EOFlonghelp command line parameters: -host hostname start executive on this machine -local start executive on the current machine (default) -program filename start UI with this network -script filename run exec only, in script mode, with this script -script run exec only, in script mode -image start DX with an image window as the anchor window -edit start DX with the VP Editor as the anchor -menubar start DX with a small menubar as the anchor window -startup start DX with an initial dialog (default) -uionly start the UI only (no exec) -execonly start the exec only (no UI) in remote mode -connect host:port start a distributed exec only (no UI) -prompter start the DX Data Prompter -full start the Full Data Prompter -file filename start the Data Prompter with this header file -builder start the DX Module Builder -tutor start the DX Tutorial -suppress do not open control panels at startup in image mode -execute execute the program automatically at startup -execute_on_change go into execute_on_change mode at startup -optimize [memory|precision] select whether to minimize memory usage or to produce more color-accurate images. When memory is optimized, image objects are generated with 24 bits/pixel instead of 96, and ReadImage will produce delayed color images if supported by the format. (default = precision) -memory #Mbytes set the amount of memory the exec uses -processors #proc set the number of processors the exec uses (SMP versions only) -log [on|off] executive and ui logging: (default = off) -cache [on|off] executive cache: (default = on) -trace [on|off] executive trace: (default = off) -readahead [on|off] executive readahead: (default = on) -timing [on|off] module timing: (default = off) -highlight [on|off] node execution highlighting: (default = on) -directory dirname cd to this directory before starting exec -display hostname:0 set X display destination -metric have the UI use metric units when possible -exec filename execute this user executive -mdf filename use this user .mdf file -key <64bit hex> 16 character hexidecimal (64 bit) number that is used to encode and decode .net files. -encode Encode a .net file into a binary format with a key that must be specified with the -key option. For example, dx -encode -key 193495946952abed foo.net The resulting file can only be decoded by the DX user interface when using the same -key option. For example, dx -key 193495946952abed bar.net -dxroot dirname dx root directory; defaults to @prefix@/dx -macros pathlist directory list to search for UI macros -data pathlist directory list to search for data files -include pathlist directory list to search for script files -modules pathlist directory list to search for outboard modules -colors filename replace default color names/RGB values file -8bitcmap [private|shared|0-1|-1] private/shared colormap error threshold (default=0.1) -1 is equivalent to private. -hwrender [gl|opengl] override default hardware rendering library on platforms where both are supported. (default = opengl). -license force a specific license for either the UI or executive. type should be one of: runtime force a run-time license (UI or executive) timed force a timed (limited function) license (UI only) develop force a developer license (UI or executive) (default) -nodeid print out the node id which is used for licensing -verbose echo command lines before executing -echo echo the command lines without executing them -outboarddebug let user start outboard modules by hand -version show version numbers of the dxexec and dxui -help print a short help message -morehelp print this help message environment variables: DXHOST sets hostname for -host DXPROCESSORS sets number of processors for multiprocessor DX DXMEMORY sets memory limit in megabytes DXEXEC sets filename for -exec DXMDF sets filename for -mdf DXMACROS sets pathlist for -macros DXDATA sets pathlist for -data DXINCLUDE sets pathlist for -include DXMODULES sets pathlist for -modules DXCOLORS sets filename for -colors DX8BITCMAP sets threshold for -8bitcmap DXDELAYEDCOLORS enables ReadImage to create delayed color images if the image is a tiff format image saved in a byte-with-colormap format or a GIF format. This feature is enabled if this variable is set to any value. Delayed colors use less memory. DXGAMMA sets gamma correction for displayed images. Default is 2. DXGAMMA_8BIT DXGAMMA_12BIT DXGAMMA_24BIT sets the gamma correction factor for the windows with the indicated window depth. Overrides the value set by DXGAMMA. DXHWGAMMA Sets the gamma correction for hardware-rendered images displayed to the screen using the Display and Image tools. The default value is 2. DXHWMOD specifies the name of the hardware rendering library to use when more than one is supported. Should be either DXhwdd.o or DXhwddOGL.o DXNO_BACKING_STORE if set to anything, disables framebuffer readbacks. Setting this environment variable will improve performance of interaction with hardware rendered images, especially for machines for which readback is slow. However, some of the interactions in the image window (such as zoom) will result in a black image while interaction is taking place. Default is framebuffer readbacks are enabled. DXFLING If DXFLING is set to 1, then for hardware-rendered images, in rotation mode and execute-on-change mode, if you drag the mouse across the image, and release the mouse button outside the image, the object in the image will begin to rotate, and will continue to rotate until you click inside the image. DXAXESMAXWIDTH sets the number of digits in axes tick labels at which a switch to scientific notation is made. The default is 7. DX_NESTED_LOOPS for faces, loops, and edges data, if set, allows loops other than the enclosing loop for a face to be listed first. However, there is a consequent decrease in performance if this environment variable is set. DXPIXELTYPE sets the image type to either 24-bit color images or floating- point-based 96-bit images (the default). This affects the behavior of Render and ReadImage. This variable can be set to either DXByte (24 bits) or DXFloat (96 bits). Setting this variable to DXByte will result in images taking up less memory. DXRSH specifies the remote shell command to use when connecting to other systems (such as those when using distributed execution). The default is the the path to rsh. DXRSH_NOENV prevents the remote "invoke dxexec" script from being written with a full carbon copy of the local environment (only DISPLAY is set). DXROOT sets directory for -dxroot DXSHMEM If set to anything other than -1, forces shared memory to be used (if allowed by the architecture). If set to -1, (if allowed by the architecture) will cause the data segment to simply be extended. Please see Appendix C of the Data Explorer User Guide for more information. DXSHMEMSEGMAX Some architectures have a default configuration which limits the size of shared memory segments (see the architecture specific README file in /usr/lpp/dx), and the system configuration must be changed as root to increase the maximum allowed size of a shared memory segment. DX_SOCKET_BUFSIZE allows the user to specify the size of the send and recieve buffers for the socket connection between the UI and the exec. DX_WEB_BROWSER under UNIX specifies the web browser to launch for viewing the HTML documentation. Under Windows and MacOS X setting this environment variable will launch the systems default web browser. DXARGS prepends these args to the command line command line parameters override environment variables. If conflicting parameters are given, the last one has precedence. Also, there are some other less frequently used command line options that are not documented here. See the User's Guide for a complete list of options. EOFlonghelp exit 1 } # Start of original dx startup script # Parse the -dxroot option so that we can handle the case in which # a UI installed with one DXROOT can connect to a machine with # another DXROOT. # x=`echo "$*" | grep 'dxroot'` ARGS="$*" if [ ! -z "$x" ]; then while [ ! "$*" = "" ]; do case $1 in -dxroot) DXROOT=$2; shift ;; *) ;; esac shift done fi if [ -z "$DXROOT" ]; then prefix=@prefix@ DXROOT=$prefix/dx fi export DXROOT if [ -z "$DXDATA" ]; then DXDATA=$DXROOT/samples/data if [ -d "$DXDATA" ]; then export DXDATA fi fi # if DXMACROS not set, default it to the usual unless dir doesn't exist if [ -z "$DXMACROS" ]; then DXMACROS=$DXROOT/samples/macros if [ ! -d "$DXMACROS" ]; then DXMACROS= fi fi # # if JXMACROS not set and default dir exists, add it to the DXMACROS path # These macros are needed by dxui in order to prepare nets for operation # under control of DXServer. if [ -z "$JXMACROS" ]; then JXMACROS=$DXROOT/java/server/dxmacros if [ -d "$JXMACROS" ]; then if [ -z "$DXMACROS" ]; then DXMACROS=$JXMACROS else DXMACROS=$DXMACROS:$JXMACROS fi fi fi if [ ! -z "$DXMACROS" ]; then export DXMACROS fi # End of original dx startup script # machine type, hostname, version etc # current machine hostname & version thissys=`uname -s | sed -e 's/ ..*$//'` thismach=`uname -m` thishost=`hostname | sed -e 's/\..*$//'` thisver=`uname -r` remote=/usr/bin/rsh showversion=0 # determine the machine type, and set uiarch, exarch and thisver defaults case $thissys in FreeBSD) exarch=freebsd uiarch=freebsd remote=/usr/bin/rsh ;; AIX*) exarch=ibm6000 uiarch=ibm6000 thisver=`uname -v` thisver2=`uname -v`.`uname -r` # # The following is a work-around for a problem involved with NLS support # and .net file reading on AIX. # LANG=C LC_ALL=C export LANG export LC_ALL # this is for AIX 3.2.3e, so we get the right libs at run time if test "z$thisver2" = "z3.2" ; then LIBPATH=/usr/lib:/lib export LIBPATH fi ;; IRIX*) exarch=sgi uiarch=sgi remote=/usr/bsd/rsh if test "z$thisver" = "z5.1.1.1" ; then __SGI_NO_REMOTE_GL=1 export __SGI_NO_REMOTE_GL fi unset XUSERFILESEARCHPATH export XUSERFILESEARCHPATH ;; SunOS*) # the version comes out as A.B.C - we want just A osver=`echo $thisver | sed -e '/.\..\../s/\..$//'` minorver=`echo $osver | sed -e 's/^.\.//'` majorver=$osver:r if test $majorver -ge 5 ; then exarch=solaris uiarch=solaris if test "$LD_LIBRARY_PATH" ; then LD_LIBRARY_PATH=$LD_LIBRARY_PATH":/usr/openwin/lib:/opt/SUNWits/Graphics-sw/xgl-3.0/lib:/usr/ucblib:/usr/local/lib" else LD_LIBRARY_PATH="/usr/openwin/lib:/opt/SUNWits/Graphics-sw/xgl-3.0/lib:/usr/ucblib:/usr/local/lib" fi # # in Solaris 8 and higher, the inclusion of /usr/ucblib causes problems # with dx launching the exec programatically (probably similar to # the problem in SunOS4 below. # if test $minorver -ge 8 ; then LD_LIBRARY_PATH=`echo "$LD_LIBRARY_PATH" | sed -e 's?/usr/ucblib??g' -e 's?:[:]*?:?g'` fi export LD_LIBRARY_PATH else exarch=sun4 uiarch=sun4 remote=/usr/ucb/rsh # # This is to work around a problem on SunOS4, in which a reference # to a directory that is included by default causes # 'dlopen:stub interception failed' messages to appear when attempting # hw rendering. # if test "$LD_LIBRARY_PATH" ; then LD_LIBRARY_PATH=`echo "$LD_LIBRARY_PATH" | sed -e 's?/usr/ucblib??g' -e 's?/usr/lib??g' -e 's?:[:]*?:?g'` export LD_LIBRARY_PATH fi fi # make sure we don't use openwin files unset XFILESEARCHPATH export XFILESEARCHPATH ;; HP-UX*) exarch=hp700 uiarch=hp700 thisver=`uname -m | cut -c1-6` remote=/usr/bin/remsh ;; dgux) exarch=aviion uiarch=aviion remote=/usr/bin/remsh ;; OSF1*) exarch=alphax uiarch=alphax ;; Linux) exarch=linux uiarch=linux remote=/usr/bin/rsh ;; CYGWIN*) exarch=cygwin uiarch=cygwin remote=/usr/bin/rsh ;; Darwin*) exarch=macos uiarch=macos remote=/usr/bin/rsh if [ -z "$DXMACROS" ]; then if [ -d "$HOME/Library/Application Support/OpenDX/macros" ]; then DXMACROS="$HOME/Library/Application Support/OpenDX/macros" fi else if [ -d "$HOME/Library/Application Support/OpenDX/macros" ]; then DXMACROS="$DXMACROS:$HOME/Library/Application Support/OpenDX/macros" fi fi if [ ! -z "$DXMACROS" ]; then export DXMACROS fi DX_WEB_BROWSER=1 export DX_WEB_BROWSER ;; *) echo "unknown machine type" exit 1 ;; esac DXARCH=$exarch export DXARCH # default to running locally, from @prefix@/dx exhost=$thishost dxroot=@prefix@/dx startup=1 # run the startup window by default # initialize these so later they can be used, even the first time. xparms= dxargs="" envargs="" uiflags="" prompterflags="" exmdf="" uimdf="" errmsg="" FileName= # Name of filename given on command line w/o option ScriptCmd="" # Script command invocation to execute uirestrict="" echoparms= seecomline=0 exlic= motifcmd= motifbind= builder=0 encoder=0 tutor=0 prompter=0 exonly=0 uionly=0 wizard=0 exhilite=-B uimode=-edit exonly=0 exmode=-r port=1900 cdto=`pwd` # # if DXARGS defined, use them as the default args to this command. # append any other command line args afterwards # if test "$DXARGS" ; then dxargs="$DXARGS" fi # have to use all env variables here to set parms, because if we use rsh # to start dx on another machine, environment vars don't get propagated. # if test -n "$DXHOST" ; then envargs="$envargs#-host#$DXHOST" fi if test -n "$DXPROCESSORS" ; then envargs="$envargs#-processors#$DXPROCESSORS" fi if test -n "$DXMEMORY" ; then envargs="$envargs#-memory#$DXMEMORY" fi if test -n "$DXEXEC" ; then envargs="$envargs#-exec#$DXEXEC" fi if test -n "$DXMDF" ; then envargs="$envargs#-mdf#$DXMDF" fi if test -n "$DXUI" ; then envargs="$envargs#-ui#$DXUI" fi if test -n "$DXMACROS" ; then envargs="$envargs#-macros#$DXMACROS" fi if test -n "$DXMODULES" ; then envargs="$envargs#-modules#$DXMODULES" fi if test -n "$DXDATA" ; then envargs="$envargs#-data#$DXDATA" fi if test -n "$DXINCLUDE" ; then envargs="$envargs#-include#$DXINCLUDE" fi if test -n "$DXCOLORS" ; then envargs="$envargs#-colors#$DXCOLORS" fi if test -n "$DX8BITCMAP" ; then envargs="$envargs#-8bitcmap#$DX8BITCMAP" fi if test -n "$DXROOT" ; then envargs="$envargs#-dxroot#$DXROOT" fi if test -n "$DXEXECROOT" ; then envargs="$envargs#-execroot#$DXEXECROOT" fi if test -n "$DXUIROOT" ; then envargs="$envargs#-uiroot#$DXUIROOT" fi for args do dsa="$dsa#$args" done dsa=`echo $dsa | sed -e "s/^\s*#//"` if test -n "$dxargs" ; then set -- $dxargs for args do sdxargs="$sdxargs#$args" done fi sdxargs=`echo $sdxargs | sed -e "s/^\s*#//"` aenvargs=`echo $envargs | sed -e "s/^\s*#//"` if test -n "$dsa" ; then aenvargs="$aenvargs#$dsa" fi unset dsa if test -n "$sdxargs" ; then aenvargs="$aenvargs#$sdxargs" fi unset sdxargs PFS=$IFS IFS="#" envargs=`echo $envargs | sed -e "s/#/ /g"` set -- $aenvargs IFS=$PFS unset aenvargs # # parse input parameters here # while test $# -gt 0 do case $1 in -whereami) echo installed in $dxroot exit 0 ;; -whicharch) echo $exarch exit 0 ;; -host) # start the executive on this machine if test $# -lt 2 ; then errmsg="-host: missing hostname" out fi case $2 in -*) errmsg="-host: missing hostname" out ;; *) exhost="$2" shift ;; esac ;; -local) # ignore DXHOST and run local exhost=$thishost ;; -directory) # cd here before starting exec if test $# -lt 2 ; then errmsg="-directory: missing directory name" out fi case $2 in -*) errmsg="-directory: missing directory name" out ;; *) cdto="$2" shift ;; esac ;; -memory) # how much memory to use if test $# -lt 2 ; then errmsg="-memory: missing parameter, must give number of Megabytes" out fi case $2 in -*) errmsg="-memory: missing parameter, must give number of Megabytes" out ;; *) exmem="-M$2" uimem="-memory $2" shift ;; esac ;; -processors) # how many processors to use (for MP) if test $# -lt 2 ; then errmsg="-processors: missing number of processors to use" out fi case $2 in -*) errmsg="-processors: missing number of processors to use" out ;; *) exproc="-p$2" uiproc="-processors $2" shift ;; esac ;; -port) # what socket number to use if test $# -lt 2 ; then errmsg="-port: missing port number" out fi case $2 in -*) errmsg="-port: missing port number" out ;; [0-9]*) port=$2 ;; *) errmsg="-port: port must be specified as a number" out ;; esac shift ;; -image|-edit|-kiosk) # start UI in image mode, edit mode, kiosk/menubar mode uimode=$1 exonly=0 exmode=-r startup=0 ;; -wizard) wizard=1 ;; -menubar) # start UI in kiosk/menubar mode uimode=-kiosk exonly=0 exmode=-r startup=0 ;; -encode) # Encode a .net file encoder=1 startup=0 ;; -key) # the key for encoding .net files if test $# -lt 2 ; then errmsg="-key: missing number" out fi case $2 in -*) errmsg="-key: key must be specified as a number" out ;; [A-Fa-f0-9]*) key=$2 ;; *) errmsg="-key: key must be specified as a alpha numeric string" out ;; esac uiflags="$uiflags -cryptKey $key" shift ;; -execute) # in image mode, execute once automatically uiflags="$uiflags -execute" ;; -execute_on_change) # in image mode, stay in exec-on-change mode uiflags="$uiflags -execute_on_change" ;; -suppress) # in image mode, don't automatically open control panels uiflags="$uiflags -suppress" ;; -display) # explicitly set output device if test $# -lt 2 ; then errmsg="-display: missing X name" out fi case $2 in -*) errmsg="-display: missing X name" out ;; *) DISPLAY=$2 export DISPLAY shift ;; esac ;; -log) # executive logging: on or off if test $# -lt 2 ; then errmsg="-log: missing parameter, must be on or off" out fi case $2 in on) exlog=-l uilog="-log on" ;; off) exlog= uilog="-log off" ;; *) errmsg="-log: bad parameter, must be on or off" out ;; esac shift ;; -cache) # executive cache: on or off if test $# -lt 2 ; then errmsg="-cache: missing parameter, must be on or off" out fi case $2 in on) excache= uicache="-cache on" ;; off) excache=-c uicache="-cache off" ;; *) errmsg="-cache: bad parameter, must be on or off" out ;; esac shift ;; -trace) if test $# -lt 2 ; then errmsg="-trace: missing parameter, must be on or off" out fi case $2 in on) extrace=-T uitrace="-trace on" ;; off) extrace= uitrace="-trace off" ;; *) errmsg="-trace: bad parameter, must be on or off" out ;; esac shift ;; -readahead) if test $# -lt 2 ; then errmsg="-readahead: missing parameter, must be on or off" out fi case $2 in on) exread= uiread="-readahead on" ;; off) exread=-u uiread="-readahead off" ;; *) errmsg="-readahead: bad parameter, must be on or off" out ;; esac shift ;; -timing) if test $# -lt 2 ; then errmsg="-timing: missing parameter, must be on or off" out fi case $2 in on) extime=-m uitime="-timing on" ;; off) extime= uitime="-timing off" ;; *) errmsg="-timing: bad parameter, must be on or off" out ;; esac shift ;; -highlight) if test $# -lt 2 ; then errmsg="-highlight: missing parameter, must be on or off" out fi case $2 in on) exhilite=-B uihilite="-highlight on" ;; off) exhilite="" uihilite="-highlight off" ;; *) errmsg="-highlight: bad parameter, must be on or off" out ;; esac shift ;; -nodeid) exec "\"$DXROOT/bin/NodeID\"" # not reached ;; -optimize) if test $# -lt 2 ; then errmsg="-optimize: missing parameter" out fi case $2 in memory) DXPIXELTYPE=DXByte DXDELAYEDCOLORS=1 export DXPIXELTYPE export DXDELAYEDCOLORS ;; precision) DXPIXELTYPE=DXFloat unset DXDELAYEDCOLORS export DXPIXELTYPE export DXDELAYEDCOLORS ;; *) errmsg="-optimize: $arglist[2] bad parameter" out ;; esac shift ;; -script) # exec input script, if next parm != -something exonly=1 exmode=-R startup=0 if test $# -ge 2 ; then case $2 in -*) : ;; *) FileName=$2 shift ;; esac fi ;; -scriptcmd) # execute this command, possibly after importing a script exonly=1 exmode=-R startup=0 if test $# -lt 2 ; then errmsg="-scriptcmd: missing parameter" out fi case $2 in -*) errmsg="-scriptcmd: missing filename" out ;; *) ScriptCmd=$2 shift ;; esac ;; -connect) # execute this command, possibly after importing a script exonly=1 exmode=-R startup=0 if test $# -lt 2 ; then errmsg="-connect: missing host:portnum" out fi case $2 in -*) errmsg="-connect: missing host:portnum" out ;; *) exconnect=$2 chost=`echo $exconnect | sed -e 's/^\(.*\):.*$/\1/'` cnum=`echo $exconnect | sed -e 's/^.*:\([0-9.]*\)$/\1/'` exdist="-s -C $cnum -H $chost" shift ;; esac ;; -program) # exec input script, if next parm != -something startup=0 if test $# -lt 2 ; then errmsg="-program: missing program name" out fi case $2 in -*) errmsg="-program: missing program name" out ;; *) FileName=$2 shift ;; esac ;; -cfg) # exec input script, if next parm != -something if test $# -lt 2 ; then errmsg="-cfg: missing configuration file name" out fi case $2 in -*) errmsg="-cfg: missing configuration file name" out ;; *) uiflags="$uiflags -cfg $2" shift ;; esac ;; -uionly) # startup the ui only uionly=1 startup=0 ;; -exonly|-execonly) # startup the executable only exonly=1 startup=0 ;; -dxroot) # override root directory for all dx files if test $# -lt 2 ; then errmsg="-dxroot: missing directory name" out fi case $2 in -*) errmsg="-dxroot: missing directory name" out ;; *) dxroot=$2 shift ;; esac ;; -exroot|-execroot) # override root directory for all exec files if test $# -lt 2 ; then errmsg="-execroot: missing directory name" out fi case $2 in -*) errmsg="-execroot: missing directory name" out ;; *) dxexroot="$2" shift ;; esac ;; -uiroot) # override root directory for all ui files if test $# -lt 2 ; then errmsg="-uiroot: missing directory name" out fi case $2 in -*) errmsg="-uiroot: missing directory name" out ;; *) dxuiroot=$2 shift ;; esac ;; -exec) # specific name of exec to use if test $# -lt 2 ; then errmsg="-exec: missing filename" out fi case $2 in -*) errmsg="-exec: missing filename" out ;; *) dxexec=$2 shift ;; esac ;; -mdf) # name of local mdf to use if test $# -lt 2 ; then errmsg="-mdf: missing filename" out fi case $2 in -*) errmsg="-mdf: missing filename" out ;; *) dxmdf=$2 exmdf="$exmdf -F \"$2\"" uimdf="$uimdf -mdf \"$2\"" shift ;; esac ;; -dxmdf) # name of overriding dx.mdf file to use if test $# -lt 2 ; then errmsg="-dxmdf: missing filename" out fi case $2 in -*) errmsg="-dxmdf: missing filename" out ;; *) uimdf="$uimdf -dxmdf $2" shift ;; esac ;; -uimdf) # name of overriding ui.mdf file to use if test $# -lt 2 ; then errmsg="-uimdf: missing filename" out fi case $2 in -*) errmsg="-uimdf: missing filename" out ;; *) uimdf="$uimdf -uimdf $2" shift ;; esac ;; -ui) # name of ui executable to use if test $# -lt 2 ; then errmsg="-ui: missing filename" out fi case $2 in -*) errmsg="-ui: missing filename" out ;; *) dxui=$2 shift ;; esac ;; -data) # pathlist of directories to search for data files if test $# -lt 2 ; then errmsg="-data: missing directory list" out fi case $2 in -*) errmsg="-data: missing directory list" out ;; *) dxdata=$2 shift ;; esac ;; -macros) # pathlist of dirs to search for UI macros if test $# -lt 2 ; then errmsg="-macros: missing directory list" out fi case $2 in -*) errmsg="-macros: missing directory list" out ;; *) dxmacros=$2 shift ;; esac ;; -modules) # pathlist of directories to search for outboards if test $# -lt 2 ; then errmsg="-modules: missing directory list" out fi case $2 in -*) errmsg="-modules: missing directory list" out ;; *) dxmodules=$2 shift ;; esac ;; -include) # pathlist of directories to search for script files if test $# -lt 2 ; then errmsg="-include: missing directory list" out fi case $2 in -*) errmsg="-include: missing directory list" out ;; *) dxinclude=$2 shift ;; esac ;; -colors) # filename of replacement colors file if test $# -lt 2 ; then errmsg="-colors: missing filename" out fi case $2 in -*) errmsg="-colors: missing filename" out ;; *) dxcolors=$2 shift ;; esac ;; -8bitcmap) # set tolerance for colormap match if test $# -lt 2 ; then errmsg="-8bitcmap: missing threshold" out fi case "$2" in private) dx8bitcmap=-1.0 ;; shared) dx8bitcmap=1.0 ;; *) errmsg="-8bitcmap: missing threshold" out ;; esac shift ;; -hwrender) # force which hardware rendering lib to use if test $# -lt 2 ; then errmsg="-hwrender: missing parameter, must be gl or opengl" out fi case "$2" in gl) DXHWMOD=DXhwdd.o export DXHWMOD ;; opengl) DXHWMOD=DXhwdd.o export DXHWMOD ;; *) errmsg="-hwrender: missing parameter, must be gl or opengl" out ;; esac shift ;; -xrm) # explicitly set an X resource name if test $# -lt 2 ; then errmsg="-xrm: missing parameter" out fi case $2 in -*) errmsg="-xrm: missing parameter" out ;; *) xparms="$xparms -xrm $2" shift ;; esac ;; -verbose) # echo stuff seecomline=1 ;; -uidebug) # private flag - enable ui debugging messages uidebug=-uidebug ;; -outboarddebug) # the exec will ask the user to start the outboard exoutdb="-D" uioutdb="-outboarddebug" ;; -echo) # debug this file - only echos command line echoparms=echo ;; -remoteecho) # debug this file - echos the remote command line envargs="$envargs -echo" ;; -help|-shorthelp|-h) # print short help message shorthelp ;; -morehelp|-longhelp) # print long help message longhelp ;; -server|-arch|-uiarch|-minprocessors|-maxprocessors|-minmemory|-maxmemory) # obsolete options which took an arg # echo $arglist[1] obsolete, ignored case $2 in -*) : ;; *) shift ;; esac ;; -wait|-queue|-ibm6000) # obsolete options w/o args ;; -version) # print the exec and ui versions showversion=1 ;; -prompter) # don't start DX, start the Data Prompter instead prompter=1 startup=0 ;; -startup) # don't start DX, start the Startup window instead startup=1 ;; -tutor|-tutorial) # don't start DX, start the tutorial instead tutor=1 startup=0 ;; -builder) # don't start DX, start the Module Builder instead builder=1 startup=0 ;; -no*|-limitImageOptions) # ui restriction flags uirestrict="$uirestrict $1" ;; -metric) # make default units metric in postscript printing uiflags="$uiflags -metric" ;; -restrictionLevel) if test $# -lt 2 ; then errmsg="-restrictionLevel: missing level" out fi case $2 in -*) errmsg="-restrictionLevel: missing level" out ;; *) uirestrict="$uirestrict -restrictionLevel $2" shift ;; esac ;; -appHost) if test $# -lt 2 ; then errmsg="-appHost: missing host" out fi case $2 in -*) errmsg="-appHost: missing host" out ;; *) uiflags="$uiflags -appHost $2" shift ;; esac ;; -appPort) if test $# -lt 2 ; then errmsg="-appPort: missing port" out fi case $2 in -*) errmsg="-appPort: missing port" out ;; *) uiflags="$uiflags -appPort $2" shift ;; esac ;; -file) if test $# -lt 2 ; then errmsg="-file: missing input filename" out fi case $2 in -*) errmsg="-file: missing input filename" out ;; *) FileName=$2 shift ;; esac ;; -full) prompterflags="$prompterflags -full" ;; -view) if test $# -lt 2 ; then errmsg="-view: missing object filename" out fi case $2 in -*) errmsg="-view: missing object filename" out ;; *) uiflags="$uiflags -view $2" shift ;; esac ;; -*) # -anything else errmsg="unrecognized parameter: $arglist[1]" out ;; *) # filename of network if test -n "$FileName" ; then errmsg="input filename already set to '$FileName'; '$arglist[1]' unrecognized" out fi FileName=$1 ;; esac shift done # Now set some needed results dxexroot=$dxroot dxuiroot=$dxroot dxexecdef="$dxexroot/bin_${exarch}/dxexec" if test -z "$dxexec" ; then dxexec=$dxexecdef fi if test -z "$dxui" ; then dxui="$dxuiroot/bin_${uiarch}/dxui" fi if test -z "$dxdata" ; then dxdata="$dxroot/samples/data" fi # # set the env variables which the executables will read with getenv() # if test -n "$dxmacros" ; then DXMACROS=$dxmacros export DXMACROS fi if test -n "$dxmodules" ; then DXMODULES=$dxmodules export DXMODULES fi if test -n "$dxdata" ; then DXDATA=$dxdata export DXDATA fi if test -n "$dxinclude" ; then DXINCLUDE=$dxinclude export DXINCLUDE fi if test -n "$dxmdf" ; then DXMDF=$dxmdf export DXMDF fi if test -n "$dxcolors" ; then DXCOLORS=$dxcolors export DXCOLORS fi if test -n "$dx8bitcmap" ; then DX8BITCMAP=$dx8bitcmap export DX8BITCMAP fi if test -n "$dxexec" ; then DXEXEC=$dxexec export DXEXEC fi # # guaranteed to be have values # if test -z "$DXROOT" ; then DXROOT=$dxroot export DXROOT fi if test "z$dxroot" != "z$dxexroot" ; then DXEXECROOT=$dxexroot export DXEXECROOT fi if test "z$dxroot" != "z$dxuiroot" ; then DXUIROOT=$dxuiroot export DXUIROOT fi # the old syntax was host,port. disabled for now. # setenv DXHOST "$exhost,$port" DXHOST="$exhost" export DXHOST # # Now that the environment is set up we can test the version if requested # if test $showversion -eq 1 ; then "$dxexec" -v "$dxui" -version echo "$version_name, @VERSION_STRING@" exit 0 fi # # set the DISPLAY var, if not already set (and if local, unix:0 is faster) # if test -z "$DISPLAY" ; then if test "z$exhost" != "z$thishost" ; then DISPLAY="${thishost}:0" export DISPLAY else DISPLAY=unix:0 export DISPLAY fi fi # # Set some special motif bindings for the various user interfaces # case $uiarch in aviion) motifcmd="-xrm" motifbind="\"*defaultVirtualBindings: osfDelete : Delete \n osfBackSpace: BackSpace \n osfLeft : Left \n osfRight : Right \n osfUp : Up \n osfDown : Down \n osfPageUp : Prior \n osfPageDown : Next \n osfInsert : Insert\"" ;; alphax) XNLSPATH=$dxroot/lib_alphax/nls export XNLSPATH ;; *) : ;; esac # # start programs here. by default, this script prepares the parameters # for both the exec and the ui, and passes them all to the ui, which # starts the exec. if the 'exonly' flag is set, then this script only # starts the exec. # if test $exonly -eq 1 ; then if test $uionly -eq 1 ; then errmsg="-uionly and -execonly are mutually exclusive." out fi fi # # starting the tutorial instead of starting DX # if test $tutor -eq 1 ; then cmd="$DXROOT/bin_${uiarch}/tutor" if test $seecomline -eq 1 ; then set echo "$echoparms exec $cmd $xparms" fi $echoparms eval exec \"$cmd\" $xparms exit 1 fi # # starting the Data Prompter instead of starting DX # if test $prompter -eq 1 ; then if test -n "$FileName" ; then prompterflags="$prompterflags -file \"$FileName\"" fi cmd="$DXROOT/bin_${uiarch}/prompter" if test $seecomline -eq 1 ; then set echo "$echoparms exec $cmd $prompterflags $xparms" fi $echoparms eval exec \"$cmd\" $prompterflags $xparms exit 1 fi # # starting the Startup Window instead of starting DX # if test $startup -eq 1 ; then cmd="$DXROOT/bin_${uiarch}/startupui" if test $seecomline -eq 1 ; then set echo "$echoparms exec $cmd $xparms $*" fi $echoparms eval exec \"$cmd\" $xparms $* exit 1 fi # # starting the Module Builder instead of starting DX # if test $builder -eq 1 ; then cmd="$DXROOT/bin_${uiarch}/builder" if test $seecomline -eq 1 ; then set echo "exec $cmd $xparms $motifcmd $motifbind $FileName" fi if test -n "$FileName" ; then FileName=\"$FileName\" ; fi $echoparms eval exec \"$cmd\" $xparms $motifcmd $motifbind "$FileName" exit 1 fi # # starting the network encoder instead of starting DX # if test $encoder -eq 1 ; then if test -z $key ; then echo "Encoding requires a key be specified with the -key option" exit 1 fi Base=`echo $FileName | sed -e 's/\.net//'` CfgName="${Base}.cfg" FileBase=`basename $Base` EncodedBase="${Base}-e" echo "Creating encoded version of $FileName in ${EncodedBase}.net " cmd1="$DXROOT/bin_${uiarch}/dxencode" if test -f $CfgName ; then echo "Copying $CfgName to ${EncodedBase}.cfg" cmd2="cp $CfgName ${EncodedBase}.cfg" else cmd2="" fi if test "$seecomline" -eq 1 || test "z$echoparms" = "zecho" ; then if test $seecomline -eq 1 ; then set fi echo "$cmd1 \> ${EncodedBase}.net -p $key $FileName" echo $cmd2 fi if test "z$echoparms" != "zecho" ; then eval \"$cmd1\" -p $key $FileName > ${EncodedBase}.net $cmd2 fi exit 1 fi # # start executive # if test $exonly -eq 1 ; then # # parse the DISPLAY environment variable to pick out the machine name # and display number. also, if the local host and the execution host are # different strings, use the host command or scan the /etc/hosts file to # try to decide if perhaps they are simply aliases for the same machine. # if you don't recognize they are the same machine, you will loop forever. # dhost=`echo $DISPLAY | sed -e 's/^\(.*\):.*$/\1/'` dnum=`echo $DISPLAY | sed -e 's/^.*:\([0-9.]*\)$/\1/'` if test "z$thishost" != "z$exhost" ; then if test -x "/bin/host" ; then myent=`host $thishost` exent=`host $exhost` else myent=`sed 's/#.*$//' /etc/hosts | egrep '(^| | )'"$thishost"'( | |$)'` exent=`sed 's/#.*$//' /etc/hosts | egrep '(^| | )'"$exhost"'( | |$)'` fi else myent=$thishost exent=$thishost fi # " # if the hostname isn't localhost or unix, look closer to see if it # is just another alias for the local machine, or if it really is a # different machine. if a different machine, reset the display variable # back to this machine, if necessary, and then execute a remote shell # if test "z$exhost" != "zlocalhost" -a "z$exhost" != "zunix" ; then if test "z$exent" != "z$myent" ; then if test "z$dhost" = "zunix" ; then echo "resetting DISPLAY variable from $DISPLAY to \"${thishost}:$dnum\"" DISPLAY="${thishost}:$dnum" export DISPLAY fi dxcom="$remote $exhost \"$0\" -directory \"$cdto\" -display $DISPLAY $envargs $*" echo "Starting remote command on $exhost" $echoparms eval exec $dxcom fi fi dxmsg="Starting DX executive" echo $dxmsg dxcom=$dxexec exflags="$exmode $excache $exlog $exread $exmem $exproc $exerrlvl $extrace $exhilite $extime $exdist $exoutdb $exlic $exmdf" exflags=`echo $exflags | sed -e "s/ */ /g"` if test $seecomline -eq 1 ; then set echo "$dxcom $exflags" fi if test "z`pwd`" != "z$cdto" ; then if ! test -d "$cdto" ; then echo "directory $cdto not found, current directory `pwd`" else cd "$cdto" if test $? -eq 0 ; then echo "current directory now `pwd`" else errmsg="cannot change to directory $cdto" out fi fi fi # -script if test -n "$FileName" ; then # -script -scriptcmd "command" if test -n "$ScriptCmd" ; then $echoparms eval "\"$dxcom\" $exflags <<- EOF include \"$FileName\" $ScriptCmd; EOF" else $echoparms eval \"$dxcom\" $exflags "< \"$FileName\"" fi else # -scriptcmd "command" if test -n "$ScriptCmd" ; then $echoparms eval "echo \"$ScriptCmd;\" | \"$dxcom\" $exflags" else $echoparms eval \"$dxcom\" $exflags fi fi exit $status fi # # start UI # dxmsg="Starting DX user interface" # # check system version # case $uiarch in ibm6000) if test "z$thisver2" != "z3.2" && test "z$thisver" != "z4" ; then echo "WARNING! AIX Version seems to be other than 3.2 or 4.x" echo "Continuing, but unexpected errors may result." fi ;; sgi) # add version check here? ;; hp700) if test "z$thisver" != "z9000/7" && test "z$thisver" != "z9000/8" ; then echo "WARNING! This machine appears to NOT be a model 7xx/8xx" echo "Continuing, but unexpected errors may result." fi ;; sun4|solaris|aviion|alphax|linux|freebsd|macos|cygwin) ;; *) echo "DX user interface does not run on this architecture" echo "to start the executive, use the -execonly flag" out ;; esac dxcom=$dxui # add all UI flags here uiflags="$uimode $uidepth $uidebug $uimem $uiproc $uilog $uicache $uiread $uitrace $uitime $uioutdb $uihilite $uimdf $xparms $uirestrict $uiflags" uiflags=`echo $uiflags | sed -e "s/ */ /g"` if test -n "$FileName" ; then uiflags="$uiflags -program \"$FileName\"" ; fi if test $uionly -eq 1 ; then uiflags="$uiflags -uionly" ; fi if test $wizard -eq 1 ; then uiflags="$uiflags -wizard" ; fi if test -n "$cdto" ; then uiflags="$uiflags -directory \"$cdto\"" ; fi if test "z$dxexec" != "z$dxexecdef" ; then uiflags="$uiflags -exec \"$dxexec\"" ; fi echo $dxmsg if test $seecomline -eq 1 ; then set echo "exec $dxcom $uiflags $motifcmd $motifbind" fi $echoparms eval exec \"$dxcom\" $uiflags $motifcmd $motifbind # does not normally get here -- only if echo is set exit $status dx-4.4.4/bin/Makefile.am0000644000076500000240000000040207703651071011663 00000000000000## Process this file with automake to produce Makefile.in dxbindir = $(prefix)/dx/bin bindir = $(prefix)/bin EXTRA_SCRIPTS = mdf2c dx EXTRA_DIST = url_handler.sh dxbin_SCRIPTS = mdf2c url_handler.sh @INSTALL_BIN_SCRIPT@ bin_SCRIPTS = @INSTALL_BIN_SCRIPT@ dx-4.4.4/bin/Makefile.in0000644000076500000240000002753210472426232011705 00000000000000# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = bin DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/dx.in $(srcdir)/mdf2c.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/include/dxconfig.h CONFIG_CLEAN_FILES = dx mdf2c am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(dxbindir)" binSCRIPT_INSTALL = $(INSTALL_SCRIPT) dxbinSCRIPT_INSTALL = $(INSTALL_SCRIPT) SCRIPTS = $(bin_SCRIPTS) $(dxbin_SCRIPTS) depcomp = am__depfiles_maybe = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ ANYDX = @ANYDX@ AR = @AR@ ARCH = @ARCH@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILDBASE = @BUILDBASE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOT_EXE_EXT = @DOT_EXE_EXT@ DXABI = @DXABI@ DXEXEC_EXP = @DXEXEC_EXP@ DXEXEC_IMP = @DXEXEC_IMP@ DXUI_ALDFLAGS = @DXUI_ALDFLAGS@ DX_GL_LINK_LIBS = @DX_GL_LINK_LIBS@ DX_JAVA_CLASSPATH = @DX_JAVA_CLASSPATH@ DX_OUTBOARD_LIBS = @DX_OUTBOARD_LIBS@ DX_RTL_ALDFLAGS = @DX_RTL_ALDFLAGS@ DX_RTL_CFLAGS = @DX_RTL_CFLAGS@ DX_RTL_DXENTRY = @DX_RTL_DXENTRY@ DX_RTL_IMPORTS = @DX_RTL_IMPORTS@ DX_RTL_SYSLIBS = @DX_RTL_SYSLIBS@ DX_X_LINK_LIBS = @DX_X_LINK_LIBS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FMT_LIBS = @FMT_LIBS@ HAVE_MC = @HAVE_MC@ INSTALL_BIN_PROGRAM = @INSTALL_BIN_PROGRAM@ INSTALL_BIN_SCRIPT = @INSTALL_BIN_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JAR = @JAR@ JAVA = @JAVA@ JAVABRANCH = @JAVABRANCH@ JAVAC = @JAVAC@ JAVAH = @JAVAH@ JINC = @JINC@ JNI_CFLAGS = @JNI_CFLAGS@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIB_LF = @LIB_LF@ LN_S = @LN_S@ LOCALMAKE = @LOCALMAKE@ LTLIBOBJS = @LTLIBOBJS@ MAJOR_VERSION = @MAJOR_VERSION@ MAKEINFO = @MAKEINFO@ MICRO_VERSION = @MICRO_VERSION@ MINOR_VERSION = @MINOR_VERSION@ MKDEP = @MKDEP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHARED_LINK = @SHARED_LINK@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ VERSION_STRING = @VERSION_STRING@ WITH_BUILDLIBDX_FALSE = @WITH_BUILDLIBDX_FALSE@ WITH_BUILDLIBDX_TRUE = @WITH_BUILDLIBDX_TRUE@ WITH_INSTALLHTML_FALSE = @WITH_INSTALLHTML_FALSE@ WITH_INSTALLHTML_TRUE = @WITH_INSTALLHTML_TRUE@ YACC = @YACC@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = $(prefix)/bin bsh_path = @bsh_path@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ rsh_path = @rsh_path@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ yakker = @yakker@ dxbindir = $(prefix)/dx/bin EXTRA_SCRIPTS = mdf2c dx EXTRA_DIST = url_handler.sh dxbin_SCRIPTS = mdf2c url_handler.sh @INSTALL_BIN_SCRIPT@ bin_SCRIPTS = @INSTALL_BIN_SCRIPT@ all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu --ignore-deps bin/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu --ignore-deps bin/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh dx: $(top_builddir)/config.status $(srcdir)/dx.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mdf2c: $(top_builddir)/config.status $(srcdir)/mdf2c.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \ else :; fi; \ done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; for p in $$list; do \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done install-dxbinSCRIPTS: $(dxbin_SCRIPTS) @$(NORMAL_INSTALL) test -z "$(dxbindir)" || $(mkdir_p) "$(DESTDIR)$(dxbindir)" @list='$(dxbin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " $(dxbinSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(dxbindir)/$$f'"; \ $(dxbinSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(dxbindir)/$$f"; \ else :; fi; \ done uninstall-dxbinSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dxbin_SCRIPTS)'; for p in $$list; do \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " rm -f '$(DESTDIR)$(dxbindir)/$$f'"; \ rm -f "$(DESTDIR)$(dxbindir)/$$f"; \ done mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(dxbindir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dxbinSCRIPTS install-exec-am: install-binSCRIPTS install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binSCRIPTS uninstall-dxbinSCRIPTS \ uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binSCRIPTS install-data install-data-am \ install-dxbinSCRIPTS install-exec install-exec-am install-info \ install-info-am install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-binSCRIPTS uninstall-dxbinSCRIPTS uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: dx-4.4.4/bin/mdf2c.in0000644000076500000240000000250507025341720011152 00000000000000#!/bin/sh # Configure is looking for the following line prefix=@prefix@ DFLTROOT=$prefix/dx root=${DXROOT=${DXEXECROOT=$DFLTROOT}} syslibroot=${root}/lib/ syslibfile=dx.mdf sysawk=${root}/lib/mdf2c.awk aflag= if [ "$1" = "" ] ; then echo "usage: mdf2c [ -m | -o ] modules.mdf [ moremodules.mdf ... ]" echo " or mdf2c -s" echo " or mdf2c -c" echo "generates a source file used for adding modules to DX" echo " use -m for building dynamically loadable modules" echo " use -o to omit the standard system modules" echo " use -s for building a standard system without adding new modules" echo " use -c for building with callmodule" exit 1 fi # to run this without explicitly specifying any modules, use -s # you would want to do this to relink a vanilla system if [ "$1" = "-s" ] ; then shift fi # to not include the standard system modules, use -o # you would want this for creating a system with a subset of the # standard system modules if [ "$1" = "-o" ] ; then syslibroot= syslibfile= shift fi # to create a dynamically loadable set of modules, use -m if [ "$1" = "-m" ] ; then syslibroot= syslibfile= aflag="dynamic=1" shift fi # to create using the callmodule syslibfile, use -c if [ "$1" = "-c" ] ; then syslibfile=dxcm.mdf shift fi cat ${syslibroot}${syslibfile} $* | awk -f $sysawk $aflag - dx-4.4.4/bin/url_handler.sh0000755000076500000240000000202007455145646012475 00000000000000#!/bin/sh # # This script is an example of how to call the appropriate viewer based upon # the URL method # # Michael Elkins # # Created: March 10, 1997 # Last Edited: April 10, 2002 # # Souped up 4/9/97 by Randall Hopper and Edited 4/10/02 by David Thompson # if [ -z "$1" ]; then echo No URL specified exit 1 fi url="$1" method=`echo "$url" | sed 's;^\([^:]*\):.*;\1;'` case $method in ftp) target=`echo "$url" | sed 's;^.*://\([^/]*\)/*\(.*\);\1:\2;'` ncftp -L -r -d 0 $target ;; mailto) mutt `echo "$url" | sed 's;^[^:]*:\(.*\);\1;'` ;; *) use_xbrowser=n case "$DISPLAY" in :0) use_xbrowser=y ;; :0.*) use_xbrowser=y ;; unix:0.*) use_xbrowser=y ;; esac if [ $use_xbrowser = n ]; then lynx "$url" else netscape -remote "openURL($url)" 2> /dev/null || \ (netscape "$url" &) fi ;; esac dx-4.4.4/._ChangeLog0000400000076500000000000000012210464660045011024 00000000000000Mac OS X  2 RTEXTdx-4.4.4/ChangeLog0000644000076500000240000011301510464660045010635 000000000000004.4.4 ================= Fix a bug in Compute when comparing two strings of different length using == (Bug #205) Added a new algorithm for generating the neighbors component for irregular cubic connections. Update Refine for tetras to remove any degenerate results. Only valid tetras are returned. Fix a bug with hardware rendering where turning on the transparency for all surfaces caused problems with opaque surfaces within some GL codes. Fix a bug in the quad interpolator where some results could be returned as NAN. Make it possible to change the way TMESH's are generated. See docs for environment variable: DX_HW_TMESH_ORIENT_SENSITIVE. Correct a bug introduced with the Column Plot with respect to using fixedfontsizes in Plot and Colorbar (Bug #212) Add the ability to have the executive pass more than 4095 characters to the UI or other DXLink apps. Useful with JavaExplorer when passing something like a webpage back in response to a pick. Add the ability to set the Integer, Scalar and Vector Interactor default caclulated output to the min, max as well as the default midpoint. Add the capability to be able to pass much larger strings through the packet handlers. This will accomodate sending full html pages through as responses to clicks in Java Explorer. Corrected a problem where some code would cause problems when the compiler optimized aliasing (Bug #196) Set the shared library flags to reflect the more updated compilers on Linux (Bug #208) Correct a Java Explorer server problem where a blank line in dxserver.hosts would cause the server to die. Fix a case for stricmp in Compute where the function would return success when a was a prefix of b. Added an option to Lookup to allow a different return value if the item was not found. Add a fix for hardware texture mapping where an error would sometimes occur stating that the 'uv' component didn't exist when it obviously did. This manifested itself quite easily--just turn on AutoAxes with a texture mapped field. 4.4.0 =============== Fix for colors in the Colormap Editor when the OS's depth is set to thousands of colors. (bug #134) Fix for macros with space in their filename in the VPE. (bug #148) Added fix for Xinerama environment and placement of Windows. (bug #135) Added a fix for the Sequencer VCRControl so that it pops up in the right place all the time. Corrected throttle problem for mult platforms. (bug #168) Improper array indexing in Histogram module fixed. (bug #183) Major update to JavaDX. Updated for Java 1.1 event model. Added a better tabbed panel. Updated a bunch of the layout code to use TableLayout (can be easier and more efficient.) Added functionality to allow data to be passed in through a DXLInput via an Applet Param. Fix for stopserver script. A fix for FileSelector to pass quoted text. Added functionality for multi-line Text objects using \n. Added support for compiling loadable modules on cygwin. Updated the module building makefiles to better reflect some assigned values during build. Fix Lookup to work again. Replace can now accept a string list not just value lists. Add an option to Inquire to test for a "string" data component. Add an option to allow Categorize to not sort the added lookup table. Fix Categorize's hash function for vector data so more unique hash keys are produced. Fix for ImportSpreadsheet inability to use one row SS. (bug #173) Fix for ImportSpreadsheet tendency to munge large integers. Fix when using more than 31 labels on an AutoAxes. (bug #166) Added a resize attribute to the ImageMagick format in order to use the Lanczos Filter for reduction before saving an image. Changed the default behavior of nested loops within dx. Now the more time consuming but less crash prone TriangulateNestedLoops is used instead of the faster simpler version. Can change with the environment variable DX_SIMPLE_LOOPS Fix for module builder crash (bug #162) Fix for crash in exec when excluding a text based field in select (bug #161) Added some support for a Multithreaded exec (still a long way from full mt). This makes way for wrapper classes for Microsoft .NET world. Outboard modules working again. Have eliminated the Red cache bug (Bug Id#90) Added a fix to eliminate the socket lock problem (Bug Id#147) Added "column chart" feature to Plot. Minor code cleanup matching delete[]'s and new[]'s 4.3.2 =============== Native Stereo Rendering for Windows added. Minor fixes to clean up errors from 4.3 --------------- Put in a new fix for hdfi.h file compile conflicts. Add a fix to default back to regular help if browser help fails. A little more fixup on the ExHostToFQDN for hosts with no reverse lookup. Fix a bug in DXLStartDX when the environment wasn't defined. Add some fixes to compile on the ia64 platform. Fix up the saving of dx-ad files so they are only created when need be. Fix a bug in WriteImage that could cause a core dump. Fix (bug #125) within the Module builder plus some memory leaks Added seq2c to correctly process net files into .h files for JavaDX (bug #124) Fix so that loadable modules work correctly within AIX 4.2 and higher. Typo in EditorWindow code Disable debug info on GraphLayout code Removed the "commercial" fonts from standard font popdown menus Fixed a problem where adding an 'invalids' component did not work correctly. NULL terminate "Help on Syntax" string. 4.3 =============== Added the RTLD_GLOBAL to loading modules so that functions between loadable modules are visible. Fix a crash bug when a parameter value is set to "". It probably happened only when the Display tool had a user-specified Where param as would be the case with SuperviseWindow AND the user did some operation like drag-n-drop, cut/copy/paste, 'Edit/Insert Program...'. Added better handling of resize calls to an Image window so that the update call isn't called continually with Window managers that expose the image during resize. Fix in the 2D quad interpolator where point is on edge. Remove the new-line character on some new annotations to remove the funny character at the end to be displayed. Fixed up the JavaDX macros to include comments and put some of them in the "" category so they do not show up in the UI. Add a work around to fix a bug when the PageUp, PageDown, or End keys were pressed and caused a crash. This is a bug in Motif < 2.3. Fix the Tabbed windows so they have rounded corners even with Hummingbird's Exceed without requiring Hummingbird to fix their software. Changed the tool selector to be a tree view type list and updated all functionality to go along with that. Implemented a preferences file that saves the state of the tree view expansion from launch to launch. Also saves a list of recent files that is now available in the File menu. Fix for the random function in Compute for Windows version. (Bug ID#66) Fix the module builder to work and use CR/LF on DOS based systems. (Bug ID#109) Fix the activation of application wide commands unless the Network object == the application's main network. (Bug ID#106) Fix problem where a large stream going to the message window on Windows would Quit the Exec (Bug ID#107) Converted dxworker to bourne shell from csh. Now allows spaces in filenames and exe names and better handles special characters passed in to the exec with scriptcmd option. Corrected problem where Gamma was not being applied to images saved via ImageMagick (Bug ID#67). Added capabilities to affect the compression method and quality in images saved with ImageMagick. Fix a memory leak in the XHandler within the EditorWindow. Fix a memory leak with respect to the rotation globes and cfg files. Fix a memory leak with open file descriptors on systems with HAVE_OPEN_DIR and HAVE_DIRENT_H. Free regular expression compiled with regcomp. Fixed the placement of the Throttle dialog of the Image window. Fixed a problem with the Frame Control of the Sequencer popping up directly over the Sequencer on the first pop-up. Fix "Visualize Data..." in the prompter to pass unix path separators instead of DOS on Windows machines. User Interface performance improvements. New option under the edit menu for automatic graph layout, which rearranges the nodes in the graph of the current vpe page. Pros n Cons: - It ignores the current layout. That can be pretty disorienting. - If the graph has connections going all over the place and doesn't use transmitters,receivers then the output might not be any better than the input. - It works stupendously on many graphs especially those that don't really need to be rearranged. - What looks good and what looks bad is pretty subjective. Undo now available in the editor window. How's it work: Every node or annotation move in the canvas is recorded and can be undone via Ctrl+U (Ctrl+Z). Cursor keys now affect module movement on the VPE. Helps people who lay out nets really carefully. Now it's easy to make small movements and you get to see the lines redrawn as the node moves. How's it work: Select a node(s) or annotation. Then use up, down, left, right arrows to move the selected objects 1 pixel at a time. There is some code for reading in Selector interactors out of .net files that was cleaned up and corrected. Fix a memory leak in configuration dialog boxes. Bug ID#45 Implement OPTIONS processing on behalf of macros. Now possible to add drop down options on Macros. Use semi-colons to separate items of the list. Fixed Bug ID#18 EditorWindow destructor was deleting cache-optimization menu items twice, now only once. Fixed Bug ID# 38, 61 Object deleted during the dropFinish callback. The new Motif interprets Widget deletion as a need to cancel drag-n-drop which triggers the dropFinish callback a 2nd time. Problem is object already deleted. Now, object deletion is queued so object is deleted from dropFinish callback. Fixed Bug ID#10 Set Min Width, Height on the container so it can't be resized to small. Added isnan functionality for Windows in stat functions. Added isnan and finite to the Compute module for those systems that support it. A fix for Streamline when checking for Invalid Data components. A correction to check to see if "invalid" components are added then recompute "dep" components. Added Visual Studio loadable modules example. Fix for invalid() to return error instead of crash in Compute. A correction for netCDF where an invalid file would crash OpenDX instead of returning an error. DXTrimItems() has been added as a function to remove items from the end of an array. Incorporating some native Windows code to begin making a Windows native executive. Began adding WIN32 support and building with Visual Studio 6.0. Due to some bugs in Visual Studio 7 (which are acknowledged by MS), we will not be able to build with VS7 until fixed. For libtool purposes and the new work on making a thread safe exec, the yacc code must be parsed with bison. Thus we are adding the generated *.c files in the cvs tree and in for distribution. Now building with libtool to allow dynamic libraries to be built. This required updates of some global variable initialization and renaming some files to be unique in the libraries. 4.2.0 =============== Java Explorer's macros have been updated to reflect the removal of the gif image format internally from OpenDX. They have also been renamed to use the standard DX naming convention uc/lc. This will require any user networks to be opened and saved with 4.2.0 before serving them up with JavaDX. Fix to update multiple DrawingArea windgets with the same size during expose event. On a multiple image display windows application, the key value computation on hash() function on libdx/notify.c is too simple. Two different input parameters will return same key value. The result is the system runs out of memory. For example: "CACHED_OBJECT_X24,:0,#X205520899" and "CACHED_OBJECT_X24,:0,#X184549379" generate same l value 73. Adding one more factor "s" the sum of character string will reduce the probability of same key value return. Added the ability to use a web browser and the html documentation as the DX help viewer. To enable, under UNIX set the environment variable DX_WEB_BROWSER to your web browser. Under Windows and MacOS X set this environment variable to anything and the system default browser will launch. Due to bugs in Exceed XDK and MacOS X (Bug ID#2879972, #1951588) their may be some annoyances using this feature. Added a new keymapping scheme -- a new set of accelerators. This new set of accelerators follows the Windows, MacOS, KDE styles. This is enabled during compilation as a configure flag. Update to allow the user to specify their own object colors (via the "colors" component) to light and modulate a hardware rendered textured object, instead of accepting the hard-coded solid white. "opacities" can now be defined and used as well. Activated linear interpolation and mipmaping texture filters. For OpenGL (hardware) rendering mode, adds the following field attributes that affect culling and lighting: attribute "cull face" string ["off"|"front"|"back"|"front and back"] attribute "light model" string ["one side"|"two side"] and the following field attributes that affect texturing (when the "texture" attribute and "uv" component are also correctly provided of course): attribute "texture wrap s" string ["clamp"|"repeat"] attribute "texture wrap t" string ["clamp"|"repeat"] attribute "texture min filter" string \ ["nearest"|"linear"|"nearest_mipmap_nearest"|"nearest_mipmap_linear"| "linear_mipmap_nearest"|"linear_mipmap_linear"] attribute "texture mag filter" string ["nearest"|"linear"] attribute "texture function" string ["decal"|"replace"|"modulate"|"blend"] Note that "light model = two side" is particularly useful when lighting polygonal models with no normals where the auto-computed normal may bear no resemblence to the "outside" of a rendered object (without it, only software rendering in DX is worthwhile). The rest are useful when 3D polygonal models that require specific culling and texturing state for correct display are integrated into DX visualizations. --Note that the default OpenGL state when these attributes are not specified is the same as it was before. --Also, now that texture maps are registered via gluBuild2DMipmaps in the OpenGL back-end, the restrictions on supplied texture maps being powers of two and larger than >= 64x64 is no longer the case in general, so the checks have been removed. Back-end specific checks can be added later if other back-ends are still used. Fix for expanding CDB boxes on LessTif systems. Much needed updates to some of the html documentation. It now includes a client side search engine provided using JavaScript. Support OpenGL 1.3's GL_CLAMP_TO_EDGE texture wrap mode in the OpenGL back end; support via extension for OpenGL 1.2. To activate, set the "texture wrap s" and/or "texture wrap t" attributes on the field to be textured to "clamp to border" (instead of "clamp", "repeat", or "clamp to edge"). Updates to allow compiling with SGI n64 ABI Corrected a problem with lex/parsing of programs from the UI after and error occurs when trying to open a network. A consecutive open now works correctly and does not give false error messages. Added TypeAhead functionality to the tools list of the VPE. With Motif 2, this functionality was minimally there, but my additions extend it. To use it, place the mouse over the Tool List and begin typing the name of the module you wish to use. Other keys other than alpha that affect this are: Up, Down arrows do the expected. Space bar deselects the tools. Add translucent texturing with alpha blending support to the OpenGL hardware rendering back-end. Intuitively, translucent textures are represented as image fields with opacities components -- either float opacities, or ubyte opacities and a float opacity map. (FWIW the ImageMagick ReadImage mods I made back in Sept '01 read translucent images to this field format) As with opacities objects, translucent textured objects aren't meshed, are tossed into the translucent SORTLIST, sorted by depth, and rendered with the DrawTransparent back-end callback. Various related changes such as: - Suppress Z buffer write for fully-tranparent alpha values - Display list texture activation ops in DrawTransparent, as is done in DrawOpaque Also, it fixes texturing support in general for texture composite field objects which have ubyte[3] or float[3] direct colors (didn't work previously). A fix for the Ellipses page selector. Now when you click on the Ellipses if it's popped up, it will pop back down (like other Motif menus). It also now initially opens up with a height of 12 lines instead of 1 line (which was very annoying). Removed Xm errors when Grid Dialog box displayed. Added a Mode menu to the Option menu in the Image Window. This allows direct access to the image manipulation routines without having to remember the shortcut keys or open the View Control dialog. It also adds some increased functionality internally to the code by removing the dependency on X based accelerators in the Picture widget. Mapped the following accelerators from the VPE to configuration dialogs - save program accelerator - all the execute menu accelerators - add and remove input tabs Added the functionality to allow the accelerators to be mapped onto subpanels that can be popped up from the Image Window. The accelerators now work in: - View Control (always has, but is now handled the same as the others) - Auto Axes (can now click apply and then use accelerators--handy) - Rendering Options (very nice to click hardware then execute once) - Throttle (to be consistent) All the accelerators such as Save, Print, Close all work in the sub- panels giving a more consistent feel to the ImageWindow. Fix Selection color on Selector List Interactor so the selected value is visible. Fix Background on Selector Option Menu so the menu is green in the developer mode. Fix the Control-Click on Close of a user style Control Panel to work as described. Fix the attribute copying logic for Band since Isosurface creates a separate field for each isosurface, Band creates only one. Added DX_SOCKET_BUFSIZE environment variable allowing the user to specify the size of the send and recieve buffers for the socket connection between the UI and the exec. This provides a fix until time permits to write the significant logic change to make the UI interlace reading data from the exec and writing data to the exec. This value is clamped to the max allowed by the system. This can fix a problem where the executive and UI hang involving a deadlock situation in the socket communication. The value assigned to it is passed as the parameter to setsockopt for SOL_SNDBUF and SOL_RCVBUF. I think the default is 32767. A typcial value may be 262144. Fixes to to prevent hanging processes if the UI disconnects from the server while the server is running. A fix where some Packet logic could core dump. Added MacOS X memory routines for the Executive. Added MacOS X arch dependent info needed. Added configuration flags to make it possible to build loadable modules with Windows. Fix bug where field with ubyte colors (refing a float[3] colormap), which is constructed by ReadImage and storable with Export, won't load with Import. Patch allows general UBYTE components to ref other components in Import. Changes to the way invalid components are handled so that two thresholds are used: one for storage in an Array (20% of total values, as before) and another for building the InvalidComponentHandle for transient processing (currently 1024); small size for storage and faster access performance. SORTED lists are always converted to HASHes or DEP_ARRAYs now for processing (as they were when originally created), not left as SORTED_LISTs. Fixed bug in computing conncetion-dependent normals for 2-D positions. Of course, the real question is whay are we computing them at all? They'll be {0.0 0.0 1.0}. Permit invocation of script functionality from the command-line via: dx -script script_macros.scr -scriptcmd "MyMacro(value1,value2)" or dx -scriptcmd 'data = Import("junk"); Print(data);' without requiring the user to use shell scripting tricks or build temp script files. Add ImageMagick support to ReadImage. - Works with ImageMagick 5 (tested with 5.3.7) - Reads images from PNGs, GIFs, MPEGs, Postscript files, etc. -- whatever support your ImageMagick library was built with - Creates opacities/opacity map components for images which have opacities or a transparency map (e.g. GIFs, PNGs, ...); use Render - Supports both delayed and direct color images, with delayed->direct option and float/byte option - Smart chomping of supported ImageMagick extensions - Supports DX convention for reading multi-frame multi-file sequences; e.g. name="t.gif", where images are t.0.gif, t.1.gif, t.2.gif, etc. - For multi-frame single-file images (e.g. animated GIFs, stacked TIFF/PNGs, etc.), only loading the first image is supported (ImageMagick is missing basic sub-image support; see the source comments for details). Ugly but overdue changes so that ImageMagick can write files directly without dx writing an intermediate miff file. Added support for polylines to the opacity renderer. Fix error where Sample would core dump on Sampling lines. Within Isosurface, was trying to interpolate all components that are dep on positions. In some cases, invalid positions components are positions-dependent; made it skip them. Fix to make dxexec release processor when in wait loop. This fixes the 99% CPU usage on NT. Fix to allow clicking off Connect to Already running server in the Options dialog box. 4.1.3 =============== Fixes to several problems that quickly arose with 4.1.2 --------------------------------------------------- - Dependencies of source files on built sources caused build to stop. It would continue correctly after restarting, but by making the objects dependent instead we made it work in one pass. - References in _regstream.c. Missing references/deletes in _regstream.c and steamline.c caused objects to be really deleted before their time. Problem appeared in ThunderStreamlines example. Did this ever work? - Not enough memory allocated for buffer in parse.c. - Needed to pass in class_srcdir value to invokation of class script in libdx/local.mk - Include net2c in distribution - Correctly free search_for in Browser.C. Proper behavior dependent on compile-time definitions. - Not enoucgh memory allocated for type-in string in GARApplication.C. Caused segfaults in prompter. 4.1.2 =============== Distributed-memory extension to OpenDX --------------------------------------------------- dxmpi checked in as a new part within OpenDX. No significant documentation has been written. dxmpi works by starting an instance of the DX executive on each MPI host, with one (rank 0) designated the master. The master communicates with the UI or directly in script language (though rather than by typing directly in, a separate program is used to connect the keyboard to dxexec). Absent any use of OpenDX-MPI extensions, the master performs as a completely normal OpenDX exec. The MPI extensions to OpenDX fit two forms: modules that appear to run on the master but which use MPI internally to run in parallel, and macros that are run in parallel on the slaves at the behest of a "RunOnSlaves" module that runs on the master. I've put in an API allowing modules to register and call remote procedures and to pass DX objects around to support the first type. For the second, there's a set of new modules that provide tools for data distribution from the master to the slaves, leaving the distributed data as named objects in the slaves' cache, where they can be retrieved by name by macros run on the slaves by RunOnSlaves. As an example of the first type, a parallel regular-grid importer (DRegularImporter) that works like this. As inputs, it receives the name of an ad-hoc data description file that describes the layout of data found in a separate file. It registers a remote procedure with the slaves, and then invokes that procedure on the slaves, passing them the data description and a destination object name. Each slave, knowing how many slaves there are and its own rank among them, is able to determine what portion of the data its responsible for (essentially, partitioning the data as a part of importing it, and including a "ghost zone" of overlap with neighboring partitions). Each imports its part, saves it in the cache under the destination object name (the same on all slaves), and returns the bounding box and min max of its partition to the master. The master (still in the guts of the DReguarImport module) gathers this info together into an output Group object where member i is the box and minmax of partition i residing on slave i. Now suppose you want to isosurface and render that data. You create a macro on the slaves that accesses the data by the name under which DRegularImporter left it and an isovalue (again by name, from the cache). The macro then sends the data through Isosurface and Color and whatever, then passes that result to the SlaveDone module, which indicates to the master that the execution of the macro is complete and returns the object. On the master, a scalar interactor feeds the input of Broadcast(value, name) that broadcasts the interactor's value to the slaves under the associated name. The dummy output of Broadcast and the output of DRegularImporter are passed to "control" inputs to RunOnSlaves(macro name, control ...) that just serve to ensure correct module sequencing. RunOnSlaves causes the slaves to run the named macro, waits for their results, and gathers it all together in a group where member i contains the result of slave i. This could then be passed directly into Image for rendering. There are a couple other cool pieces to this, most notably a distributed parallel renderer and a new streamline module that runs on distributed vector fields. There are a lot of holes to fix; for example, errors in slave macros very often cause system hangs. There is no integration of the notion of slave macros into the UI. Lots of things. Added command-line arg to configure for compatibility with ddx. Either way the resulting code works exactly as before, but if --enable-ddx is set the libraries will work with ddx. Implement compatibility with ddx, which requires code in the main loop to check for input from MPI. ddx.c is a stub file, so whether or not --enable-ddx, the dxexec built in the source tree works as before. --------------------------------------------------- Added mechanisms to directly connect OpenDX to other processes. Includes a new module, SocketConnection, that supports sending objects from an external process to OpenDX across a socket (and back, as a future enhancement). The idea is that the process makes a call to see if an OpenDX instance has opened a port. If it has, it can send data to OpenDX by creating an object using the data model calls in the DXlite library, buffer it, and write it to the socket. On the OpenDX side, SocketConnection creates a port and an associated fd, then adds an input handler to watch for input on the fd. When input arrives, its read off the socket and converted to a DX object via _dxfImportBin_Buffer, and DXReadyToRun is called to indicate that new data is available. When the module runs, the received object is the module result. This allows the external process to send arbitrary objects to OpenDX across a socket. Added a new subclass of Array to further assist with direct connection. A SharedArray is very similar to a generic Array, but allows the array contents to be shared with the external process directly. When a SharedArray is created, DXNewSharedArray is given a shared memory segment ID and the address of the data, which must lie in that segment. Unlike generic Arrays, which copy data using the DXAddArrayData call, SharedArrays use it directly. DX keeps track of how many SharedArrays reference each segment, and maintains an attachment to that segment as long as there are references to it. When the external process creates an object containing a SharedArray, the buffering process transmits the segment id and offset within the segment to OpenDX. When its unbuffered, a new OpenDX-side SharedArray is created, the segment is attached (if necessary - it may have been seen before), and the SharedArray stores the address of the data in OpenDX' memory space. Thus the external-side SharedArray (which itself shares data with the external process) and the OpenDX side SharedArray actually share memory. Support for SMP linux boxes: Since this is not well tested it is an optional make- --with-smp-linux on the configure command line. The memory available to OpenDX in SMP mode is limited to the max size of a shared-memory segment. This may be set low and must be changed in /proc/sys/kernel/shmmax. Created inter-process locking from IPC semaphores, and its not confidence-inspiring. Fixed a bug in the handling of the deletion of task groups in task.c. RSH enhancements: - configure now picks up system rsh and bsh or is setable by the user. - The default command "rsh" has been left in place, but a user-specified remote shell command can be specified via the $DXRSH environment variable. Example: setenv DXRSH /usr/bin/ssh - FQDNs (full host paths) are used under the hood when available when creating the remote "invoke dxexec" script and connecting back to the master exec, - Users can now enter host names of the form "user@machine" in the Execute Group Assignment... dialog, and - setting the $DXRSH_NOENV in the local environment prevents the remote "invoke dxexec" script from being written with a full carbon copy of the local environment (only $DISPLAY is set). - dumped pcreateve on SGI in favor of vfork/fork and exec for kicking off rsh. Correctly avoiding a memory leak with hardware rendering due to a mysterious reference. Add the capability to change the logo and splash screen by adding a hook into the Xpm libraries. Now users can customize if they so desire. New Regrid option of Radius 0 that basically performs a snap to grid functionality. This option will make regrid apply data to the nearest grid position and average it if there are multiple (not weighted). Initial support for MacOS X. It appears that there are quite a few bugs in 10.0.2 still so it may have to wait a little longer. Also, somebody needs to work on the memory routines for OS X. Further corrections for the Windows code versions. Updated several places where the DOS path may get munged. Updated JavaDX to be able to pass in DOS pathnames to start the server. An addition made to edfparse to allow the creation of a local reference to an external file within the native file format. This local reference can then be used repeatedly within the other objects without having to reread the external file. (Example: object "localobj" file "externalfile.dx",1 object "f1" field component "positions" "localobj" object "f2" field component "positions" "localobj" ) A correction to the edfparse to accept data description in the native file format with object names as references instead of numbers. A correction to isosurface to pass attributes through not remove them. Fix to make CDBs open at correct opening width when scrollbar is needed. Modifications to avoid glx functions not implemented by wiregl. Some memory leak patches to general import, task, and redce. Now installing the built dx.mdf file so that the BSpline module is now visible in the VPE. Add functionality to SuperviseWindow to use a camera to set the window size. If DXMDF env variable is set to NULL then an error occured. Check it first before trying to open it. Fixed SMP OpenDX to use parent process and fork in a better order. Didn't change the default behavior. A fix in the List module that could go past array bounds. A fix for DXcallm that allows Rubbersheet to be used again. A small memory leak fixed from not closing a message file. Fix in the Tube module that could cause a possible core dump. Provided a fix in dxworker so the exec could launch on Solaris 2.8. Cleaned up the warnings in src/exec/libdx, src/exec/dpexec, and src/exec/dxmods -- this included adding header files and removing many of the extern prototypes making APIs more usable. Added the functionality to build C++ modules from the module builder. Fixed a possible memory leak in the Post module. Added Randall Hopper's lock fixes to decrease execution time on single processor machines by 20%. Added Randall Hopper's module path fix that can decrease execution time on cached networks significantly. Dropped support for ImageMagick 5.1.1 and added support for ImageMagick > 5.2. ImageMagick < 5.0 support still exists. Added support for compiling with Microsoft compilers. Updated much of the Windows environment setups. Added more support for the AIX xl series of compilers. Correction for 2D Map when point is on edge it is detected. More cleanup to JavaDX. DX_JAVA_CLASSPATH is now the variable that stores all classpath info. Removed the multiple ones of Netscape and WRL. Added support in configure to work with ImageMagick's Magick-config, thus reducing the amount of checks that are required when configuring. 4.1.0 =============== With this revision, a lot of the Gnu AutoConf stuff was cleaned up to help improve building the package from the source code. Many updates to the AutoConf build routines for JavaDX. JavaDX should now build readily on all systems. Added new configuration options to disable building some libraries and JavaDX. Added options to direct where java files reside if they can't be found: --disable-buildlibdx --disable-installhtml --without-javadx (remove compilation alltogether) --with-jni-path=/PathToDirectoryContaining-jni.h:/PathToDirectoryContaining-jni_md.h --with-cosmojar-path=/PathToCosmoJarFile/cosmoFileName.jar --with-java40jar-path=/PathToJava40JarFile/java40.jar The internal copyright mechanisms all get updated from the configure scripts this makes tracking versions from the user interface easier. Some general source code clean-up was done, there will be much more to come in the next set of revisions. OpenDX-generated makefiles are now largely platform independent as created. To the extent that they have platform dependencies, these are (or should be) determined by dx configure and written into arch.mak. This allows the module builder to generate makefiles compatible with OpenDX, such that runtime loadables work on a number of platforms and dxui now writes compatible makefiles for building and installing JX applets. Problems with Interactors not working properly on some systems is fixed. Linux binaries can now use loadable modules. dx script is now stored in two locations during installation in case the installation is moved and /usr/bin/dx is forgotten to be collected. name change of dx.workerscript to dxworker defaulting of the environment variable of DXMACROS, DXDATA, and DXROOT if they are not set. added -whereami option to dx to detect location of dx install LD_LIBRARY_PATH is not overwritten on Solaris but just added to now. mdf2c is now constructed with appropriate open source paths. Help files links and install should now be correct after installation. Added support for 15 bit and 32 bit color displays. Added outboard.c to source tree to be included with outboard modules. Added support for including libraries from ImageMagick build into libDX.a. If the libraries are shared, then they are not added and must be linked at a later time. Forced Linux versions to run as single processor only not SMP until shared memory is correctly addressed. Fixed a memory leak where if DXMACROS was set, it would tromp on memory. This is now fixed and relieves many core dumps in the exec. Removal of some hard coded geometries on dialog boxes to make dialogs work better with Lesstif. So far no reports of any problems with Motif. Added support for using ImageMagick. If ImageMagick is available during compilation, then many more image export formats will be available by choosing the ImageMagick formats. Correction to AutoRegrid module. "infinity" used as the radius caused a core dump. This did not show up with all compilers. Fix in Colorbar to make positions "dep positions". Fixes compliance with some other tools. Fix in the Enumerate module for properly creating counts. A few minor fixes with the import routines for HDF and netCDF. Corrected typos in module SimplifySurface. Correction in Stack module for series data. libDX is now being built correctly so modules can be linked to it with proper functionality. Added functionality for dx to use its default memory rules on linux. Fix for possible negative memory request. Correction to quads for possible loop when point coincides with vertex. Correction when a point is on the line containing an edge. Need to check sign. Fixes to allow FreeBSD to compile correctly. A correction the Grid Dialog box. Some testing may still be in order. A error with postscript printing the networks was corrected. Correction in the Browser for a pointer to an array. Clean up a lot of the Motif function calls prototype mismatches. 4.0.6 ============= First initial stable release. 4.0.3 ============= Added code to makefiles and c files to create libDX, libDXlite, libcallm Fixed missing splat in WorkspaceW.c Removed apparently unnecessary code referring to _XmDestroyParentCallback Changed configure to look for old versions of Lesstif and set OLD_LESSTIF, rather than any version of Lesstif and set USING_LESSTIF HP_UX -> HP-UX More general test for cygwin install change - mkdir dx/bin rather than use INSTALL configure test for sys/select and use in PacketIF.C dx-4.4.4/compile0000755000076500000240000000717310300463075010441 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2005-05-14.22 # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand `-c -o'. Remove `-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file `INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; esac ofile= cfile= eat= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as `compile cc -o foo foo.c'. # So we strip `-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # `.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` # Create the lock directory. # Note: use `[/.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: dx-4.4.4/config.guess0000755000076500000240000012522410360567112011404 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerppc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; x86:Interix*:[345]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^LIBC/{s: ::g;p;}'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp 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` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: dx-4.4.4/config.sub0000755000076500000240000007662710360567112011063 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. timestamp='2005-12-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m32c) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; m32c-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16c) basic_machine=cr16c-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: dx-4.4.4/configure0000755000076500000240000455054710472426244011015 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for dx 4.4.4. # # Copyright (C) 2003 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 DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/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 -z "`(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 test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval 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="eval 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 # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 # 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. # ac_default_prefix=/usr/local ac_config_libobj_dir=. cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # 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='dx' PACKAGE_TARNAME='dx' PACKAGE_VERSION='4.4.4' PACKAGE_STRING='dx 4.4.4' PACKAGE_BUGREPORT='' ac_unique_file="include/dx/arch.h" # Factoring default headers for most tests. ac_includes_default="\ #include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #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 INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL MAJOR_VERSION MINOR_VERSION MICRO_VERSION YACC ARCH DOT_EXE_EXT INSTALL_BIN_PROGRAM INSTALL_BIN_SCRIPT FMT_LIBS JAVABRANCH JAVAC JAR JAVAH JINC DX_JAVA_CLASSPATH JNI_CFLAGS BUILDBASE DXEXEC_EXP DXEXEC_IMP DXUI_ALDFLAGS VERSION_STRING ANYDX DXABI DX_RTL_CFLAGS DX_RTL_ALDFLAGS DX_RTL_SYSLIBS DX_RTL_IMPORTS DX_RTL_DXENTRY DX_OUTBOARD_LIBS DX_X_LINK_LIBS DX_GL_LINK_LIBS SHARED_LINK MKDEP LOCALMAKE rsh_path bsh_path LIB_LF JAVA WITH_BUILDLIBDX_TRUE WITH_BUILDLIBDX_FALSE WITH_INSTALLHTML_TRUE WITH_INSTALLHTML_FALSE HAVE_MC LEX LEXLIB LEX_OUTPUT_ROOT yakker 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 exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= 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' datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' infodir='${prefix}/info' mandir='${prefix}/man' 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" ac_prev= continue fi ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$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 ;; --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 ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*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" ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # 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"`;; *) ac_optarg=yes ;; esac eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) 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 ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$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 ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) 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 ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst \ | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) 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_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 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-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-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) 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 ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # 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'` case $ac_option in *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; *) ac_optarg=yes ;; esac eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*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" ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) 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-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 ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); 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} ;; 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; }; } 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 # Be sure to have absolute paths. for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ localstatedir libdir includedir oldincludedir infodir mandir 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; }; };; 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 # 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 ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- 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'` srcdir=$ac_confdir if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no 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; }; } else { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); 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 ac_env_CXX_set=${CXX+set} ac_env_CXX_value=$CXX ac_cv_env_CXX_set=${CXX+set} ac_cv_env_CXX_value=$CXX ac_env_CXXFLAGS_set=${CXXFLAGS+set} ac_env_CXXFLAGS_value=$CXXFLAGS ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} ac_cv_env_CXXFLAGS_value=$CXXFLAGS ac_env_CXXCPP_set=${CXXCPP+set} ac_env_CXXCPP_value=$CXXCPP ac_cv_env_CXXCPP_set=${CXXCPP+set} ac_cv_env_CXXCPP_value=$CXXCPP ac_env_F77_set=${F77+set} ac_env_F77_value=$F77 ac_cv_env_F77_set=${F77+set} ac_cv_env_F77_value=$F77 ac_env_FFLAGS_set=${FFLAGS+set} ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS # # 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 dx 4.4.4 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 Program names: --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 X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of dx 4.4.4:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-shared[=PKGS] build shared libraries [default=no] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-libtool-lock avoid locking (might break parallel builds) --enable-smp-linux build exec, libs with SMP-parallel capability for Linux platforms (default is disabled) --enable-ddx build exec, libs for ddx compatibility (default is disabled) --enable-new-keylayout build user interface with different accelerators (default is disabled) --enable-buildlibdx enable building libDX.a (default is yes) --enable-installhtml enable install of html docs (default is yes) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] --without-largefiles disable support for large (64 bit) file offsets --with-hdf enable HDF (default is yes) --with-tiff enable TIFF (default is yes) --with-magick enable ImageMagick (default is yes) --with-statmagick enable Link to Static ImageMagick (default is no) --with-cdf enable CDF (default is yes) --with-netcdf enable NetCDF (default is yes) --with-large-arenas enable 64-bit arenas, when available (default is no) --with-javadx enable JAVADX (default is yes) --with-jni-path java jni include search path (default none) --with-java40jar-path set path to Netscape's java40.jar (default none) --with-cosmojar-path set path to Cosmo's npcosmop211.jar (default none) --with-rsh=PATH Specify path to remote shell program --with-bsh=PATH Specify path to system bourne shell program --with-x use the X Window System --with-motif-includes set path for motif includes (default none) --with-motif-libs set path for motif libraries (default none) Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags 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 # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac 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 dx configure 4.4.4 generated by GNU Autoconf 2.59 Copyright (C) 2003 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 dx $as_me 4.4.4, which was generated by GNU Autoconf 2.59. 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 && 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 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" else CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi 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 . "$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 else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$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 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_config_headers="$ac_config_headers include/dxconfig.h" am__api_version="1.9" ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f $ac_dir/install.sh; then 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; }; } 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. # 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: # SysV /etc/install, /usr/sbin/install # 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" # OS/2's system install, which has a completely different semantic # ./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 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /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 done done ;; esac done fi if test "${ac_cv_path_install+set}" = set; then 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 fi fi echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&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_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 # Just in case sleep 1 echo timestamp > conftest.file # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 test "$program_prefix" != NONE && program_transform_name="s,^,$program_prefix,;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s,\$,$program_suffix,;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then # We used to keeping the `.' as first argument, in order to # allow $(mkdir_p) to be used without argument. As in # $(mkdir_p) $(somedir) # where $(somedir) is conditionally defined. However this is wrong # for two reasons: # 1. if the package is installed by a user who cannot write `.' # make install will fail, # 2. the above comment should most certainly read # $(mkdir_p) $(DESTDIR)$(somedir) # so it does not work when $(somedir) is undefined and # $(DESTDIR) is not. # To support the latter case, we have to write # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), # so the `.' trick is pointless. mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. for d in ./-p ./--version; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs)' else mkdir_p='$(install_sh) -d' fi fi for ac_prog in gawk mawk nawk awk 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_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # 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_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$AWK" && break done echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` if test -n "$ac_maketemp"; then eval ac_cv_prog_make_${ac_make}_set=yes else eval ac_cv_prog_make_${ac_make}_set=no fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='dx' VERSION='4.4.4' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # 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_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # 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_STRIP="strip" 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_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then enableval="$enable_shared" p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=no fi; # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then enableval="$enable_static" p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi; # Check whether --enable-fast-install or --disable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval="$enable_fast_install" p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi; # 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; }; } 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 "$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; }; } 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/'` DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6 rm -f confinc confmf # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval="$enable_dependency_tracking" fi; if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= 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 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. 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 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 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 "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 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else 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 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 # 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+' '}$@" fi fi 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 "$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 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 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 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 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 test -n "$ac_ct_CC" && break done CC=$ac_ct_CC fi fi 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* 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 file name" >&5 echo $ECHO_N "checking for C compiler default output file name... $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 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 fi fi echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 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; }; } fi 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 else cat >conftest.$ac_ext <<_ACEOF /* 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 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; }; } 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err 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 else cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_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.err 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 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* 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; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 \ '' \ '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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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.err 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 depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6 if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done fi SED=$lt_cv_path_SED echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 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 fi echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 EGREP=$ac_cv_prog_egrep # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix4* | aix5*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump'. lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | kfreebsd*-gnu | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix3*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext 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 case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 3701 "configure"' > conftest.$ac_ext 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 if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext 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 case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext 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 fi echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext 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 case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) LD="${LD-ld} -64" ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" 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 # 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 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 to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_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 to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_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 : 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; }; } 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 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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* 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 : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #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 fi rm -f 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 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 else cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CXX" && break done test -n "$ac_ct_CXX" || ac_ct_CXX="g++" CXX=$ac_ct_CXX fi # 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 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_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cxx_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi for ac_declaration in \ '' \ '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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu depcc="$CXX" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_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 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_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_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_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 : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran 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_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # 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_F77="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran 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_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # 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_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_F77" && break done F77=$ac_ct_F77 fi # Provide some information about the compiler. echo "$as_me:5300:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` 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 # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux*) if test "$host_cpu" = ia64; then symcode='[ABCDGIRSTW]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" 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); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6 else echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6 fi echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" 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. 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 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 fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&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 test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false" 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 else AR="$ac_cv_prog_AR" fi 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 fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&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 if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # 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_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # 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_STRIP="strip" 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_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else MAGIC_CMD=: fi fi fi ;; esac enable_dlopen=no enable_win32_dll=no # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic or --without-pic was given. if test "${with_pic+set}" = set; then withval="$with_pic" pic_mode="$withval" else pic_mode=default fi; test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" 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 # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6363: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:6367: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic='-qnocommon' lt_prog_compiler_wl='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6631: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:6635: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works=yes fi else lt_prog_compiler_static_works=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:6735: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:6739: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix3*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds='$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 lds archive_expsym_cmds='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}' module_expsym_cmds='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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds='$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 lds archive_expsym_cmds='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}' module_expsym_cmds='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}' ;; *) ld_shlibs=no ;; esac fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* 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 shl_load (); /* 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_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 shl_load (); int main () { shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* 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 dlopen (); /* 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_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 dlopen (); int main () { dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 dld_link (); int main () { dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which library types will actually be built echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" # Check whether --with-tags or --without-tags was given. if test "${with_tags+set}" = set; then withval="$with_tags" tagnames="$withval" fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_CXX=yes else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes if test "$GXX" = yes ; then lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_CXX='$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' fi module_cmds_CXX='$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 lds if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_CXX='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}' else archive_expsym_cmds_CXX='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}' fi module_expsym_cmds_CXX='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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_CXX='$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 lds archive_expsym_cmds_CXX='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}' module_expsym_cmds_CXX='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}' ;; *) ld_shlibs_CXX=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_CXX='+b $libdir' ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix3*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC*) # Portland Group C++ compiler archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. We must also pass each convience library through # to the system linker between allextract/defaultextract. # The C++ compiler will combine linker options so we # cannot just pass the convience library names through # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext # PORTME: override above test on systems where it is broken case $host_os in interix3*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; solaris*) case $cc_basename in CC*) # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. postdeps_CXX='-lCstd -lCrun' ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_CXX='-qnocommon' lt_prog_compiler_wl_CXX='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC*) # Portland Group C++ compiler. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11520: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:11524: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6 if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_CXX=yes fi else lt_prog_compiler_static_works_CXX=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_CXX" >&6 if test x"$lt_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11624: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:11628: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([^ ]*\) [^ ]*/\1 DATA/;/^I /d;/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var_CXX" || \ test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6 if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_CXX # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_CXX # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_CXX" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code=" subroutine t\n return\n end\n" # Code to be used in simple link tests lt_simple_link_test_code=" program t\n end\n" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_F77='-qnocommon' lt_prog_compiler_wl_F77='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13194: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:13198: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6 if test x"$lt_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_F77=yes fi else lt_prog_compiler_static_works_F77=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_F77" >&6 if test x"$lt_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13298: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:13302: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; interix3*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_F77='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_F77=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_F77=yes else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_F77='$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 lds archive_expsym_cmds_F77='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}' module_expsym_cmds_F77='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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_F77='$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 lds archive_expsym_cmds_F77='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}' module_expsym_cmds_F77='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}' ;; *) ld_shlibs_F77=no ;; esac fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_F77='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6 test "$ld_shlibs_F77" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var_F77" || \ test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6 if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_F77 # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_F77 # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_F77 # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_F77" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no old_archive_cmds_GCJ=$old_archive_cmds lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15501: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:15505: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; interix3*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_GCJ='-qnocommon' lt_prog_compiler_wl_GCJ='-Wl,' ;; esac ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux*) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-fpic' lt_prog_compiler_static_GCJ='-Bstatic' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; solaris*) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_GCJ='-Qoption ld ';; *) lt_prog_compiler_wl_GCJ='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; unicos*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_can_build_shared_GCJ=no ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15769: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:15773: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6 if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works_GCJ=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_static_works_GCJ=yes fi else lt_prog_compiler_static_works_GCJ=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works_GCJ" >&6 if test x"$lt_prog_compiler_static_works_GCJ" = xyes; then : else lt_prog_compiler_static_GCJ= fi echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:15873: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:15877: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_GCJ=no fi ;; interix3*) hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac archive_cmds_GCJ='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi else ld_shlibs_GCJ=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_GCJ=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = no; then runpath_var= hardcode_libdir_flag_spec_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_GCJ=yes else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* 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 conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ='$convenience' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' module_cmds_GCJ='$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 lds archive_expsym_cmds_GCJ='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}' module_expsym_cmds_GCJ='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}' else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' module_cmds_GCJ='$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 lds archive_expsym_cmds_GCJ='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}' module_expsym_cmds_GCJ='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}' ;; *) ld_shlibs_GCJ=no ;; esac fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; *) hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd*) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine linker options so we # cannot just pass the convience library names through # without $wl, iff we do not link with $LD. # Luckily, gcc supports the same syntax we need for Sun Studio. # Supported since Solaris 2.6 (maybe 2.5.1?) case $wlarc in '') whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; *) whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) no_undefined_flag_GCJ='${wl}-z,text' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_GCJ='${wl}-z,text' allow_undefined_flag_GCJ='${wl}-z,nodefs' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6 test "$ld_shlibs_GCJ" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ pic_flag=$lt_prog_compiler_pic_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; freebsd*) # from 4.6 on shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix3*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var_GCJ" || \ test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6 if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_GCJ # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_GCJ" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext printf "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_RC # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_RC # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_RC # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_RC" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion VERSION_STRING="04.4.4000" MAJOR_VERSION=4 MINOR_VERSION=4 MICRO_VERSION=4 cat >>confdefs.h <<\_ACEOF #define DXD_VERSION_STRING "04.4.4000" _ACEOF cat >>confdefs.h <<\_ACEOF #define DXD_COPYRIGHT_STRING "Open Visualization Data Explorer\nMore Info at www.research.ibm.com/dx\nand www.opendx.org\nVersion - 4.4.4" _ACEOF cat >>confdefs.h <<_ACEOF #define DXD_VERSION $MAJOR_VERSION _ACEOF cat >>confdefs.h <<_ACEOF #define DXD_RELEASE $MINOR_VERSION _ACEOF cat >>confdefs.h <<_ACEOF #define DXD_MODIFICATION $MICRO_VERSION _ACEOF SHELL=sh BUILDBASE="`pwd`" # Check whether --enable-smp_linux or --disable-smp_linux was given. if test "${enable_smp_linux+set}" = set; then enableval="$enable_smp_linux" with_smp_linux=$enableval else with_smp_linux='no' fi; # Check whether --enable-ddx or --disable-ddx was given. if test "${enable_ddx+set}" = set; then enableval="$enable_ddx" with_ddx=$enableval else with_ddx='no' fi; # Check whether --enable-new-keylayout or --disable-new-keylayout was given. if test "${enable_new_keylayout+set}" = set; then enableval="$enable_new_keylayout" with_new_keylayout=$enableval else with_new_keylayout='no' fi; # Check whether --enable-buildlibdx or --disable-buildlibdx was given. if test "${enable_buildlibdx+set}" = set; then enableval="$enable_buildlibdx" with_buildlibdx=$enableval else with_buildlibdx='yes' fi; # Check whether --enable-installhtml or --disable-installhtml was given. if test "${enable_installhtml+set}" = set; then enableval="$enable_installhtml" with_installhtml=$enableval else with_installhtml='yes' fi; # Disable support for largefiles # Check whether --with-largefiles or --without-largefiles was given. if test "${with_largefiles+set}" = set; then withval="$with_largefiles" with_largefiles=$withval else with_largefiles='yes' fi; # Enable HDF. # Check whether --with-hdf or --without-hdf was given. if test "${with_hdf+set}" = set; then withval="$with_hdf" with_hdf=$withval else with_hdf='yes' fi; # Enable TIFF. # Check whether --with-tiff or --without-tiff was given. if test "${with_tiff+set}" = set; then withval="$with_tiff" with_tiff=$withval else with_tiff='yes' fi; # Check whether --with-magick or --without-magick was given. if test "${with_magick+set}" = set; then withval="$with_magick" with_magick=$withval else with_magick='yes' fi; # Check whether --with-statmagick or --without-statmagick was given. if test "${with_statmagick+set}" = set; then withval="$with_statmagick" with_smagick=$withval else with_smagick='no' fi; # Enable CDF. # Check whether --with-cdf or --without-cdf was given. if test "${with_cdf+set}" = set; then withval="$with_cdf" with_cdf=$withval else with_cdf='yes' fi; # Enable NetCDF. # Check whether --with-netcdf or --without-netcdf was given. if test "${with_netcdf+set}" = set; then withval="$with_netcdf" with_netcdf=$withval else with_netcdf='yes' fi; # Enable 64-bit arenas, if supported # Check whether --with-large-arenas or --without-large-arenas was given. if test "${with_large_arenas+set}" = set; then withval="$with_large_arenas" with_large_arenas=$withval else with_large_arenas='no' fi; # Check whether --with-javadx or --without-javadx was given. if test "${with_javadx+set}" = set; then withval="$with_javadx" with_javadx=$withval else with_javadx='yes' fi; # Check whether --with-jni-path or --without-jni-path was given. if test "${with_jni_path+set}" = set; then withval="$with_jni_path" with_jni_path=$withval else with_jni_path='' fi; if test "$with_jni_path" = "yes" then with_jni_path='' fi # Check whether --with-java40jar-path or --without-java40jar-path was given. if test "${with_java40jar_path+set}" = set; then withval="$with_java40jar_path" with_java40jar_path=$withval else with_java40jar_path='' fi; if test "$with_java40jar_path" != "yes" && test -z "$with_java40jar_path" then with_java40jar_path='' fi # Check whether --with-cosmojar-path or --without-cosmojar-path was given. if test "${with_cosmojar_path+set}" = set; then withval="$with_cosmojar_path" with_cosmojar_path=$withval else with_cosmojar_path='' fi; if test "$with_cosmojar_path" != "yes" && test -z "$with_cosmojar_path" then with_cosmojar_path='' fi # Looking for rsh and path # Check whether --with-rsh or --without-rsh was given. if test "${with_rsh+set}" = set; then withval="$with_rsh" rsh_path=$withval else if test "$ARCH" = "intelnt" ; then rsh_path="rsh" else # Extract the first word of "rsh", so it can be a program name with args. set dummy rsh; 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_path_rsh_path+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $rsh_path in [\\/]* | ?:[\\/]*) ac_cv_path_rsh_path="$rsh_path" # Let the user override the test with a path. ;; *) 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_path_rsh_path="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done ;; esac fi rsh_path=$ac_cv_path_rsh_path if test -n "$rsh_path"; then echo "$as_me:$LINENO: result: $rsh_path" >&5 echo "${ECHO_T}$rsh_path" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi fi; cat >>confdefs.h <<_ACEOF #define RSH "$rsh_path" _ACEOF # Check whether --with-bsh or --without-bsh was given. if test "${with_bsh+set}" = set; then withval="$with_bsh" if test "x$withval" != "$no" ; then bsh_path=$withval fi else # Extract the first word of "sh", so it can be a program name with args. set dummy sh; 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_path_bsh_path+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $bsh_path in [\\/]* | ?:[\\/]*) ac_cv_path_bsh_path="$bsh_path" # Let the user override the test with a path. ;; *) 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_path_bsh_path="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done ;; esac fi bsh_path=$ac_cv_path_bsh_path if test -n "$bsh_path"; then echo "$as_me:$LINENO: result: $bsh_path" >&5 echo "${ECHO_T}$bsh_path" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi; cat >>confdefs.h <<_ACEOF #define BSH "$bsh_path" _ACEOF ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu for ac_header in stdlib.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 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 # # Check for large file support # LIB_LF='' if test "$with_largefiles" = 'yes' then echo "$as_me:$LINENO: checking whether large file support needs explicit enabling" >&5 echo $ECHO_N "checking whether large file support needs explicit enabling... $ECHO_C" >&6 result='no' getconf='getconf LFS_CFLAGS' if ($getconf) >/dev/null 2>&1 then CPPFLAGS="$CPPFLAGS "`$getconf` result='yes' fi getconf='getconf LFS_LDFLAGS' if ($getconf) >/dev/null 2>&1 then LDFLAGS="$LDFLAGS "`$getconf` result='yes' fi getconf='getconf LFS_LIBS' if ($getconf) >/dev/null 2>&1 then LIB_LF=`$getconf` LIBS="$LIB_LF $LIBS" result='yes' fi echo "$as_me:$LINENO: result: $result" >&5 echo "${ECHO_T}$result" >&6 fi echo "$as_me:$LINENO: checking architecture type" >&5 echo $ECHO_N "checking architecture type... $ECHO_C" >&6 if test "${ac_cv_dx_arch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_dx_arch=$ARCH if test "$ARCH" = "" ; then unameS=`uname -s` unameM="`uname -m`" ac_cv_dx_arch=unknown if test $unameS = "FreeBSD" ; then ac_cv_dx_arch=freebsd elif test `echo $unameS | tr A-Z a-z | sed "s/^.*cygwin.*$/yes/"` = "yes" ; then ac_cv_dx_arch=cygwin elif test $unameS = "Linux" ; then ac_cv_dx_arch=linux elif test $unameS = "IRIX" || test $unameS = "IRIX64" ; then ac_cv_dx_arch=sgi elif test $unameS = "AIX" ; then ac_cv_dx_arch=ibm6000 elif test "$unameM" = "alpha" ; then ac_cv_dx_arch=alphax elif test $unameS = "HP-UX" ; then ac_cv_dx_arch=hp700 elif test $unameS = "SunOS" ; then ac_cv_dx_arch=solaris elif test $unameS = "Darwin" ; then ac_cv_dx_arch=macos fi fi fi ARCH=$ac_cv_dx_arch echo "$as_me:$LINENO: result: $ARCH" >&5 echo "${ECHO_T}$ARCH" >&6 cat >>confdefs.h <<_ACEOF #define $ARCH 1 _ACEOF cat >>confdefs.h <<_ACEOF #define DXD_ARCHNAME "$ARCH" _ACEOF echo "$as_me:$LINENO: checking architecture specific stuff" >&5 echo $ECHO_N "checking architecture specific stuff... $ECHO_C" >&6 case $ARCH in ibm6000) a=`echo $CC | sed "s/.*gcc.*/YES/"` if test "$a" = "YES" ; then CFLAGS="$CFLAGS -mminimal-toc" CXXFLAGS="$CXXFLAGS -mminimal-toc" DXEXEC_EXP='-Wl,-bexpall' DXEXEC_IMP='' else DXEXEC_EXP='-bE:$(EXP)' DXEXEC_IMP='-bI:$(EXP)' fi cat >>confdefs.h <<_ACEOF #define DXEXEC_EXP $DXEXEC_EXP _ACEOF cat >>confdefs.h <<_ACEOF #define DXEXEC_IMP $DXEXEC_IMP _ACEOF ;; cygwin) DXEXEC_EXP='$(WEXP) -Wl,--out-implib,dxexec.a' cat >>confdefs.h <<_ACEOF #define DXEXEC_EXP $DXEXEC_EXP _ACEOF ;; intelnt) DXEXEC_EXP='-def $(WEXP)' cat >>confdefs.h <<_ACEOF #define DXEXEC_EXP $DXEXEC_EXP _ACEOF ;; linux) DXEXEC_EXP='-Wl,-export-dynamic' cat >>confdefs.h <<_ACEOF #define DXEXEC_EXP $DXEXEC_EXP _ACEOF ;; freebsd) DXEXEC_EXP='-Wl,-export-dynamic' cat >>confdefs.h <<_ACEOF #define DXEXEC_EXP $DXEXEC_EXP _ACEOF ;; macos) DXUI_ALDFLAGS='-framework CoreFoundation -framework ApplicationServices' cat >>confdefs.h <<_ACEOF #define DXUI_ALDFLAGS $DXUI_ALDFLAGS _ACEOF ;; esac echo "$as_me:$LINENO: result: done" >&5 echo "${ECHO_T}done" >&6 if test "$MKDEP" = "" ; then MKDEP='$(CC) -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)' fi if test "$ARCH" = "intelnt" ; then INSTALL_BIN_PROGRAM="dx" INSTALL_BIN_SCRIPT="" else INSTALL_BIN_PROGRAM="" INSTALL_BIN_SCRIPT="dx" 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: # SysV /etc/install, /usr/sbin/install # 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" # OS/2's system install, which has a completely different semantic # ./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 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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/* | \ ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ /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 done done ;; esac done fi if test "${ac_cv_path_install+set}" = set; then 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 fi fi echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&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_DATA" && INSTALL_DATA='${INSTALL} -m 644' if test -z "$LN_S" ; then echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CXX" && break done test -n "$ac_ct_CXX" || ac_ct_CXX="g++" CXX=$ac_ct_CXX fi # 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 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_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cxx_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi for ac_declaration in \ '' \ '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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 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 depcc="$CXX" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$CXXCPP" ; then ac_cv_prog_CXXCPP=$CXXCPP fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_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 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_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_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_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 : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } 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 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. 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 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 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 "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 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else 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 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 # 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+' '}$@" fi fi 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 "$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 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 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 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 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 test -n "$ac_ct_CC" && break done CC=$ac_ct_CC fi fi 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f conftest.err 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 else cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_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.err 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 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* 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; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 \ '' \ '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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_declaration #include 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 continue fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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.err 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 depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= 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 how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # 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 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 to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_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 to if __STDC__ is defined, since # 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_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 : 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; }; } 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 Cygwin environment" >&5 echo $ECHO_N "checking for Cygwin environment... $ECHO_C" >&6 if test "${ac_cv_cygwin+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __CYGWIN__ #define __CYGWIN__ __CYGWIN32__ #endif return __CYGWIN__; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_cygwin=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_cygwin=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext rm -f conftest* fi echo "$as_me:$LINENO: result: $ac_cv_cygwin" >&5 echo "${ECHO_T}$ac_cv_cygwin" >&6 CYGWIN= test "$ac_cv_cygwin" = yes && CYGWIN=yes case $host_os in *cygwin* ) CYGWIN=yes;; * ) CYGWIN=no;; esac echo "$as_me:$LINENO: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 if test "${ac_cv_exeext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$CYGWIN" = yes || test "$MINGW32" = yes; then ac_cv_exeext=.exe else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_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); }; then for file in conftest.*; do case $file in *.c | *.o | *.obj | *.ilk | *.pdb) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done else { { echo "$as_me:$LINENO: error: installation or configuration problem: compiler cannot create executables." >&5 echo "$as_me: error: installation or configuration problem: compiler cannot create executables." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest* test x"${ac_cv_exeext}" = x && ac_cv_exeext=no fi fi EXEEXT="" test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} echo "$as_me:$LINENO: result: ${ac_cv_exeext}" >&5 echo "${ECHO_T}${ac_cv_exeext}" >&6 ac_exeext=$EXEEXT if test -z "$EXEEXT" ; then DOT_EXE_EXT=""; else DOT_EXE_EXT=".$EXEEXT"; fi echo "$as_me:$LINENO: checking for object file suffix" >&5 echo $ECHO_N "checking for object file suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_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); }; then for file in conftest.*; do case $file in *.c ) ;; *) ac_cv_objext=`echo $file | sed -e s/conftest.//` ;; esac done else { { echo "$as_me:$LINENO: error: installation or configuration problem: compiler cannot create executables." >&5 echo "$as_me: error: installation or configuration problem: compiler cannot create executables." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest* test x"${ac_cv_objext}" = x && ac_cv_objext=no fi OBJEXT="" test x"${ac_cv_objext}" != xno && OBJEXT=${ac_cv_objext} echo "$as_me:$LINENO: result: ${ac_cv_objext}" >&5 echo "${ECHO_T}${ac_cv_objext}" >&6 ac_objext=$OBJEXT if test "$ARCH" = "intelnt" ; then for ac_header in windows.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 else ac_cv_header_windows_h="no" fi # On SGI, detect the ABI we're compiling for (handles all methods that # can be used to set the ABI target). if test "$ARCH" = "sgi" ; then echo "$as_me:$LINENO: checking for the target SGI ABI ..." >&5 echo $ECHO_N "checking for the target SGI ABI ...... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #if defined(sgi) && _MIPS_SIM == _ABI64 #else xyzz #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 "$as_me:$LINENO: result: \"-64\"" >&5 echo "${ECHO_T}\"-64\"" >&6 cat >>confdefs.h <<\_ACEOF #define SGI_ABI -64 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #if defined(sgi) && _MIPS_SIM == _ABIO32 #else xyzz #endif ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 "$as_me:$LINENO: result: \"-32\"" >&5 echo "${ECHO_T}\"-32\"" >&6 cat >>confdefs.h <<\_ACEOF #define SGI_ABI -32 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: \"-n32\"" >&5 echo "${ECHO_T}\"-n32\"" >&6 cat >>confdefs.h <<\_ACEOF #define SGI_ABI -n32 _ACEOF fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi # For SGI, set DXABI based on SGI_ABI if test "$ARCH" = "sgi" ; then case "$SGI_ABI" in -64) DXABI=" $SGI_ABI -L/usr/lib64";; -32) DXABI=" $SGI_ABI -L/usr/lib";; -n32) DXABI=" $SGI_ABI -L/usr/lib32";; esac fi # # Enable 64-bit arenas if requested and supported # echo "$as_me:$LINENO: checking whether to enable large arenas ..." >&5 echo $ECHO_N "checking whether to enable large arenas ...... $ECHO_C" >&6 if test "$with_large_arenas" != 'no' -a \ "$ARCH" = "sgi" -a "$SGI_ABI" = "-64"; then cat >>confdefs.h <<\_ACEOF #define ENABLE_LARGE_ARENAS 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 fi # Code to enable JAVADX to be built if test -r C:\ ; then DIRSEP=";" else DIRSEP=":" fi if test "$with_javadx" != 'no'; then failed=0; passed=0; { echo "$as_me:$LINENO: checking for java compiler..." >&5 echo "$as_me: checking for java compiler..." >&6;} if test -n "$JAVAC"; then { echo "$as_me:$LINENO: WARNING: JAVAC was preset" >&5 echo "$as_me: WARNING: JAVAC was preset" >&2;} # Extract the first word of "$JAVAC", so it can be a program name with args. set dummy $JAVAC; 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_JAVAC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAVAC"; then ac_cv_prog_JAVAC="$JAVAC" # 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_JAVAC="" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAVAC=$ac_cv_prog_JAVAC if test -n "$JAVAC"; then echo "$as_me:$LINENO: result: $JAVAC" >&5 echo "${ECHO_T}$JAVAC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else for ac_prog in javac "gcj -C" guavac jikes 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_JAVAC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAVAC"; then ac_cv_prog_JAVAC="$JAVAC" # 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_JAVAC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAVAC=$ac_cv_prog_JAVAC if test -n "$JAVAC"; then echo "$as_me:$LINENO: result: $JAVAC" >&5 echo "${ECHO_T}$JAVAC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$JAVAC" && break done fi if test -z "$JAVAC"; then { echo "$as_me:$LINENO: WARNING: No java compiler found" >&5 echo "$as_me: WARNING: No java compiler found" >&2;} failed=`expr $failed + 1` else echo "$as_me:$LINENO: checking if $JAVAC works..." >&5 echo $ECHO_N "checking if $JAVAC works...... $ECHO_C" >&6 dx_test_java_classname="dx_conf" dx_test_java_prog=$dx_test_java_classname".java" dx_test_java_class=$dx_test_java_classname".class" cat << EOF_JAVA > $dx_test_java_prog public class $dx_test_java_classname extends Object { public static void main() { } } EOF_JAVA if { ac_try='$JAVAC $dx_test_java_prog' { (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); }; } >/dev/null 2>&1; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 passed=`expr $passed + 1` else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 failed=`expr $failed + 1` { echo "$as_me:$LINENO: WARNING: $JAVAC failed to compile (see config.log, check your CLASSPATH?)" >&5 echo "$as_me: WARNING: $JAVAC failed to compile (see config.log, check your CLASSPATH?)" >&2;} fi rm -f $dx_test_java_prog $dx_test_java_class fi { echo "$as_me:$LINENO: checking for jar..." >&5 echo "$as_me: checking for jar..." >&6;} if test -n "$JAR"; then { echo "$as_me:$LINENO: WARNING: JAR was preset" >&5 echo "$as_me: WARNING: JAR was preset" >&2;} # Extract the first word of "$JAR", so it can be a program name with args. set dummy $JAR; 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_JAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAR"; then ac_cv_prog_JAR="$JAR" # 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_JAR="" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAR=$ac_cv_prog_JAR if test -n "$JAR"; then echo "$as_me:$LINENO: result: $JAR" >&5 echo "${ECHO_T}$JAR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else for ac_prog in jar 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_JAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAR"; then ac_cv_prog_JAR="$JAR" # 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_JAR="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAR=$ac_cv_prog_JAR if test -n "$JAR"; then echo "$as_me:$LINENO: result: $JAR" >&5 echo "${ECHO_T}$JAR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$JAR" && break done fi if test -z "$JAR"; then { echo "$as_me:$LINENO: WARNING: jar class packager not found in \$PATH" >&5 echo "$as_me: WARNING: jar class packager not found in \$PATH" >&2;} failed=`expr $failed + 1` else passed=`expr $passed + 1` fi { echo "$as_me:$LINENO: checking for javah..." >&5 echo "$as_me: checking for javah..." >&6;} if test -n "$JAVAH"; then { echo "$as_me:$LINENO: WARNING: JAVAH was preset" >&5 echo "$as_me: WARNING: JAVAH was preset" >&2;} # Extract the first word of "$JAVAH", so it can be a program name with args. set dummy $JAVAH; 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_JAVAH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAVAH"; then ac_cv_prog_JAVAH="$JAVAH" # 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_JAVAH="" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAVAH=$ac_cv_prog_JAVAH if test -n "$JAVAH"; then echo "$as_me:$LINENO: result: $JAVAH" >&5 echo "${ECHO_T}$JAVAH" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else for ac_prog in javah gcjh 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_JAVAH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$JAVAH"; then ac_cv_prog_JAVAH="$JAVAH" # 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_JAVAH="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi JAVAH=$ac_cv_prog_JAVAH if test -n "$JAVAH"; then echo "$as_me:$LINENO: result: $JAVAH" >&5 echo "${ECHO_T}$JAVAH" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$JAVAH" && break done fi if test -z "$JAVAH"; then { echo "$as_me:$LINENO: WARNING: no acceptable jni header generator found in \$PATH" >&5 echo "$as_me: WARNING: no acceptable jni header generator found in \$PATH" >&2;} failed=`expr $failed + 1` else passed=`expr $passed + 1` fi if test -n "$JAVA"; then { echo "$as_me:$LINENO: WARNING: JAVA was preset" >&5 echo "$as_me: WARNING: JAVA was preset" >&2;} # Extract the first word of "$JAVAH", so it can be a program name with args. set dummy $JAVAH; 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_path_JAVA+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $JAVA in [\\/]* | ?:[\\/]*) ac_cv_path_JAVA="$JAVA" # Let the user override the test with a path. ;; *) 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_path_JAVA="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done ;; esac fi JAVA=$ac_cv_path_JAVA if test -n "$JAVA"; then echo "$as_me:$LINENO: result: $JAVA" >&5 echo "${ECHO_T}$JAVA" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else for ac_prog in java 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_path_JAVA+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $JAVA in [\\/]* | ?:[\\/]*) ac_cv_path_JAVA="$JAVA" # Let the user override the test with a path. ;; *) 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_path_JAVA="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done ;; esac fi JAVA=$ac_cv_path_JAVA if test -n "$JAVA"; then echo "$as_me:$LINENO: result: $JAVA" >&5 echo "${ECHO_T}$JAVA" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$JAVA" && break done fi if test -z "$JAVA"; then { echo "$as_me:$LINENO: WARNING: no java executable found in \$PATH" >&5 echo "$as_me: WARNING: no java executable found in \$PATH" >&2;} else DX_JBASE_TRAILING=`echo $JAVA | sed -e "s&.*/&&"` JBASE=`echo $JAVA | sed -e "s&/$DX_JBASE_TRAILING&&"` fi if test $failed -eq 0 ; then if test -z "$with_jni_path" ; then if test -z "$JNIPATH" ; then if test "${ac_cv_jdk_base+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else echo "$as_me:$LINENO: checking java architecture type" >&5 echo $ECHO_N "checking java architecture type... $ECHO_C" >&6 if test "$JAVA_ARCH" = "linux" ; then JNI_CFLAGS=-DIBM_LINUX fi # NLS nuisances. # Needed e.g. for some versions of `tr' so that character classes in `[]' work. if test "${LC_ALL+set}" = 'set'; then LC_ALL=C ; export LC_ALL ; fi if test "${LANG+set}" = 'set'; then LANG=C ; export LANG ; fi if test "`echo ABC | tr '[A-Z]' '[a-z]'`" = "abc" ; then tolower="tr '[A-Z]' '[a-z]'" else tolower="tr A-Z a-z" fi if test "$JAVA_ARCH" = "" ; then lc=`uname -s | $tolower` case $lc in irix*) JAVA_ARCH=irix ;; cygwin*) JAVA_ARCH=win32 ;; aix) JAVA_ARCH=aix ;; alpha) JAVA_ARCH=alpha ;; osf1) JAVA_ARCH=alpha ;; hp-ux) JAVA_ARCH=hp-ux ;; sunos) JAVA_ARCH=solaris ;; linux) JAVA_ARCH=genunix JNI_CFLAGS=-DIBM_LINUX;; darwin) JAVA_ARCH=macos ;; *) JAVA_ARCH=$lc ;; esac fi echo "$as_me:$LINENO: result: $JAVA_ARCH" >&5 echo "${ECHO_T}$JAVA_ARCH" >&6 dx_find_jdk="" echo "$as_me:$LINENO: checking for jdk classes" >&5 echo $ECHO_N "checking for jdk classes... $ECHO_C" >&6 if test "${ac_cv_jdk_classes+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_jdk_classes="" if test "$JAVAC" = "javac" ; then echo "$as_me:$LINENO: result: trying javac -verbose" >&5 echo "${ECHO_T}trying javac -verbose" >&6 echo "$as_me:$LINENO: checking for jdk classes verbosely" >&5 echo $ECHO_N "checking for jdk classes verbosely... $ECHO_C" >&6 cat > jdkpath.java <jdkpath.out 2>jdkpath.err ac_cv_jdk_classes=`egrep "loaded|loading" jdkpath.err | tr '\134' '\057' | sed -e "s/.loaded //" -e "s/.loading //" -e "s&(.*$&&"` rm -f jdkpath.* echo "$as_me:$LINENO: result: $ac_cv_jdk_classes" >&5 echo "${ECHO_T}$ac_cv_jdk_classes" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi dx_find_jdk="yes" fi if test -z "$dx_find_jdk" ; then echo "$as_me:$LINENO: result: $ac_cv_jdk_classes" >&5 echo "${ECHO_T}$ac_cv_jdk_classes" >&6 fi if test -z "$ac_cv_jdk_classes" ; then echo "$as_me:$LINENO: result: trying default path" >&5 echo "${ECHO_T}trying default path" >&6 ac_cv_jdk_base="/usr/include:/usr/include/$JAVA_ARCH" else DX_JDK_TRAILING=`echo $ac_cv_jdk_classes | sed -e "s&.*/&&"` DX_ALMOST_BASE=`echo $ac_cv_jdk_classes | sed -e "s&/lib/$DX_JDK_TRAILING&&"` DX_JBASE=`echo $DX_ALMOST_BASE | sed -e "s&/jre&&"` DX_FOUND_PATH="$DX_JBASE/include:$DX_JBASE/include/$JAVA_ARCH" if test "$JAVA_ARCH" = "macos" ; then DX_FOUND_PATH="/System/Library/Frameworks/JavaVM.framework/Headers" fi ac_cv_jdk_base="$DX_FOUND_PATH" fi fi echo "$as_me:$LINENO: checking for jni headers path" >&5 echo $ECHO_N "checking for jni headers path... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $ac_cv_jdk_base" >&5 echo "${ECHO_T}$ac_cv_jdk_base" >&6 echo "$as_me:$LINENO: checking for valid jni headers path" >&5 echo $ECHO_N "checking for valid jni headers path... $ECHO_C" >&6 if test "${ac_cv_include_jni+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else dx_jniinc='' dx_jnimdinc='' list=`echo $ac_cv_jdk_base | sed -e "s/:/ /g"` for i in $list do if test -r "$i/jni.h" ; then dx_jniinc=$i fi if test -r "$i/jni_md.h" ; then dx_jnimdinc=$i fi done if test -n "$dx_jniinc" && test -n "$dx_jnimdinc" ; then JINC="-I$dx_jniinc -I$dx_jnimdinc" ac_cv_include_jni="$JINC" fi fi if test -z "$ac_cv_include_jni" ; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 failed=`expr $failed + 1` else echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 passed=`expr $passed + 1` if test -z "$JINC"; then JINC="$ac_cv_include_jni" fi fi else echo "$as_me:$LINENO: checking for valid jni headers path" >&5 echo $ECHO_N "checking for valid jni headers path... $ECHO_C" >&6 if test "${ac_cv_include_jni+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else dx_jniinc='' dx_jnimdinc='' list=`echo $JNIPATH | sed -e "s/:/ /g"` for i in $list do if test -r "$i/jni.h" ; then dx_jniinc=$i fi if test -r "$i/jni_md.h" ; then dx_jnimdinc=$i fi done if test -n "$dx_jniinc" && test -n "$dx_jnimdinc" ; then JINC="-I$dx_jniinc -I$dx_jnimdinc" ac_cv_include_jni="$JINC" fi fi if test -z "$ac_cv_include_jni" ; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 failed=`expr $failed + 1` else echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 passed=`expr $passed + 1` if test -z "$JINC"; then JINC="$ac_cv_include_jni" fi fi fi else echo "$as_me:$LINENO: checking for valid jni headers path" >&5 echo $ECHO_N "checking for valid jni headers path... $ECHO_C" >&6 if test "${ac_cv_include_jni+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else dx_jniinc='' dx_jnimdinc='' list=`echo $with_jni_path | sed -e "s/:/ /g"` for i in $list do if test -r "$i/jni.h" ; then dx_jniinc=$i fi if test -r "$i/jni_md.h" ; then dx_jnimdinc=$i fi done if test -n "$dx_jniinc" && test -n "$dx_jnimdinc" ; then JINC="-I$dx_jniinc -I$dx_jnimdinc" ac_cv_include_jni="$JINC" fi fi if test -z "$ac_cv_include_jni" ; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 failed=`expr $failed + 1` else echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 passed=`expr $passed + 1` if test -z "$JINC"; then JINC="$ac_cv_include_jni" fi fi fi fi if test $failed -gt 0; then with_javadx='no' { echo "$as_me:$LINENO: WARNING: JavaDX will be skipped during compilation due to limitations." >&5 echo "$as_me: WARNING: JavaDX will be skipped during compilation due to limitations." >&2;} else with_javadx='yes' JAVABRANCH=java dx_find_jdk="" echo "$as_me:$LINENO: checking for jdk classes" >&5 echo $ECHO_N "checking for jdk classes... $ECHO_C" >&6 if test "${ac_cv_jdk_classes+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_jdk_classes="" if test "$JAVAC" = "javac" ; then echo "$as_me:$LINENO: result: trying javac -verbose" >&5 echo "${ECHO_T}trying javac -verbose" >&6 echo "$as_me:$LINENO: checking for jdk classes verbosely" >&5 echo $ECHO_N "checking for jdk classes verbosely... $ECHO_C" >&6 cat > jdkpath.java <jdkpath.out 2>jdkpath.err ac_cv_jdk_classes=`egrep "loaded|loading" jdkpath.err | tr '\134' '\057' | sed -e "s/.loaded //" -e "s/.loading //" -e "s&(.*$&&"` rm -f jdkpath.* echo "$as_me:$LINENO: result: $ac_cv_jdk_classes" >&5 echo "${ECHO_T}$ac_cv_jdk_classes" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi dx_find_jdk="yes" fi if test -z "$dx_find_jdk" ; then echo "$as_me:$LINENO: result: $ac_cv_jdk_classes" >&5 echo "${ECHO_T}$ac_cv_jdk_classes" >&6 fi DX_JAVA_CLASSPATH="$ac_cv_jdk_classes" if test -z "$with_java40jar_path" ; then if test -z "$JAVA40JAR" ; then echo "$as_me:$LINENO: checking for netscape jar files" >&5 echo $ECHO_N "checking for netscape jar files... $ECHO_C" >&6 if test "${ac_cv_class_netscape+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r /usr/lib/netscape/java/classes/java40.jar; then ac_cv_class_netscape=/usr/lib/netscape/java/classes/java40.jar fi fi if test -n "$ac_cv_class_netscape" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- netscape support will not be complete" >&5 echo "${ECHO_T}no -- netscape support will not be complete" >&6 fi else echo "$as_me:$LINENO: checking for netscape jar files" >&5 echo $ECHO_N "checking for netscape jar files... $ECHO_C" >&6 if test "${ac_cv_class_netscape+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r $JAVA40JAR; then ac_cv_class_netscape=$JAVA40JAR fi fi if test -n "$ac_cv_class_netscape" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- netscape support will not be complete" >&5 echo "${ECHO_T}no -- netscape support will not be complete" >&6 fi fi else echo "$as_me:$LINENO: checking for netscape jar files" >&5 echo $ECHO_N "checking for netscape jar files... $ECHO_C" >&6 if test "${ac_cv_class_netscape+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r $with_java40jar_path; then ac_cv_class_netscape=$with_java40jar_path fi fi if test -n "$ac_cv_class_netscape" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- netscape support will not be complete" >&5 echo "${ECHO_T}no -- netscape support will not be complete" >&6 fi fi if test -z "$with_cosmojar_path" ; then if test -z "$COSMOJAR" ; then echo "$as_me:$LINENO: checking for cosmo jar files" >&5 echo $ECHO_N "checking for cosmo jar files... $ECHO_C" >&6 if test "${ac_cv_class_cosmo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r /usr/lib/netscape/java/classes/npcosmop211.jar; then ac_cv_class_cosmo=/usr/lib/netscape/java/classes/npcosmop211.jar fi fi if test -n "$ac_cv_class_cosmo" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- comso support will not be complete" >&5 echo "${ECHO_T}no -- comso support will not be complete" >&6 fi else echo "$as_me:$LINENO: checking for cosmo jar files" >&5 echo $ECHO_N "checking for cosmo jar files... $ECHO_C" >&6 if test "${ac_cv_class_cosmo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r $COSMOJAR; then ac_cv_class_cosmo=$COSMOJAR fi fi if test -n "$ac_cv_class_cosmo" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- comso support will not be complete" >&5 echo "${ECHO_T}no -- comso support will not be complete" >&6 fi fi else echo "$as_me:$LINENO: checking for cosmo jar files" >&5 echo $ECHO_N "checking for cosmo jar files... $ECHO_C" >&6 if test "${ac_cv_class_cosmo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -r $with_cosmojar_path; then ac_cv_class_cosmo=$with_cosmojar_path fi fi if test -n "$ac_cv_class_cosmo" ; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no -- comso support will not be complete" >&5 echo "${ECHO_T}no -- comso support will not be complete" >&6 fi fi WRL_CLASSPATH="$ac_cv_class_netscape" if test -n "$ac_cv_class_cosmo" ; then WRL_CLASSPATH="$ac_cv_class_netscape$DIRSEP$ac_cv_class_cosmo" fi TMP_CLASSPATH=./ if test ! "$CLASSPATH" = "" ; then TMP_CLASSPATH=$CLASSPATH$DIRSEP$TMP_CLASSPATH fi if test ! "$COSMOJAR" = "" ; then TMP_CLASSPATH=$COSMOJAR$DIRSEP$TMP_CLASSPATH fi if test ! "$WRL_CLASSPATH" = "" ; then TMP_CLASSPATH=$WRL_CLASSPATH$DIRSEP$TMP_CLASSPATH fi if test ! "$DX_JAVA_CLASSPATH" = "" ; then TMP_CLASSPATH=$DX_JAVA_CLASSPATH$DIRSEP$TMP_CLASSPATH fi DX_JAVA_CLASSPATH=$TMP_CLASSPATH { echo "$as_me:$LINENO: DX_JAVA_CLASSPATH :: $DX_JAVA_CLASSPATH " >&5 echo "$as_me: DX_JAVA_CLASSPATH :: $DX_JAVA_CLASSPATH " >&6;} fi fi # end of JAVADX configure 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 ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include <$ac_hdr> int main () { if ((DIR *) 0) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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_hdr" | $as_tr_cpp` 1 _ACEOF ac_header_dirent=$ac_hdr; break fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo "$as_me:$LINENO: checking for library containing opendir" >&5 echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6 if test "${ac_cv_search_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_func_search_save_LIBS=$LIBS ac_cv_search_opendir=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 opendir (); int main () { opendir (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_search_opendir="none required" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$ac_cv_search_opendir" = no; then for ac_lib in dir; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 opendir (); int main () { opendir (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_search_opendir="-l$ac_lib" break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done fi LIBS=$ac_func_search_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 echo "${ECHO_T}$ac_cv_search_opendir" >&6 if test "$ac_cv_search_opendir" != no; then test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS" fi else echo "$as_me:$LINENO: checking for library containing opendir" >&5 echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6 if test "${ac_cv_search_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_func_search_save_LIBS=$LIBS ac_cv_search_opendir=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 opendir (); int main () { opendir (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_search_opendir="none required" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$ac_cv_search_opendir" = no; then for ac_lib in x; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 opendir (); int main () { opendir (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_search_opendir="-l$ac_lib" break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done fi LIBS=$ac_func_search_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 echo "${ECHO_T}$ac_cv_search_opendir" >&6 if test "$ac_cv_search_opendir" != no; then test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS" fi fi 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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* 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 : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #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 fi rm -f 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 cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6 if test "${ac_cv_header_sys_wait_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #ifndef WEXITSTATUS # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) #endif #ifndef WIFEXITED # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) #endif int main () { int s; wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_sys_wait_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_sys_wait_h=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6 if test $ac_cv_header_sys_wait_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_SYS_WAIT_H 1 _ACEOF fi echo "$as_me:$LINENO: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_type_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((mode_t *) 0) return 0; if (sizeof (mode_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_mode_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_mode_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_mode_t" >&5 echo "${ECHO_T}$ac_cv_type_mode_t" >&6 if test $ac_cv_type_mode_t = yes; then : else cat >>confdefs.h <<_ACEOF #define mode_t int _ACEOF fi echo "$as_me:$LINENO: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_type_pid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((pid_t *) 0) return 0; if (sizeof (pid_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_pid_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_pid_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 echo "${ECHO_T}$ac_cv_type_pid_t" >&6 if test $ac_cv_type_pid_t = yes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi echo "$as_me:$LINENO: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { if ((size_t *) 0) return 0; if (sizeof (size_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_size_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned _ACEOF fi echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include int main () { if ((struct tm *) 0) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_time=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_time=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then cat >>confdefs.h <<\_ACEOF #define TIME_WITH_SYS_TIME 1 _ACEOF fi echo "$as_me:$LINENO: checking whether struct tm is in sys/time.h or time.h" >&5 echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6 if test "${ac_cv_struct_tm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { struct tm *tp; tp->tm_sec; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_struct_tm=time.h else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_struct_tm=sys/time.h fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5 echo "${ECHO_T}$ac_cv_struct_tm" >&6 if test $ac_cv_struct_tm = sys/time.h; then cat >>confdefs.h <<\_ACEOF #define TM_IN_SYS_TIME 1 _ACEOF fi if test "$ARCH" = "intelnt" -o "$ARCH" = "cygwin" ; then ANYDX=AnyDX.dll elif test "$ARCH" = "macos" ; then ANYDX=libAnyDX.jnilib else ANYDX=libAnyDX.so fi ccld_defaulted=0 if test "$SHARED_LINK" = "" ; then SHARED_LINK="$""(CC)" ccld_defaulted=1 fi DX_RTL_SYSLIBS="" if test $ac_cv_c_compiler_gnu = "yes" ; then MDXLDFLAG="-Wl," else MDXLDFLAG="" fi if test $ARCH = "intelnt" ; then DX_RTL_IMPORTS= DX_RTL_CFLAGS="-shared -e DXEntry" fi if test $ARCH = "cygwin" ; then DX_RTL_CFLAGS="-shared " DX_RTL_DXENTRY="${MDXLDFLAG}-e,DXEntry" DX_RTL_IMPORTS="\$(BASE)/lib_$ARCH/dxexec.a" DX_RTL_SYSLIBS="$SYSLIBS kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib wsock32.lib" DX_OUTBOARD_LIBS="$OLIBS \$(BASE)/lib/DXExport.lib" fi if test $ARCH = "hp700" ; then DX_RTL_CFLAGS="-Dhp700 -Aa +z" DX_RTL_ALDFLAGS="${MDXLDFLAG}-q ${MDXLDFLAG}-b ${MDXLDFLAG}-E " DX_RTL_DXENTRY="${MDXLDFLAG}-eDXEntry" DX_RTL_SYSLIBS="$SYSLIBS -ldld" fi if test $ARCH = "ibm6000" ; then DX_RTL_CFLAGS="-Dibm6000" DX_RTL_DXENTRY="${MDXLDFLAG}-eDXEntry " DX_RTL_ALDFLAGS= DX_RTL_IMPORT="${MDXLDFLAG}-bI:\$(BASE)/lib/dxexec.exp" fi if test $ARCH = "sgi" ; then DX_RTL_CFLAGS=" -Dsgi" if test $ac_cv_c_compiler_gnu = "yes" ; then DX_RTL_CFLAGS=" -Dsgi -D_GNU_SOURCE" DX_RTL_ALDFLAGS=" -shared" DX_RTL_DXENTRY=" -e DXEntry -exported_symbol DXEntry" if test $ccld_defaulted != 0 ; then SHARED_LINK="ld" fi else DX_RTL_ALDFLAGS=" -shared -ignore_unresolved " if test $ccld_defaulted != 0 ; then SHARED_LINK=$CC fi fi fi if test $ARCH = "solaris" ; then DX_RTL_CFLAGS=" -Dsolaris" # DX_RTL_ALDFLAGS=" ${MDXLDFLAG}-G ${MDXLDFLAG}-eDXEntry" DX_RTL_ALDFLAGS=" -G " SHARED_LINK="cc" fi if test $ARCH = "alphax" ; then DX_RTL_CFLAGS=" -Dalphax" DX_RTL_ALDFLAGS=" -shared -all -expect_unresolved main " DX_RTL_DXENTRY=" -e DXEntry" DX_RTL_IMPORTS=" -expect_unresolved DX\*" fi if test $ARCH = "linux" ; then DX_RTL_CFLAGS=" -D_GNU_SOURCE -Dlinux" DX_RTL_ALDFLAGS="-fPIC -shared" DX_RTL_DXENTRY=" -eDXEntry" fi if test $ARCH = "freebsd" ; then DX_RTL_CFLAGS="-D_GNU_SOURCE -Dfreebsd" DX_RTL_ALDFLAGS="--shared " DX_RTL_DXENTRY="-eDXEntry" fi echo "$as_me:$LINENO: checking for pthread_getspecific in -lpthread" >&5 echo $ECHO_N "checking for pthread_getspecific in -lpthread... $ECHO_C" >&6 if test "${ac_cv_lib_pthread_pthread_getspecific+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 pthread_getspecific (); int main () { pthread_getspecific (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_pthread_pthread_getspecific=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_pthread_pthread_getspecific=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_getspecific" >&5 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_getspecific" >&6 if test $ac_cv_lib_pthread_pthread_getspecific = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBPTHREAD 1 _ACEOF LIBS="-lpthread $LIBS" fi echo "$as_me:$LINENO: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. if test "${with_x+set}" = set; then withval="$with_x" fi; # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then # Both variables are already set. have_x=yes else if test "${ac_cv_have_x+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -fr conftest.dir if mkdir conftest.dir; then cd conftest.dir # Make sure to not put "make" in the Imakefile rules, since we grep it out. cat >Imakefile <<'_ACEOF' acfindx: @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"' _ACEOF if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} acfindx 2>/dev/null | grep -v make` # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl; do if test ! -f $ac_im_usrlibdir/libX11.$ac_extension && test -f $ac_im_libdir/libX11.$ac_extension; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /lib) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -fr conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # We can compile using X headers with no special include directory. ac_x_includes= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Intrinsic.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { XtMalloc (0) ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS=$ac_save_LIBS for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do if test -r $ac_dir/libXt.$ac_extension; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no if test "$ac_x_includes" = no || test "$ac_x_libraries" = no; then # Didn't find X anywhere. Cache the known absence of X. ac_cv_have_x="have_x=no" else # Record where we found X for the cache. ac_cv_have_x="have_x=yes \ ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries" fi fi fi eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then echo "$as_me:$LINENO: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi if test "$x_includes" != "" ; then CFLAGS="$CFLAGS -I$x_includes" CXXFLAGS="$CXXFLAGS -I$x_includes" CPPFLAGS="$CPPFLAGS -I$x_includes" fi if test "$x_libraries" != "" ; then LIBS="-L$x_libraries $LIBS" fi echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 IceConnectionNumber (); int main () { IceConnectionNumber (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_ICE_IceConnectionNumber=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ICE_IceConnectionNumber=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBICE 1 _ACEOF LIBS="-lICE $LIBS" fi echo "$as_me:$LINENO: checking for SmcSetProperties in -lSM" >&5 echo $ECHO_N "checking for SmcSetProperties in -lSM... $ECHO_C" >&6 if test "${ac_cv_lib_SM_SmcSetProperties+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lSM $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 SmcSetProperties (); int main () { SmcSetProperties (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_SM_SmcSetProperties=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_SM_SmcSetProperties=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_SM_SmcSetProperties" >&5 echo "${ECHO_T}$ac_cv_lib_SM_SmcSetProperties" >&6 if test $ac_cv_lib_SM_SmcSetProperties = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBSM 1 _ACEOF LIBS="-lSM $LIBS" fi echo "$as_me:$LINENO: checking for printf in -lxlibcon" >&5 echo $ECHO_N "checking for printf in -lxlibcon... $ECHO_C" >&6 if test "${ac_cv_lib_xlibcon_printf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxlibcon $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 printf (); int main () { printf (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xlibcon_printf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xlibcon_printf=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xlibcon_printf" >&5 echo "${ECHO_T}$ac_cv_lib_xlibcon_printf" >&6 if test $ac_cv_lib_xlibcon_printf = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXLIBCON 1 _ACEOF LIBS="-lxlibcon $LIBS" fi echo "$as_me:$LINENO: checking for XCreateWindow in -lxlib" >&5 echo $ECHO_N "checking for XCreateWindow in -lxlib... $ECHO_C" >&6 if test "${ac_cv_lib_xlib_XCreateWindow+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxlib $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XCreateWindow (); int main () { XCreateWindow (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xlib_XCreateWindow=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xlib_XCreateWindow=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xlib_XCreateWindow" >&5 echo "${ECHO_T}$ac_cv_lib_xlib_XCreateWindow" >&6 if test $ac_cv_lib_xlib_XCreateWindow = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXLIB 1 _ACEOF LIBS="-lxlib $LIBS" fi echo "$as_me:$LINENO: checking for XtVaGetValues in -lxt" >&5 echo $ECHO_N "checking for XtVaGetValues in -lxt... $ECHO_C" >&6 if test "${ac_cv_lib_xt_XtVaGetValues+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XtVaGetValues (); int main () { XtVaGetValues (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xt_XtVaGetValues=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xt_XtVaGetValues=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xt_XtVaGetValues" >&5 echo "${ECHO_T}$ac_cv_lib_xt_XtVaGetValues" >&6 if test $ac_cv_lib_xt_XtVaGetValues = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXT 1 _ACEOF LIBS="-lxt $LIBS" fi echo "$as_me:$LINENO: checking for XtVaGetValues in -lxmstatxt" >&5 echo $ECHO_N "checking for XtVaGetValues in -lxmstatxt... $ECHO_C" >&6 if test "${ac_cv_lib_xmstatxt_XtVaGetValues+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxmstatxt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XtVaGetValues (); int main () { XtVaGetValues (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xmstatxt_XtVaGetValues=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xmstatxt_XtVaGetValues=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xmstatxt_XtVaGetValues" >&5 echo "${ECHO_T}$ac_cv_lib_xmstatxt_XtVaGetValues" >&6 if test $ac_cv_lib_xmstatxt_XtVaGetValues = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXMSTATXT 1 _ACEOF LIBS="-lxmstatxt $LIBS" fi echo "$as_me:$LINENO: checking for XmStringFree in -lxmstatic" >&5 echo $ECHO_N "checking for XmStringFree in -lxmstatic... $ECHO_C" >&6 if test "${ac_cv_lib_xmstatic_XmStringFree+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxmstatic $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XmStringFree (); int main () { XmStringFree (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xmstatic_XmStringFree=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xmstatic_XmStringFree=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xmstatic_XmStringFree" >&5 echo "${ECHO_T}$ac_cv_lib_xmstatic_XmStringFree" >&6 if test $ac_cv_lib_xmstatic_XmStringFree = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXMSTATIC 1 _ACEOF LIBS="-lxmstatic $LIBS" fi echo "$as_me:$LINENO: checking for XmStringFree in -lxm" >&5 echo $ECHO_N "checking for XmStringFree in -lxm... $ECHO_C" >&6 if test "${ac_cv_lib_xm_XmStringFree+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lxm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XmStringFree (); int main () { XmStringFree (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_xm_XmStringFree=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_xm_XmStringFree=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_xm_XmStringFree" >&5 echo "${ECHO_T}$ac_cv_lib_xm_XmStringFree" >&6 if test $ac_cv_lib_xm_XmStringFree = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXM 1 _ACEOF LIBS="-lxm $LIBS" fi echo "$as_me:$LINENO: checking for glXGetConfig in -lhclglx" >&5 echo $ECHO_N "checking for glXGetConfig in -lhclglx... $ECHO_C" >&6 if test "${ac_cv_lib_hclglx_glXGetConfig+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lhclglx $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 glXGetConfig (); int main () { glXGetConfig (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_hclglx_glXGetConfig=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_hclglx_glXGetConfig=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_hclglx_glXGetConfig" >&5 echo "${ECHO_T}$ac_cv_lib_hclglx_glXGetConfig" >&6 if test $ac_cv_lib_hclglx_glXGetConfig = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBHCLGLX 1 _ACEOF LIBS="-lhclglx $LIBS" fi echo "$as_me:$LINENO: checking for gluBuild2DMipmaps in -lhclglu" >&5 echo $ECHO_N "checking for gluBuild2DMipmaps in -lhclglu... $ECHO_C" >&6 if test "${ac_cv_lib_hclglu_gluBuild2DMipmaps+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lhclglu $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 gluBuild2DMipmaps (); int main () { gluBuild2DMipmaps (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_hclglu_gluBuild2DMipmaps=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_hclglu_gluBuild2DMipmaps=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_hclglu_gluBuild2DMipmaps" >&5 echo "${ECHO_T}$ac_cv_lib_hclglu_gluBuild2DMipmaps" >&6 if test $ac_cv_lib_hclglu_gluBuild2DMipmaps = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBHCLGLU 1 _ACEOF LIBS="-lhclglu $LIBS" fi echo "$as_me:$LINENO: checking for glAccum in -lglwstati" >&5 echo $ECHO_N "checking for glAccum in -lglwstati... $ECHO_C" >&6 if test "${ac_cv_lib_glwstati_glAccum+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lglwstati $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 glAccum (); int main () { glAccum (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_glwstati_glAccum=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_glwstati_glAccum=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_glwstati_glAccum" >&5 echo "${ECHO_T}$ac_cv_lib_glwstati_glAccum" >&6 if test $ac_cv_lib_glwstati_glAccum = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBGLWSTATI 1 _ACEOF LIBS="-lglwstati $LIBS" fi echo "$as_me:$LINENO: checking for XCreateGC in -lX11" >&5 echo $ECHO_N "checking for XCreateGC in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XCreateGC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XCreateGC (); int main () { XCreateGC (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_X11_XCreateGC=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_X11_XCreateGC=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_X11_XCreateGC" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XCreateGC" >&6 if test $ac_cv_lib_X11_XCreateGC = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBX11 1 _ACEOF LIBS="-lX11 $LIBS" fi echo "$as_me:$LINENO: checking for XtMalloc in -lXt" >&5 echo $ECHO_N "checking for XtMalloc in -lXt... $ECHO_C" >&6 if test "${ac_cv_lib_Xt_XtMalloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XtMalloc (); int main () { XtMalloc (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xt_XtMalloc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xt_XtMalloc=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xt_XtMalloc" >&5 echo "${ECHO_T}$ac_cv_lib_Xt_XtMalloc" >&6 if test $ac_cv_lib_Xt_XtMalloc = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXT 1 _ACEOF LIBS="-lXt $LIBS" fi echo "$as_me:$LINENO: checking for XextAddDisplay in -lXext" >&5 echo $ECHO_N "checking for XextAddDisplay in -lXext... $ECHO_C" >&6 if test "${ac_cv_lib_Xext_XextAddDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XextAddDisplay (); int main () { XextAddDisplay (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xext_XextAddDisplay=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xext_XextAddDisplay=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xext_XextAddDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextAddDisplay" >&6 if test $ac_cv_lib_Xext_XextAddDisplay = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXEXT 1 _ACEOF LIBS="-lXext $LIBS" fi echo "$as_me:$LINENO: checking for XmuAddInitializer in -lXmu" >&5 echo $ECHO_N "checking for XmuAddInitializer in -lXmu... $ECHO_C" >&6 if test "${ac_cv_lib_Xmu_XmuAddInitializer+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXmu $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XmuAddInitializer (); int main () { XmuAddInitializer (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xmu_XmuAddInitializer=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xmu_XmuAddInitializer=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xmu_XmuAddInitializer" >&5 echo "${ECHO_T}$ac_cv_lib_Xmu_XmuAddInitializer" >&6 if test $ac_cv_lib_Xmu_XmuAddInitializer = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXMU 1 _ACEOF LIBS="-lXmu $LIBS" fi echo "$as_me:$LINENO: checking for sqrt in -lm" >&5 echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_sqrt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 sqrt (); int main () { sqrt (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_m_sqrt=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_m_sqrt=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrt" >&5 echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6 if test $ac_cv_lib_m_sqrt = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF LIBS="-lm $LIBS" fi # Check whether --with-motif-includes or --without-motif-includes was given. if test "${with_motif_includes+set}" = set; then withval="$with_motif_includes" with_motif_includes=$withval else with_motif_includes='' fi; if test "$with_motif_includes" != "yes" && test -z "$with_motif_includes" then with_motif_includes='' fi # Check whether --with-motif-libs or --without-motif-libs was given. if test "${with_motif_libs+set}" = set; then withval="$with_motif_libs" with_motif_libs=$withval else with_motif_libs='' fi; if test "$with_motif_libs" != "yes" && test -z "$with_motif_libs" then with_motif_libs='' fi # Guess where to find include files, by looking for this one Xm .h file. test -z "$xm_direct_test_include" && xm_direct_test_include=Xm/Xm.h # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$xm_direct_test_include> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # We can compile using X headers with no special include directory. xm_includes= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Look for the header file in a standard set of common directories. # Check X11 before X11Rn because it is often a symlink to the current release. for ac_dir in \ /usr/X11/include \ /usr/X11R6/include \ /usr/X11R5/include \ /usr/X11R4/include \ \ /usr/include/X11 \ /usr/include/X11R6 \ /usr/include/X11R5 \ /usr/include/X11R4 \ \ /usr/local/X11/include \ /usr/local/X11R6/include \ /usr/local/X11R5/include \ /usr/local/X11R4/include \ \ /usr/local/include/X11 \ /usr/local/include/X11R6 \ /usr/local/include/X11R5 \ /usr/local/include/X11R4 \ \ /usr/X386/include \ /usr/x386/include \ /usr/XFree86/include/X11 \ \ /usr/include \ /usr/local/include \ /usr/unsupported/include \ /usr/athena/include \ /usr/local/x11r5/include \ /usr/lpp/Xamples/include \ \ /usr/openwin/include \ /usr/openwin/share/include \ "$with_motif_includes" \ ; \ do if test -r "$ac_dir/$xm_direct_test_include"; then xm_includes=$ac_dir break fi done fi rm -f conftest.err conftest.$ac_ext # Check for the libraries. test -z "$xm_direct_test_library" && xm_direct_test_library=Xm test -z "$xm_direct_test_function" && xm_direct_test_function=XmGetDestination # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS="$LIBS" LIBS="-l$xm_direct_test_library $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ${xm_direct_test_function}() ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 LIBS="$ac_save_LIBS" # We can link Motif programs with no special library path. xm_libraries= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS="$ac_save_LIBS" # First see if replacing the include by lib works. # Check X11 before X11Rn because it is often a symlink to the current release. for ac_dir in `echo "$xm_includes" | sed s/include/lib/` \ /usr/X11/lib \ /usr/X11R6/lib \ /usr/X11R5/lib \ /usr/X11R4/lib \ \ /usr/lib/X11 \ /usr/lib/X11R6 \ /usr/lib/X11R5 \ /usr/lib/X11R4 \ \ /usr/local/X11/lib \ /usr/local/X11R6/lib \ /usr/local/X11R5/lib \ /usr/local/X11R4/lib \ \ /usr/local/lib/X11 \ /usr/local/lib/X11R6 \ /usr/local/lib/X11R5 \ /usr/local/lib/X11R4 \ \ /usr/X386/lib \ /usr/x386/lib \ /usr/XFree86/lib/X11 \ \ /usr/lib \ /usr/local/lib \ /usr/unsupported/lib \ /usr/athena/lib \ /usr/local/x11r5/lib \ /usr/lpp/Xamples/lib \ /lib/usr/lib/X11 \ \ /usr/openwin/lib \ /usr/openwin/share/lib \ ; \ do for ac_extension in a so sl; do if test -r $ac_dir/lib${xm_direct_test_library}.$ac_extension; then xm_libraries=$ac_dir break 2 fi done done fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$xm_includes" != "" ; then CFLAGS="$CFLAGS -I$xm_includes" CXXFLAGS="$CXXFLAGS -I$xm_includes" CPPFLAGS="$CPPFLAGS -I$xm_includes" fi if test "$xm_libraries" != "" ; then LIBS="-L$xm_libraries $LIBS" fi echo "$as_me:$LINENO: checking for glXGetConfig in -lGL" >&5 echo $ECHO_N "checking for glXGetConfig in -lGL... $ECHO_C" >&6 if test "${ac_cv_lib_GL_glXGetConfig+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lGL $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 glXGetConfig (); int main () { glXGetConfig (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_GL_glXGetConfig=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_GL_glXGetConfig=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_GL_glXGetConfig" >&5 echo "${ECHO_T}$ac_cv_lib_GL_glXGetConfig" >&6 if test $ac_cv_lib_GL_glXGetConfig = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBGL 1 _ACEOF LIBS="-lGL $LIBS" fi echo "$as_me:$LINENO: checking for gluBuild2DMipmaps in -lGLU" >&5 echo $ECHO_N "checking for gluBuild2DMipmaps in -lGLU... $ECHO_C" >&6 if test "${ac_cv_lib_GLU_gluBuild2DMipmaps+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lGLU $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 gluBuild2DMipmaps (); int main () { gluBuild2DMipmaps (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_GLU_gluBuild2DMipmaps=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_GLU_gluBuild2DMipmaps=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_GLU_gluBuild2DMipmaps" >&5 echo "${ECHO_T}$ac_cv_lib_GLU_gluBuild2DMipmaps" >&6 if test $ac_cv_lib_GLU_gluBuild2DMipmaps = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBGLU 1 _ACEOF LIBS="-lGLU $LIBS" fi echo "$as_me:$LINENO: checking for XpSetImageResolution in -lXp" >&5 echo $ECHO_N "checking for XpSetImageResolution in -lXp... $ECHO_C" >&6 if test "${ac_cv_lib_Xp_XpSetImageResolution+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXp $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XpSetImageResolution (); int main () { XpSetImageResolution (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xp_XpSetImageResolution=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xp_XpSetImageResolution=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xp_XpSetImageResolution" >&5 echo "${ECHO_T}$ac_cv_lib_Xp_XpSetImageResolution" >&6 if test $ac_cv_lib_Xp_XpSetImageResolution = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXP 1 _ACEOF LIBS="-lXp $LIBS" fi echo "$as_me:$LINENO: checking for XmGetDestination in -lXm" >&5 echo $ECHO_N "checking for XmGetDestination in -lXm... $ECHO_C" >&6 if test "${ac_cv_lib_Xm_XmGetDestination+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XmGetDestination (); int main () { XmGetDestination (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xm_XmGetDestination=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xm_XmGetDestination=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xm_XmGetDestination" >&5 echo "${ECHO_T}$ac_cv_lib_Xm_XmGetDestination" >&6 if test $ac_cv_lib_Xm_XmGetDestination = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBXM 1 _ACEOF LIBS="-lXm $LIBS" fi cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 _XmMapKeyEvents (); int main () { _XmMapKeyEvents (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define HAVE_XMMAPKEYEVENTS 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 HCLXmInit (); int main () { HCLXmInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define HAVE_HCLXMINIT 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 HCLXtInit (); int main () { HCLXtInit (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define HAVE_HCLXTINIT 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext DX_X_LINK_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { XmFormConstraintPart *p; p->att[0].type; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<_ACEOF #define OLD_LESSTIF 1 _ACEOF { echo "$as_me:$LINENO: using old version of LESSTIF" >&5 echo "$as_me: using old version of LESSTIF" >&6;} fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$ARCH" = "solaris" ; then OLDLIBS=$LIBS LIBS="-L/usr/openwin/lib $LIBS" echo "$as_me:$LINENO: checking for dga_draw_devfd in -ldga" >&5 echo $ECHO_N "checking for dga_draw_devfd in -ldga... $ECHO_C" >&6 if test "${ac_cv_lib_dga_dga_draw_devfd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldga -lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 dga_draw_devfd (); int main () { dga_draw_devfd (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dga_dga_draw_devfd=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dga_dga_draw_devfd=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dga_dga_draw_devfd" >&5 echo "${ECHO_T}$ac_cv_lib_dga_dga_draw_devfd" >&6 if test $ac_cv_lib_dga_dga_draw_devfd = yes; then LIBS="$LIBS -ldga" echo "$as_me:$LINENO: checking for XmuAddInitializer in -lXmu" >&5 echo $ECHO_N "checking for XmuAddInitializer in -lXmu... $ECHO_C" >&6 if test "${ac_cv_lib_Xmu_XmuAddInitializer+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXmu $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XmuAddInitializer (); int main () { XmuAddInitializer (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xmu_XmuAddInitializer=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xmu_XmuAddInitializer=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xmu_XmuAddInitializer" >&5 echo "${ECHO_T}$ac_cv_lib_Xmu_XmuAddInitializer" >&6 if test $ac_cv_lib_Xmu_XmuAddInitializer = yes; then LIBS="$LIBS -lXmu" fi else LIBS=$OLDLIBS fi fi echo "$as_me:$LINENO: checking for regcomp in -lREXP" >&5 echo $ECHO_N "checking for regcomp in -lREXP... $ECHO_C" >&6 if test "${ac_cv_lib_REXP_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lREXP $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 regcomp (); int main () { regcomp (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_REXP_regcomp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_REXP_regcomp=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_REXP_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_REXP_regcomp" >&6 if test $ac_cv_lib_REXP_regcomp = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBREXP 1 _ACEOF LIBS="-lREXP $LIBS" fi echo "$as_me:$LINENO: checking whether we are using GNU glibc math" >&5 echo $ECHO_N "checking whether we are using GNU glibc math... $ECHO_C" >&6 if test "${ac_cv_lib_glibcmath+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat > conftest.c < 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7) yes; #endif EOF if { ac_try='${CC-cc} -E conftest.c' { (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); }; } | egrep yes > foo 2>&1; then ac_cv_lib_glibcmath=-D_GNU_SOURCE fi rm foo fi echo "$as_me:$LINENO: result: $ac_cv_lib_glibcmath" >&5 echo "${ECHO_T}$ac_cv_lib_glibcmath" >&6 if test -n "$ac_cv_lib_glibcmath" ; then CFLAGS="$CFLAGS $ac_cv_lib_glibcmath" fi if test $with_buildlibdx = 'yes'; then WITH_BUILDLIBDX_TRUE= WITH_BUILDLIBDX_FALSE='#' else WITH_BUILDLIBDX_TRUE='#' WITH_BUILDLIBDX_FALSE= fi if test $with_installhtml = 'yes'; then WITH_INSTALLHTML_TRUE= WITH_INSTALLHTML_FALSE='#' else WITH_INSTALLHTML_TRUE='#' WITH_INSTALLHTML_FALSE= fi echo "$as_me:$LINENO: checking for main in -lg++" >&5 echo $ECHO_N "checking for main in -lg++... $ECHO_C" >&6 if test "${ac_cv_lib_gpp_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lg++ $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { main (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_gpp_main=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_gpp_main=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_gpp_main" >&5 echo "${ECHO_T}$ac_cv_lib_gpp_main" >&6 if test $ac_cv_lib_gpp_main = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBG__ 1 _ACEOF LIBS="-lg++ $LIBS" fi echo "$as_me:$LINENO: checking for main in -ldl" >&5 echo $ECHO_N "checking for main in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { main (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dl_main=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_main=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dl_main" >&5 echo "${ECHO_T}$ac_cv_lib_dl_main" >&6 if test $ac_cv_lib_dl_main = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBDL 1 _ACEOF LIBS="-ldl $LIBS" fi if test "$with_new_keylayout" != 'no' then cat >>confdefs.h <<_ACEOF #define DX_NEW_KEYLAYOUT 1 _ACEOF fi # # Check for TIFF # have_tiff='no' LIB_TIFF='' if test "$with_tiff" != 'no' then { echo "$as_me:$LINENO: checking for TIFF support ......" >&5 echo "$as_me: checking for TIFF support ......" >&6;} failed=0; passed=0; if test "${ac_cv_header_tiff_h+set}" = set; then echo "$as_me:$LINENO: checking for tiff.h" >&5 echo $ECHO_N "checking for tiff.h... $ECHO_C" >&6 if test "${ac_cv_header_tiff_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_tiff_h" >&5 echo "${ECHO_T}$ac_cv_header_tiff_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking tiff.h usability" >&5 echo $ECHO_N "checking tiff.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 tiff.h presence" >&5 echo $ECHO_N "checking tiff.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: tiff.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: tiff.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: tiff.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: tiff.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: tiff.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: tiff.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: tiff.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: tiff.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: tiff.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: tiff.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: tiff.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for tiff.h" >&5 echo $ECHO_N "checking for tiff.h... $ECHO_C" >&6 if test "${ac_cv_header_tiff_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_tiff_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_tiff_h" >&5 echo "${ECHO_T}$ac_cv_header_tiff_h" >&6 fi if test $ac_cv_header_tiff_h = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi if test "${ac_cv_header_tiffio_h+set}" = set; then echo "$as_me:$LINENO: checking for tiffio.h" >&5 echo $ECHO_N "checking for tiffio.h... $ECHO_C" >&6 if test "${ac_cv_header_tiffio_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 echo "${ECHO_T}$ac_cv_header_tiffio_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking tiffio.h usability" >&5 echo $ECHO_N "checking tiffio.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 tiffio.h presence" >&5 echo $ECHO_N "checking tiffio.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: tiffio.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: tiffio.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: tiffio.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: tiffio.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: tiffio.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: tiffio.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: tiffio.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: tiffio.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: tiffio.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: tiffio.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for tiffio.h" >&5 echo $ECHO_N "checking for tiffio.h... $ECHO_C" >&6 if test "${ac_cv_header_tiffio_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_tiffio_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_tiffio_h" >&5 echo "${ECHO_T}$ac_cv_header_tiffio_h" >&6 fi if test $ac_cv_header_tiffio_h = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking for TIFFOpen in -ltiff" >&5 echo $ECHO_N "checking for TIFFOpen in -ltiff... $ECHO_C" >&6 if test "${ac_cv_lib_tiff_TIFFOpen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ltiff -lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 TIFFOpen (); int main () { TIFFOpen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_tiff_TIFFOpen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_tiff_TIFFOpen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFOpen" >&5 echo "${ECHO_T}$ac_cv_lib_tiff_TIFFOpen" >&6 if test $ac_cv_lib_tiff_TIFFOpen = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if TIFF package is complete" >&5 echo $ECHO_N "checking if TIFF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_tiff='no (failed tests)' else LIB_TIFF='-ltiff' LIBS="$LIB_TIFF $LIBS" FMT_LIBS="$FMT_LIBS libtiff.a" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBTIFF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_tiff='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi # # Check for Xpm # have_xpm='no' LIB_XPM='' { echo "$as_me:$LINENO: checking for XPM support ......" >&5 echo "$as_me: checking for XPM support ......" >&6;} failed=0; passed=0; for ac_header in xpm.h X11/xpm.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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_xpm_h" = 'yes' -o "$ac_cv_header_X11_xpm_h" = 'yes' then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking for XpmReadFileToPixmap in -lXpm" >&5 echo $ECHO_N "checking for XpmReadFileToPixmap in -lXpm... $ECHO_C" >&6 if test "${ac_cv_lib_Xpm_XpmReadFileToPixmap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXpm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XpmReadFileToPixmap (); int main () { XpmReadFileToPixmap (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xpm_XpmReadFileToPixmap=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xpm_XpmReadFileToPixmap=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5 echo "${ECHO_T}$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6 if test $ac_cv_lib_Xpm_XpmReadFileToPixmap = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if XPM package is complete" >&5 echo $ECHO_N "checking if XPM package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_xpm='no (failed tests)' else LIB_XPM='-lXpm' LIBS="$LIB_XPM $LIBS" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBXPM 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_xpm='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi # # Check for HDF # have_hdf='no' LIB_HDF='' if test "$with_hdf" != 'no' then { echo "$as_me:$LINENO: checking for HDF components ......" >&5 echo "$as_me: checking for HDF components ......" >&6;} failed=0; passed=0; for ac_header in dfsd.h hdf/dfsd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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_dfsd_h" = 'yes' -o "$ac_cv_header_hdf_dfsd_h" = 'yes' then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi if test "$ARCH" = "intelnt" ; then echo "$as_me:$LINENO: checking for Hopen in -lhd421m" >&5 echo $ECHO_N "checking for Hopen in -lhd421m... $ECHO_C" >&6 if test "${ac_cv_lib_hd421m_Hopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lhd421m hm421m.lib $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 Hopen (); int main () { Hopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_hd421m_Hopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_hd421m_Hopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_hd421m_Hopen" >&5 echo "${ECHO_T}$ac_cv_lib_hd421m_Hopen" >&6 if test $ac_cv_lib_hd421m_Hopen = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if HDF package is complete" >&5 echo $ECHO_N "checking if HDF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_hdf='no (failed tests)' else LIB_HDF='-lhm421m' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS hm421m.lib" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBDF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_hdf='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else echo "$as_me:$LINENO: checking for Hopen in -ldf" >&5 echo $ECHO_N "checking for Hopen in -ldf... $ECHO_C" >&6 if test "${ac_cv_lib_df_Hopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldf -lz -ljpeg $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 Hopen (); int main () { Hopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_df_Hopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_df_Hopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_df_Hopen" >&5 echo "${ECHO_T}$ac_cv_lib_df_Hopen" >&6 if test $ac_cv_lib_df_Hopen = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if HDF package is complete" >&5 echo $ECHO_N "checking if HDF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_hdf='no (failed tests)' else LIB_HDF='-ldf' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS libdf.a" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBDF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_hdf='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi fi # # Check for CDF # have_cdf='no' LIB_CDF='' if test "$with_cdf" != 'no' then { echo "$as_me:$LINENO: checking for CDF support ......" >&5 echo "$as_me: checking for CDF support ......" >&6;} failed=0; passed=0; if test "${ac_cv_header_cdf_h+set}" = set; then echo "$as_me:$LINENO: checking for cdf.h" >&5 echo $ECHO_N "checking for cdf.h... $ECHO_C" >&6 if test "${ac_cv_header_cdf_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_cdf_h" >&5 echo "${ECHO_T}$ac_cv_header_cdf_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking cdf.h usability" >&5 echo $ECHO_N "checking cdf.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 cdf.h presence" >&5 echo $ECHO_N "checking cdf.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: cdf.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: cdf.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: cdf.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: cdf.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: cdf.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: cdf.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: cdf.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: cdf.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: cdf.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: cdf.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: cdf.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for cdf.h" >&5 echo $ECHO_N "checking for cdf.h... $ECHO_C" >&6 if test "${ac_cv_header_cdf_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_cdf_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_cdf_h" >&5 echo "${ECHO_T}$ac_cv_header_cdf_h" >&6 fi if test $ac_cv_header_cdf_h = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi if test "$ARCH" = "intelnt" ; then echo "$as_me:$LINENO: checking for Hopen in -ldllcdf" >&5 echo $ECHO_N "checking for Hopen in -ldllcdf... $ECHO_C" >&6 if test "${ac_cv_lib_dllcdf_Hopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldllcdf $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 Hopen (); int main () { Hopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_dllcdf_Hopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dllcdf_Hopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_dllcdf_Hopen" >&5 echo "${ECHO_T}$ac_cv_lib_dllcdf_Hopen" >&6 if test $ac_cv_lib_dllcdf_Hopen = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if CDF package is complete" >&5 echo $ECHO_N "checking if CDF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_cdf='no (failed tests)' else LIB_HDF='-ldllcdf' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS dllcdf.lib" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBCDF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_cdf='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else echo "$as_me:$LINENO: checking for CDFlib in -lcdf" >&5 echo $ECHO_N "checking for CDFlib in -lcdf... $ECHO_C" >&6 if test "${ac_cv_lib_cdf_CDFlib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lcdf $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 CDFlib (); int main () { CDFlib (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_cdf_CDFlib=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_cdf_CDFlib=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_cdf_CDFlib" >&5 echo "${ECHO_T}$ac_cv_lib_cdf_CDFlib" >&6 if test $ac_cv_lib_cdf_CDFlib = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if CDF package is complete" >&5 echo $ECHO_N "checking if CDF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_cdf='no (failed tests)' else LIB_CDF='-lcdf' LIBS="$LIB_CDF $LIBS" FMT_LIBS="$FMT_LIBS libcdf.a" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBCDF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_cdf='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi fi # # Check for NETCDF # have_netcdf='no' LIB_NETCDF='' if test "$with_netcdf" != 'no' then { echo "$as_me:$LINENO: checking for NETCDF support ......" >&5 echo "$as_me: checking for NETCDF support ......" >&6;} failed=0; passed=0; if test "${ac_cv_header_netcdf_h+set}" = set; then echo "$as_me:$LINENO: checking for netcdf.h" >&5 echo $ECHO_N "checking for netcdf.h... $ECHO_C" >&6 if test "${ac_cv_header_netcdf_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_netcdf_h" >&5 echo "${ECHO_T}$ac_cv_header_netcdf_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking netcdf.h usability" >&5 echo $ECHO_N "checking netcdf.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 netcdf.h presence" >&5 echo $ECHO_N "checking netcdf.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: netcdf.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: netcdf.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: netcdf.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: netcdf.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: netcdf.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: netcdf.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: netcdf.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: netcdf.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: netcdf.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: netcdf.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: netcdf.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for netcdf.h" >&5 echo $ECHO_N "checking for netcdf.h... $ECHO_C" >&6 if test "${ac_cv_header_netcdf_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_netcdf_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_netcdf_h" >&5 echo "${ECHO_T}$ac_cv_header_netcdf_h" >&6 fi if test $ac_cv_header_netcdf_h = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking for nc_copy_att in -lnetcdf" >&5 echo $ECHO_N "checking for nc_copy_att in -lnetcdf... $ECHO_C" >&6 if test "${ac_cv_lib_netcdf_nc_copy_att+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetcdf $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 nc_copy_att (); int main () { nc_copy_att (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_netcdf_nc_copy_att=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_netcdf_nc_copy_att=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_netcdf_nc_copy_att" >&5 echo "${ECHO_T}$ac_cv_lib_netcdf_nc_copy_att" >&6 if test $ac_cv_lib_netcdf_nc_copy_att = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if NETCDF package is complete" >&5 echo $ECHO_N "checking if NETCDF package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_netcdf='no (failed tests)' else LIB_NETCDF='-lnetcdf' LIBS="$LIB_NETCDF $LIBS" FMT_LIBS="$FMT_LIBS libnetcdf.a" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBNETCDF 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_netcdf='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi # # Check for IMAGEMAGICK # have_magick='no' LIB_MAGICK='' if test "$with_magick" != 'no' then { echo "$as_me:$LINENO: checking for ImageMagick support ......" >&5 echo "$as_me: checking for ImageMagick support ......" >&6;} # Extract the first word of "Magick-config", so it can be a program name with args. set dummy Magick-config; 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_HAVE_MC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$HAVE_MC"; then ac_cv_prog_HAVE_MC="$HAVE_MC" # 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_HAVE_MC="yes" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_HAVE_MC" && ac_cv_prog_HAVE_MC="no" fi fi HAVE_MC=$ac_cv_prog_HAVE_MC if test -n "$HAVE_MC"; then echo "$as_me:$LINENO: result: $HAVE_MC" >&5 echo "${ECHO_T}$HAVE_MC" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi failed=0; passed=0; if test "${ac_cv_header_magick_api_h+set}" = set; then echo "$as_me:$LINENO: checking for magick/api.h" >&5 echo $ECHO_N "checking for magick/api.h... $ECHO_C" >&6 if test "${ac_cv_header_magick_api_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_magick_api_h" >&5 echo "${ECHO_T}$ac_cv_header_magick_api_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking magick/api.h usability" >&5 echo $ECHO_N "checking magick/api.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 magick/api.h presence" >&5 echo $ECHO_N "checking magick/api.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: magick/api.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: magick/api.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: magick/api.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: magick/api.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: magick/api.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: magick/api.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: magick/api.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: magick/api.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: magick/api.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: magick/api.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: magick/api.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for magick/api.h" >&5 echo $ECHO_N "checking for magick/api.h... $ECHO_C" >&6 if test "${ac_cv_header_magick_api_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_magick_api_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_magick_api_h" >&5 echo "${ECHO_T}$ac_cv_header_magick_api_h" >&6 fi if test $ac_cv_header_magick_api_h = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi if test "$ARCH" = "intelnt" ; then echo "$as_me:$LINENO: checking for Hopen in -lCORE_RL_magick_" >&5 echo $ECHO_N "checking for Hopen in -lCORE_RL_magick_... $ECHO_C" >&6 if test "${ac_cv_lib_CORE_RL_magick__Hopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lCORE_RL_magick_ $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 Hopen (); int main () { Hopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_CORE_RL_magick__Hopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_CORE_RL_magick__Hopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_CORE_RL_magick__Hopen" >&5 echo "${ECHO_T}$ac_cv_lib_CORE_RL_magick__Hopen" >&6 if test $ac_cv_lib_CORE_RL_magick__Hopen = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if ImageMagick package is complete" >&5 echo $ECHO_N "checking if ImageMagick package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_magick='no (failed tests)' else if test "$with_smagick" != 'no' then LIB_MAGICK='-lCORE_RL_magick_ -lCORE_RL_bzlib_ -lCORE_RL_coders_ -lCORE_RL_filters_ -lCORE_RL_jbig_ -lCORE_RL_jbig_ -lCORE_RL_jp2_ -lCORE_RL_jpeg_ -lCORE_RL_lcms_ -lCORE_RL_libxml_ -lCORE_RL_png_ -lCORE_RL_tiff_ -lCORE_RL_ttf_ -lCORE_RL_wand_ -lCORE_RL_wmf_ -lCORE_RL_zlib_' else LIB_MAGICK='-lCORE_RL_magick_' fi LIBS="$LIB_MAGICK $LIBS" FMT_LIBS="$FMT_LIBS CORE_RL_magick_.lib" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBMAGICK 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_magick='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else if test "$HAVE_MC" = "yes" ; then LIB_MAGICK="`Magick-config --ldflags` `Magick-config --libs`" echo "$as_me:$LINENO: checking for GetImageInfo in -lMagick" >&5 echo $ECHO_N "checking for GetImageInfo in -lMagick... $ECHO_C" >&6 if test "${ac_cv_lib_Magick_GetImageInfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lMagick $LIB_MAGICK $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 GetImageInfo (); int main () { GetImageInfo (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Magick_GetImageInfo=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Magick_GetImageInfo=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Magick_GetImageInfo" >&5 echo "${ECHO_T}$ac_cv_lib_Magick_GetImageInfo" >&6 if test $ac_cv_lib_Magick_GetImageInfo = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if ImageMagick package is complete" >&5 echo $ECHO_N "checking if ImageMagick package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_magick='no (failed tests)' else CPPFLAGS="`Magick-config --cppflags` $CPPFLAGS" LIB_MAGICK="$LIBS `Magick-config --ldflags` `Magick-config --libs`" ac_u_bar="" for arg in $LIB_MAGICK ; do x=`echo $arg | tr -dc '[:alnum:]'` eval test x\${ac_u_$x} = x; if test $? = 0 ; then eval ac_u_$x=1 export eval ac_u_$x else eval ac_u_$x=\`expr \${ac_u_$x} + 1\` export eval ac_u_$x fi done for arg in $LIB_MAGICK ; do x=`echo $arg | tr -dc '[:alnum:]'` eval ac_u_${x}=\`expr \${ac_u_$x} - 1\` eval test \$ac_u_${x} = 0; if test $? = 0 ; then ac_u_bar="$ac_u_bar $arg" fi done LIBS="$ac_u_bar" FMT_LIBS="$FMT_LIBS libMagick.a" cat >>confdefs.h <<\_ACEOF #define HAVE_LIBMAGICK 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_magick='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else echo "$as_me:$LINENO: result: no - Magick-config not found" >&5 echo "${ECHO_T}no - Magick-config not found" >&6 fi fi fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int a = true; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define CXX_HAS_TRUE 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<\_ACEOF #define CXX_HAS_TRUE 0 _ACEOF fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int a = false; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define CXX_HAS_FALSE 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<\_ACEOF #define CXX_HAS_FALSE 0 _ACEOF fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext for ac_func in getdtablesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* 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_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done 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 for ac_func in getcwd gethostname gettimeofday mkdir mkfifo mktime \ putenv re_comp regcmp select socket strcspn strdup strerror \ strspn strstr strtod strtol strtoul uname trunc \ _Errno spawnvp _spawnvp regcomp sysmp sysconf \ pipe _pipe _popen popen _pclose pclose random rand srandom \ shmat getopt srand opendir _findfirst strrstr strcasecmp \ stricmp getpid _getpid unlink _unlink getlogin isatty _isatty \ setsockopt isnan finite do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* 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_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done echo "$as_me:$LINENO: checking if RAND_MAX defined" >&5 echo $ECHO_N "checking if RAND_MAX defined... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { int a = RAND_MAX; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<\_ACEOF #define HAVE_RAND_MAX 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: checking if signal.h defines SIGBUS" >&5 echo $ECHO_N "checking if signal.h defines SIGBUS... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if defined(SIGBUS) xyzzy #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "xyzzy" >/dev/null 2>&1; then cat >>confdefs.h <<\_ACEOF #define HAVE_SIGBUS 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* echo "$as_me:$LINENO: checking if signal.h defines SIGKILL" >&5 echo $ECHO_N "checking if signal.h defines SIGKILL... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if defined(SIGKILL) xyzzy #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "xyzzy" >/dev/null 2>&1; then cat >>confdefs.h <<\_ACEOF #define HAVE_SIGKILL 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* echo "$as_me:$LINENO: checking if signal.h defines SIGDANGER" >&5 echo $ECHO_N "checking if signal.h defines SIGDANGER... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if defined(SIGDANGER) xyzzy #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "xyzzy" >/dev/null 2>&1; then cat >>confdefs.h <<\_ACEOF #define HAVE_SIGDANGER 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* echo "$as_me:$LINENO: checking if signal.h defines SIGPIPE" >&5 echo $ECHO_N "checking if signal.h defines SIGPIPE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if defined(SIGPIPE) xyzzy #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "xyzzy" >/dev/null 2>&1; then cat >>confdefs.h <<\_ACEOF #define HAVE_SIGPIPE 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* echo "$as_me:$LINENO: checking if signal.h defines SIGQUIT" >&5 echo $ECHO_N "checking if signal.h defines SIGQUIT... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if defined(SIGQUIT) xyzzy #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "xyzzy" >/dev/null 2>&1; then cat >>confdefs.h <<\_ACEOF #define HAVE_SIGQUIT 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { extern char *getenv(const char *); ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<_ACEOF #define GETENV_ARG const char * _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<_ACEOF #define GETENV_ARG char * _ACEOF fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { int n = _system_configuration.ncpus; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<_ACEOF #define HAVE_SYSCONFIG_NCPUS 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext for ac_prog in flex lex 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_LEX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # 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_LEX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then echo "$as_me:$LINENO: result: $LEX" >&5 echo "${ECHO_T}$LEX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test -z "$LEXLIB" then echo "$as_me:$LINENO: checking for yywrap in -lfl" >&5 echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6 if test "${ac_cv_lib_fl_yywrap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lfl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 yywrap (); int main () { yywrap (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_fl_yywrap=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_fl_yywrap=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_fl_yywrap" >&5 echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6 if test $ac_cv_lib_fl_yywrap = yes; then LEXLIB="-lfl" else echo "$as_me:$LINENO: checking for yywrap in -ll" >&5 echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6 if test "${ac_cv_lib_l_yywrap+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ll $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 yywrap (); int main () { yywrap (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_l_yywrap=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_l_yywrap=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_l_yywrap" >&5 echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6 if test $ac_cv_lib_l_yywrap = yes; then LEXLIB="-ll" fi fi fi if test "x$LEX" != "x:"; then echo "$as_me:$LINENO: checking lex output file root" >&5 echo $ECHO_N "checking lex output file root... $ECHO_C" >&6 if test "${ac_cv_prog_lex_root+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # The minimal lex program is just a single line: %%. But some broken lexes # (Solaris, I think it was) want two %% lines, so accommodate them. cat >conftest.l <<_ACEOF %% %% _ACEOF { (eval echo "$as_me:$LINENO: \"$LEX conftest.l\"") >&5 (eval $LEX conftest.l) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5 echo "$as_me: error: cannot find output from $LEX; giving up" >&2;} { (exit 1); exit 1; }; } fi fi echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5 echo "${ECHO_T}$ac_cv_prog_lex_root" >&6 rm -f conftest.l LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5 echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6 if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c ac_save_LIBS=$LIBS LIBS="$LIBS $LEXLIB" cat >conftest.$ac_ext <<_ACEOF `cat $LEX_OUTPUT_ROOT.c` _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_prog_lex_yytext_pointer=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS rm -f "${LEX_OUTPUT_ROOT}.c" fi echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5 echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6 if test $ac_cv_prog_lex_yytext_pointer = yes; then cat >>confdefs.h <<\_ACEOF #define YYTEXT_POINTER 1 _ACEOF fi fi if test "$LEX" = "flex" ; then cat >>confdefs.h <<\_ACEOF #define USING_FLEX 1 _ACEOF LEX="flex -l" fi echo "$as_me:$LINENO: checking lex output file root" >&5 echo $ECHO_N "checking lex output file root... $ECHO_C" >&6 if test "${ac_cv_prog_lex_root+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # The minimal lex program is just a single line: %%. But some broken lexes # (Solaris, I think it was) want two %% lines, so accommodate them. echo '%% %%' | $LEX if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5 echo "$as_me: error: cannot find output from $LEX; giving up" >&2;} { (exit 1); exit 1; }; } fi fi echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5 echo "${ECHO_T}$ac_cv_prog_lex_root" >&6 LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root echo "$as_me:$LINENO: checking whether yylineno is defined" >&5 echo $ECHO_N "checking whether yylineno is defined... $ECHO_C" >&6 cat > conftest.lex <conftest.$ac_ext <<_ACEOF `cat $LEX_OUTPUT_ROOT.c` _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define YYLINENO_DEFINED 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS rm -f "${LEX_OUTPUT_ROOT}.c" rm -f "conftesst.lex" # Extract the first word of "bison", so it can be a program name with args. set dummy bison; 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_yakker+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$yakker"; then ac_cv_prog_yakker="$yakker" # 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_yakker=""bison"" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_yakker" && ac_cv_prog_yakker=""yacc"" fi fi yakker=$ac_cv_prog_yakker if test -n "$yakker"; then echo "$as_me:$LINENO: result: $yakker" >&5 echo "${ECHO_T}$yakker" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$yakker" = "bison" ; then cat >>confdefs.h <<\_ACEOF #define USING_BISON 1 _ACEOF YACC="bison -y" else YACC=yacc fi cat >>confdefs.h <<\_ACEOF #define USING_BISON 1 _ACEOF for ac_hdr in \ DPS/XDPSlib.h DPS/dpsXclient.h DPS/psops.h GL/gl.h GL/glx.h Mrm/MrmPublic.h \ X11/Composite.h X11/CompositeP.h X11/Constraint.h X11/CoreP.h X11/Intrinsic.h \ X11/IntrinsicI.h X11/IntrinsicP.h X11/Protocols.h X11/Shell.h X11/StringDefs.h \ X11/X.h X11/XHPlib.h X11/Xatom.h X11/Xlib.h X11/XlibXtra.h \ X11/Xos.h X11/Xutil.h X11/cursorfont.h X11/keysym.h X11/keysymdef.h Xm/ArrowB.h \ Xm/ArrowBG.h Xm/AtomMgr.h Xm/BulletinB.h Xm/BulletinBP.h Xm/CascadeB.h \ Xm/CascadeBG.h Xm/Command.h Xm/CutPaste.h Xm/DialogS.h Xm/DragC.h Xm/DragDrop.h \ Xm/DrawingA.h Xm/DrawingAP.h Xm/DrawnB.h Xm/FileSB.h Xm/Form.h Xm/FormP.h \ Xm/Frame.h Xm/FrameP.h Xm/GadgetP.h Xm/Label.h Xm/LabelG.h Xm/LabelGP.h \ Xm/LabelP.h Xm/List.h Xm/MainW.h Xm/ManagerP.h Xm/MenuShell.h Xm/MessageB.h \ Xm/MwmUtil.h Xm/PanedW.h Xm/PrimitiveP.h Xm/Protocols.h Xm/PushB.h Xm/PushBG.h \ Xm/PushBP.h Xm/RepType.h Xm/RowColumn.h Xm/Scale.h Xm/ScrollBar.h Xm/ScrolledW.h \ Xm/ScrolledWP.h Xm/SelectioB.h Xm/SeparatoG.h Xm/SeparatoGP.h Xm/Separator.h \ Xm/Text.h Xm/TextF.h Xm/ToggleB.h Xm/ToggleBG.h Xm/Xm.h Xm/XmP.h Xm/XmStrDefs.h \ gl.h gl/device.h gl/gl.h invent.h iop/afb.h iop/mov.h iop/pfs.h license.h \ linux/kernel.h linux/sys.h math.h mingw32/dir.h mon.h net/if_arp.h net/route.h \ os2.h setjmp.h starbase.c.h stddef.h stdio.h synch.h sys/access.h \ sys/ipc.h sys/m88kbcs.h sys/mman.h sys/mode.h sys/pstat.h sys/resource.h \ sys/svs.h sys/sysconfig.h sys/syslimits.h sys/sysmacros.h ulocks.h x11/xlibxtra.h \ xgl/xgl.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo "$as_me:$LINENO: checking for $ac_hdr" >&5 echo $ECHO_N "checking for $ac_hdr... $ECHO_C" >&6 if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ [#]line 29364 "configure" #include "confdefs.h" #include <$ac_hdr> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then eval "ac_cv_header_$ac_safe=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "ac_cv_header_$ac_safe=no" fi rm -f conftest.err conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` cat >>confdefs.h <<_ACEOF #define $ac_tr_hdr 1 _ACEOF else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi done for ac_header in arpa/inet.h CC/osfcn.h conio.h crypt.h ctype.h cygwin/socket.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sys/socket.h dlfcn.h errno.h fcntl.h get.h io.h limits.h malloc.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in netdb.h netinet/in.h process.h pwd.h signal.h string.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in strings.h sys/bsd_types.h sys/errno.h sys/file.h sys/filio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sys/ioctl.h sys/ldr.h sys/m_wait.h sys/param.h sys/select.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sys/shm.h sys/signal.h sys/stat.h sys/sysmp.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sys/systemcfg.h sys/systeminfo.h sys/timeb.h sys/times.h sys/time.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sys/types.h sys/un.h sys/utsname.h time.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in types.h unistd.h values.h wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in X11/Xmu/Editres.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 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if HAVE_X11_INTRINSIC_H #include #endif #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 # # Check for XINERAMA # have_xinerama='no' LIB_XINERAMA='' { echo "$as_me:$LINENO: checking for XINERAMA support ......" >&5 echo "$as_me: checking for XINERAMA support ......" >&6;} failed=0; passed=0; for ac_header in X11/extensions/Xinerama.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 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if HAVE_X11_INTRINSIC_H #include #endif #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 passed=`expr $passed + 1` else failed=`expr $failed + 1` fi done echo "$as_me:$LINENO: checking for XineramaQueryExtension in -lXinerama" >&5 echo $ECHO_N "checking for XineramaQueryExtension in -lXinerama... $ECHO_C" >&6 if test "${ac_cv_lib_Xinerama_XineramaQueryExtension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXinerama -lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 XineramaQueryExtension (); int main () { XineramaQueryExtension (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_Xinerama_XineramaQueryExtension=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_Xinerama_XineramaQueryExtension=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_Xinerama_XineramaQueryExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xinerama_XineramaQueryExtension" >&6 if test $ac_cv_lib_Xinerama_XineramaQueryExtension = yes; then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi echo "$as_me:$LINENO: checking if Xinerama package is complete" >&5 echo $ECHO_N "checking if Xinerama package is complete... $ECHO_C" >&6 if test $passed -gt 0 then if test $failed -gt 0 then echo "$as_me:$LINENO: result: no -- some components failed test" >&5 echo "${ECHO_T}no -- some components failed test" >&6 have_xinerama='no (failed tests)' else LIB_XINERAMA='-lXinerama' LIBS="$LIB_XINERAMA $LIBS" cat >>confdefs.h <<\_ACEOF #define HAVE_XINERAMA 1 _ACEOF echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 have_xinerama='yes' fi else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi for ac_header in net/if.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 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #endif #if HAVE_SYS_SOCKET_H # include #endif #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 echo "$as_me:$LINENO: checking for O_RDONLY" >&5 echo $ECHO_N "checking for O_RDONLY... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if defined(HAVE_FCNTL_H) #include #endif int main () { int i = O_RDONLY; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<_ACEOF #define O_RDONLY _O_RDONLY _ACEOF fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test "$ARCH" = "intelnt" ; then for ac_header in winbase.h wingdi.h winioctl.h winsock.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 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if HAVE_WINDOWS_H #include #endif #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu echo "/* */" > statHdrs.h if test "${ac_cv_header_windows_h+set}" = set; then echo "$as_me:$LINENO: checking for windows.h" >&5 echo $ECHO_N "checking for windows.h... $ECHO_C" >&6 if test "${ac_cv_header_windows_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_windows_h" >&5 echo "${ECHO_T}$ac_cv_header_windows_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking windows.h usability" >&5 echo $ECHO_N "checking windows.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 windows.h presence" >&5 echo $ECHO_N "checking windows.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: windows.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: windows.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: windows.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: windows.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: windows.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: windows.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: windows.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for windows.h" >&5 echo $ECHO_N "checking for windows.h... $ECHO_C" >&6 if test "${ac_cv_header_windows_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_windows_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_windows_h" >&5 echo "${ECHO_T}$ac_cv_header_windows_h" >&6 fi if test $ac_cv_header_windows_h = yes; then echo "#include " >> statHdrs.h fi if test "${ac_cv_header_unistd_h+set}" = set; then echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking unistd.h usability" >&5 echo $ECHO_N "checking unistd.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 unistd.h presence" >&5 echo $ECHO_N "checking unistd.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: unistd.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: unistd.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: unistd.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: unistd.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: unistd.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_unistd_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 fi if test $ac_cv_header_unistd_h = yes; then echo "#include " >> statHdrs.h fi if test "${ac_cv_header_sys_types_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/types.h usability" >&5 echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/types.h presence" >&5 echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/types.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/types.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/types.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/types.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/types.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_types_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 fi if test $ac_cv_header_sys_types_h = yes; then echo "#include " >> statHdrs.h fi if test "${ac_cv_header_sys_stat_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/stat.h" >&5 echo $ECHO_N "checking for sys/stat.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_stat_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_stat_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_stat_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/stat.h usability" >&5 echo $ECHO_N "checking sys/stat.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/stat.h presence" >&5 echo $ECHO_N "checking sys/stat.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/stat.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/stat.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/stat.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/stat.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/stat.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/stat.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/stat.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/stat.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/stat.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/stat.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/stat.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/stat.h" >&5 echo $ECHO_N "checking for sys/stat.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_stat_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_stat_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_stat_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_stat_h" >&6 fi if test $ac_cv_header_sys_stat_h = yes; then echo "#include " >> statHdrs.h fi fnc="X" str="X" for f in stat _stat ; do for s in stat _stat ; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include "statHdrs.h" int main () { $f("foo", (struct $s *)0); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 fnc=$f str=$s else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done done if test "$fnc" = "X" -o "$str" = "X" ; then echo could not find working combination of stat function and structure exit fi cat >>confdefs.h <<_ACEOF #define STATFUNC $fnc _ACEOF cat >>confdefs.h <<_ACEOF #define STATSTRUCT $str _ACEOF echo stat function is: $fnc echo stat structure is: $str 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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu for ac_header in CC/libc.h direct.h dirent.h iostream iostream.h regex.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in stream stream.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in sstream strstream.h strstrea.h sysent.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in fstream fstream.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_header in regexp.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 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #define INIT const char *sp = ""; #define GETC() (*sp++) #define PEEKC() (*sp) #define UNGETC(c) (--sp) #define RETURN(pointer) return(pointer); #define ERROR(val) /**/ #include <$ac_header> _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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.err 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 echo "$as_me:$LINENO: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 socket (); int main () { socket (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_socket_socket=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_socket_socket=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBSOCKET 1 _ACEOF LIBS="-lsocket $LIBS" fi echo "$as_me:$LINENO: checking for inet_addr in -lnsl" >&5 echo $ECHO_N "checking for inet_addr in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 inet_addr (); int main () { inet_addr (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_nsl_inet_addr=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_nsl_inet_addr=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_inet_addr" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_inet_addr" >&6 if test $ac_cv_lib_nsl_inet_addr = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBNSL 1 _ACEOF LIBS="-lnsl $LIBS" fi echo "$as_me:$LINENO: checking for regex in -lgen" >&5 echo $ECHO_N "checking for regex in -lgen... $ECHO_C" >&6 if test "${ac_cv_lib_gen_regex+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 regex (); int main () { regex (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_gen_regex=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_gen_regex=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_gen_regex" >&5 echo "${ECHO_T}$ac_cv_lib_gen_regex" >&6 if test $ac_cv_lib_gen_regex = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBGEN 1 _ACEOF LIBS="-lgen $LIBS" fi echo "$as_me:$LINENO: checking for regcomp in -lregex" >&5 echo $ECHO_N "checking for regcomp in -lregex... $ECHO_C" >&6 if test "${ac_cv_lib_regex_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lregex $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 regcomp (); int main () { regcomp (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_regex_regcomp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_regex_regcomp=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_regex_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_regex_regcomp" >&6 if test $ac_cv_lib_regex_regcomp = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBREGEX 1 _ACEOF LIBS="-lregex $LIBS" fi echo "$as_me:$LINENO: checking for regcomp in -lREXP" >&5 echo $ECHO_N "checking for regcomp in -lREXP... $ECHO_C" >&6 if test "${ac_cv_lib_REXP_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lREXP $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.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 regcomp (); int main () { regcomp (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_lib_REXP_regcomp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_REXP_regcomp=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_lib_REXP_regcomp" >&5 echo "${ECHO_T}$ac_cv_lib_REXP_regcomp" >&6 if test $ac_cv_lib_REXP_regcomp = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBREXP 1 _ACEOF LIBS="-lREXP $LIBS" fi echo "$as_me:$LINENO: checking whether -O2 interferes with fstream in C++" >&5 echo $ECHO_N "checking whether -O2 interferes with fstream in C++... $ECHO_C" >&6 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #if HAVE_FSTREAM #include #elif HAVE_FSTREAM_H #include #endif using namespace std; int main () { ifstream *i = new ifstream("foo"); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS=`echo $CXXFLAGS | sed "s/-O2//"` echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { char buf[32]; gethostname(buf, 32); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<_ACEOF #define REQUIRES_GETHOSTNAME_DECLARATION 0 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<_ACEOF #define REQUIRES_GETHOSTNAME_DECLARATION 1 _ACEOF fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { char buf[32]; bzero(buf, (size_t)32); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >>confdefs.h <<_ACEOF #define REQUIRES_BZERO_DECLARATION 0 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >>confdefs.h <<_ACEOF #define REQUIRES_BZERO_DECLARATION 1 _ACEOF fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext echo "$as_me:$LINENO: checking whether header file math.h contains symbol M_PI" >&5 echo $ECHO_N "checking whether header file math.h contains symbol M_PI... $ECHO_C" >&6 ac_ext=C found="no" for i in math.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$i> #ifdef M_PI yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done if test $found = "no" ; then for i in math.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "M_PI" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done fi if test $found = "yes" ; then cat >>confdefs.h <<_ACEOF #define HAS_M_PI 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 fi echo "$as_me:$LINENO: checking whether header file math.h contains symbol M_SQRT2" >&5 echo $ECHO_N "checking whether header file math.h contains symbol M_SQRT2... $ECHO_C" >&6 ac_ext=C found="no" for i in math.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$i> #ifdef M_SQRT2 yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done if test $found = "no" ; then for i in math.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "M_SQRT2" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done fi if test $found = "yes" ; then cat >>confdefs.h <<_ACEOF #define HAS_M_SQRT2 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 fi echo "$as_me:$LINENO: checking whether header file sys/stat.h contains symbol S_ISDIR" >&5 echo $ECHO_N "checking whether header file sys/stat.h contains symbol S_ISDIR... $ECHO_C" >&6 ac_ext=C found="no" for i in sys/stat.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$i> #ifdef S_ISDIR yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done if test $found = "no" ; then for i in sys/stat.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "S_ISDIR" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done fi if test $found = "yes" ; then cat >>confdefs.h <<_ACEOF #define HAS_S_ISDIR 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 fi echo "$as_me:$LINENO: checking whether header file sys/mode.h contains symbol S_ISDIR" >&5 echo $ECHO_N "checking whether header file sys/mode.h contains symbol S_ISDIR... $ECHO_C" >&6 ac_ext=C found="no" for i in sys/mode.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$i> #ifdef S_ISDIR yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done if test $found = "no" ; then for i in sys/mode.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "S_ISDIR" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done fi if test $found = "yes" ; then cat >>confdefs.h <<_ACEOF #define HAS_S_ISDIR 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 fi echo "$as_me:$LINENO: checking whether header file sys/sysmp.h contains symbol sysmp" >&5 echo $ECHO_N "checking whether header file sys/sysmp.h contains symbol sysmp... $ECHO_C" >&6 ac_ext=C found="no" for i in sys/sysmp.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$i> #ifdef sysmp yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done if test $found = "no" ; then for i in sys/sysmp.h do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sysmp" >/dev/null 2>&1; then found="yes" fi rm -f conftest* done fi if test $found = "yes" ; then cat >>confdefs.h <<_ACEOF #define HAS_sysmp 1 _ACEOF echo "$as_me:$LINENO: result: \"yes\"" >&5 echo "${ECHO_T}\"yes\"" >&6 else echo "$as_me:$LINENO: result: \"no\"" >&5 echo "${ECHO_T}\"no\"" >&6 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 working memcmp" >&5 echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6 if test "${ac_cv_func_memcmp_working+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_memcmp_working=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { /* Some versions of memcmp are not 8-bit clean. */ char c0 = 0x40, c1 = 0x80, c2 = 0x81; if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0) exit (1); /* The Next x86 OpenStep bug shows up only when comparing 16 bytes or more and with at least one buffer not starting on a 4-byte boundary. William Lewis provided this test program. */ { char foo[21]; char bar[21]; int i; for (i = 0; i < 4; i++) { char *a = foo + i; char *b = bar + i; strcpy (a, "--------01111111"); strcpy (b, "--------10000000"); if (memcmp (a, b, 16) >= 0) exit (1); } exit (0); } ; return 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 ac_cv_func_memcmp_working=yes 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_func_memcmp_working=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6 test $ac_cv_func_memcmp_working = no && case $LIBOBJS in "memcmp.$ac_objext" | \ *" memcmp.$ac_objext" | \ "memcmp.$ac_objext "* | \ *" memcmp.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" ;; esac echo "$as_me:$LINENO: checking for function prototypes" >&5 echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6 if test "$ac_cv_prog_cc_stdc" != no; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define PROTOTYPES 1 _ACEOF cat >>confdefs.h <<\_ACEOF #define __PROTOTYPES 1 _ACEOF else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi echo "$as_me:$LINENO: checking whether setvbuf arguments are reversed" >&5 echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_func_setvbuf_reversed=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include # if PROTOTYPES int (setvbuf) (FILE *, int, char *, size_t); # endif int main () { char buf; return setvbuf (stdout, _IOLBF, &buf, 1); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include # if PROTOTYPES int (setvbuf) (FILE *, int, char *, size_t); # endif int main () { char buf; return setvbuf (stdout, &buf, _IOLBF, 1); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 # It compiles and links either way, so it must not be declared # with a prototype and most likely this is a K&R C compiler. # Try running it. if test "$cross_compiling" = yes; then : # Assume setvbuf is not reversed when cross-compiling. else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { /* This call has the arguments reversed. A reversed system may check and see that the address of buf is not _IOLBF, _IONBF, or _IOFBF, and return nonzero. */ char buf; if (setvbuf (stdout, _IOLBF, &buf, 1) != 0) exit (1); putchar ('\r'); exit (0); /* Non-reversed systems SEGV here. */ ; return 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 ac_cv_func_setvbuf_reversed=yes 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 ) rm -f core *.core fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi ac_cv_func_setvbuf_reversed=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_setvbuf_reversed" >&5 echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6 if test $ac_cv_func_setvbuf_reversed = yes; then cat >>confdefs.h <<\_ACEOF #define SETVBUF_REVERSED 1 _ACEOF fi echo "$as_me:$LINENO: checking return type of signal handlers" >&5 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6 if test "${ac_cv_type_signal+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #ifdef signal # undef signal #endif #ifdef __cplusplus extern "C" void (*signal (int, void (*)(int)))(int); #else void (*signal ()) (); #endif int main () { int i; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_signal=void else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_signal=int fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 echo "${ECHO_T}$ac_cv_type_signal" >&6 cat >>confdefs.h <<_ACEOF #define RETSIGTYPE $ac_cv_type_signal _ACEOF for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then 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 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac 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 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi 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 for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* 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_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done if test "x$ac_cv_func_fork" = xyes; then echo "$as_me:$LINENO: checking for working fork" >&5 echo $ECHO_N "checking for working fork... $ECHO_C" >&6 if test "${ac_cv_func_fork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_fork_works=cross else cat >conftest.$ac_ext <<_ACEOF /* By Ruediger Kuhlmann. */ #include #if HAVE_UNISTD_H # include #endif /* Some systems only have a dummy stub for fork() */ int main () { if (fork() < 0) exit (1); 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 ac_cv_func_fork_works=yes 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_func_fork_works=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 else ac_cv_func_fork_works=$ac_cv_func_fork fi if test "x$ac_cv_func_fork_works" = xcross; then case $host in *-*-amigaos* | *-*-msdosdjgpp*) # Override, as these systems have only a dummy fork() stub ac_cv_func_fork_works=no ;; *) ac_cv_func_fork_works=yes ;; esac { echo "$as_me:$LINENO: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then echo "$as_me:$LINENO: checking for working vfork" >&5 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 if test "${ac_cv_func_vfork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Thanks to Paul Eggert for this test. */ #include #include #include #include #include #if HAVE_UNISTD_H # include #endif #if HAVE_VFORK_H # include #endif /* On some sparc systems, changes by the child to local and incoming argument registers are propagated back to the parent. The compiler is told about this with #include , but some compilers (e.g. gcc -O) don't grok . Test for this by using a static variable whose address is put into a register that is clobbered by the vfork. */ static void #ifdef __cplusplus sparc_address_test (int arg) # else sparc_address_test (arg) int arg; #endif { static pid_t child; if (!child) { child = vfork (); if (child < 0) { perror ("vfork"); _exit(2); } if (!child) { arg = getpid(); write(-1, "", 0); _exit (arg); } } } int main () { pid_t parent = getpid (); pid_t child; sparc_address_test (0); child = vfork (); if (child == 0) { /* Here is another test for sparc vfork register problems. This test uses lots of local variables, at least as many local variables as main has allocated so far including compiler temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should reuse the register of parent for one of the local variables, since it will think that parent can't possibly be used any more in this routine. Assigning to the local variable will thus munge parent in the parent process. */ pid_t p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); /* Convince the compiler that p..p7 are live; otherwise, it might use the same hardware register for all 8 local variables. */ if (p != p1 || p != p2 || p != p3 || p != p4 || p != p5 || p != p6 || p != p7) _exit(1); /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent from child file descriptors. If the child closes a descriptor before it execs or exits, this munges the parent's descriptor as well. Test for this by closing stdout in the child. */ _exit(close(fileno(stdout)) != 0); } else { int status; struct stat st; while (wait(&status) != child) ; exit( /* Was there some problem with vforking? */ child < 0 /* Did the child fail? (This shouldn't happen.) */ || status /* Did the vfork/compiler bug occur? */ || parent != getpid() /* Did the file descriptor bug occur? */ || fstat(fileno(stdout), &st) != 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 ac_cv_func_vfork_works=yes 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_func_vfork_works=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_vfork_works" >&5 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=$ac_cv_func_vfork { echo "$as_me:$LINENO: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} fi if test "x$ac_cv_func_vfork_works" = xyes; then cat >>confdefs.h <<\_ACEOF #define HAVE_WORKING_VFORK 1 _ACEOF else cat >>confdefs.h <<\_ACEOF #define vfork fork _ACEOF fi if test "x$ac_cv_func_fork_works" = xyes; then cat >>confdefs.h <<\_ACEOF #define HAVE_WORKING_FORK 1 _ACEOF fi for ac_func in vprintf do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* 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_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF echo "$as_me:$LINENO: checking for _doprnt" >&5 echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6 if test "${ac_cv_func__doprnt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define _doprnt to an innocuous variant, in case declares _doprnt. For example, HP-UX 11i declares gettimeofday. */ #define _doprnt innocuous__doprnt /* System header to define __stub macros and hopefully few prototypes, which can conflict with char _doprnt (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef _doprnt /* 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 _doprnt (); /* 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__doprnt) || defined (__stub____doprnt) choke me #else char (*f) () = _doprnt; #endif #ifdef __cplusplus } #endif int main () { return f != _doprnt; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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__doprnt=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func__doprnt=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5 echo "${ECHO_T}$ac_cv_func__doprnt" >&6 if test $ac_cv_func__doprnt = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_DOPRNT 1 _ACEOF fi fi done echo "$as_me:$LINENO: checking for uint" >&5 echo $ECHO_N "checking for uint... $ECHO_C" >&6 if test "${ac_cv_type_uint+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint=yes else ac_cv_type_uint=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint=yes else ac_cv_type_uint=no fi rm -f conftest* fi if test $ac_cv_type_uint = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { uint foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_uint=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_uint=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_uint" >&5 echo "${ECHO_T}$ac_cv_type_uint" >&6 if test $ac_cv_type_uint = no; then cat >>confdefs.h <<\_ACEOF #define uint unsigned int _ACEOF fi echo "$as_me:$LINENO: checking for byte" >&5 echo $ECHO_N "checking for byte... $ECHO_C" >&6 if test "${ac_cv_type_byte+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]byte[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_byte=yes else ac_cv_type_byte=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]byte[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_byte=yes else ac_cv_type_byte=no fi rm -f conftest* fi if test $ac_cv_type_byte = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { byte foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_byte=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_byte=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_byte" >&5 echo "${ECHO_T}$ac_cv_type_byte" >&6 if test $ac_cv_type_byte = no; then cat >>confdefs.h <<\_ACEOF #define byte signed char _ACEOF fi echo "$as_me:$LINENO: checking for ubyte" >&5 echo $ECHO_N "checking for ubyte... $ECHO_C" >&6 if test "${ac_cv_type_ubyte+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ubyte[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ubyte=yes else ac_cv_type_ubyte=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ubyte[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ubyte=yes else ac_cv_type_ubyte=no fi rm -f conftest* fi if test $ac_cv_type_ubyte = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ubyte foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_ubyte=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_ubyte=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_ubyte" >&5 echo "${ECHO_T}$ac_cv_type_ubyte" >&6 if test $ac_cv_type_ubyte = no; then cat >>confdefs.h <<\_ACEOF #define ubyte unsigned char _ACEOF fi echo "$as_me:$LINENO: checking for short" >&5 echo $ECHO_N "checking for short... $ECHO_C" >&6 if test "${ac_cv_type_short+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]short[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_short=yes else ac_cv_type_short=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]short[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_short=yes else ac_cv_type_short=no fi rm -f conftest* fi if test $ac_cv_type_short = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { short foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_short=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_short=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 echo "${ECHO_T}$ac_cv_type_short" >&6 if test $ac_cv_type_short = no; then cat >>confdefs.h <<\_ACEOF #define short short _ACEOF fi echo "$as_me:$LINENO: checking for ushort" >&5 echo $ECHO_N "checking for ushort... $ECHO_C" >&6 if test "${ac_cv_type_ushort+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ushort[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ushort=yes else ac_cv_type_ushort=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ushort[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ushort=yes else ac_cv_type_ushort=no fi rm -f conftest* fi if test $ac_cv_type_ushort = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ushort foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_ushort=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_ushort=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_ushort" >&5 echo "${ECHO_T}$ac_cv_type_ushort" >&6 if test $ac_cv_type_ushort = no; then cat >>confdefs.h <<\_ACEOF #define ushort unsigned short _ACEOF fi echo "$as_me:$LINENO: checking for ulong" >&5 echo $ECHO_N "checking for ulong... $ECHO_C" >&6 if test "${ac_cv_type_ulong+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ulong[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ulong=yes else ac_cv_type_ulong=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]ulong[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_ulong=yes else ac_cv_type_ulong=no fi rm -f conftest* fi if test $ac_cv_type_ulong = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ulong foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_ulong=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_ulong=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_ulong" >&5 echo "${ECHO_T}$ac_cv_type_ulong" >&6 if test $ac_cv_type_ulong = no; then cat >>confdefs.h <<\_ACEOF #define ulong unsigned long _ACEOF fi echo "$as_me:$LINENO: checking for int8" >&5 echo $ECHO_N "checking for int8... $ECHO_C" >&6 if test "${ac_cv_type_int8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int8[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int8=yes else ac_cv_type_int8=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int8[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int8=yes else ac_cv_type_int8=no fi rm -f conftest* fi if test $ac_cv_type_int8 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int8 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_int8=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_int8=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_int8" >&5 echo "${ECHO_T}$ac_cv_type_int8" >&6 if test $ac_cv_type_int8 = no; then cat >>confdefs.h <<\_ACEOF #define int8 char _ACEOF fi echo "$as_me:$LINENO: checking for uint8" >&5 echo $ECHO_N "checking for uint8... $ECHO_C" >&6 if test "${ac_cv_type_uint8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint8[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint8=yes else ac_cv_type_uint8=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint8[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint8=yes else ac_cv_type_uint8=no fi rm -f conftest* fi if test $ac_cv_type_uint8 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { uint8 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_uint8=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_uint8=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_uint8" >&5 echo "${ECHO_T}$ac_cv_type_uint8" >&6 if test $ac_cv_type_uint8 = no; then cat >>confdefs.h <<\_ACEOF #define uint8 unsigned char _ACEOF fi echo "$as_me:$LINENO: checking for int16" >&5 echo $ECHO_N "checking for int16... $ECHO_C" >&6 if test "${ac_cv_type_int16+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int16[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int16=yes else ac_cv_type_int16=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int16[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int16=yes else ac_cv_type_int16=no fi rm -f conftest* fi if test $ac_cv_type_int16 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int16 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_int16=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_int16=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_int16" >&5 echo "${ECHO_T}$ac_cv_type_int16" >&6 if test $ac_cv_type_int16 = no; then cat >>confdefs.h <<\_ACEOF #define int16 short _ACEOF fi echo "$as_me:$LINENO: checking for uint16" >&5 echo $ECHO_N "checking for uint16... $ECHO_C" >&6 if test "${ac_cv_type_uint16+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint16[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint16=yes else ac_cv_type_uint16=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint16[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint16=yes else ac_cv_type_uint16=no fi rm -f conftest* fi if test $ac_cv_type_uint16 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { uint16 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_uint16=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_uint16=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_uint16" >&5 echo "${ECHO_T}$ac_cv_type_uint16" >&6 if test $ac_cv_type_uint16 = no; then cat >>confdefs.h <<\_ACEOF #define uint16 unsigned short _ACEOF fi echo "$as_me:$LINENO: checking for int32" >&5 echo $ECHO_N "checking for int32... $ECHO_C" >&6 if test "${ac_cv_type_int32+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int32=yes else ac_cv_type_int32=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int32=yes else ac_cv_type_int32=no fi rm -f conftest* fi if test $ac_cv_type_int32 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int32 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_int32=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_int32=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_int32" >&5 echo "${ECHO_T}$ac_cv_type_int32" >&6 if test $ac_cv_type_int32 = no; then cat >>confdefs.h <<\_ACEOF #define int32 int _ACEOF fi echo "$as_me:$LINENO: checking for uint32" >&5 echo $ECHO_N "checking for uint32... $ECHO_C" >&6 if test "${ac_cv_type_uint32+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint32=yes else ac_cv_type_uint32=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint32=yes else ac_cv_type_uint32=no fi rm -f conftest* fi if test $ac_cv_type_uint32 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { uint32 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_uint32=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_uint32=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_uint32" >&5 echo "${ECHO_T}$ac_cv_type_uint32" >&6 if test $ac_cv_type_uint32 = no; then cat >>confdefs.h <<\_ACEOF #define uint32 unsigned int _ACEOF fi echo "$as_me:$LINENO: checking for int64" >&5 echo $ECHO_N "checking for int64... $ECHO_C" >&6 if test "${ac_cv_type_int64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int64=yes else ac_cv_type_int64=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]int64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_int64=yes else ac_cv_type_int64=no fi rm -f conftest* fi if test $ac_cv_type_int64 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { int64 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_int64=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_int64=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_int64" >&5 echo "${ECHO_T}$ac_cv_type_int64" >&6 if test $ac_cv_type_int64 = no; then cat >>confdefs.h <<\_ACEOF #define int64 long _ACEOF fi echo "$as_me:$LINENO: checking for float64" >&5 echo $ECHO_N "checking for float64... $ECHO_C" >&6 if test "${ac_cv_type_float64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]float64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_float64=yes else ac_cv_type_float64=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]float64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_float64=yes else ac_cv_type_float64=no fi rm -f conftest* fi if test $ac_cv_type_float64 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { float64 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_float64=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_float64=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_float64" >&5 echo "${ECHO_T}$ac_cv_type_float64" >&6 if test $ac_cv_type_float64 = no; then cat >>confdefs.h <<\_ACEOF #define float64 double _ACEOF fi echo "$as_me:$LINENO: checking for uint64" >&5 echo $ECHO_N "checking for uint64... $ECHO_C" >&6 if test "${ac_cv_type_uint64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint64=yes else ac_cv_type_uint64=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]uint64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_uint64=yes else ac_cv_type_uint64=no fi rm -f conftest* fi if test $ac_cv_type_uint64 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { uint64 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_uint64=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_uint64=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_uint64" >&5 echo "${ECHO_T}$ac_cv_type_uint64" >&6 if test $ac_cv_type_uint64 = no; then cat >>confdefs.h <<\_ACEOF #define uint64 unsigned long _ACEOF fi if test "$ARCH" != "intelnt" ; then echo "$as_me:$LINENO: checking for __int64" >&5 echo $ECHO_N "checking for __int64... $ECHO_C" >&6 if test "${ac_cv_type___int64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]__int64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type___int64=yes else ac_cv_type___int64=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]__int64[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type___int64=yes else ac_cv_type___int64=no fi rm -f conftest* fi if test $ac_cv_type___int64 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { __int64 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type___int64=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type___int64=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type___int64" >&5 echo "${ECHO_T}$ac_cv_type___int64" >&6 if test $ac_cv_type___int64 = no; then cat >>confdefs.h <<\_ACEOF #define __int64 long long _ACEOF fi echo "$as_me:$LINENO: checking for float32" >&5 echo $ECHO_N "checking for float32... $ECHO_C" >&6 if test "${ac_cv_type_float32+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_header_windows_h" = "yes" ; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]float32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_float32=yes else ac_cv_type_float32=no fi rm -f conftest* else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if STDC_HEADERS #include #include #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "[^a-zA-Z_0-9]float32[^a-zA-Z_0-9]" >/dev/null 2>&1; then ac_cv_type_float32=yes else ac_cv_type_float32=no fi rm -f conftest* fi if test $ac_cv_type_float32 = no; then cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { float32 foo; ; return 0; } _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_type_float32=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_float32=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_type_float32" >&5 echo "${ECHO_T}$ac_cv_type_float32" >&6 if test $ac_cv_type_float32 = no; then cat >>confdefs.h <<\_ACEOF #define float32 float _ACEOF fi 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 /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 # It does; now see whether it defined to BIG_ENDIAN or not. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_c_bigendian=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_c_bigendian=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext 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 /* 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>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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { /* Are we little or big endian? From Harbison&Steele. */ union { long l; char c[sizeof (long)]; } u; 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 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 fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi rm -f conftest.err 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 #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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu echo "$as_me:$LINENO: checking for signal argument list in C++" >&5 echo $ECHO_N "checking for signal argument list in C++... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include extern "C" void foo(int bar, ...){} int main () { signal(SIGBUS, foo); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 echo "$as_me:$LINENO: result: alternate" >&5 echo "${ECHO_T}alternate" >&6 cat >>confdefs.h <<_ACEOF #define ALTERNATE_CXX_SIGNAL 1 _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: standard" >&5 echo "${ECHO_T}standard" >&6 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext 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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu select_argtype= cat > selectHdrs.h << EOF EOF if test "${ac_cv_header_windows_h+set}" = set; then echo "$as_me:$LINENO: checking for windows.h" >&5 echo $ECHO_N "checking for windows.h... $ECHO_C" >&6 if test "${ac_cv_header_windows_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_windows_h" >&5 echo "${ECHO_T}$ac_cv_header_windows_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking windows.h usability" >&5 echo $ECHO_N "checking windows.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 windows.h presence" >&5 echo $ECHO_N "checking windows.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: windows.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: windows.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: windows.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: windows.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: windows.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: windows.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: windows.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: windows.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for windows.h" >&5 echo $ECHO_N "checking for windows.h... $ECHO_C" >&6 if test "${ac_cv_header_windows_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_windows_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_windows_h" >&5 echo "${ECHO_T}$ac_cv_header_windows_h" >&6 fi if test $ac_cv_header_windows_h = yes; then echo "#include " >> selectHdrs.h fi if test "${ac_cv_header_unistd_h+set}" = set; then echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking unistd.h usability" >&5 echo $ECHO_N "checking unistd.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 unistd.h presence" >&5 echo $ECHO_N "checking unistd.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: unistd.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: unistd.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: unistd.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: unistd.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: unistd.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_unistd_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 fi if test $ac_cv_header_unistd_h = yes; then echo "#include " >> selectHdrs.h fi if test "${ac_cv_header_sys_types_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/types.h usability" >&5 echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/types.h presence" >&5 echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/types.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/types.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/types.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/types.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/types.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_types_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 fi if test $ac_cv_header_sys_types_h = yes; then echo "#include " >> selectHdrs.h fi if test "${ac_cv_header_select_h+set}" = set; then echo "$as_me:$LINENO: checking for select.h" >&5 echo $ECHO_N "checking for select.h... $ECHO_C" >&6 if test "${ac_cv_header_select_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_select_h" >&5 echo "${ECHO_T}$ac_cv_header_select_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking select.h usability" >&5 echo $ECHO_N "checking select.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 select.h presence" >&5 echo $ECHO_N "checking select.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: select.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: select.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: select.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: select.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: select.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: select.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: select.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: select.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: select.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: select.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: select.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for select.h" >&5 echo $ECHO_N "checking for select.h... $ECHO_C" >&6 if test "${ac_cv_header_select_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_select_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_select_h" >&5 echo "${ECHO_T}$ac_cv_header_select_h" >&6 fi if test $ac_cv_header_select_h = yes; then echo "#include " >> selectHdrs.h fi if test "${ac_cv_header_sys_select_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/select.h" >&5 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_select_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/select.h usability" >&5 echo $ECHO_N "checking sys/select.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/select.h presence" >&5 echo $ECHO_N "checking sys/select.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_cxx_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/select.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/select.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/select.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/select.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/select.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/select.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/select.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/select.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/select.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/select.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/select.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/select.h" >&5 echo $ECHO_N "checking for sys/select.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_select_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_select_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_select_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_select_h" >&6 fi if test $ac_cv_header_sys_select_h = yes; then echo "#include " >> selectHdrs.h 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 for try in sellist fd_set int void do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include "selectHdrs.h" int main () { int i = select(1, ($try *)NULL, ($try *)NULL, ($try *)NULL, (struct timeval *)NULL) ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 select_argtype=$try cat >>confdefs.h <<_ACEOF #define SELECT_ARG_TYPE $try _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test ! -z "$select_argtype" ; then break fi done echo the second third and fourth args to select are pointers to $select_argtype rm selectHdrs.h 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 socket_argtype= cat > socketHdrs.h << EOF EOF if test "${ac_cv_header_unistd_h+set}" = set; then echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking unistd.h usability" >&5 echo $ECHO_N "checking unistd.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 unistd.h presence" >&5 echo $ECHO_N "checking unistd.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: unistd.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: unistd.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: unistd.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: unistd.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: unistd.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: unistd.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: unistd.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: unistd.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for unistd.h" >&5 echo $ECHO_N "checking for unistd.h... $ECHO_C" >&6 if test "${ac_cv_header_unistd_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_unistd_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_unistd_h" >&5 echo "${ECHO_T}$ac_cv_header_unistd_h" >&6 fi if test $ac_cv_header_unistd_h = yes; then echo "#include " >> socketHdrs.h fi if test "${ac_cv_header_sys_types_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/types.h usability" >&5 echo $ECHO_N "checking sys/types.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/types.h presence" >&5 echo $ECHO_N "checking sys/types.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/types.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/types.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/types.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/types.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/types.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/types.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/types.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/types.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/types.h" >&5 echo $ECHO_N "checking for sys/types.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_types_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_types_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_types_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_types_h" >&6 fi if test $ac_cv_header_sys_types_h = yes; then echo "#include " >> socketHdrs.h fi if test "${ac_cv_header_sys_socket_h+set}" = set; then echo "$as_me:$LINENO: checking for sys/socket.h" >&5 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_socket_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking sys/socket.h usability" >&5 echo $ECHO_N "checking sys/socket.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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/socket.h presence" >&5 echo $ECHO_N "checking sys/socket.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: sys/socket.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: sys/socket.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: sys/socket.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: sys/socket.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: sys/socket.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: sys/socket.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: sys/socket.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: sys/socket.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: sys/socket.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: sys/socket.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for sys/socket.h" >&5 echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6 if test "${ac_cv_header_sys_socket_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_sys_socket_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_sys_socket_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_socket_h" >&6 fi if test $ac_cv_header_sys_socket_h = yes; then echo "#include " >> socketHdrs.h fi if test "$ARCH" = "intelnt" ; then if test "${ac_cv_header_winsock2_h+set}" = set; then echo "$as_me:$LINENO: checking for winsock2.h" >&5 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 if test "${ac_cv_header_winsock2_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&5 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking winsock2.h usability" >&5 echo $ECHO_N "checking winsock2.h usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include _ACEOF rm -f conftest.$ac_objext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 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); } && { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err 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 winsock2.h presence" >&5 echo $ECHO_N "checking winsock2.h presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _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 ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes 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:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: winsock2.h: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: winsock2.h: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: winsock2.h: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: winsock2.h: present but cannot be compiled" >&5 echo "$as_me: WARNING: winsock2.h: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: winsock2.h: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: see the Autoconf documentation" >&5 echo "$as_me: WARNING: winsock2.h: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: winsock2.h: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: winsock2.h: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: winsock2.h: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: winsock2.h: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ----------------------------- ## ## Report this to the dx lists. ## ## ----------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for winsock2.h" >&5 echo $ECHO_N "checking for winsock2.h... $ECHO_C" >&6 if test "${ac_cv_header_winsock2_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_header_winsock2_h=$ac_header_preproc fi echo "$as_me:$LINENO: result: $ac_cv_header_winsock2_h" >&5 echo "${ECHO_T}$ac_cv_header_winsock2_h" >&6 fi if test $ac_cv_header_winsock2_h = yes; then echo "#include " >> socketHdrs.h fi 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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu for try in socklen_t size_t int "unsigned int" do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include "socketHdrs.h" int main () { $try *foo = NULL; int i = getsockname(1, (struct sockaddr *)NULL, foo); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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 socket_argtype=$try cat >>confdefs.h <<_ACEOF #define SOCK_LENGTH_TYPE $try _ACEOF else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test ! -z "$socket_argtype" ; then break fi done echo the third arg to getsockname is pointer to $socket_argtype rm socketHdrs.h 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 whether -lstdc++ is needed" >&5 echo $ECHO_N "checking whether -lstdc++ is needed... $ECHO_C" >&6 tmpLIBS=$LIBS if test "${ac_cv_requires_lstdcxx+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef HAVE_IOSTREAM #include #elif HAVE_IOSTREAM_H #include #endif int main () { std::cout << "foo"; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_requires_lstdcxx="no" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS="$LIBS -lstdc++" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef HAVE_IOSTREAM #include #elif HAVE_IOSTREAM_H #include #endif int main () { std::cout << "foo"; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 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); } && { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' { (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); }; } && { 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_requires_lstdcxx="yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: result: failed even with lstdc++" >&5 echo "${ECHO_T}failed even with lstdc++" >&6 exit 1 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext 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 fi echo "$as_me:$LINENO: result: ${ac_cv_requires_lstdcxx}" >&5 echo "${ECHO_T}${ac_cv_requires_lstdcxx}" >&6 DX_GL_LINK_LIBS=" -lGL " LOCALMAKE="include local.mk" if test "$with_ddx" = 'yes' ; then cat >>confdefs.h <<\_ACEOF #define DDX 1 _ACEOF fi if test "$with_smp_linux" = 'yes' ; then cat >>confdefs.h <<\_ACEOF #define ENABLE_SMP_LINUX 1 _ACEOF else cat >>confdefs.h <<\_ACEOF #define ENABLE_SMP_LINUX 0 _ACEOF fi ac_config_files="$ac_config_files Makefile bin/Makefile bin/dx bin/mdf2c doc/Makefile fonts/Makefile help/Makefile html/Makefile html/images/Makefile html/pages/Makefile include/Makefile include/dx/Makefile lib/Makefile man/Makefile man/catl/Makefile man/manl/Makefile src/Makefile src/exec/Makefile src/exec/dpexec/Makefile src/exec/dpexec/local.mk src/exec/dxexec/Makefile src/exec/dxmods/Makefile src/exec/dxmods/local.mk src/exec/hwrender/Makefile src/exec/hwrender/gl/Makefile src/exec/hwrender/opengl/Makefile src/exec/hwrender/starbase/Makefile src/exec/hwrender/xgl/Makefile src/exec/libdx/Makefile src/exec/libdx/local.mk src/misc/Makefile src/misc/arch.mak src/uipp/Makefile src/uipp/base/Makefile src/uipp/dxl/Makefile src/uipp/dxui/Makefile src/uipp/dxuilib/Makefile src/uipp/dxuilib/local.mk src/uipp/java/Makefile src/uipp/java/dx/Makefile src/uipp/java/dx/protocol/Makefile src/uipp/java/dx/protocol/server/Makefile src/uipp/java/dx/runtime/Makefile src/uipp/java/layout/Makefile src/uipp/java/server/Makefile src/uipp/java/server/macros/Makefile src/uipp/java/server/dxserver.paths src/uipp/java/server/startserver src/uipp/java/dx/client/Makefile src/uipp/java/dx/net/Makefile src/uipp/mb/Makefile src/uipp/prompter/Makefile src/uipp/startup/Makefile src/uipp/tutor/Makefile src/uipp/ui/Makefile src/uipp/widgets/Makefile windows/Makefile" cat >confcache <<\_ACEOF # 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. # # 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 # 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 if test -w $cache_file; then test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" cat confcache >$cache_file else echo "not updating unwritable cache $cache_file" fi fi rm -f confcache 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). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=/{ s/:*\$(srcdir):*/:/; s/:*\${srcdir}:*/:/; s/:*@srcdir@:*/:/; s/^\([^=]*=[ ]*\):*/\1/; s/:*$//; s/^[^=]*=[ ]*$//; }' fi DEFS=-DHAVE_CONFIG_H 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 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${WITH_BUILDLIBDX_TRUE}" && test -z "${WITH_BUILDLIBDX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"WITH_BUILDLIBDX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"WITH_BUILDLIBDX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${WITH_INSTALLHTML_TRUE}" && test -z "${WITH_INSTALLHTML_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"WITH_INSTALLHTML\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"WITH_INSTALLHTML\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${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. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # 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 DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/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 -z "`(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:$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' 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 test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval 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="eval 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 dx $as_me 4.4.4, which was generated by GNU Autoconf 2.59. 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 --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ dx config.status 4.4.4 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2003 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" fi _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 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS section. # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF for ac_config_target in $ac_config_targets do case "$ac_config_target" in # Handling of arguments. "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "bin/Makefile" ) CONFIG_FILES="$CONFIG_FILES bin/Makefile" ;; "bin/dx" ) CONFIG_FILES="$CONFIG_FILES bin/dx" ;; "bin/mdf2c" ) CONFIG_FILES="$CONFIG_FILES bin/mdf2c" ;; "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "fonts/Makefile" ) CONFIG_FILES="$CONFIG_FILES fonts/Makefile" ;; "help/Makefile" ) CONFIG_FILES="$CONFIG_FILES help/Makefile" ;; "html/Makefile" ) CONFIG_FILES="$CONFIG_FILES html/Makefile" ;; "html/images/Makefile" ) CONFIG_FILES="$CONFIG_FILES html/images/Makefile" ;; "html/pages/Makefile" ) CONFIG_FILES="$CONFIG_FILES html/pages/Makefile" ;; "include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; "include/dx/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/dx/Makefile" ;; "lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; "man/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; "man/catl/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/catl/Makefile" ;; "man/manl/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/manl/Makefile" ;; "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/exec/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/Makefile" ;; "src/exec/dpexec/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/dpexec/Makefile" ;; "src/exec/dpexec/local.mk" ) CONFIG_FILES="$CONFIG_FILES src/exec/dpexec/local.mk" ;; "src/exec/dxexec/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/dxexec/Makefile" ;; "src/exec/dxmods/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/dxmods/Makefile" ;; "src/exec/dxmods/local.mk" ) CONFIG_FILES="$CONFIG_FILES src/exec/dxmods/local.mk" ;; "src/exec/hwrender/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/hwrender/Makefile" ;; "src/exec/hwrender/gl/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/hwrender/gl/Makefile" ;; "src/exec/hwrender/opengl/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/hwrender/opengl/Makefile" ;; "src/exec/hwrender/starbase/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/hwrender/starbase/Makefile" ;; "src/exec/hwrender/xgl/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/hwrender/xgl/Makefile" ;; "src/exec/libdx/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/exec/libdx/Makefile" ;; "src/exec/libdx/local.mk" ) CONFIG_FILES="$CONFIG_FILES src/exec/libdx/local.mk" ;; "src/misc/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/misc/Makefile" ;; "src/misc/arch.mak" ) CONFIG_FILES="$CONFIG_FILES src/misc/arch.mak" ;; "src/uipp/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/Makefile" ;; "src/uipp/base/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/base/Makefile" ;; "src/uipp/dxl/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/dxl/Makefile" ;; "src/uipp/dxui/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/dxui/Makefile" ;; "src/uipp/dxuilib/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/dxuilib/Makefile" ;; "src/uipp/dxuilib/local.mk" ) CONFIG_FILES="$CONFIG_FILES src/uipp/dxuilib/local.mk" ;; "src/uipp/java/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/Makefile" ;; "src/uipp/java/dx/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/Makefile" ;; "src/uipp/java/dx/protocol/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/protocol/Makefile" ;; "src/uipp/java/dx/protocol/server/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/protocol/server/Makefile" ;; "src/uipp/java/dx/runtime/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/runtime/Makefile" ;; "src/uipp/java/layout/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/layout/Makefile" ;; "src/uipp/java/server/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/server/Makefile" ;; "src/uipp/java/server/macros/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/server/macros/Makefile" ;; "src/uipp/java/server/dxserver.paths" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/server/dxserver.paths" ;; "src/uipp/java/server/startserver" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/server/startserver" ;; "src/uipp/java/dx/client/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/client/Makefile" ;; "src/uipp/java/dx/net/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/java/dx/net/Makefile" ;; "src/uipp/mb/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/mb/Makefile" ;; "src/uipp/prompter/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/prompter/Makefile" ;; "src/uipp/startup/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/startup/Makefile" ;; "src/uipp/tutor/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/tutor/Makefile" ;; "src/uipp/ui/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/ui/Makefile" ;; "src/uipp/widgets/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/uipp/widgets/Makefile" ;; "windows/Makefile" ) CONFIG_FILES="$CONFIG_FILES windows/Makefile" ;; "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "include/dxconfig.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/dxconfig.h" ;; *) { { 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; }; };; 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 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # 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,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t s,@INSTALL_DATA@,$INSTALL_DATA,;t t s,@CYGPATH_W@,$CYGPATH_W,;t t s,@PACKAGE@,$PACKAGE,;t t s,@VERSION@,$VERSION,;t t s,@ACLOCAL@,$ACLOCAL,;t t s,@AUTOCONF@,$AUTOCONF,;t t s,@AUTOMAKE@,$AUTOMAKE,;t t s,@AUTOHEADER@,$AUTOHEADER,;t t s,@MAKEINFO@,$MAKEINFO,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t s,@mkdir_p@,$mkdir_p,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;t t s,@AMTAR@,$AMTAR,;t t s,@am__tar@,$am__tar,;t t s,@am__untar@,$am__untar,;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,@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,@DEPDIR@,$DEPDIR,;t t s,@am__include@,$am__include,;t t s,@am__quote@,$am__quote,;t t s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t s,@CCDEPMODE@,$CCDEPMODE,;t t s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t s,@EGREP@,$EGREP,;t t s,@LN_S@,$LN_S,;t t s,@ECHO@,$ECHO,;t t s,@AR@,$AR,;t t s,@ac_ct_AR@,$ac_ct_AR,;t t s,@RANLIB@,$RANLIB,;t t s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t s,@CPP@,$CPP,;t t s,@CXX@,$CXX,;t t s,@CXXFLAGS@,$CXXFLAGS,;t t s,@ac_ct_CXX@,$ac_ct_CXX,;t t s,@CXXDEPMODE@,$CXXDEPMODE,;t t s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t s,@CXXCPP@,$CXXCPP,;t t s,@F77@,$F77,;t t s,@FFLAGS@,$FFLAGS,;t t s,@ac_ct_F77@,$ac_ct_F77,;t t s,@LIBTOOL@,$LIBTOOL,;t t s,@MAJOR_VERSION@,$MAJOR_VERSION,;t t s,@MINOR_VERSION@,$MINOR_VERSION,;t t s,@MICRO_VERSION@,$MICRO_VERSION,;t t s,@YACC@,$YACC,;t t s,@ARCH@,$ARCH,;t t s,@DOT_EXE_EXT@,$DOT_EXE_EXT,;t t s,@INSTALL_BIN_PROGRAM@,$INSTALL_BIN_PROGRAM,;t t s,@INSTALL_BIN_SCRIPT@,$INSTALL_BIN_SCRIPT,;t t s,@FMT_LIBS@,$FMT_LIBS,;t t s,@JAVABRANCH@,$JAVABRANCH,;t t s,@JAVAC@,$JAVAC,;t t s,@JAR@,$JAR,;t t s,@JAVAH@,$JAVAH,;t t s,@JINC@,$JINC,;t t s,@DX_JAVA_CLASSPATH@,$DX_JAVA_CLASSPATH,;t t s,@JNI_CFLAGS@,$JNI_CFLAGS,;t t s,@BUILDBASE@,$BUILDBASE,;t t s,@DXEXEC_EXP@,$DXEXEC_EXP,;t t s,@DXEXEC_IMP@,$DXEXEC_IMP,;t t s,@DXUI_ALDFLAGS@,$DXUI_ALDFLAGS,;t t s,@VERSION_STRING@,$VERSION_STRING,;t t s,@ANYDX@,$ANYDX,;t t s,@DXABI@,$DXABI,;t t s,@DX_RTL_CFLAGS@,$DX_RTL_CFLAGS,;t t s,@DX_RTL_ALDFLAGS@,$DX_RTL_ALDFLAGS,;t t s,@DX_RTL_SYSLIBS@,$DX_RTL_SYSLIBS,;t t s,@DX_RTL_IMPORTS@,$DX_RTL_IMPORTS,;t t s,@DX_RTL_DXENTRY@,$DX_RTL_DXENTRY,;t t s,@DX_OUTBOARD_LIBS@,$DX_OUTBOARD_LIBS,;t t s,@DX_X_LINK_LIBS@,$DX_X_LINK_LIBS,;t t s,@DX_GL_LINK_LIBS@,$DX_GL_LINK_LIBS,;t t s,@SHARED_LINK@,$SHARED_LINK,;t t s,@MKDEP@,$MKDEP,;t t s,@LOCALMAKE@,$LOCALMAKE,;t t s,@rsh_path@,$rsh_path,;t t s,@bsh_path@,$bsh_path,;t t s,@LIB_LF@,$LIB_LF,;t t s,@JAVA@,$JAVA,;t t s,@WITH_BUILDLIBDX_TRUE@,$WITH_BUILDLIBDX_TRUE,;t t s,@WITH_BUILDLIBDX_FALSE@,$WITH_BUILDLIBDX_FALSE,;t t s,@WITH_INSTALLHTML_TRUE@,$WITH_INSTALLHTML_TRUE,;t t s,@WITH_INSTALLHTML_FALSE@,$WITH_INSTALLHTML_FALSE,;t t s,@HAVE_MC@,$HAVE_MC,;t t s,@LEX@,$LEX,;t t s,@LEXLIB@,$LEXLIB,;t t s,@LEX_OUTPUT_ROOT@,$LEX_OUTPUT_ROOT,;t t s,@yakker@,$yakker,;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 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 ;; 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; }; }; } 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 # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_builddir$INSTALL ;; 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." # 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 done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_HEADER section. # # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where # NAME is the cpp macro being defined and VALUE is the value it is being given. # # ac_d sets the value in "#define NAME VALUE" lines. ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' ac_dB='[ ].*$,\1#\2' ac_dC=' ' ac_dD=',;t' # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_uB='$,\1#\2define\3' ac_uC=' ' ac_uD=',;t' for ac_file in : $CONFIG_HEADERS; 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 ;; esac test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # 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; }; } # Do quote $f, to prevent DOS paths from being IFS'd. 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; } # Remove the trailing spaces. sed 's/[ ]*$//' $ac_file_inputs >$tmp/in _ACEOF # Transform confdefs.h into two sed scripts, `conftest.defines' and # `conftest.undefs', that substitutes the proper values into # config.h.in to produce config.h. The first handles `#define' # templates, and the second `#undef' templates. # And first: Protect against being on the right side of a sed subst in # config.status. Protect against being in an unquoted here document # in config.status. rm -f conftest.defines conftest.undefs # Using a here document instead of a string reduces the quoting nightmare. # Putting comments in sed scripts is not portable. # # `end' is used to avoid that the second main sed command (meant for # 0-ary CPP macros) applies to n-ary macro definitions. # See the Autoconf documentation for `clear'. cat >confdef2sed.sed <<\_ACEOF s/[\\&,]/\\&/g s,[\\$`],\\&,g t clear : clear s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp t end s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp : end _ACEOF # If some macros were called several times there might be several times # the same #defines, which is useless. Nevertheless, we may not want to # sort them, since we want the *last* AC-DEFINE to be honored. uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs rm -f confdef2sed.sed # This sed command replaces #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. cat >>conftest.undefs <<\_ACEOF s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, _ACEOF # Break up conftest.defines because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS echo ' :' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.defines >/dev/null do # Write a limited-size here document to $tmp/defines.sed. echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#define' lines. echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/defines.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines echo ' fi # grep' >>$CONFIG_STATUS echo >>$CONFIG_STATUS # Break up conftest.undefs because some shells have a limit on the size # of here documents, and old seds have small limits too (100 cmds). echo ' # Handle all the #undef templates' >>$CONFIG_STATUS rm -f conftest.tail while grep . conftest.undefs >/dev/null do # Write a limited-size here document to $tmp/undefs.sed. echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS # Speed up: don't consider the non `#undef' echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS # Work around the forget-to-reset-the-flag bug. echo 't clr' >>$CONFIG_STATUS echo ': clr' >>$CONFIG_STATUS sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS echo 'CEOF sed -f $tmp/undefs.sed $tmp/in >$tmp/out rm -f $tmp/in mv $tmp/out $tmp/in ' >>$CONFIG_STATUS sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail rm -f conftest.undefs mv conftest.tail conftest.undefs done rm -f conftest.undefs cat >>$CONFIG_STATUS <<\_ACEOF # 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 echo "/* Generated by configure. */" >$tmp/config.h else echo "/* $ac_file. Generated by configure. */" >$tmp/config.h fi cat $tmp/in >>$tmp/config.h rm -f $tmp/in if test x"$ac_file" != x-; then if diff $ac_file $tmp/config.h >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else 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; }; }; } rm -f $ac_file mv $tmp/config.h $ac_file fi else cat $tmp/config.h rm -f $tmp/config.h fi # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $ac_file" >`(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'`/stamp-h$_am_stamp_count done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # # CONFIG_COMMANDS section. # for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue ac_dest=`echo "$ac_file" | sed 's,:.*,,'` ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` ac_dir=`(dirname "$ac_dest") 2>/dev/null || $as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_dest" : 'X\(//\)[^/]' \| \ X"$ac_dest" : 'X\(//\)$' \| \ X"$ac_dest" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$ac_dest" | 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; }; }; } 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 # Do not use `cd foo && pwd` to compute absolute paths, because # the directories may not exist. case `pwd` in .) ac_abs_builddir="$ac_dir";; *) case "$ac_dir" in .) ac_abs_builddir=`pwd`;; [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; *) ac_abs_builddir=`pwd`/"$ac_dir";; esac;; esac case $ac_abs_builddir in .) ac_abs_top_builddir=${ac_top_builddir}.;; *) case ${ac_top_builddir}. in .) ac_abs_top_builddir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; esac;; esac case $ac_abs_builddir in .) ac_abs_srcdir=$ac_srcdir;; *) case $ac_srcdir in .) ac_abs_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; esac;; esac case $ac_abs_builddir in .) ac_abs_top_srcdir=$ac_top_srcdir;; *) case $ac_top_srcdir in .) ac_abs_top_srcdir=$ac_abs_builddir;; [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; esac;; esac { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 echo "$as_me: executing $ac_dest commands" >&6;} case $ac_dest in depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`(dirname "$mf") 2>/dev/null || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`(dirname "$file") 2>/dev/null || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$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 $dirpart/$fdir else as_dir=$dirpart/$fdir 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 $dirpart/$fdir" >&5 echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # 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 dx-4.4.4/configure.ac0000644000076500000240000010627410472425770011365 00000000000000#include "aclocal.m4" AC_PREREQ(2.57) dnl Start of configuration ---- AC_INIT([dx],[4.4.4]) dnl Process this file with autoconf to produce a configure script. AC_CONFIG_SRCDIR([include/dx/arch.h]) AC_CONFIG_HEADERS([include/dxconfig.h]) AM_INIT_AUTOMAKE AC_DISABLE_SHARED AC_PROG_LIBTOOL VERSION_STRING="04.4.4000" MAJOR_VERSION=4 MINOR_VERSION=4 MICRO_VERSION=4 AC_DEFINE(DXD_VERSION_STRING, "04.4.4000", [Version String Number]) AC_DEFINE(DXD_COPYRIGHT_STRING, ["Open Visualization Data Explorer\nMore Info at www.research.ibm.com/dx\nand www.opendx.org\nVersion - 4.4.4"], [Copyright string placed on splash screen startup.]) AC_DEFINE_UNQUOTED(DXD_VERSION, $MAJOR_VERSION, [Version Number]) AC_DEFINE_UNQUOTED(DXD_RELEASE, $MINOR_VERSION, [Release Number]) AC_DEFINE_UNQUOTED(DXD_MODIFICATION, $MICRO_VERSION, [Modification Number]) AC_SUBST(MAJOR_VERSION)dnl AC_SUBST(MINOR_VERSION)dnl AC_SUBST(MICRO_VERSION)dnl SHELL=sh BUILDBASE="`pwd`" AC_SUBST(YACC) AC_SUBST(SHELL) AC_SUBST(ARCH) AC_SUBST(EXEEXT) AC_SUBST(OBJEXT) AC_SUBST(DOT_EXE_EXT) AC_SUBST(INSTALL_BIN_PROGRAM) AC_SUBST(INSTALL_BIN_SCRIPT) AC_SUBST(FMT_LIBS) AC_SUBST(LIBS) AC_SUBST(JAVABRANCH) AC_SUBST(JAVAC) AC_SUBST(JAR) AC_SUBST(JAVAH) AC_SUBST(JINC) AC_SUBST(DX_JAVA_CLASSPATH) AC_SUBST(JNI_CFLAGS) AC_SUBST(BUILDBASE) AC_SUBST(DXEXEC_EXP) AC_SUBST(DXEXEC_IMP) AC_SUBST(DXUI_ALDFLAGS) AC_SUBST(VERSION_STRING) AC_SUBST(ANYDX) AC_SUBST(DXABI) AC_SUBST(DX_RTL_CFLAGS) AC_SUBST(DX_RTL_ALDFLAGS) AC_SUBST(DX_RTL_SYSLIBS) AC_SUBST(DX_RTL_IMPORTS) AC_SUBST(DX_RTL_DXENTRY) AC_SUBST(DX_OUTBOARD_LIBS) AC_SUBST(DX_X_LINK_LIBS) AC_SUBST(DX_GL_LINK_LIBS) AC_SUBST(SHARED_LINK) AC_SUBST(MKDEP) AC_SUBST(JNI_CFLAGS) AC_SUBST(LOCALMAKE) dnl First set up all the possible configure command line options dnl dnl For the time being, require a command-line arg to build with SMP dnl support on linux platforms AC_ARG_ENABLE(smp_linux, [ --enable-smp-linux build exec, libs with SMP-parallel capability for Linux platforms (default is disabled)], [with_smp_linux=$enableval], [with_smp_linux='no']) dnl Since building the libs for all the formats and DX stuff takes so long dnl this allows you to disable it while developing/extending dx. AC_ARG_ENABLE(ddx, [ --enable-ddx build exec, libs for ddx compatibility (default is disabled)], [with_ddx=$enableval], [with_ddx='no']) dnl Some users will prefer a set of accelerators much more like that of the native dnl applications on Windows and the MacOS. Required for some limitations on some dnl keyboards. AC_ARG_ENABLE(new-keylayout, [ --enable-new-keylayout build user interface with different accelerators (default is disabled)], [with_new_keylayout=$enableval], [with_new_keylayout='no']) dnl Since building the libs for all the formats and DX stuff takes so long dnl this allows you to disable it while developing/extending dx. AC_ARG_ENABLE(buildlibdx, [ --enable-buildlibdx enable building libDX.a (default is yes)], [with_buildlibdx=$enableval], [with_buildlibdx='yes']) dnl This allows you to disable installing the dx html documentation. AC_ARG_ENABLE(installhtml, [ --enable-installhtml enable install of html docs (default is yes)], [with_installhtml=$enableval], [with_installhtml='yes']) dnl Get configuration of ImageMagick # Disable support for largefiles AC_ARG_WITH(largefiles, [ --without-largefiles disable support for large (64 bit) file offsets], [with_largefiles=$withval], [with_largefiles='yes']) # Enable HDF. AC_ARG_WITH(hdf, [ --with-hdf enable HDF (default is yes)], [with_hdf=$withval], [with_hdf='yes']) # Enable TIFF. AC_ARG_WITH(tiff, [ --with-tiff enable TIFF (default is yes)], [with_tiff=$withval], [with_tiff='yes']) AC_ARG_WITH(magick, [ --with-magick enable ImageMagick (default is yes)], [with_magick=$withval], [with_magick='yes']) AC_ARG_WITH(statmagick, [ --with-statmagick enable Link to Static ImageMagick (default is no)], [with_smagick=$withval], [with_smagick='no']) # Enable CDF. AC_ARG_WITH(cdf, [ --with-cdf enable CDF (default is yes)], [with_cdf=$withval], [with_cdf='yes']) # Enable NetCDF. AC_ARG_WITH(netcdf, [ --with-netcdf enable NetCDF (default is yes)], [with_netcdf=$withval], [with_netcdf='yes']) # Enable 64-bit arenas, if supported AC_ARG_WITH(large-arenas, [ --with-large-arenas enable 64-bit arenas, when available (default is no)], [with_large_arenas=$withval], [with_large_arenas='no']) AC_ARG_WITH(javadx, [ --with-javadx enable JAVADX (default is yes)], [with_javadx=$withval], [with_javadx='yes']) AC_ARG_WITH(jni-path, [ --with-jni-path java jni include search path (default none)], [with_jni_path=$withval], [with_jni_path='']) if test "$with_jni_path" = "yes" then with_jni_path='' fi AC_ARG_WITH(java40jar-path, [ --with-java40jar-path set path to Netscape's java40.jar (default none)], [with_java40jar_path=$withval], [with_java40jar_path='']) if test "$with_java40jar_path" != "yes" && test -z "$with_java40jar_path" then with_java40jar_path='' fi AC_ARG_WITH(cosmojar-path, [ --with-cosmojar-path set path to Cosmo's npcosmop211.jar (default none)], [with_cosmojar_path=$withval], [with_cosmojar_path='']) if test "$with_cosmojar_path" != "yes" && test -z "$with_cosmojar_path" then with_cosmojar_path='' fi # Looking for rsh and path AC_ARG_WITH(rsh, [ --with-rsh=PATH Specify path to remote shell program ], [ rsh_path=$withval ], [ if test "$ARCH" = "intelnt" ; then rsh_path="rsh" else AC_PATH_PROG(rsh_path, rsh) fi ] ) AC_DEFINE_UNQUOTED(RSH, "$rsh_path", [Path to the system's remote shell.]) AC_ARG_WITH(bsh, [ --with-bsh=PATH Specify path to system bourne shell program ], [ if test "x$withval" != "$no" ; then bsh_path=$withval fi ], [ AC_PATH_PROG(bsh_path, sh) ] ) AC_DEFINE_UNQUOTED(BSH, "$bsh_path", [Path to the system's Bourne shell.]) dnl End of command line options configuration dnl Start DX configuration AC_LANG([C++]) AC_CHECK_HEADERS(stdlib.h) AC_LANG([C]) # # Check for large file support # LIB_LF='' if test "$with_largefiles" = 'yes' then AC_MSG_CHECKING(whether large file support needs explicit enabling) result='no' getconf='getconf LFS_CFLAGS' if ($getconf) >/dev/null 2>&1 then CPPFLAGS="$CPPFLAGS "`$getconf` result='yes' fi getconf='getconf LFS_LDFLAGS' if ($getconf) >/dev/null 2>&1 then LDFLAGS="$LDFLAGS "`$getconf` result='yes' fi getconf='getconf LFS_LIBS' if ($getconf) >/dev/null 2>&1 then LIB_LF=`$getconf` LIBS="$LIB_LF $LIBS" result='yes' fi AC_MSG_RESULT($result) fi AC_SUBST(LIB_LF) DX_ARCHITECTURE DX_ARCH_SPECIFIC if test "$MKDEP" = "" ; then MKDEP='$(CC) -M -MG $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)' fi if test "$ARCH" = "intelnt" ; then INSTALL_BIN_PROGRAM="dx" INSTALL_BIN_SCRIPT="" else INSTALL_BIN_PROGRAM="" INSTALL_BIN_SCRIPT="dx" fi AC_PROG_INSTALL if test -z "$LN_S" ; then AC_PROG_LN_S fi dnl Checks for programs. dnl AC_PROG_RANLIB AC_PROG_CXX if test -n "$CXXCPP" ; then ac_cv_prog_CXXCPP=$CXXCPP fi AC_PROG_CXXCPP AC_PROG_CC AC_PROG_CPP DX_CYGWIN DX_EXEEXT if test -z "$EXEEXT" ; then DOT_EXE_EXT=""; else DOT_EXE_EXT=".$EXEEXT"; fi DX_OBJEXT if test "$ARCH" = "intelnt" ; then AC_CHECK_HEADERS(windows.h) else ac_cv_header_windows_h="no" fi # On SGI, detect the ABI we're compiling for (handles all methods that # can be used to set the ABI target). if test "$ARCH" = "sgi" ; then AC_MSG_CHECKING(for the target SGI ABI ...) AC_COMPILE_IFELSE( AC_LANG_PROGRAM([[]], [[ #if defined(sgi) && _MIPS_SIM == _ABI64 #else xyzz #endif ]] ), [AC_MSG_RESULT("-64") AC_DEFINE(SGI_ABI, -64, [SGI specific ABI]) ], [ AC_COMPILE_IFELSE( AC_LANG_PROGRAM([[]], [[ #if defined(sgi) && _MIPS_SIM == _ABIO32 #else xyzz #endif ]] ), [AC_MSG_RESULT("-32") AC_DEFINE(SGI_ABI,-32)], [AC_MSG_RESULT("-n32") AC_DEFINE(SGI_ABI,-n32) ]) ] ) fi # For SGI, set DXABI based on SGI_ABI if test "$ARCH" = "sgi" ; then case "$SGI_ABI" in -64) DXABI=" $SGI_ABI -L/usr/lib64";; -32) DXABI=" $SGI_ABI -L/usr/lib";; -n32) DXABI=" $SGI_ABI -L/usr/lib32";; esac fi # # Enable 64-bit arenas if requested and supported # AC_MSG_CHECKING(whether to enable large arenas ...) if test "$with_large_arenas" != 'no' -a \ "$ARCH" = "sgi" -a "$SGI_ABI" = "-64"; then AC_DEFINE(ENABLE_LARGE_ARENAS, 1, [Define to 1 if you need large arenas on SGI]) AC_MSG_RESULT("yes") else AC_MSG_RESULT("no") fi # Code to enable JAVADX to be built if test -r C:\ ; then DIRSEP=";" else DIRSEP=":" fi if test "$with_javadx" != 'no'; then failed=0; passed=0; DX_PROG_JAVAC(passed=`expr $passed + 1`,failed=`expr $failed + 1`) DX_PROG_JAR(passed=`expr $passed + 1`,failed=`expr $failed + 1`) DX_PROG_JAVAH(passed=`expr $passed + 1`,failed=`expr $failed + 1`) DX_PATH_JAVA dnl The following determines if we have the necessary compilers, etc. then look to dnl see if we can find the jni headers. First look to see if a configure flag sent dnl this in. If not, look to see if an environment varaible was set. If not, dnl use the javac -verbose code to try and determine where they may be. if test $failed -eq 0 ; then if test -z "$with_jni_path" ; then if test -z "$JNIPATH" ; then DX_FIND_JNI(passed=`expr $passed + 1`,failed=`expr $failed + 1`) else DX_FIND_JNI_WITH_PATH($JNIPATH,passed=`expr $passed + 1`,failed=`expr $failed + 1`) fi else DX_FIND_JNI_WITH_PATH($with_jni_path,passed=`expr $passed + 1`,failed=`expr $failed + 1`) fi fi if test $failed -gt 0; then with_javadx='no' AC_MSG_WARN(JavaDX will be skipped during compilation due to limitations.) else with_javadx='yes' JAVABRANCH=java DX_FIND_JDK_CLASSES DX_JAVA_CLASSPATH="$ac_cv_jdk_classes" if test -z "$with_java40jar_path" ; then if test -z "$JAVA40JAR" ; then DX_FIND_DEFAULT_NETSCAPE else DX_FIND_NETSCAPE($JAVA40JAR) fi else DX_FIND_NETSCAPE($with_java40jar_path) fi if test -z "$with_cosmojar_path" ; then if test -z "$COSMOJAR" ; then DX_FIND_DEFAULT_COSMO else DX_FIND_COSMO($COSMOJAR) fi else DX_FIND_COSMO($with_cosmojar_path) fi WRL_CLASSPATH="$ac_cv_class_netscape" if test -n "$ac_cv_class_cosmo" ; then WRL_CLASSPATH="$ac_cv_class_netscape$DIRSEP$ac_cv_class_cosmo" fi dnl Fix up the full CLASSPATH to be used with the JAVA compiles. TMP_CLASSPATH=./ if test ! "$CLASSPATH" = "" ; then TMP_CLASSPATH=$CLASSPATH$DIRSEP$TMP_CLASSPATH fi if test ! "$COSMOJAR" = "" ; then TMP_CLASSPATH=$COSMOJAR$DIRSEP$TMP_CLASSPATH fi if test ! "$WRL_CLASSPATH" = "" ; then TMP_CLASSPATH=$WRL_CLASSPATH$DIRSEP$TMP_CLASSPATH fi if test ! "$DX_JAVA_CLASSPATH" = "" ; then TMP_CLASSPATH=$DX_JAVA_CLASSPATH$DIRSEP$TMP_CLASSPATH fi DX_JAVA_CLASSPATH=$TMP_CLASSPATH AC_MSG_NOTICE([ DX_JAVA_CLASSPATH :: $DX_JAVA_CLASSPATH ]) fi fi # end of JAVADX configure AC_LANG([C]) dnl Checks for header files. AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT dnl Checks for typedefs, structures, and compiler characteristics. AC_TYPE_MODE_T AC_TYPE_PID_T AC_TYPE_SIZE_T AC_HEADER_TIME AC_STRUCT_TM if test "$ARCH" = "intelnt" -o "$ARCH" = "cygwin" ; then ANYDX=AnyDX.dll elif test "$ARCH" = "macos" ; then ANYDX=libAnyDX.jnilib else ANYDX=libAnyDX.so fi dnl AC_LANG([C]) dnl DX_CYGWIN_MOUNTS DX_SET_RTL_FLAGS AC_CHECK_LIB(pthread, pthread_getspecific) dnl Check of X related files and set up include directories AC_PATH_X if test "$x_includes" != "" ; then CFLAGS="$CFLAGS -I$x_includes" CXXFLAGS="$CXXFLAGS -I$x_includes" CPPFLAGS="$CPPFLAGS -I$x_includes" fi if test "$x_libraries" != "" ; then LIBS="-L$x_libraries $LIBS" fi AC_CHECK_LIB(ICE, IceConnectionNumber) AC_CHECK_LIB(SM, SmcSetProperties) AC_CHECK_LIB(xlibcon, printf) AC_CHECK_LIB(xlib, XCreateWindow) AC_CHECK_LIB(xt, XtVaGetValues) AC_CHECK_LIB(xmstatxt, XtVaGetValues) AC_CHECK_LIB(xmstatic, XmStringFree) AC_CHECK_LIB(xm, XmStringFree) AC_CHECK_LIB(hclglx, glXGetConfig) AC_CHECK_LIB(hclglu, gluBuild2DMipmaps) AC_CHECK_LIB(glwstati, glAccum) AC_CHECK_LIB(X11, XCreateGC) AC_CHECK_LIB(Xt, XtMalloc) AC_CHECK_LIB(Xext, XextAddDisplay) AC_CHECK_LIB(Xmu, XmuAddInitializer) AC_CHECK_LIB(m, sqrt) DX_PATH_XM if test "$xm_includes" != "" ; then CFLAGS="$CFLAGS -I$xm_includes" CXXFLAGS="$CXXFLAGS -I$xm_includes" CPPFLAGS="$CPPFLAGS -I$xm_includes" fi if test "$xm_libraries" != "" ; then LIBS="-L$xm_libraries $LIBS" fi AC_CHECK_LIB(GL, glXGetConfig) AC_CHECK_LIB(GLU, gluBuild2DMipmaps) AC_CHECK_LIB(Xp, XpSetImageResolution) AC_CHECK_LIB(Xm, XmGetDestination) AC_TRY_LINK_FUNC(_XmMapKeyEvents, AC_DEFINE(HAVE_XMMAPKEYEVENTS, 1, [Define to 1 if your Motif can use _XmMapKeyEvents])) AC_TRY_LINK_FUNC(HCLXmInit, AC_DEFINE(HAVE_HCLXMINIT, 1, [Define to 1 if Windows has XmInit fnct])) AC_TRY_LINK_FUNC(HCLXtInit, AC_DEFINE(HAVE_HCLXTINIT, 1, [Define to 1 if Windows has XtInit fnct])) dnl want to put the Xmu tests in before here!! DX_X_LINK_LIBS="$LIBS" dnl The following is set up to check for the old LessTif libraries dnl AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ XmFormConstraintPart *p; p->att[0].type; ]])], [], [ AC_DEFINE_UNQUOTED(OLD_LESSTIF, 1, [Define to 1 if Using old version of lesstif]) AC_MSG_NOTICE([using old version of LESSTIF]) ]) if test "$ARCH" = "solaris" ; then OLDLIBS=$LIBS LIBS="-L/usr/openwin/lib $LIBS" AC_CHECK_LIB(dga, dga_draw_devfd, [ LIBS="$LIBS -ldga" AC_CHECK_LIB(Xmu, XmuAddInitializer, LIBS="$LIBS -lXmu") ], LIBS=$OLDLIBS, -lX11) fi dnl A couple libs for cygwin AC_CHECK_LIB(REXP, regcomp) DX_CHECK_TGMATH dnl If buildlibdx off then pass this down to the Makefile AM_CONDITIONAL(WITH_BUILDLIBDX, test $with_buildlibdx = 'yes') dnl If install html off then pass this to its Makefile AM_CONDITIONAL(WITH_INSTALLHTML, test $with_installhtml = 'yes') dnl Check for ImageMagick Libraries dnl Checks for libraries. AC_CHECK_LIB(g++, main) AC_CHECK_LIB(dl, main) dnl Set the CXXFLAG for new keylayout if test "$with_new_keylayout" != 'no' then AC_DEFINE_UNQUOTED(DX_NEW_KEYLAYOUT, 1, [Define to 1 if you want the new accelerator keys.]) fi dnl Leave the TIFF check for now incase we want to rewrite the ReadImage dnl module to use these routines at a later date. # # Check for TIFF # have_tiff='no' LIB_TIFF='' if test "$with_tiff" != 'no' then AS_MESSAGE([checking for TIFF support ......]) failed=0; passed=0; AC_CHECK_HEADER(tiff.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) AC_CHECK_HEADER(tiffio.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) AC_CHECK_LIB(tiff,TIFFOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`, [ -lm ] ) AC_MSG_CHECKING(if TIFF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_tiff='no (failed tests)' else LIB_TIFF='-ltiff' LIBS="$LIB_TIFF $LIBS" FMT_LIBS="$FMT_LIBS libtiff.a" AC_DEFINE(HAVE_LIBTIFF, 1, [Define to 1 if you have the TIFF libraries]) AC_MSG_RESULT(yes) have_tiff='yes' fi else AC_MSG_RESULT(no) fi fi # # Check for Xpm # have_xpm='no' LIB_XPM='' AS_MESSAGE([checking for XPM support ......]) failed=0; passed=0; AC_CHECK_HEADERS(xpm.h X11/xpm.h) if test "$ac_cv_header_xpm_h" = 'yes' -o "$ac_cv_header_X11_xpm_h" = 'yes' then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi AC_CHECK_LIB(Xpm,XpmReadFileToPixmap,passed=`expr $passed + 1`,failed=`expr $failed + 1`, ) AC_MSG_CHECKING(if XPM package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_xpm='no (failed tests)' else LIB_XPM='-lXpm' LIBS="$LIB_XPM $LIBS" AC_DEFINE(HAVE_LIBXPM, 1, [Define to 1 if you have the xpm libraries]) AC_MSG_RESULT(yes) have_xpm='yes' fi else AC_MSG_RESULT(no) fi # # Check for HDF # have_hdf='no' LIB_HDF='' if test "$with_hdf" != 'no' then AS_MESSAGE([checking for HDF components ......]) failed=0; passed=0; AC_CHECK_HEADERS(dfsd.h hdf/dfsd.h) if test "$ac_cv_header_dfsd_h" = 'yes' -o "$ac_cv_header_hdf_dfsd_h" = 'yes' then passed=`expr $passed + 1` else failed=`expr $failed + 1` fi if test "$ARCH" = "intelnt" ; then AC_CHECK_LIB(hd421m,Hopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,[ hm421m.lib ]) AC_MSG_CHECKING(if HDF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_hdf='no (failed tests)' else LIB_HDF='-lhm421m' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS hm421m.lib" AC_DEFINE(HAVE_LIBDF, 1, [Define to 1 if you have the HDF libraries]) AC_MSG_RESULT(yes) have_hdf='yes' fi else AC_MSG_RESULT(no) fi dnl -- check for unix else AC_CHECK_LIB(df,Hopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,[ -lz -ljpeg ]) AC_MSG_CHECKING(if HDF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_hdf='no (failed tests)' else LIB_HDF='-ldf' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS libdf.a" AC_DEFINE(HAVE_LIBDF, 1, [Define to 1 if you have the HDF libraries]) AC_MSG_RESULT(yes) have_hdf='yes' fi else AC_MSG_RESULT(no) fi fi fi # # Check for CDF # have_cdf='no' LIB_CDF='' if test "$with_cdf" != 'no' then AS_MESSAGE([checking for CDF support ......]) failed=0; passed=0; AC_CHECK_HEADER(cdf.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) if test "$ARCH" = "intelnt" ; then AC_CHECK_LIB(dllcdf,Hopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) AC_MSG_CHECKING(if CDF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_cdf='no (failed tests)' else LIB_HDF='-ldllcdf' LIBS="$LIB_HDF $LIBS" FMT_LIBS="$FMT_LIBS dllcdf.lib" AC_DEFINE(HAVE_LIBCDF, 1, [Define to 1 if you have the CDF libraries]) AC_MSG_RESULT(yes) have_cdf='yes' fi else AC_MSG_RESULT(no) fi dnl -- check for unix else AC_CHECK_LIB(cdf,CDFlib,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) AC_MSG_CHECKING(if CDF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_cdf='no (failed tests)' else LIB_CDF='-lcdf' LIBS="$LIB_CDF $LIBS" FMT_LIBS="$FMT_LIBS libcdf.a" AC_DEFINE(HAVE_LIBCDF, 1, [Define to 1 if you have the CDF libraries]) AC_MSG_RESULT(yes) have_cdf='yes' fi else AC_MSG_RESULT(no) fi fi fi # # Check for NETCDF # have_netcdf='no' LIB_NETCDF='' if test "$with_netcdf" != 'no' then AS_MESSAGE([checking for NETCDF support ......]) failed=0; passed=0; AC_CHECK_HEADER(netcdf.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) AC_CHECK_LIB(netcdf,nc_copy_att,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) AC_MSG_CHECKING(if NETCDF package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_netcdf='no (failed tests)' else LIB_NETCDF='-lnetcdf' LIBS="$LIB_NETCDF $LIBS" FMT_LIBS="$FMT_LIBS libnetcdf.a" AC_DEFINE(HAVE_LIBNETCDF, 1, [Define to 1 if you have the NetCDF libraries]) AC_MSG_RESULT(yes) have_netcdf='yes' fi else AC_MSG_RESULT(no) fi fi # # Check for IMAGEMAGICK # have_magick='no' LIB_MAGICK='' if test "$with_magick" != 'no' then AS_MESSAGE([checking for ImageMagick support ......]) AC_CHECK_PROG(HAVE_MC, Magick-config, yes, no) failed=0; passed=0; AC_CHECK_HEADER([magick/api.h],[passed=`expr $passed + 1`],[failed=`expr $failed + 1`]) if test "$ARCH" = "intelnt" ; then AC_CHECK_LIB(CORE_RL_magick_,Hopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) AC_MSG_CHECKING(if ImageMagick package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_magick='no (failed tests)' else if test "$with_smagick" != 'no' then LIB_MAGICK='-lCORE_RL_magick_ -lCORE_RL_bzlib_ -lCORE_RL_coders_ -lCORE_RL_filters_ -lCORE_RL_jbig_ -lCORE_RL_jbig_ -lCORE_RL_jp2_ -lCORE_RL_jpeg_ -lCORE_RL_lcms_ -lCORE_RL_libxml_ -lCORE_RL_png_ -lCORE_RL_tiff_ -lCORE_RL_ttf_ -lCORE_RL_wand_ -lCORE_RL_wmf_ -lCORE_RL_zlib_' else LIB_MAGICK='-lCORE_RL_magick_' fi LIBS="$LIB_MAGICK $LIBS" FMT_LIBS="$FMT_LIBS CORE_RL_magick_.lib" AC_DEFINE(HAVE_LIBMAGICK, 1, [Define to 1 if you have the ImageMagick libraries]) AC_MSG_RESULT(yes) have_magick='yes' fi else AC_MSG_RESULT(no) fi dnl -- check for unix else dnl The ImageMagick configuration can be collected with an ImageMagick dnl routine. This allows us to simplify the configuration of all the dnl format configuration libraries. if test "$HAVE_MC" = "yes" ; then LIB_MAGICK="`Magick-config --ldflags` `Magick-config --libs`" AC_CHECK_LIB( Magick,GetImageInfo, passed=`expr $passed + 1`, failed=`expr $failed + 1`, [ $LIB_MAGICK ]) AC_MSG_CHECKING(if ImageMagick package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_magick='no (failed tests)' else dnl CFLAGS="`Magick-config --cflags` $CFLAGS" CPPFLAGS="`Magick-config --cppflags` $CPPFLAGS" LIB_MAGICK="$LIBS `Magick-config --ldflags` `Magick-config --libs`" dnl UNIQUIFY will remove duplicate library tokens leaving the last instance. AC_UTILS_UNIQUIFY($LIB_MAGICK, LIBS) FMT_LIBS="$FMT_LIBS libMagick.a" AC_DEFINE(HAVE_LIBMAGICK, 1, [Define to 1 if you have the ImageMagick libraries]) AC_MSG_RESULT(yes) have_magick='yes' fi else AC_MSG_RESULT(no) fi else AC_MSG_RESULT(no - Magick-config not found) fi fi fi AC_LANG([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int a = true;]])], [AC_DEFINE(CXX_HAS_TRUE, 1, [Define to 1 if c++ compiler defines true])], [AC_DEFINE(CXX_HAS_TRUE, 0)]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int a = false;]])], [AC_DEFINE(CXX_HAS_FALSE, 1, [Define to 1 if c++ compiler defines false])], [AC_DEFINE(CXX_HAS_FALSE, 0)]) AC_CHECK_FUNCS(getdtablesize) AC_LANG([C]) AC_CHECK_FUNCS(getcwd gethostname gettimeofday mkdir mkfifo mktime \ putenv re_comp regcmp select socket strcspn strdup strerror \ strspn strstr strtod strtol strtoul uname trunc \ _Errno spawnvp _spawnvp regcomp sysmp sysconf \ pipe _pipe _popen popen _pclose pclose random rand srandom \ shmat getopt srand opendir _findfirst strrstr strcasecmp \ stricmp getpid _getpid unlink _unlink getlogin isatty _isatty \ setsockopt isnan finite ) AC_MSG_CHECKING(if RAND_MAX defined) AC_COMPILE_IFELSE( AC_LANG_PROGRAM([[#include ]], [[ int a = RAND_MAX; ]]), [AC_DEFINE(HAVE_RAND_MAX, 1, [Define to 1 if RAND_MAX is in stdlib.h]) AC_MSG_RESULT(yes)], [ AC_MSG_RESULT(no) ] ) AC_MSG_CHECKING(if signal.h defines SIGBUS) AC_EGREP_CPP(xyzzy, [ #include #if defined(SIGBUS) xyzzy #endif ], [AC_DEFINE(HAVE_SIGBUS, 1, [Define to 1 if signal defines SIGBUS]) AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)] ) AC_MSG_CHECKING(if signal.h defines SIGKILL) AC_EGREP_CPP(xyzzy, [ #include #if defined(SIGKILL) xyzzy #endif ], [AC_DEFINE(HAVE_SIGKILL, 1, [Define to 1 if signal defines SIGKILL]) AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)]) AC_MSG_CHECKING(if signal.h defines SIGDANGER) AC_EGREP_CPP(xyzzy, [ #include #if defined(SIGDANGER) xyzzy #endif ], [AC_DEFINE(HAVE_SIGDANGER, 1, [Define to 1 if signal defines SIGDANGER]) AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)]) AC_MSG_CHECKING(if signal.h defines SIGPIPE) AC_EGREP_CPP(xyzzy, [ #include #if defined(SIGPIPE) xyzzy #endif ], [AC_DEFINE(HAVE_SIGPIPE, 1, [Define to 1 if signal defines SIGPIPE]) AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)]) AC_MSG_CHECKING(if signal.h defines SIGQUIT) AC_EGREP_CPP(xyzzy, [ #include #if defined(SIGQUIT) xyzzy #endif ], [AC_DEFINE(HAVE_SIGQUIT, 1, [Define to 1 if signal defines SIGQUIT]) AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[extern char *getenv(const char *);]])], [AC_DEFINE_UNQUOTED(GETENV_ARG, const char *, getenv argument requires const)], [AC_DEFINE_UNQUOTED(GETENV_ARG, char *)]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ int n = _system_configuration.ncpus; ]])],[ AC_DEFINE_UNQUOTED(HAVE_SYSCONFIG_NCPUS, 1, [Define to 1 if you have systemcfg to check for ncpus]) ],[]) dnl Check lexer. Look for flex first--if using lex, may be problem dnl with duplicate yylineno linking errors. AC_PROG_LEX if test "$LEX" = "flex" ; then AC_DEFINE(USING_FLEX, 1, [Define to 1 if using flex]) LEX="flex -l" fi dnl Check if lexer adds a global variable yylineno DX_LEX_YYLINENO dnl Check yaccer. Don't use standard AQC_PROG_YACC... We're going dnl to create an -D as well as the make variable AC_CHECK_PROG(yakker, bison, "bison", "yacc") if test "$yakker" = "bison" ; then AC_DEFINE(USING_BISON, 1, [Define to 1 if using bison]) YACC="bison -y" else YACC=yacc fi dnl We are including the bison'd files; thus always using bison AC_DEFINE(USING_BISON, 1, [Define to 1 if using bison]) dnl AC_LANG([C]) dnl Just need to check if we have them. DX_CHECK_HEADERS( \ DPS/XDPSlib.h DPS/dpsXclient.h DPS/psops.h GL/gl.h GL/glx.h Mrm/MrmPublic.h \ X11/Composite.h X11/CompositeP.h X11/Constraint.h X11/CoreP.h X11/Intrinsic.h \ X11/IntrinsicI.h X11/IntrinsicP.h X11/Protocols.h X11/Shell.h X11/StringDefs.h \ X11/X.h X11/XHPlib.h X11/Xatom.h X11/Xlib.h X11/XlibXtra.h \ X11/Xos.h X11/Xutil.h X11/cursorfont.h X11/keysym.h X11/keysymdef.h Xm/ArrowB.h \ Xm/ArrowBG.h Xm/AtomMgr.h Xm/BulletinB.h Xm/BulletinBP.h Xm/CascadeB.h \ Xm/CascadeBG.h Xm/Command.h Xm/CutPaste.h Xm/DialogS.h Xm/DragC.h Xm/DragDrop.h \ Xm/DrawingA.h Xm/DrawingAP.h Xm/DrawnB.h Xm/FileSB.h Xm/Form.h Xm/FormP.h \ Xm/Frame.h Xm/FrameP.h Xm/GadgetP.h Xm/Label.h Xm/LabelG.h Xm/LabelGP.h \ Xm/LabelP.h Xm/List.h Xm/MainW.h Xm/ManagerP.h Xm/MenuShell.h Xm/MessageB.h \ Xm/MwmUtil.h Xm/PanedW.h Xm/PrimitiveP.h Xm/Protocols.h Xm/PushB.h Xm/PushBG.h \ Xm/PushBP.h Xm/RepType.h Xm/RowColumn.h Xm/Scale.h Xm/ScrollBar.h Xm/ScrolledW.h \ Xm/ScrolledWP.h Xm/SelectioB.h Xm/SeparatoG.h Xm/SeparatoGP.h Xm/Separator.h \ Xm/Text.h Xm/TextF.h Xm/ToggleB.h Xm/ToggleBG.h Xm/Xm.h Xm/XmP.h Xm/XmStrDefs.h \ gl.h gl/device.h gl/gl.h invent.h iop/afb.h iop/mov.h iop/pfs.h license.h \ linux/kernel.h linux/sys.h math.h mingw32/dir.h mon.h net/if_arp.h net/route.h \ os2.h setjmp.h starbase.c.h stddef.h stdio.h synch.h sys/access.h \ sys/ipc.h sys/m88kbcs.h sys/mman.h sys/mode.h sys/pstat.h sys/resource.h \ sys/svs.h sys/sysconfig.h sys/syslimits.h sys/sysmacros.h ulocks.h x11/xlibxtra.h \ xgl/xgl.h) dnl Need these to define themselves in dxconfig.h AC_CHECK_HEADERS(arpa/inet.h CC/osfcn.h conio.h crypt.h ctype.h cygwin/socket.h) AC_CHECK_HEADERS(sys/socket.h dlfcn.h errno.h fcntl.h get.h io.h limits.h malloc.h) AC_CHECK_HEADERS(netdb.h netinet/in.h process.h pwd.h signal.h string.h) AC_CHECK_HEADERS(strings.h sys/bsd_types.h sys/errno.h sys/file.h sys/filio.h) AC_CHECK_HEADERS(sys/ioctl.h sys/ldr.h sys/m_wait.h sys/param.h sys/select.h) AC_CHECK_HEADERS(sys/shm.h sys/signal.h sys/stat.h sys/sysmp.h) AC_CHECK_HEADERS(sys/systemcfg.h sys/systeminfo.h sys/timeb.h sys/times.h sys/time.h) AC_CHECK_HEADERS(sys/types.h sys/un.h sys/utsname.h time.h) AC_CHECK_HEADERS(types.h unistd.h values.h wait.h) AC_CHECK_HEADERS([X11/Xmu/Editres.h], [], [], [#if HAVE_X11_INTRINSIC_H #include #endif ]) # # Check for XINERAMA # have_xinerama='no' LIB_XINERAMA='' AS_MESSAGE([checking for XINERAMA support ......]) failed=0; passed=0; AC_CHECK_HEADERS([X11/extensions/Xinerama.h], [passed=`expr $passed + 1`], [failed=`expr $failed + 1`], [#if HAVE_X11_INTRINSIC_H #include #endif ]) AC_CHECK_LIB([Xinerama],[XineramaQueryExtension],[passed=`expr $passed + 1`], [failed=`expr $failed + 1`], [-lXt]) AC_MSG_CHECKING(if Xinerama package is complete) if test $passed -gt 0 then if test $failed -gt 0 then AC_MSG_RESULT(no -- some components failed test) have_xinerama='no (failed tests)' else LIB_XINERAMA='-lXinerama' LIBS="$LIB_XINERAMA $LIBS" AC_DEFINE(HAVE_XINERAMA, 1, [Define to 1 if you have the Xinerama libraries]) AC_MSG_RESULT(yes) have_xinerama='yes' fi else AC_MSG_RESULT(no) fi dnl The following is needed to add sys/socket.h to the default headers typically dnl included for checking net/if.h. Right now, this is the way it has to be done dnl in Autoconf 2.57, but they are working on some kind of fix to be able to dnl include the default headers as well as whatever else is needed in a future dnl version of Autoconf. AC_CHECK_HEADERS([net/if.h],[],[], [#include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #endif #if HAVE_SYS_SOCKET_H # include #endif ]) AC_MSG_CHECKING(for O_RDONLY) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #if defined(HAVE_FCNTL_H) #include #endif ]], [[ int i = O_RDONLY; ]])],[ AC_MSG_RESULT([yes]) ],[ AC_MSG_RESULT([no]) AC_DEFINE_UNQUOTED(O_RDONLY, _O_RDONLY, [O_RDONLY is defined somewhere]) ]) if test "$ARCH" = "intelnt" ; then AC_CHECK_HEADERS([winbase.h wingdi.h winioctl.h winsock.h], [], [], [ #if HAVE_WINDOWS_H #include #endif ]) fi DX_CHECK_STAT AC_LANG([C++]) dnl Need these to define themselves for C++ AC_CHECK_HEADERS(CC/libc.h direct.h dirent.h iostream iostream.h regex.h) AC_CHECK_HEADERS(stream stream.h) AC_CHECK_HEADERS(sstream strstream.h strstrea.h sysent.h) AC_CHECK_HEADERS(fstream fstream.h) AC_CHECK_HEADERS([regexp.h], [], [], [ #define INIT const char *sp = ""; #define GETC() (*sp++) #define PEEKC() (*sp) #define UNGETC(c) (--sp) #define RETURN(pointer) return(pointer); #define ERROR(val) /**/ ]) AC_CHECK_LIB(socket, socket) AC_CHECK_LIB(nsl, inet_addr) AC_CHECK_LIB(gen, regex) AC_CHECK_LIB(regex, regcomp) AC_CHECK_LIB(REXP, regcomp) DX_STREAM_O2 dnl AC_LANG([C++]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ char buf[32]; gethostname(buf, 32); ]])],[AC_DEFINE_UNQUOTED(REQUIRES_GETHOSTNAME_DECLARATION, 0, Define to 1 if gethostname needs declared)],[AC_DEFINE_UNQUOTED(REQUIRES_GETHOSTNAME_DECLARATION, 1)]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ char buf[32]; bzero(buf, (size_t)32); ]])], [AC_DEFINE_UNQUOTED(REQUIRES_BZERO_DECLARATION, 0, Define to 1 if bzero needs declared)], [AC_DEFINE_UNQUOTED(REQUIRES_BZERO_DECLARATION, 1)]) dnl The following DX_HEADER... check changes the ext to .C so must be C++ dnl AC_LANG([C++]) DX_HEADER_HAS_SYMBOL(math.h, M_PI) DX_HEADER_HAS_SYMBOL(math.h, M_SQRT2) DX_HEADER_HAS_SYMBOL(sys/stat.h, S_ISDIR) DX_HEADER_HAS_SYMBOL(sys/mode.h, S_ISDIR) DX_HEADER_HAS_SYMBOL(sys/sysmp.h, sysmp) AC_LANG([C]) dnl Checks for library functions. AC_FUNC_MEMCMP AC_FUNC_SETVBUF_REVERSED AC_TYPE_SIGNAL AC_FUNC_FORK([]) AC_FUNC_VPRINTF DX_CHECK_TYPE(uint, unsigned int) DX_CHECK_TYPE(byte, signed char) DX_CHECK_TYPE(ubyte, unsigned char) DX_CHECK_TYPE(short, short) DX_CHECK_TYPE(ushort, unsigned short) DX_CHECK_TYPE(ulong, unsigned long) DX_CHECK_TYPE(int8, char) DX_CHECK_TYPE(uint8, unsigned char) DX_CHECK_TYPE(int16, short) DX_CHECK_TYPE(uint16, unsigned short) DX_CHECK_TYPE(int32, int) DX_CHECK_TYPE(uint32, unsigned int) DX_CHECK_TYPE(int64, long) DX_CHECK_TYPE(float64, double) DX_CHECK_TYPE(uint64, unsigned long) if test "$ARCH" != "intelnt" ; then DX_CHECK_TYPE(__int64, long long) DX_CHECK_TYPE(float32, float) fi AC_C_BIGENDIAN AC_LANG([C++]) AC_MSG_CHECKING([for signal argument list in C++]) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include extern "C" void foo(int bar, ...){} ]], [[ signal(SIGBUS, foo); ]])],[ AC_MSG_RESULT([alternate]) AC_DEFINE_UNQUOTED(ALTERNATE_CXX_SIGNAL, 1, [Define to 1 to use alternate signal argument list in C++]) ],[ AC_MSG_RESULT([standard]) ]) AC_LANG([C]) DX_CHECK_SELECT_ARG DX_CHECK_SOCK_LENGTH_TYPE DX_NEEDS_STDCXX dnl since we statically link the hw-dependent renderer dxexec links need GL DX_GL_LINK_LIBS=" -lGL " LOCALMAKE="include local.mk" if test "$with_ddx" = 'yes' ; then AC_DEFINE(DDX, 1, [Define to 1 to enable distributed DX]) fi if test "$with_smp_linux" = 'yes' ; then AC_DEFINE(ENABLE_SMP_LINUX, 1, [Define to 1 to enable SMP Linux version]) else AC_DEFINE(ENABLE_SMP_LINUX, 0) fi AC_CONFIG_FILES([ Makefile \ bin/Makefile \ bin/dx bin/mdf2c \ doc/Makefile \ fonts/Makefile \ help/Makefile \ html/Makefile \ html/images/Makefile \ html/pages/Makefile \ include/Makefile \ include/dx/Makefile \ lib/Makefile \ man/Makefile \ man/catl/Makefile \ man/manl/Makefile \ src/Makefile \ src/exec/Makefile \ src/exec/dpexec/Makefile \ src/exec/dpexec/local.mk \ src/exec/dxexec/Makefile \ src/exec/dxmods/Makefile \ src/exec/dxmods/local.mk \ src/exec/hwrender/Makefile \ src/exec/hwrender/gl/Makefile \ src/exec/hwrender/opengl/Makefile \ src/exec/hwrender/starbase/Makefile \ src/exec/hwrender/xgl/Makefile \ src/exec/libdx/Makefile \ src/exec/libdx/local.mk \ src/misc/Makefile \ src/misc/arch.mak \ src/uipp/Makefile \ src/uipp/base/Makefile \ src/uipp/dxl/Makefile \ src/uipp/dxui/Makefile \ src/uipp/dxuilib/Makefile \ src/uipp/dxuilib/local.mk \ src/uipp/java/Makefile \ src/uipp/java/dx/Makefile \ src/uipp/java/dx/protocol/Makefile \ src/uipp/java/dx/protocol/server/Makefile \ src/uipp/java/dx/runtime/Makefile \ src/uipp/java/layout/Makefile \ src/uipp/java/server/Makefile \ src/uipp/java/server/macros/Makefile \ src/uipp/java/server/dxserver.paths \ src/uipp/java/server/startserver \ src/uipp/java/dx/client/Makefile \ src/uipp/java/dx/net/Makefile \ src/uipp/mb/Makefile \ src/uipp/prompter/Makefile \ src/uipp/startup/Makefile \ src/uipp/tutor/Makefile \ src/uipp/ui/Makefile \ src/uipp/widgets/Makefile windows/Makefile ]) AC_OUTPUT dx-4.4.4/COPYING0000644000076500000240000000011407447657551010130 00000000000000Please refer to the file "LICENSE" that is included with this distribution. dx-4.4.4/doc/0000777000076500000240000000000010472427107007712 500000000000000dx-4.4.4/doc/Makefile.am0000644000076500000240000000045306702122417011661 00000000000000## Process this file with automake to produce Makefile.in docdir = $(prefix)/dx/doc doc_DATA = \ README README_SMP README_alphax README_aviion README_hp700 \ README_ibm6000 README_ibmpvs README_indigo README_intelnt \ README_sgi README_sgi4 README_solaris README_sun4 EXTRA_DIST = $(doc_DATA) dx-4.4.4/doc/Makefile.in0000644000076500000240000002551610472426233011703 00000000000000# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/include/dxconfig.h CONFIG_CLEAN_FILES = depcomp = am__depfiles_maybe = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(docdir)" docDATA_INSTALL = $(INSTALL_DATA) DATA = $(doc_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ ANYDX = @ANYDX@ AR = @AR@ ARCH = @ARCH@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILDBASE = @BUILDBASE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOT_EXE_EXT = @DOT_EXE_EXT@ DXABI = @DXABI@ DXEXEC_EXP = @DXEXEC_EXP@ DXEXEC_IMP = @DXEXEC_IMP@ DXUI_ALDFLAGS = @DXUI_ALDFLAGS@ DX_GL_LINK_LIBS = @DX_GL_LINK_LIBS@ DX_JAVA_CLASSPATH = @DX_JAVA_CLASSPATH@ DX_OUTBOARD_LIBS = @DX_OUTBOARD_LIBS@ DX_RTL_ALDFLAGS = @DX_RTL_ALDFLAGS@ DX_RTL_CFLAGS = @DX_RTL_CFLAGS@ DX_RTL_DXENTRY = @DX_RTL_DXENTRY@ DX_RTL_IMPORTS = @DX_RTL_IMPORTS@ DX_RTL_SYSLIBS = @DX_RTL_SYSLIBS@ DX_X_LINK_LIBS = @DX_X_LINK_LIBS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FMT_LIBS = @FMT_LIBS@ HAVE_MC = @HAVE_MC@ INSTALL_BIN_PROGRAM = @INSTALL_BIN_PROGRAM@ INSTALL_BIN_SCRIPT = @INSTALL_BIN_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JAR = @JAR@ JAVA = @JAVA@ JAVABRANCH = @JAVABRANCH@ JAVAC = @JAVAC@ JAVAH = @JAVAH@ JINC = @JINC@ JNI_CFLAGS = @JNI_CFLAGS@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIB_LF = @LIB_LF@ LN_S = @LN_S@ LOCALMAKE = @LOCALMAKE@ LTLIBOBJS = @LTLIBOBJS@ MAJOR_VERSION = @MAJOR_VERSION@ MAKEINFO = @MAKEINFO@ MICRO_VERSION = @MICRO_VERSION@ MINOR_VERSION = @MINOR_VERSION@ MKDEP = @MKDEP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHARED_LINK = @SHARED_LINK@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ VERSION_STRING = @VERSION_STRING@ WITH_BUILDLIBDX_FALSE = @WITH_BUILDLIBDX_FALSE@ WITH_BUILDLIBDX_TRUE = @WITH_BUILDLIBDX_TRUE@ WITH_INSTALLHTML_FALSE = @WITH_INSTALLHTML_FALSE@ WITH_INSTALLHTML_TRUE = @WITH_INSTALLHTML_TRUE@ YACC = @YACC@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ bsh_path = @bsh_path@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ rsh_path = @rsh_path@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ yakker = @yakker@ docdir = $(prefix)/dx/doc doc_DATA = \ README README_SMP README_alphax README_aviion README_hp700 \ README_ibm6000 README_ibmpvs README_indigo README_intelnt \ README_sgi README_sgi4 README_solaris README_sun4 EXTRA_DIST = $(doc_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu --ignore-deps doc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu --ignore-deps doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)" @list='$(doc_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \ $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \ rm -f "$(DESTDIR)$(docdir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-docDATA install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-docDATA uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-docDATA install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-docDATA uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: dx-4.4.4/doc/README0000644000076500000240000013415707003143171010511 00000000000000* * Architecture independent README for IBM Visualization Data Explorer * and IBM Visualization Data Explorer for Symmetric Multiprocessing (SMP) * * For architecture dependent information, see 'Platform-Specific * Considerations' in the on-line help, or see /usr/lpp/dx/README_"arch" * where arch is one of ibm6000, hp700, sun4, aviion, alphax, * solaris, or sgi. * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. This README file is applicable to Data Explorer Version 3.1.4b. If you need assistance installing or using a purchased copy of Data Explorer, send email to dxsupp@watson.ibm.com, or call Data Explorer Support at 800-435-6813. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. Installation Notes A. The Configure Script B. The DX Installation directory (DXROOT) C. NetLS Licensing Problems 2. Getting Started A. Tutorial B. Sample Visual Programs and Scripts 3. Important Features not otherwise documented A. Requirements on how Loops are used in Distributed Mode B. Problems with F1 key and on-line help 4. Differences from version 3.1.4a of Data Explorer A. Ten new fonts B. New module: Pie C. New runtime-loadable module: BSpline D. New samples in samples/callmodule and samples/dxlink directories E. New member, kstate, of events structure for Supervise modules F. A fix for the SGI architecture for users with lots of memory G. A fix to Histogram for partitioned data H. A fix to the licensing code for runtime users I. Hardware rendering fixes 5. Differences from version 3.1.4 of Data Explorer A. Streakline has an additional undocumented parameter B. A new module, DXLOutputNamed, has been added C. Fix in MapToPlane for handling of invalidity for regular data D. Fix in Statistics for handling of invalidity E. Fixes to ChangeGroupMember and ChangeGroupType F. Fix to Morph when large filter specified G. Fix for SelectorList interactor H. Fix to allow dx.h to be used in C++ program I. Fix for gamma correction in saved miff images J. Fix for ReadImage on Solaris K. "All" category has been moved L. OpenGL and Solaris 6. Differences from version 3.1.2 of Data Explorer A. New startup behavior B. New Data Prompter C. AutoAxes no longer scales the object D. Images are now gamma corrected by default when written out E. Get and Set modules replaced by Local and Global versions F. Behavior of DXSHMEM has changed G. startup behavior affects DXLink applications H. Transmitters/Outputs, and Receivers/Inputs cannot share names I. Changes to ReadImage in how images are stored internally J. ReadImage stores images as delayed colors if possible by default 7. User Interface Notes A. Vectors can be float or integer vectors B. Data-Driven Interactors C. Misleading warning can appear when writing out PostScript images 8. Running Data Explorer A. Specifying the Host Name for Remote Execution B. Environment Variables in Script Mode for Remote Execution C. Specifying Host Name for Distributed Execution D. Distributed Execution when a Remote Host is Unavailable E. Distributed Execution using Data Explorer SMP F. Possible problem runing Data Explorer remotely 9. System Environment A. Default Memory Size B. Paging Space C. Per Process Limits 10. Notes on the Hardware Rendering Option A. Rendering shaded surfaces requires z-buffer capabilities B. Fast mouse button transitions may go unnoticed C. Arrow keys partially disabled during navigation D. Button-down interaction disables visual program changes E. Remote OpenGL 11. Import/Export A. The External Data Format 12. Module Notes A. Map Module B. Grid Module C. The Display module and the screen-saver D. Slice Module limitation E. Transformed Group Members F. Print Module G. Morph and Filter Modules H. Error/Changes in Documentation for SuperviseWindow I. Error in Documentation for ManageImageWindow J. New parameter to Streakline, undocumented K. New module, DXLOutputNamed, undocumented L. Parameter option for CategoryStatistics, undocumented M. Additional Control over VRML output using Export 13. X Colormap Interaction A. 24 Bit Root Windows 14. Scripting Language 15. Hints A. All of the Execute Options are Greyed Out B. Faces/Loops/Edges 16. Notes on On-Line Help 17. Adding Modules A. Building a Custom Executive B. Outboard Modules C. Modules written for Version 1 D. Asynchronous Modules E. Error in documentation for starting sample modules 18. OSF/Motif Warning Messages ======================================================================== 1. Installation Notes For a complete installation of Data Explorer, please use the installation instructions provided with the Data Explorer media. However, if you simply wish to install Data Explorer on a new host, then you need to do the following: - duplicate (e.g. copy, NFS mount) the /usr/lpp/dx directory on the new host - use the Configure script to configure the new host Note that you will need a license to run on the new host. If you have a floating license and the new host is on the same network as the license server, then the above procedure will work. However if you have a node-locked license, you will need to obtain a license for the new host. Note that it is important that you be able to start Data Explorer simply by typing "dx". That is, you should not need to specify any path name to start Data Explorer. If you cannot start Data Explorer simply by typing "dx", the User Interface will not be able to start the executive portion of Data Explorer. A. The Configure Script The .../dx/bin/Configure script is run as follows, Configure install and/or Configure deinstall To see a list of options use the following, Configure -help It installs/deinstalls (mostly) soft links in standard places (i.e. /usr/local/bin, /usr/local/lib...) that point back to the DX installation tree. Generally, Configure must be run on each workstation from which you expect to run Data Explorer. If you have problems with your installation, it may be because the file systems where the soft links are placed are NFS mounted and usually root is not allowed to write across the NFS mount. Run Configure with the '-check' option to determine the links that are required on your system. B. The DX Installation Directory (DXROOT) Data Explorer is installed as a single directory tree that is referred to as the DX root directory. As part of configuring Data Explorer, links are placed in the public filesystem that reference files within the DX root directory. The default DX root directory is /usr/lpp/dx. If the root directory is moved after installation, Data Explorer should be reconfigured to use the new root directory with the following: Configure -dxroot In a networked environment, it is most convenient for users if all workstations have Data Explorer available through the same root directory. This makes it easier to run the User Interface on one machine and the server on another. However, if in this situation the two machines do not use the same root directory, the -dxroot option should be used when starting the remote server from within the User Interface. C. NetLS Licensing Problems 1) If you receive the following error after receiving your permanent NetLS licensing key: Starting DX user interface Data Explorer trial password file found You are running an expired trial version of Data Explorer - Verify that: - The environment variables DXTRIALKEY and DXTRIALKEYFILE are not set. - The file 'expiration' has been deleted from the dx install directory. 2) If you receive the following error: Starting DX user interface IBM Visualization Data Explorer : No servers available for this vendor (network license server/library) [1d020006] - Verify that: - the NetLS key been placed in the appropriate directory according to the directions in the 'IBM Visualization Data Explorer Install- ation and Configuration' document. - the key generation report accurately reflects your DataExplorer configuration. Review the 'Product License Information' (key generation report from KeyRegs) and verify that the information it contains matches the output of /usr/lpp/dx/bin/NodeID. - 'target' should equal the 'PREFERRED NetLS Target ID' - 'version' should equal 'Version' - 'license type' should equal 'License Usage' - If there are inconsistencies in any of the above, a new key that reflects the corrected information needs to be requested. - For further diagnostic information, set the environment variable DXTRACENETLS to 1. This prints information about what type of license DX is requesting and what type of licenses it finds. For very detailed diagnostic information at the socket/rpc level (useful for debugging concurrent licenses) set the DXTRACENETLS variable to the value 2. 3) If root is the only user who can run Data Explorer, and all other users receive the following error: IBM Visualization Data Explorer : License not found in database (network license server/server) - Ensure that /dev/lan0 and /dev/ls_targetid are writeable by everyone. 2. Getting Started A. Tutorial A tutorial is provided to help you get started using Data Explorer. The tutorial can be found in the Data Explorer Quick Start Guide. It can also be found on-line, either by typing dx -tutor choosing the "Tutorial" option of the Help menu of any Data Explorer window or from the "Tutorial" button of the Data Explorer startup window B. Sample Visual Programs and Scripts In the directory /usr/lpp/dx/samples/programs you will find a number of example visual programs which illustrate various aspects of Data Explorer. Each sample visual program has a comment associated with it which describes how to use the program. You can access the comment either from the Open File dialog (use the "Comments" button), or, once the Visual Program is opened, from the "Help on Visual Program" option in the Help menu. The samples are easily accessed from the "Samples" button of the Data Explorer startup window. There are a number of subdirectories in /usr/lpp/dx/samples/programs which contain subsets of the sample visual programs organized by topic. So, for example, in /usr/lpp/dx/samples/programs/2D_DATA, you will find a number of sample visual programs which visualize two dimensional data. When the filter for the Open dialog box of the Visual Program Editor is set to the directory /usr/lpp/dx/samples/programs, these subdirectories will appear on the left hand side of the dialog, under "Directories". Simply click on one and then press the Filter button to see the example programs in that directory. In the directory /usr/lpp/dx/samples/macros you will find a number of useful macros. In the directory /usr/lpp/dx/samples/tutorial you will find a number of example visual programs which are designed to be used with the Data Explorer tutorial. In the directory /usr/lpp/dx/samples/scripts you will find a number of example script files which illustrate the use of each module in script mode. In the directory /usr/lpp/dx/samples/program_guide you will find a number of example .c files which will help you in writing your own modules. These samples are designed to be used with the Programmer's Reference. In the directory /usr/lpp/dx/samples/dxlink you will find a number of example programs which illustrate the use of DXLink. In the directory /usr/lpp/dx/samples/callmodule you will find a number of example programs which illustrate the use of the DXCallModule interface to call Data Explorer modules from an external program. In the directory /usr/lpp/dx/samples/user you will find a number of example programs which illustrate how to compile your own module as runtime-loadable, inboard, or outboard. In the directory /usr/lpp/dx/samples/outboard you will find a number of example outboard modules. In the directory /usr/lpp/dx/samples/supervise you will find examples of custom user interactors for use with SuperviseWindow and SuperviseState 3. Important Features not otherwise documented A. Requirements on how Loops are used in Distributed Mode There are limitations on how you can use looping in distributed mode. The entire contents of a loop must run on the same machine. This means that if you want to distribute a loop to a machine other than the master, you *must* put that loop in a macro, and place the macro in an execution group assigned to the other machine. B. Problems with F1 key and on-line help If the F1 key does not work for obtaining help-on-context in the User Interface, you may need to put the following line in your .motifbind file in your home directory: osfHelp :F1 4. Differences from version 3.1.4a of Data Explorer A. Ten new fonts In /usr/lpp/dx/fonts are 10 new fonts, all filled fonts, rather than line fonts. These include a variety of "swiss style" fonts (san-serif), italic, plain, bold, and condensed (thinner), an italic and plain "dutch style" (similar to Times Roman), a monospace font, a symbol font, and a "casual" font (dom). These fonts can be specified for any module for which a font may be specified (AutoAxes, Caption, Plot, etc.) B. New module: Pie A new module has been added to this release of Data Explorer. This module does not have a manual page in the User Reference. See Pie.man in this directory. See also /usr/lpp/dx/samples/programs/ExamplePieChart.net. C. New runtime-loadable module: BSpline You can find a runtime-loadable module BSpline in /usr/lpp/dx/bin_arch, where arch is one of ibm6000, hp700, solaris, sgi, or alphax. The mdf file for bspline can be found in /usr/lpp/dx/lib. See the comments in bspline.mdf for more information. D. New samples in samples/callmodule and samples/dxlink directories Several new samples of example applications built using dxlink and dxcallmodule have been added to these directories. See the Readme files in the respective directories for more information. Also check our home page (http://www.almaden.ibm.com/dx) for extensive new documentation on the subject of application building. This documentation discusses the samples in the callmodule and dxlink directories. E. New member, kstate, of events structure for Supervise modules See item 12H for more information. F. A fix for the SGI architecture for users with lots of memory SGI users with large amounts of memory were sometimes having difficulty starting dx. This has been fixed. G. A fix to Histogram for partitioned data The "sum" output was being incorrectly computed for partitioned data. H. A fix to the licensing code for runtime users Runtime dx users can now start up a dx session from the startup ui menu. I. Hardware rendering fixes There is a fix in OpenGL to fix a problem with getting a depth buffer. This solves a problem with getting "bad triangles" in your image. There is also a fix in GL for drawing points. 5. Differences from version 3.1.4 of Data Explorer A. Streakline has an additional undocumented parameter See 12 J below. B. A new module, DXLOutputNamed, has been added See 12 K below. C. Fix in MapToPlane for handling of invalidity for regular data In certain situations, MapToPlane was incorrectly handling regular/regular data which contained invalid data. This has been fixed. D. Fix in Statistics for handling of invalidity In certain unusual situations, Statistics was not handling invalid data correctly. This has been fixed. E. Fixes to ChangeGroupMember and ChangeGroupType ChangeGroupMember was sometimes incorrectly inserting/replacing objects into groups. ChangeGroupType was not correctly maintaining attributes at the top level object when changing the group type. These problems have been fixed. F. Fix to Morph when large filter specified If an especially large filter was specified to Morph, Morph could segfault. This has been fixed. G. Fix for SelectorList interactor Under certain circumstances the UI could segfault if particular entries were made in the SetAttributes dialog of the SelectorList interactor. This has been fixed. H. Fix to allow dx.h to be used in C++ program Necessary "extern C" lines added to certain .h files to allow dx.h to be used in C++ program I. Fix for gamma correction in saved miff images Images saved in miff format now correctly use specified gamma correction. J. Fix for ReadImage on Solaris There was a bug in reading gif format images on solaris. This has been fixed. K. "All" category has been moved The "All" category in the Visual Program Editor has been moved from the end of the list of categories to the beginning. This is to ensure that as more categories of modules are added (by Data Explorer development or by users), the "All" category always remains easily visible for new users. L. OpenGL and Solaris If you are interested in using OpenGL on the Solaris architecture, please contact Data Explorer support: dxsupp@watson.ibm.com or 1-800-435-6813 (US and Canada), or 914-784-5142. 6. Differences from version 3.1.2 of Data Explorer A. New startup behavior Simply typing the command "dx" will start the Data Explorer startup window, which allows you to perform a number of different tasks, such as running a sample program, starting the data prompter, starting the tutorial, etc. To simply start the Data Explorer visual program editor (the previous default behavior) type dx -edit. B. New Data Prompter The Data Prompter now supports formats other than the General Array format, and provides a set of general purpose programs to reduce the "time to first picture" C. AutoAxes no longer scales the object In releases of Data Explorer prior to 3.1.4, AutoAxes reduced the size of the object to 85% of it's original size. This scaling has been removed D. Images are now gamma corrected by default when written out A gamma correction factor of 2 is applied to images by default when they are written out. Note that if you are writing out images for later use within Data Explorer, you should write out images with gamma=1 (see WriteImage, or the SaveImage dialog box) so that they are not doubly gamma-corrected when displayed. E. Get and Set modules replaced by Local and Global versions The Get and Set modules have been replaced by GetLocal and GetGlobal and SetLocal and SetGlobal. Visual programs which use Get and Set can still be run; Data Explorer will automatically use GetGlobal and SetGlobal instead. However, performance advantages may be possible by using GetLocal and SetLocal instead; please see the manual pages for these modules in the Data Explorer User Reference. The Visual Program Editor will help you change your networks; see the Edit menu Assign Get/Set scope option. F. Behavior of DXSHMEM has changed In versions of Data Explorer prior to 3.1.4, DXSHMEM, if set to anything, would force shared memory to be used. In version 3.1.4, DXSHMEM must be set to anything other than -1 for shared memory to be used; if set to -1, then the data segment will be extended, for architectures for which this is permissible. G. startup behavior affects DXLink applications Because the command "dx" now starts the Data Explorer startup window, DXLink applications will need to use either -image or -edit in the DXLStartDX command string. H. Transmitters/Outputs, and Receivers/Inputs cannot share names Version 3.1.4 prevents Transmitter and Output nodes, and Receiver and Input nodes from sharing names. These name collisions were permitted in earlier versions and could lead to incorrect code generation. Now an offending node will be renamed automatically and the user notified. I. Changes to ReadImage in how images are stored internally By default, all images read in by ReadImage are stored internally in bytes, rather than floating point. This will only affect visual programs in which you are manipulating colors and expect them to be floating point colors. You can use the "colortype" parameter to ReadImage or the DXPIXELTYPE environment variable to change the default behavior. See the ReadImage manual page. J. ReadImage stores images as delayed colors if possible by default For images in delayed color format (gif, some tiff and some miff), ReadImage will by default store the image with delayed colors. You can override this default behavior by using the "delayed" parameter to ReadImage or the DXDELAYEDCOLORS environment variable. See the ReadImage manual page. 7. User Interface Notes A. Vectors can be float or integer vectors If you specify integral values for vector, either using a vector interactor or using a configuration dialog, an integer vector will be produced. Otherwise, the vector will be a floating point vector. B. Data-Driven Interactors Changing an interactor from data-driven to non-data-driven, and then back to data-driven may not result in the proper updating and execution of the visual program. After switching back to data-driven mode, you should reset the server (using "Reset Server" in the Connection menu) to enable proper execution of the visual program. C. Misleading warning can appear when writing out PostScript images Occasionally you may see a warning when writing out PostScript images that the image will not fit on the page, even though the page size as specified is correct. Ignore the warning. Apparently this only occurs if you have modified the PPI setting in the Save Image or Print Image dialog. Note that it is not typically necessary to set this field; it is typically better to just set the overall resolution of the image using the Input Image size field. Note that it is NOT necessary to set PPI to match the DPI of the printer. 8. Running Data Explorer A. Specifying the Host Name for Remote Execution Be sure to specify the host name of the remote host as what is returned by "uname -n" on the remote host. This ensures that Data Explorer finds the host correctly. B. Environment Variables in Script Mode for Remote Execution When running Data Explorer remotely in script mode using the command "dx -host hostname -script", local environment variables, such as DISPLAY, are not passed to the remote host. C. Specifying Host Name for Distributed Execution Distributed execution does not handle network addresses like 9.2.37.10. Specify the host name as what is returned by "uname -n" on the machine you wish to run on. D. Distributed Execution when a Remote Host is Unavailable If, from the Execution Group Assignment menu, you are trying to connect to a remote host and the connection times out, you may need to reread the visual program into the user interface in order to retry the connection. The connection may time out if, for example, the remote machine was down when you tried to connect, or you did not have your .rhosts file set up properly to allow remote shells to be executed. However, if you make any changes to the Execution Group Assignment menu, then the user interface will retry the connections. In this case, it is not necessary to reread the visual program. E. Distributed Execution using Data Explorer SMP When using both distributed execution and Data Explorer SMP, it is recommended that a single processor host be connected to by the User Interface, i.e. be used as the master. F. If you start the user interface on a machine with DX installed for a given architecture or version of DX, and then try to start an executive using the Start Server dialog box on a remote system that does not have DX installed in the same place as the local machine, then the executive will not be able to start on the remote machine. This is because bin_$arch (where $arch is the architecture of the system the user interface is running on) is not present remotely. This problem is much more subtle when you are starting up your own exec on the remote system. The exec may start, but will not be able to execute bin_$arch/dxshadow. 9. System Environment A. Default Memory Size Except where noted in the architecture specific README, by default, Data Explorer will be allowed to grow to use all but 8 megabytes of the physical memory when there is less than 64 megabytes of physical memory. If there is more than 64 megabytes of physical memory, then Data Explorer will, by default, be allowed to grow to 7/8 of the amount of physical memory. Users may wish to alter this default amount of memory by using the "-memory" parameter to the dx command, or the "Memory" field of the Connect to Server--Options dialog. B. Paging Space Since it is possible for DX to use a large amount of virtual memory, users should configure systems with paging space at least two or three times the total physical memory in their system. If you do not have enough paging space, the operating system may kill Data Explorer (or other processes), sometimes without warning, depending on the architecture. Run /etc/lsps -a to list all paging space. If you have N megabytes of physical memory, (on most architectures) the first N megabytes of page space are reserved to back that, so the available page space is the total listed with lsps minus the physical you have. C. Per Process Limits Some systems may enforce per process limits on such things as data segment size, stack size and so forth. These may need to be adjusted to run Data Explorer with large amounts of memory to avoid paging. 10. Notes on the Hardware Rendering Option The behavior of Data Explorer differs in a few ways when using the hardware rendering option. A. Hardware rendering requires z-buffer capabilities. If hardware rendering is attempted without a z-buffer card, a warning will be given and the results are unpredictable unless otherwise specified in the architecture specific README files. B. Fast mouse button transitions may go unnoticed When mouse button interactions are used in the image window to perform rotate, navigate or roam, the image should be allowed to update before the next mouse interaction is performed. Failure to do so may cause the interaction to be ignored. This also means that when using direct interaction in hardware rendering mode with `Execute-on-Change' enabled, a change in the view (with mouse button depressed) is not accepted until the current image is rendered. Thus, when rotating complex objects cursor movements must be commensurate with rendering speed. Rendering approximation can be used to increase the effective rendering speed. C. Arrow keys partially disabled during navigation During navigate mode, the use of the arrow keys to change the 'Motion' and 'Pivot' speeds is ignored until the mouse button is released. D. Button-down interaction disables visual program changes When using hardware rendering with direct interactors in execute-on-change mode, updates are ignored until the mouse button is released. This is noticeable when rotating a scene which contains axes from AutoAxes. The axes in the scene will not reflect the new camera position until the mouse button is released and the AutoAxes module is allowed to re-run. E. Remote OpenGL Remote OpenGL can be run from an architecture on which Data Explorer supports OpenGL (ibm6000, alpha, sgi) to another OpenGL capable architecture (ibm6000, alpha, sgi), assuming the following conditions are met: The machine that the Data Explorer executive is running on must have OpenGL support installed (i.e., /usr/lib/libGL.a is installed) The machine the executive is displaying to must have OpenGL suport installed (i.e., /usr/lib/libGL.a is installed) and the X server must be configured to support OpenGL (i.e., the X server must be started with the GLX extension). 11. Import/Export A. The External Data Format When using the Data Explorer external data format as described in the User Guide, you must define an object before you reference that object. For example, you must define an array before you define the field in which the array will be placed, and you must define a field before you define the group in which the field will be placed. 12. Module Notes A. Map Module Map invalidates points outside of the domain of the map. Since Map is also called internally by Color, points with corresponding data values outside of the range of the colormap will be marked invalid. Similarly, when an explicit gradient field is passed to the Isosurface module, the gradient field must completely encompass the resulting isosurface. B. Grid Module Grid method "ellipse" assumes that the two given vectors in "shape" are orthogonal. C. The Display module and the screen-saver If the screen-saver is on, Data Explorer will wait to display an image. D. Slice Module limitation The Slice module takes a slice from a grid, reducing the grid's dimensionality by 1. This is in contrast to the Slab module which takes a slice without reducing the dimensionality. The Slice module will produce correct results only when the data form an orthogonal grid with the first coordinate (x) varying the slowest, and the last coordinate (z in a three-dimensional coordinate system) varying the fastest. For regular grids, the delta vectors must be a 0 0 0 b 0 0 0 c for any a, b, and c. For data which do not fit this description, you can use the Slab module instead to take a subset of the data, and then use Mark(object,"positions"), Compute, and Unmark(object,"positions") to remove the desired dimension from the object. E. Transformed Group Members It is recommended not to apply transforms to individual MultiGrid or Series group members. In limited cases, this can cause abnormal termination. F. Print Module All values are printed in decimal format except for byte array data which is printed in hexadecimal. G. Morph and Filter Modules Morph and Filter replicate the boundary cells into the overlap region necessary to apply the filter. H. Error/Changes in Documentation for SuperviseWindow The manual page for SuperviseWindow indicates that the events output is an array of integer 4-vectors. It is in fact an array of integer 8-vectors. The first 4 integers in the 8-vector are as discussed in the documentation; the last three integers in the 8-vector are unused, and are reserved for future use. The fifth integer is described as follows (this was recently added, so the definition of the events structure differs from what is in the documentation): The handling of keypress events has been altered to make it possible to handle modifier keys correctly. In this version, pressing the control, shift or alt keys will no longer trigger an event. Instead, the state of these keys affects other events that occur while these keys are pressed. Thus, when the user presses the control key and, while it is being held, strikes another key, a single event will be triggered. (In the past, pressing the control key would have triggered its own event, returning a character code of 0.) The character code generated for the event will be the control version of the pressed key - eg. control-k or capital-K, when the k key is pressed with the control key or shift key. In addition, a field has been added to each DXEvent structure that contains information about the current mouse and button state at the time of the event. By looking at this structure element the user can determine whether the modifier keys are being held down when the event is generated, thereby differentiating between mouse interactions that occur with or without these modifiers. This enables the user to implement a much wider range of interactions within a single interaction mode. In each DXEvent structure, the additional field occupies a place that was previously reserved; therefore, the structure size does not change, nor does the width of the event tuples produced by the events outputs of SuperviseWindow and SuperviseState. The structures are currently: typedef struct { typedef struct { int event; int event; int x; int x; int y; int y; int state; int key; int kstate; int kstate; } DXMouseEvent; } DXKeyPressEvent; The event tuples are integer 8-vectors, with the above structures occupying the first 5 positions. The kstate fields contain the following bit flags: ShiftMask 0x0001 LockMask 0x0002 ControlMask 0x0004 Mod1Mask 0x0008 Mod2Mask 0x0010 Mod3Mask 0x0020 Mod4Mask 0x0040 Mod5Mask 0x0080 Button1Mask 0x0100 Button2Mask 0x0200 Button3Mask 0x0400 Button4Mask 0x0800 Button5Mask 0x1000 For more information regarding these state flags, see the Xlib documentation. I. Error in Documentation for ManageImageWindow The manual page for ManageImageWindow says that you can pass the "window" (e.g. the "window" output of the Image tool) of the window to be managed to the "name" parameter of ManageImageWindow, if "how" is specified as "window". This is incorrect. "how" must be either "title" or "label". J. New parameter to Streakline, undocumented An undocumented parameter has been added to the Streakline module. Its name is "hold", and it defaults to 0 (false). If "hold" is set to 1 (true), then Streakline uses the starting information (i.e. the starting points and times) ONLY for frame=0. Streakline will continue to use the values passed in for frame=0 for all other frames. This simplifies the use of Streakline for the case when vector fields are passed in one at a time, rather than as a series group all at once; you can be sure that each frame will use the same starting points and times, even if the values passed in to those parameters happen to change due to other changes in the visual program as the sequencer runs. K. New module, DXLOutputNamed, undocumented A new module has been added which is not included in the documentation. Its name is DXLOutputNamed, and it differs from DXLOutput in three ways. The first difference is that the name associated with the variable to be passed to a DXLink application can be specified via a direct input to the module, rather than by using the Notation field of the configuration dialog box as with DXLOutput. The second difference is that DXLOutputNamed can be placed inside a macro, while DXLOutput can not. The third difference is that the User Interface will not store the last value sent into/from DXLOutputNamed in the .net file, as it does with DXLOutput. This means that you cannot run the .net file without a DXLink connection and expect to see the same result, which you could if you were using DXLOutput. L. Parameter option for CategoryStatistics, undocumented In addition to the documented options for the "operation" parameter, "accum" is a valid option. The meanings of the various options are as follows: "count" determines the number of items in each category. "mean" determines the mean of the data values associated with each category. "sd" determines the standard deviation of the data values associated with each category. "var" determines the variance of the data values associated with each category. "min" and "max" determine the minimum and maximum respectively of the data values associated with each category. "accum" determines the accumulated value of all the data values associated with each category. M. Additional Control over VRML output using Export There are a set of attributes which can be attached to an object to control aspects of the vrml export of that object. These attributes are the following: "VRML Insert First Child Node" (Specifies a string which will be placed into the VRML file as the first child Node of the overall group. This attribute must be placed at the top level of the exported object. For example, you may want to insert a TouchSensor to detect mouse clicks. See the VRML specification for more information.), "VRML Set NavigationInfo type" (Specifies a string which will be inserted into the vrml object as the type field of the NavigationInfo node. See the VRML specification for more information.), "VRML use data as height" (Specifies a floating point value. If specified, an ElevationGrid node will be created in the VRML output instead of an IndexFaceSet. The "data" component is used as the height field in the ElevationGrid node. The value of the attribute is multiplied by each data value. This attribute must be attached to the 2D regular field.), "VRML font style" (the font style for the object. This can be applied either to the entire object or to a field within an object. If you set FontStyle for a field within a larger object, the field-level font style overrides the object-level font style. If you do not specify a font style, a default style will be used. See the VRML specification for more information.). "VRML text as string" (By default, labels on autoaxes and plots, as well as text glyphs using AutoGlyph and Glyph, are exported as geometry. This can amount to a large amount of data. You can specify that labels and text glyphs be exported as strings instead by setting this attribute to 1.) A macro (ExportVRML.net) is provided in /usr/lpp/dx/samples/macros to make setting these attributes easier. Captions exported in VRML must be viewport relative. 13. X Colormap Interaction A. 24 Bit Root Windows By default, Data Explorer creates Image and Display windows of the same depth as the root window, and the depth of the window is stored when the visual program is saved. Because many visual programs, including the supplied samples, are stored with 8 bit windows you may need to use the mouse to point to the image in order to see the correct colors. You can avoid this by using the Image Window Options menu to choose "Image Depth" and to select 24 bits. 14. Scripting Language Lists cannot contain variables. All items in lists must be constants. 15. Hints A. All of the Execute Options are Greyed Out This means that you are not connected to a Data Explorer executive. Go to the Connection menu on either the image window or the editor window. Choose "Start Server...". Type in the name of the machine on which you are running the executive software, if it's not already there. Press "Ok". B. Faces/Loops/Edges Some tools do not support faces, loops, and edges data. If you wish to use more tools on this type of data, then convert it to triangles using Refine. 16. Notes on On-Line Help Figures have been omitted from On-Line Help. Users are directed to the hard copy manual at appropriate points in the On-Line Help. Alternatively, you can use the html documentation available in /usr/lpp/dx/html. 17. Adding Modules A. Building a Custom Executive The Makefiles in /usr/lpp/dx/samples/user provides an example of how to build a customized executive. Compiling a user defined module will require an ANSI compliant C compiler which can support function prototypes and the ellipsis notation (...) used in function declarations. B. Outboard Modules All outboard modules should link with the libraries "-lDXlite -lm". A number of examples of outboard modules, along with makefiles for each architecture and a README with more detailed information about outboard modules may be found in the directory /usr/lpp/dx/samples/outboard. C. Modules written for Version 1 In order to compile a module written for Version 1 you need to include #include in your module. D. Asynchronous Modules By default, asynchronous modules by default are given a CACHE_LAST attribute for outputs. This means that only the last output of the module is cached. You can override this by specifying CACHE_NONE (this is done either in the configuration dialog box for the module or by using the Edit menu Output Cacheability option). If you set the output to CACHE_ALL, it will be reset to CACHE_LAST, since there is no value to specifying CACHE_ALL for an asynchronous module. It would be of value for users to also set the cacheability of all outputs of modules downstream of the asynchronous module to CACHE_LAST or CACHE_NONE. E. Error in documentation for starting sample modules The documentation tells you to start your custom module using a command such as dx -mdf ./showpick.mdf -exec ./dxexec Because the default command dx now starts the startup ui, you must instead include -edit, -menubar, or -image in the startup line, for example dx -edit -mdf ./showpick.mdf -exec ./dxexec 18. OSF/Motif Warning Messages There are 3 groups of warning messages a user might see when Data Explorer starts. Many of them appear when starting any OSF/Motif application. G R O U P I: These messages will appear only from Data Explorer. No other OSF/Motif program will make these. XtWarning: Name: vpeDeleteOption Class: XmPushButton Illegal mnemonic character; Could not convert X KEYSYM to a keycode XtWarning: Name: endExecutionOption Class: XmPushButton Illegal mnemonic character; Could not convert X KEYSYM to a keycode S O L U T I O N: The Edit/Delete and Execute/End Execution options on the menubar in Data Explorer require Delete and End keys respectively. After you make the following modifications to $HOME/.motifbind, restart your window manager if you're using mwm (or one of its cousins like vuewm or 4Dwm), otherwise run xmbind. For vpeDeleteOption add a line like this: osfDelete :Delete For endExecutionOption add a line like this: osfEndLine :End The 2 example lines above work for most machines although they depend on the configuration of the machine at which you sit. For hp700 workstations running hpux version 8 substitute DeleteChar for Delete. For hp700 workstations running hpux version 9 substitute hpDeleteChar for Delete. G R O U P II: These messages are not specific to Data Explorer. Those in Part A are common when displaying on an hp700 running hpux version 9 or later. Those in Part B usually come from a system running hpux 8 or earlier. You would also see messages like these if you had a typographical error in $HOME/.motifbind. Part A: Warning: Cannot convert string "InsertChar" to type VirtualBinding Warning: Cannot convert string "DeleteChar" to type VirtualBinding Part B: Warning: Cannot convert string "hpInsertChar" to type VirtualBinding Warning: Cannot convert string "hpDeleteChar" to type VirtualBinding S O L U T I O N: Examine /usr/lib/X11/XKeysymDB on the machine on which you are executing (which may not be the machine at which you are sitting). The key name in the error message is not in that file. Either modify the file, or find a substitute key to use in your $HOME/.motifbind. G R O U P III: These messages are not specific to Data Explorer. They will appear when running any OSF/Motif program. XtWarning: translation table syntax error: Unknown keysym name: osfActivate XtWarning: ... found while parsing 'osfActivate:ManagerParentActivate()' XtWarning: translation table syntax error: Unknown keysym name: osfCancel XtWarning: ... found while parsing 'osfCancel:ManagerParentCancel()' XtWarning: translation table syntax error: Unknown keysym name: osfSelect XtWarning: ... found while parsing 'osfSelect:ManagerGadgetSelect()' S O L U T I O N: You must have a recent version of the file /usr/lib/X11/XKeysymDB in order to run OSF/Motif programs. Most manufacturers provide one but older versions of SunOS with OpenWindows, machines with custom installations, and possibly a few other workstations will not have one. With some releases of the X Window System it is acceptable to set the environment variable XKEYSYMDB to the path name of a valid XKeysymDB file. (There is no way to tell if yours is among them other than to try it.) You could also add the following entries to your /usr/lib/X11/XKeysymDB: osfCopy :1004FF02 osfCut :1004FF03 osfPaste :1004FF04 osfBackTab :1004FF07 osfBackSpace :1004FF08 osfClear :1004FF0B osfEscape :1004FF1B osfAddMode :1004FF31 osfPrimaryPaste :1004FF32 osfQuickPaste :1004FF33 osfPageLeft :1004FF40 osfPageUp :1004FF41 osfPageDown :1004FF42 osfPageRight :1004FF43 osfActivate :1004FF44 osfMenuBar :1004FF45 osfLeft :1004FF51 osfUp :1004FF52 osfRight :1004FF53 osfDown :1004FF54 osfEndLine :1004FF57 osfBeginLine :1004FF58 osfEndData :1004FF59 osfBeginData :1004FF5A osfPrevMenu :1004FF5B osfNextMenu :1004FF5C osfPrevField :1004FF5D osfNextField :1004FF5E osfSelect :1004FF60 osfInsert :1004FF63 osfUndo :1004FF65 osfMenu :1004FF67 osfCancel :1004FF69 osfHelp :1004FF6A osfSelectAll :1004FF71 osfDeselectAll :1004FF72 osfReselect :1004FF73 osfExtend :1004FF74 osfRestore :1004FF78 osfDelete :1004FFFF ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. Motif is a trademark of Open Software Foundation, Inc. OSF and OSF/Motif are trademarks of Open Software Foundation, Inc. Sun is a registered trademark of Sun Microsystems, Inc. HP is a registered trademark of Hewlett-Packard Company. NFS is a registered trademark of Sun Microsystems, Inc. X Window System is a trademark of Massachusetts Institute of Technology. DGC is a trademark of the Data General Corporation. DEC 3000 APX is a registered trademark of Digital Equipment Corp. dx-4.4.4/doc/README_alphax0000644000076500000240000000763406722617735012070 00000000000000* * README for IBM Visualization Data Explorer for DEC 3000 APX * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. System Configuration A. Keyboard Mappings B. X warnings during drag and drop 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering B. Hardware Rendering Not Available Message C. Transparency not enabled on the PXG adaptor family ======================================================================== 1. System Configuration A. Keyboard Mappings The DEC Alpha may issue a warning message when dx is started. The message complains about an illegal mnemonic character that it could not do a keysym to keycode conversion on. The offending key is the "End" key. The solution is use the xmodmap facility to "change the keycaps" on the DEC keyboard. The Alpha executes a file called .X11Startup in your home directory when you log in. Place the following line of code in the .X11Startup in your home directory: xmodmap -e "keycode 0x74 = End" This will cause the F14 key on the DEC LK401 (American) keyboard to behave like the "End" key. This will handle the case where you log into the DEC Alpha. If you are running from another workstation and displaying to the DEC Alpha, you should execute the following commands (in order): 1. export DISPLAY=alpha_system_name:0 (ksh) or setenv DISPLAY alpha_system_name:0 (csh) 2. xmodmap -e "keycode 0x74 = End" 3. dx /-----| Data Explorer interpets the < X | above the Return key as "Delete". \-----| B. X warnings during drag and drop The X server on OSF/1 V2 can exhaust its resources during drag and drop operations. If you see several Xlib warnings on stderr while dragging several nodes in the Visual Program Editor, then the following change to /usr/lib/X11/xdm/Xservers will solve the problem: before: :0 local /usr/bin/X11/X after: :0 local /usr/bin/X11/X -bs -su This disables backing store and save unders. After making this change the X server must be restarted, this is most easily accomplished with the following (as root): /sbin/init.d/xdm stop /sbin/init.d/xdm start 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering When hardware rendering is requested for the first time, the executive dynamically loads /usr/lpp/dx/bin_alphax/DXhwddOGL.o and the OpenGL shared libraries. If one of these is not present then hardware rendering will be disabled. B. Hardware Rendering Not Available Message When the message 'Hardware rendering not available: /usr/lib/libGL.a not found' appears, then OpenGL shared library or run-time support has not been installed. C. Transparency not enabled on the PXG adaptor family When using hardware rendering, transparency is not enabled on the PXG family of graphic adaptors because of performance reasons. However, the existance of the environment variable DX_PXG_TRANSPARENCY will enable the use of transparency on that adaptor. ---------------------------------------------------------------------- The following trademarks apply to this information: DEC 3000 APX is a registered trademark of Digital Equipment Corp. IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. Motif, OSF, and OSF/Motif are trademarks of Open Software Foundation, Inc. OpenGL is a trademark of Silicon Graphics, Inc. dx-4.4.4/doc/README_aviion0000644000076500000240000000166006722617735012071 00000000000000* * README for IBM Visualization Data Explorer for Data General AViiON * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. This README intentionally left blank ======================================================================== The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a registered trademark of International Business Machines Corporation DGC is a trademark of the Data General Corporation. dx-4.4.4/doc/README_hp7000000644000076500000240000001245506722617735011446 00000000000000* * README for IBM Visualization Data Explorer for HP * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. System Configuration A. Colormap Considerations B. Default Keyboard Mappings C. DX no longer statically links libC 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering B. Hardware Rendering Not Available Message C. Shared Memory Usage D. The CRX Adapter and Direct Interactors E. Resizing in Script Mode F. Near Clipping in Perspective Mode G. Z-buffer ======================================================================== 1. System Configuration A. Colormap Considerations If you are using a workstation with a CRX adapter, you can reduce the visual effect of colormap thrashing by setting the environment variable SB_X_SHARED_CMAP to TRUE so that X and Starbase will use a shared colormap. If you are using x11start, make sure you set this environment variable before you issue the x11start command. If you are using the HP VUE (Visual User Environment) add the following to the end of the Xconfig file: vuelogin*environment:SB_X_SHARED_CMAP=TRUE The Xconfig file is located in /usr/vue/config/Xconfig for HP/UX 9.0x. This will effectively make the first 8 colormap cells accessible (read/only) to both X and StarBase, reserve the next 34 cells for X, and set aside the remaining 214 for StarBase. Since there are relatively few colors available to X, it is possible that you will get color map allocation errors when invoking Data Explorer, especially if you use the HP VUE, as it can require all 42 colors reserved for X, depending on the settings of the following resources: *colorUse *shadowPixmaps The *colorUse resource determines the number of color sets available in the current HP VUE color palette, whereas the shadowPixmaps determines whether shadowing is done with colors or pixmaps. For HP/UX 9.0x, color usage is reduced in HP VUE by cascading up from the 'Tool Box' icon, and selecting the following icons in order: General System_admin EditResources Edit the file provided in the last window to include *ColorUse: LOW_COLOR *ShadowPixmaps: TRUE You will then need to log out from the console and log back in for these new resources to take effect. B. Default Keyboard Mappings On the Hewlett Packard 9000/700 series workstations, the Delete key is marked "Del", and is found on the numeric keypad. C. DX no longer statically links libC Data Explorer no longer statically links in libC on hp systems. This may be a problem on older hp systems (9.x) where the libC runtime library was not installed by default. However, this library was on the original distribution so you should have a copy you can install. 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering When hardware rendering is requested for the first time, the executive dynamically loads /usr/lpp/dx/bin_hp700/DXhwdd.sl and the StarBase shared libraries. If one of these is not present then hardware rendering will be disabled. B. Hardware Rendering Not Available Message When the message 'Hardware rendering not available: /usr/lib/libsb.sl not found' appears, then StarBase shared library or run-time support has not been installed. C. Shared Memory Usage The hardware rendering software uses shared memory segments. If Data Explorer exits abnormally after beginning hardware rendering, then these shared memory segments may not be properly deallocated. Use the 'ipcs' command to see if this has happened and use the 'ipcrm' command to remove them. If these are not removed they may hamper subsequent executions. D. The CRX Adapter and Direct Interactors When using the direct interactors and hardware rendering on a CRX graphics card, zoom boxes and probe points may cause minor image corruption while the mouse button is depressed. When the mouse button is released, the proper image is generated. E. Resizing in Script Mode For script mode and hardware rendering, an open or resize of the display window might produce a Starbase error. F. Near Clipping in Perspective Projections When navigating into an object, the near clip plane may clip graphics primitives to their triangle boundaries instead of the exact intersection with the clip plane. G. Z-buffer Hardware rendering may be performed on a system without a z-buffer card if PowerShade is installed on that system. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. HP, Starbase and PowerShade are registered trademarks of Hewlett-Packard Company. HP-UX and HP VUE are registered trademarks of Hewlett-Packard Company. dx-4.4.4/doc/README_ibm60000000644000076500000240000001671706722617735011672 00000000000000* * RISC System/6000 specific README for IBM Visualization Data Explorer * * * The information contained in this file consists of architecture specific hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. System configuration A. User Limits B. Prerequisite Software C. "OS page space is low, terminating execution" 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering B. Hardware Rendering Not Available Message C. The Gto D. Gt4x under Sequencer control E. 2D Graphics Cards with AIX Option X11_3d.gl.rte F. The Gto does not support transparency G. OpenGL vs GL hardware renderer H. Backing store performance using the OpenGL renderer I. The GXT1000 3. User Interface Notes A. Visual Program line connections B. Differences for AIX 4.1 desktop ======================================================================== 1. System configuration A. User Limits AIX enforces per process limits on the amount of physical memory used by a process. When you want Data Explorer to use large amounts of physical memory, it is advised that you change these per process limits using 'smit' by traversing the following menu selections: Security & Users Users Change / Show Characteristics of a User You may want to change "Max physical MEMORY" to be some number a few megabytes less than the machine size. This number is specified in 512 byte blocks. For example, a machine with 64MB may have this limit set to 114688, 56MB. B. Prerequisite Software The following are required and must be at or greater than the given release level... bos.obj 03.02.0000 bosext1.csh.obj 03.02.0000 X11rte.obj 01.02.0000 X11rte.ext.obj 01.02.0000 If present, the following are required to be at or greater than the given release level... X11_3d.gl.rte.obj 01.02.0000 X11_3d.obj 01.02.0000 X11dev.obj 01.02.0000 C. "OS page space is low, terminating execution" This message occurs when there is not enough page space allocated. See "Paging Space" in the general README file. 2. Hardware Rendering Considerations The behavior of Data Explorer on the RISC System/6000 differs in a few ways when using the hardware rendering option. A. Shared Library Support for Hardware Rendering When hardware rendering is requested for the first time, the executive dynamically loads /usr/lpp/dx/bin_ibm6000/DXhwddOGL.o and the OpenGL shared libraries. If one of these is not present then hardware rendering will be disabled. See G "OpenGL vs GL hardware renderer". B. Hardware Rendering Not Available Message When the message 'Hardware rendering not available: /usr/lib/libgl.a not found' appears, then GL shared library or run-time support has not been installed. C. The Gto The Gto drawing processor card should have a Date Code greater than 9052, and any EC Level except S24699. To determine the Date Code and EC Level, type "lscfg -v -l hispddrp*". If either requirement is not met, contact IBM Service to request an upgrade to the Drawing Processor Card (hispddrp*). D. Gt4x under Sequencer control When users of the Gt4x hardware accelerator cards run visual programs which generate simple images, either small or with few objects, quickly under Sequencer control, their system may be bogged down with graphics work. To avoid this situation, set the throttle parameter either to the Display module or with the Throttle dialog for an Image module to some small number (e.g. 0.25 seconds). E. 2D Graphics Cards with AIX Option X11_3d.gl.rte When users try to use hardware rendering on machines which don't support 3D rendering but on which the X11_3d.gl.rte option is installed, Data Explorer may abnormally exit. F. The Gto does not support transparency The High Speed 3D Graphics Accelerator (Gto) does not support transparency when Hardware Rendering is selected. G. OpenGL vs GL hardware renderer The default hardware renderer on AIX platforms is OpenGL. To use OpenGL, you must start the X server as follows: xinit -- -x mbx -x abx -x GLX To use the GL hardware renderer export the environment variable DXHWMOD: Korn shell (ksh): export DXHWMOD=DXhwdd.o C shell (csh): setenv DXHWMOD DXhwdd.o (The alternative is DXHWMOD=DXhwddOGL.o) You can also choose between OpenGL and GL on the command line to dx by specifying -hwrender [gl|opengl] H. Backing store performance using the OpenGL renderer When DX is in hardware rendering mode it uses a pixel read function to read back the image after each complete display. The saved image is used to refresh the window when an area is later obscured and exposed (e.g. pop-up menus) and also for erasing lines drawn during use of the direct interactors (e.g. zoom box). When using the OpenGL renderer on adapters where the time to read and write pixels is slow relative to drawing geometry, it may be preferable to disable this mechanism by exporting the environment variable DXNO_BACKING_STORE: Korn shell (ksh): export DXNO_BACKING_STORE=1 C shell (csh): setenv DXNO_BACKING_STORE 1 This will cause the image to be redrawn when image areas are exposed and will cause the direct interactors to erase lines by using black. The black lines will persist until the image is redrawn. I. The GXT1000 In order to use hardware rendering of any type (GL 3.2 or OpenGL) on the GXT1000, users must start the X server with the GLX, abx and mbx server extensions as described in 2G. The GXT1000's X server may sometimes leave black rubberbanding lines in place when using the Colormap editor or when moving icons around on the canvas. These lines will disappear if the window is obscured and then exposed. If you resize a window which is using hardware rendering on an object with non-opaque objects, it is possible that you will see only the opaque object in the original location of the window. This is true only for GL 3.2 (not OpenGL). You should apply the following ptf's. They will fix many of the above problems. U433080 GXT1000 Maint Package 1 -- superceded by U437136 U433283 GXT1000 Maint Package 2 U434859 GXT1000 Maint Package 3 -- superceded by U437136 U437136 GXT1000 Enhancement Package 4 3. User Interface Notes A. Visual Program line connections Graphical objects in the Visual Program Editor (VPE) may not be shown if the workspace is larger than 1280x1024 pixels. B. Differences for AIX 4.1 desktop Some user interface features may look different than they appear on other architectures and in the documentation. You can change this behavior by setting the following X resources: *enableEtchedInMenu: False *enableToggleVisual: False ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer AIX, AIXwindows, and RISC System/6000 are trademarks of International Business Machines Corporation. OpenGL is a trademark of Silicon Graphics, Inc. dx-4.4.4/doc/README_ibmpvs0000644000076500000240000000457306767530210012101 00000000000000* * README for IBM POWER Visualization Server/Data Explorer. * * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. Displaying on an IBM POWER Visualization Video Controller A. Clipping of IBM POWER Visualization System (PVS) Generated Images B. Double Buffering Artifacts C. Large windows and the IBM POWER Visualization System/Video Controller D. Moving windows off the left side of the screen ======================================================================== 1. Displaying on an IBM POWER Visualization Video Controller A. Clipping of IBM POWER Visualization System (PVS) Generated Images Images generated by PVS are not clipped using standard X11 conventions. This has two major implications: - Data Explorer image windows should not be overlapped. - The colorbar display of the Colormap editor should not overlap image windows. The failure to follow these rules may result in image corruption. B. Double Buffering Artifacts If a visual program contains Display modules with explicitly set "where" parameters or contains more than one disjoint network, double buffering artifacts may occur. C. Large windows and the IBM POWER Visualization System/Video Controller When trying to create a very large window (close to the resolution of the screen) with Data Explorer, for display on the IBM POWER Visualization System/Video Controller, please set the resource "mwm*limitResize: false" for mwm, for example in your .Xdefaults file. D. Moving windows off the left side of the screen If a window is moved off the left side of the IBM POWER Visualization System/Video Controller screen, double buffering artifacts may occur. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. dx-4.4.4/doc/README_indigo0000644000076500000240000000005106701436734012041 00000000000000obsolete file, superceeded by README_sgi dx-4.4.4/doc/README_intelnt0000644000076500000240000007124007110313544012241 00000000000000 * Microsoft Windows 95/NT specific README for IBM Visualization Data Explorer * * * The information contained in this file consists of architecture-specific hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. IMPORTANT: Please look over 4.4, "Known issues with this version" and 4.5, "Troubleshooting" each time you install Data Explorer. -------------------------------------------------------------------------------- 1.0 Contents 2.0 System configuration . . . . . . . . . . . . . . . . . . . . 1 2.1 Prerequisite Hardware . . . . . . . . . . . . . . . . . . . 1 2.2 Prerequisite Software . . . . . . . . . . . . . . . . . . . 1 3.0 Installation Notes . . . . . . . . . . . . . . . . . . . . . 1 3.1 Data Explorer . . . . . . . . . . . . . . . . . . . . . . . 1 3.2 X Server . . . . . . . . . . . . . . . . . . . . . . . . . . 1 4.0 Running Data Explorer . . . . . . . . . . . . . . . . . . . 1 4.1 Samples . . . . . . . . . . . . . . . . . . . . . . . . . . 1 4.2 To get command line help and Data Explorer options . . . . . 1 4.3 File name specification: / vs. \ and ; vs. : . . . . . . . . 1 4.4 Known issues with this version . . . . . . . . . . . . . . . 1 4.5 Troubleshooting . . . . . . . . . . . . . . . . . . . . . . 1 Starting DX produces warning screen: XLIB - Cannot open connect stream. . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 The name specified is not recognized as an internal or external command. . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Can't find file in directory or DXDATA path . . . . . . . . . . 1 Can't find macro ... . . . . . . . . . . . . . . . . . . . . . 1 Trouble double-clicking on items and general mouse interaction issues . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 X Server complains when you close a window . . . . . . . . . . 1 Images first appear red . . . . . . . . . . . . . . . . . . . . 1 Nothing happens when Start Server-->Options... is clicked. . . 1 Slow startup/execution when off the network. . . . . . . . . . 1 Trouble starting Data Explorer . . . . . . . . . . . . . . . . 1 UI is unable to connect to the Executive . . . . . . . . . . . 1 DXhwddOGL.dll not found . . . . . . . . . . . . . . . . . . . . 1 Visual program doesn't completly load . . . . . . . . . . . . . 1 4.6 Windows Tips . . . . . . . . . . . . . . . . . . . . . . . . 1 How to connect a Windows dx ui to a Unix dx executive . . . . . 1 4.7 Data Explorer registration types . . . . . . . . . . . . . . 1 Visual Programmer . . . . . . . . . . . . . . . . . . . . . . . 1 Visual Programmer with OpenGL . . . . . . . . . . . . . . . . . 1 Runtime . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Developer . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Beta or Trial . . . . . . . . . . . . . . . . . . . . . . . . . 1 4.8 Server and Client installation . . . . . . . . . . . . . . . 1 4.9 Data Explorer Development Version Notes . . . . . . . . . . 1 DXLink specific information . . . . . . . . . . . . . . . . . . 1 Loadable modules (DLL) specific information . . . . . . . . . . 1 4.10 Installing Hummingbird Exceed (and Exceed 3D) from the included trial diskette. . . . . . . . . . . . . . . . . . . . . 1 4.11 X server settings (for best performance) . . . . . . . . . 1 5.0 Data Explorer Support . . . . . . . . . . . . . . . . . . . 1 -------------------------------------------------------------------------------- 2.0 System configuration 2.1 Prerequisite Hardware . . . . . . . . . . . . . . . . . . . 1 2.2 Prerequisite Software . . . . . . . . . . . . . . . . . . . 1 -------------------------- 2.1 Prerequisite Hardware It is recommended that you have at least the following system configuration: o 80486 or Pentium PC o 16 Megabytes RAM (Recommended at least 32 Megabytes) o 50 Megabytes of hard disk for Data Explorer installation o Minimum 50 Megabytes of hard disk for swap/page space -------------------------- 2.2 Prerequisite Software The following are required and must be at or greater than the specified release level: o Windows 95, Windows NT 3.51, or later versions of either o TCP/IP o X Server o OpenGL hardware rendering requires Hummingbird Exceed 3D -------------------------------------------------------------------------------- 3.0 Installation Notes 3.1 Data Explorer . . . . . . . . . . . . . . . . . . . . . . . 1 3.2 X Server . . . . . . . . . . . . . . . . . . . . . . . . . . 1 ------------------ 3.1 Data Explorer During the installation of Data Explorer you will be prompted for a user registration key. You may complete the installation without a key, but Data Explorer will only run for a few minutes at a time if it is not properly registered. To obtain a registration key, send e-mail with your name, company's name, and the machine's operating system (95 or NT), and the type of registration (Trial, Beta, Visual Programmer, Visual Programmer with OpenGL, Runtime, Developer) to ibmdx@watson.ibm.com. You may complete the installation and register later by double-clicking the "Register DX" icon. Make sure to save the registration key information somewhere safe. Installing Data Explorer onto a hard drive is done as follows: 1. Place the Data Explorer CD into the CD-ROM drive; 2. From the Windows Start menu, choose "Run..." and enter "D:\setup", where "D:" is your CD-ROM drive letter; 3. Follow the instructions given. The install process will create a Data Explorer folder from which you can immediately start Data Explorer simply by double-clicking on the DX icon. (This assumes the X server has been installed and configured correctly.) The Exceed X server need not be started prior to starting Data Explorer, but Data Explorer will start more quickly if the X server is already running. If you intend to start Data Explorer from the command line, you should configure the environment so that the PATH variable includes d:\dx\bin (assuming Data Explorer was installed in d:\dx). ------------- 3.2 X Server Data Explorer has been designed to use the Hummingbird Exceed X Server, but, properly configured, other PC X servers should work fine also. The X server configuration notes and troubleshooting below are specific to the Hummingbird Exceed X server, but may apply to other X servers in a similar way. X Server settings: For best performance with the X server, turn off Window panning in the X configuration window. Furthermore, turn off "Full Drag" in the NT Desktop configuration window or in the Plus!Display settings. Finally go to "Window Mode-->Advanced" and turn "Delay Window Mapping" off. Also "Warn on Exit" should be off. If you don't intend to use the X server to connect to remote X clients, go to "Transports" and switch to "Local Only". The DISPLAY environment variable need not be defined, but if it is defined it should correspond to 0:0, localhost:0, localpc:0, or hostname:0 (where hostname is the name of the local or remote display machine). If you have the OpenGL version of Data Explorer, you will need to install Exceed 3D to use OpenGL rendering. Note that even if you don't have a graphics card, you can still use software based OpenGL. You should have TCP/IP installed so that you can ping localhost and localpc at a command line. If you remove the computer from a network, this may cease to work unless you install the Microsoft Loopback Adapter (on NT) or DialUp adapter (Win95). If you observe slower performance when off the network, see troubleshooting below. You should always be able to ping localhost and localpc from a DOS command window. If you do not have the "ping" command installed on your computer, it probably means you have not fully installed TCP/IP. If you do not have a network adapter card, go to Network settings under the Control Panel. Using "Add Adapter", add MS Loopback Adapter (on NT) or DialUp Adapter (Win95). You may want to define host names localhost and localpc at address 127.0.0.1 if your are using Data Explorer without attachment to a network. Create a HOSTS file in your windows directory or in your etc directory if you do not already have one. To confirm that TCP/IP is working, try pinging localhost, localpc, and 127.0.0.1. If you still have problems, try defining them also in a lmhosts file in the same directories. -------------------------------------------------------------------------------- 4.0 Running Data Explorer 4.1 Samples . . . . . . . . . . . . . . . . . . . . . . . . . . 1 4.2 To get command line help and Data Explorer options . . . . . 1 4.3 File name specification: / vs. \ and ; vs. : . . . . . . . . 1 4.4 Known issues with this version . . . . . . . . . . . . . . . 1 4.5 Troubleshooting . . . . . . . . . . . . . . . . . . . . . . 1 Starting DX produces warning screen: XLIB - Cannot open connect stream. . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 The name specified is not recognized as an internal or external command. . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Can't find file in directory or DXDATA path . . . . . . . . . . 1 Can't find macro ... . . . . . . . . . . . . . . . . . . . . . 1 Trouble double-clicking on items and general mouse interaction issues . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 X Server complains when you close a window . . . . . . . . . . 1 Images first appear red . . . . . . . . . . . . . . . . . . . . 1 Nothing happens when Start Server-->Options... is clicked. . . 1 Slow startup/execution when off the network. . . . . . . . . . 1 Trouble starting Data Explorer . . . . . . . . . . . . . . . . 1 UI is unable to connect to the Executive . . . . . . . . . . . 1 DXhwddOGL.dll not found . . . . . . . . . . . . . . . . . . . . 1 Visual program doesn't completly load . . . . . . . . . . . . . 1 4.6 Windows Tips . . . . . . . . . . . . . . . . . . . . . . . . 1 How to connect a Windows dx ui to a Unix dx executive . . . . . 1 4.7 Data Explorer registration types . . . . . . . . . . . . . . 1 Visual Programmer . . . . . . . . . . . . . . . . . . . . . . . 1 Visual Programmer with OpenGL . . . . . . . . . . . . . . . . . 1 Runtime . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Developer . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Beta or Trial . . . . . . . . . . . . . . . . . . . . . . . . . 1 4.8 Server and Client installation . . . . . . . . . . . . . . . 1 4.9 Data Explorer Development Version Notes . . . . . . . . . . 1 DXLink specific information . . . . . . . . . . . . . . . . . . 1 Loadable modules (DLL) specific information . . . . . . . . . . 1 4.10 Installing Hummingbird Exceed (and Exceed 3D) from the included trial diskette. . . . . . . . . . . . . . . . . . . . . 1 4.11 X server settings (for best performance) . . . . . . . . . 1 ------------ 4.1 Samples To run the samples shipped with Data Explorer, simply double click on the "DX Startup Menu" icon and select Samples, then go to the /dx/samples/programs directory if you are not already there. A file dialog will appear with the names of the available program (*.net) files. Select one by double-clicking on the file name with the left mouse button. Run the file by selecting Execute-->Once. See the on-line help for more information on options for running Data Explorer. Help is available on-line through the Visual Program Editor (VPE) "Help" menu, or by placing the cursor over a module and pressing the F1 key. A description of each sample can be found under Help-->Application Comment. (You can also view the HTML documentation files by double-clicking the "DX Help" icon in the Data Explorer folder, which will launch your current web browser). Note: Although Data Explorer starts in the samples directory by default, we strongly recommend doing your own work in a directory completely separate from the Data Explorer file structure. You might want to make your own desktop shortcut that starts Data Explorer in your preferred directory. Follow the instructions that come with Windows to copy the Data Explorer shortcut from the start menu to the desktop and change its properties so the "Start in" directory corresponds to your personal directory. To run Data Explorer from a DOS command line, make sure the Data Explorer bin directory (typically d:\dx\bin) has been added to the Path environment variable. Then just type "dx" to bring up the Data Explorer Startup panel, or "dx -edit" to bring up the VPE. Note: The documentation for the Unix platforms suggests typing "dx &". Note that the "&" is a Unix command option that does not apply to PC environments. Also note that the documentation refers to directory "/USR/LPP/DX"; when reading the documentation, regard this as the directory in which you installed Data Explorer. The dx.exe file that launches Data Explorer will automatically define DXDATA and DXMACROS to point to the sample data and macros. If you define your own macros and data path, the sample data and macros will be appended to end of the path list so they can always be found. ------------------------------------------------------- 4.2 To get command line help and Data Explorer options Type: dx -help or dx -morehelp (assumes "d:\dx\bin" is in the path) For more help, double-click on the "DX Help" icon which will load the HTML documentation in your Web browser. For a tutorial on Data Explorer, double-click on the "DX Tutorial" icon. ------------------------------------------------- 4.3 File name specification: / vs. \ and ; vs. : Data Explorer uses forward slash path specifiers, such as /usr/lpp/dx. This is because 1) it helps maintains portability of nets with the Unix version and 2) in many situations, the "\" character is interpreted as an escape character. In all the Data Explorer dialog windows, forward slashes should be used. This also applies to environment variables, with the exception of those read directly by the operating system, such as DXROOT. In addition, multiple path specifiers are separated by ; rather than :. Thus the following would be a correct way to define DXDATA: set DXDATA=d:/myfiles/newdata;f:/mydir/mydata ----------------------------------- 4.4 Known issues with this version Some large .net files have caused the UI to hang due to a problem with some X servers. A workaround is to start Data Explorer with the option "-synchronous", which should allow large nets to display. If possible, convert the large program to one that is "pageified", so that it will be more organized and display faster. Sometimes the UI may suddenly stop drawing until prompted by a mouse movement in the VPE window. If the UI seems to stop, first try moving the mouse in the window. Import filters will work, but the filter's directory must be in the PATH environment variable, and the data file used must be fully specified. This means you must modify the sample program ImportExternalFilter.net before it will work. (Add d:\dx\samples\data to the path and specify "Import(!externalfilter d:/dx/samples/data/external.data)" - assuming you have installed dx in d:\dx.) The Data Prompter screen is larger than most laptop screens, making it difficult to access the bottom options. You should be able to access the entire window by running the X Configuration routine supplied with the X server to set Window Panning On, with a value of 50 or so. Unfortunately this will not allow access to the bottom of the prompter if you have the Auto Hide feature enabled for the Windows Start menu, so you must disable this (by right clicking on a blank region of the Windows start menu and selecting properties). Furthermore, you may want to turn the panning back off when running Data Explorer if you observe any artifacts due to the window panning feature. It is easy to turn panning on and off by clicking on the X server option panel that appears on the desktop when the X server is running. -------------------- 4.5 Troubleshooting Starting DX produces warning screen: XLIB - Cannot open connect stream. The X server is unable to start on its own, so try starting it manually. Make sure you can ping localhost from a DOS command line. The name specified is not recognized as an internal or external command. Make sure d:\dx\bin has been added to the PATH environment variable if you are starting Data Explorer from a command line. Can't find file in directory or DXDATA path Make sure you have correctly defined DXDATA to include all the data directories you need to access, either by defining the environment variable DXDATA or at the command line, "dx -data ..." Can't find macro ... Make sure you have correctly defined DXMACROS to include all the macro directories you need to access, as described for DXDATA above. Trouble double-clicking on items and general mouse interaction issues Study the various XConfig options in Exceed and see if you find settings that work better for you. X Server complains when you close a window Find the "Warn on Exit" option in the X server configuration dialog that comes with Exceed, and turn it off. Images first appear red This appears to be related to using 8-bit color depth with a 3D version of the X server. Change the color depth of the image (using "Image-->Options-->Image Depth") to 24-bit and the colors will display correctly. Nothing happens when Start Server-->Options... is clicked. See 4.11, "X server settings (for best performance)" and make sure "Delay Window Mapping" is off. Slow startup/execution when off the network. Make sure you can ping localhost from a command line successfully, and that it is defined as 127.0.0.1. If you still have a problem, try defining "localpc" (in addition to localhost) as 127.0.0.1 in the Windows "hosts" file either in the WINDOWS directory or in the ETC directory under NT. If you do not already have a "hosts" file, look for "hosts.sam" on your disk and copy it to "hosts", and then make your modifications in the new hosts file. If your machine has an IP address, try adding the line: ip-address machine-name where "ip-address" is the machine's IP address, and "machine-name" is the machine's name. If you still have problems, try adding localhost and localpc to the lmhosts file in the same directory as hosts. If you are off the network and the X server or Data Explorer takes a long time to start, you may need to Disable your name server, using the Windows Control panel-->Network configuration tool. Trouble starting Data Explorer If you still seem to be having trouble starting Data Explorer, see if you are using a socks.cnf file. Check your \windows\system directory (on Windows 95), or the \etc directory (on Windows NT) for the file socks.cnf. If you find one, try adding the line: direct 127.0.0.1 255.255.255.0 towards the bottom of the file where you find other "direct" commands. This will prevent local TCP/IP communication from trying to go to a remote socks server. UI is unable to connect to the Executive Errors during initialization may be due to incomplete TCP/IP setup. If the UI comes up but is unable to connect to the Executive, make sure TCP/IP is set up correctly. Also, make sure you don't already have a copy of the Executive running. DXhwddOGL.dll not found This message occurs when an Image window is trying to display with hardware rendering, but you do not have a 3D X server installed. To prevent the error, switch the Image window to software rendering mode (Options-->Rendering Options-->Software) or install a 3D version of the X server, along with the OpenGL version of Data Explorer. Visual program doesn't completly load Try starting Data Explorer with the "-synchronous" option. Then break your network into pages. ----------------- 4.6 Windows Tips How to connect a Windows dx ui to a Unix dx executive 1. Start the executive on the Unix machine with dx -exonly -license self 2. Note the port number displayed (assume it's 1900) 3. Start the UI on the PC with dx -host unix_host_name -port 1900 4. The Windows UI should then connect to the Unix executive ------------------------------------- 4.7 Data Explorer registration types Visual Programmer Allows creation of nets (visual programs) but does not allow execution of a user's own custom modules. It also does not allow the use of hardware (OpenGL) rendering. Visual Programmer with OpenGL Same as Visual Programmer but allows OpenGL rendering. This also requires Hummingbird Exceed with Exceed 3D. You do not need a 3D hardware graphics card to use OpenGL, as software-based OpenGL will be used automatically if no 3D hardware graphics card is found. Runtime Allows loading and running of nets and custom modules with OpenGL support (as long as Exceed 3D is installed as described above) but does not allow the creation or modification of visual programs. Developer Same as Visual Programmer with OpenGL but also allows the creation and loading of custom modules that incorporate a user's C-code. These modules are compiled as DLLs that can be loaded by the DX executive. Beta or Trial Allows full use of the product and development components but only for a brief trial period. ----------------------------------- 4.8 Server and Client installation If you have purchased a multi-user registration for Data Explorer you may install it once on a networked computer. Other computers that have that computer mounted on a remote drive may perform a quick client installation that does not install files locally, nor does it require re-entry of the registration information. -------------------------------------------- 4.9 Data Explorer Development Version Notes The Data Explorer Development version allows the use of DXLink to control Data Explorer from your application. It also allows the creation of loadable modules as DLLs that extend the functionality of Data Explorer by incorporating your own C-code. Note that the creation of loadable modules requires the command "awk", to be available on the computer. You should define the following environment variables: "DXROOT=d:\dx" (or wherever you installed it) "ARCH=intelnt" (this is the same for NT and Win95) You should also make sure that d:\dx\bin is in your path. As indicated in the intelnt Makefiles, the following should be defined during compilation: ARCH=intelnt intelnt Also, your code should include windows.h and winsock.h as needed. DXLink specific information You should include a call to initialize sockets in your application using WSAStartup(MAKEWORD(1,1), &wsastartup); Consult the sample "sealevel.c" for an example of how to do this. We also recommend using DXLSetSynchronization(conn, 1); to run DXLink in synchronized mode. Loadable modules (DLL) specific information To avoid a conflict between Data Explorer and Windows header files you should undefine "ERROR_DATA_INVALID" after loading windows.h. In order to use the DLL you should start Data Explorer with dx -modules d:\where_my_dlls_are -mdf d:\my_mdfs\my_mdf.mdf In other words, -modules should be a directory containing the DLLs and -mdf shoud be the actual mdf file for the DLLs. Remember that "Visual Programmer" versions of Data Explorer will not allow use of the DLLs, but Runtime and Developer versions will. -------------------------------------------------------------------------------- 4.10 Installing Hummingbird Exceed (and Exceed 3D) from the included trial diskette. 1. Follow directions on the CD appropriate for your Windows version: 95 or NT. 2. You must install Exceed (or a different X server) in order to use Data Explorer. 3. If your Data Explorer registration allows OpenGL support (see above) you should also install Exceed 3D after installing Exceed. 4. For Data Explorer you only need the X server components of the Hummingbird product suite (i.e. Exceed and, for OpenGL, Exceed 3D) but you may have other uses for the networking tools. 5. The included Hummingbird trial disk is a free trial that will expire after installation, but included on the disk are ordering instructions for purchasing the X server at a discount with your Data Explorer purchase. You must purchase a licensed version of Exceed in order to keep it from expiring. If you also need OpenGL support you should purchase Exceed 3D in addition. ---------------------------------------------- 4.11 X server settings (for best performance) 1. Delay Window mapping should be off 2. Warn On Exit should be off 3. Window panning should be off 4. "Transports" should be local/Network, but if you have trouble when off a network try setting Transports to local only. -------------------------------------------------------------------------------- 5.0 Data Explorer Support If you encounter problems with this version, please contact Data Explorer Support at dxsupp@watson.ibm.com. In the note, indicate the version and platform you are using, along with details of the problem you have encountered. Also be sure to watch our web page at "http://www.almaden.ibm.com/dx/" for news and updates. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. OpenGL is a registered trademark of Silicon Graphics, Inc. Windows NT and Windows 95 are registered trademarks of Microsoft Corporation. Exceed X Window System and Exceed 3D are registered trademarks of Hummingbird Communications Ltd. dx-4.4.4/doc/README_sgi0000644000076500000240000001356406722617735011374 00000000000000* * README for IBM Visualization Data Explorer for SGI. * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. Hardware Rendering on SGI Platforms A. Exceeding System/Process Memory B. Overriding the default library 2. Adding a Module A. Using the Module Builder B. Bad File Magic Number error C. Runtime-loadable modules 3. Gamma Correction 4. Changes for version 3.1.4 A. Using Shared Memory is now the default B. Change in behavior of DXSHMEM C. Fonts have changed 5. Using Large Amounts of Memory ======================================================================== 1. Hardware Rendering on SGI Platforms A. Exceeding System/Process Memory The most recent object displayed is stored in system memory. If this object is very large it is possible to exceed the system/process memory limits. If this occurs you will receive many errors of the following form: ERR#2_gl_makeroom The only known workaround is to reduce the size of the object(s). B. Overriding the default library If both gl and opengl are supported you can override the default library (opengl) by specifying the -hwrender command line option as gl, rather than opengl. Alternatively, you can use the DXHWMOD environment variable, which should be set to either DXhwdd.o or DXhwddOGL.o. 2. Adding a Module A. Using the Module Builder When using the module builder to build a full dxexec, at link time the following warning message may appear: /usr/bin/ld: Warning: sscanf: multiply defined previous (used) definition from '/usr/lib/libmpc.a': new (ignored) definition from '/usr/lib/libmpc.a' This message should be ignored. B. Bad File Magic Number error If IRIX 5 is not installed on the system, the linker will give the error message "Object file format error, bad file magic number". C. Runtime-loadable modules You need to use -mdf flag on dx to load runtime modules from the command line if you are using more than 1 processor. That is, you cannot use the "Load Module Description" option of the File menu to load them after Data Explorer has started. You may notice warnings when you compile runtime-loadable modules. These are simply warnings about subroutines which are referenced by the runtime-loadable module. They will be found in the running dxexec. These warnings do *not* mean that your subroutine will not work. 3. Gamma Correction When the Data Explorer executive is running on the sgi archecture, 8-bit windows are assumed to already be gamma-corrected, so DXGAMMA is by default set to 1. Otherwise, DXGAMMA is by default set to 2. You can override the default gamma correction by setting DXGAMMA, DXGAMMA_8BIT, DXGAMMA_12BIT, or DXGAMMA_24BIT. If set, DXGAMMA_NBIT overrides the value set by DXGAMMA. 4. Changes for version 3.1.4 A. Using Shared Memory is now the default Data Explorer now uses shared memory by default on sgi machines. B. Change in behavior of DXSHMEM In versions of Data Explorer prior to 3.1.4, DXSHMEM, if set to anything, would force shared memory to be used. In version 3.1.4, DXSHMEM must be set to anything other than -1 for shared memory to be used; if set to -1, then the data segment will be extended, for architectures for which this is permissible. C. Fonts have changed Data Explorer 3.1.2 and all previous versions used different fonts when displaying on sgi machines than when displaying on any other machine. In 3.1.4, the fonts are uniform across platforms. The correct fonts are a little bit larger than the old sgi fonts. This is a potential problem for control panels since the some text strings may not fit the space allotted. (This actually fixes a problem where your panels looked fine when displaying on an sgi but looked bad when displaying on any other machine.) Users can revert to the pre-3.1.4 fonts by adding the following to the file DX in $HOME or in a directory in the XAPPLRESDIR environment variable: DX*fontList:-adobe-helvetica*bold-r*14*=bold,\ -adobe-helvetica*bold-r*12*=small_bold,\ -adobe-helvetica*bold-r*18*=big_bold,\ -adobe-helvetica*bold-r*24*=huge_bold,\ -adobe-helvetica*medium-r*14*=normal,\ -adobe-helvetica*medium-r*12*=small_normal,\ -adobe-helvetica*medium-r*18*=big_normal,\ -adobe-helvetica*medium-r*24*=huge_normal,\ -adobe-helvetica*medium-o*12*=small_oblique,\ -adobe-helvetica*medium-o*18*=big_oblique,\ -adobe-helvetica*medium-o*24*=huge_oblique,\ -adobe-helvetica*medium-o*14*=oblique NOTE: line breaks and line continuation characters are here just for readability. The user must enter this as 1 continuous line with no line continuation characters, carriage returns, or spaces. Only those users who would be satisfied with the restriction of never running a net on some machine other than an sgi should consider doing this. 5. Using Large Amounts of Memory If you have problems starting up DX with more than 512 Mbytes of memory, use the "systune" command to check and set kernel tuneable parameters to allow a user process to allocate more space. You may also have to adjust the "limits" or "ulimits" settings to allow large amounts of memory to be used. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. IRIX and Silicon Graphics are registered trademarks of Silicon Graphics, Inc. dx-4.4.4/doc/README_sgi40000644000076500000240000000444106722617735011452 00000000000000* * README for IBM Visualization Data Explorer for SGI. * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. Hardware Rendering on SGI Platforms A. Exceeding System/Process Memory 2. Adding a Module A. Using the Module Builder B. Bad File Magic Number error 3. Gamma Correction ======================================================================== 1. Hardware Rendering on SGI Platforms A. Exceeding System/Process Memory The most recent object displayed is stored in system memory. If this object is very large it is possible to exceed the system/process memory limits. If this occurs you will receive many errors of the following form: ERR#2_gl_makeroom The only known workaround is to reduce the size of the object(s). 2. Adding a Module A. Using the Module Builder When using the module builder to build a full dxexec, at link time the following warning message may appear: /usr/bin/ld: Warning: sscanf: multiply defined previous (used) definition from '/usr/lib/libmpc.a': new (ignored) definition from '/usr/lib/libmpc.a' This message should be ignored. B. Bad File Magic Number error If IRIX 5 is not installed on the system, the linker will give the error message "Object file format error, bad file magic number". 3. Gamma Correction If you are displaying on an SGI display which already does gamma correction, you can disable the gamma correction done by Data Explorer by setting the DXGAMMA environment variable to 1.0 before starting DX. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. IRIX and Silicon Graphics are registered trademarks of Silicon Graphics, Inc. dx-4.4.4/doc/README_SMP0000644000076500000240000000576106722617735011251 00000000000000* * README for IBM Visualization Data Explorer for Symetric Multiprocessors * * The information contained in this file consists of hints for using the Data Explorer SMP for symmetric multiprocessors. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. The Partition module 2. Partitioning an already-partitioned field 3. The default amount of memory used 4. The default number of processors used 5. The difference between SMP and distributed ======================================================================== 1. The Partition module With Data Explorer SMP, the Partition module should be used to create a composite field from the imported data. Only if the data set is partitioned will Data Explorer SMP exploit the multiple processors available. Note that you can run partitioned data equally well on both uniprocessor and multiprocessor machines. 2. Partitioning an already-partitioned field Once a field is partitioned it will not be repartitioned if it is passed through the Partition module again. Thus to maximize the use of the available processors, you may want to increase the number of partitions (the "n" paramter for Partition) from the default value if you will be operating on only a subset of the data later on. Note however, that over-partitioning a field leads to extra overhead. 3. The default amount of memory used By default on a MP machine, less memory will be used than on a UP machine. This is under the assumption that other users may be more likely to be using an MP machine. The amount of memory used can be changed with the -memory command line option to dx. Usage("memory",0) will show you how much memory is being used. 4. The default number of processors used For an MP machine, if the number of processors (n) is 4 or greater, the default number of processors used is n/2, rounded down. If the number of processors is 2 or 3, then the default number of processors used is 2. The number of processors used can be changed with the -processors command line option to dx. 5. The difference between SMP and distributed When you run parallel on an SMP machine, intramodule parallelism is used. For example, the Isosurface module will operate in parallel on different portions of a partitioned field. When you use the distributed method of execution, different modules run on different machines; for example, Isosurface might be running on one machine while MapToPlane is running on another. There is overhead involved with using distributed computation, as the data must be transferred between machines. ======================================================================== The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a registered trademark of International Business Machines Corporation dx-4.4.4/doc/._README_solaris0000400000076500000000000000012210361306412012422 00000000000000Mac OS X  2 RTEXTdx-4.4.4/doc/README_solaris0000644000076500000240000001165010361306412012235 00000000000000* * README for IBM Visualization Data Explorer for Suns running Solaris 2 * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. System Configuration A. Default Keyboard Mappings B. Memory Usage in Solaris C. Memory Usage in Solaris 10 D. Error message "cannot get shared memory segment" 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering B. Hardware Rendering Not Available Message C. Transparency for Hardware Rendering D. Lines are redrawn in black 3. On Line Help Path Menu 4. Runtime-loadable modules ======================================================================== 1. System Configuration A. Default Keyboard Mappings On the Sun SPARCstations, Ctrl+Delete is Ctrl+Del. "Del" is found on the numeric keypad. Data Explorer responds to the "End" key and arrow keys found on the numeric keypad. The mnemonic key to pull down the menus uses the diamond key as the modifier, instead of the Alt key. B. Memory Usage in Solaris 7, 8, 9 Under Solaris, Data Explorer uses shared memory in 256 megabyte segments. The default configuration for Solaris only allows 1 megabyte shared memory segments. To allow Data Explorer to run in Solaris 7, 8, 9, log in as root, and follow these steps: 1) Copy /etc/system to /etc/system.pre-dx 2) edit /etc/system 3) add the line "set shmsys:shminfo_shmmax = 0x10000000" 4) reboot the system If this cannot be done, see the DXSHMEMSEGMAX environment variable, described in Appendix C of the User Guide. C. Memory Usage in Solaris 10 For Solaris 10, this process has changed significantly. Instead of a per machine limits on shared memory, it is now set per user. To increase the shared memory available to a given user on Solaris 10. 1 Find out which project the user is in 2 Use prctl to raise the limit e.g. to 2000mb, using the project ID returned by id -p. example: juno $ id -p uid=1318(dthompso) gid=1002(students) projid=3(default) juno $ su Password: # prctl -n project.max-shm-memory -r -v 2000mb -i project 3 The amount of memory that dx wants initially is determined by the amount of physical RAM in the machine. If you set the memory limit too small, the error will still continue (unless you fix the amount of memory dx initially requests with the -memory flag). D. Error message "cannot get shared memory segment" This error message is caused by one of two problems: 1) The system hasn't been configured for 256 megabyte shared memory segments. Follow the rules above under Memory Usage. 2) There is insufficient swap space available on the workstation. Type "swap -l" to determine available space. You must either increase swap space or run Data Explorer with the -memory option to reduce its use of memory. For example, type "dx -memory 32" to restrict Data Explorer to 32 megabytes of memory. 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering When hardware rendering is requested for the first time, the executive dynamically loads /usr/lpp/dx/bin_solaris/DXhwdd.so and the xgl shared libraries. If one of these is not present then hardware rendering will be disabled. B. Hardware Rendering Not Available Message When the message 'Hardware rendering not available: /usr/lib/libxgl.so not found' appears, then xgl shared library or run-time support has not been installed. C. Transparency Transparency is not handled by the Sun Hardware Renderer. D. Lines are redrawn in black When using direct interactors which draw lines on the image (e.g. zoom box), the lines will be redrawn in black. They will persist until the image is redrawn. 3. On Line Help Path Menu In the current implementation of Data Explorer, the pop-up menu providing the current help path is not supported. 4. Runtime-loadable modules You need to use -mdf flag on dx to load runtime modules from the command line if you are using more than 1 processor. That is, you cannot use the "Load Module Description" option of the File menu to load them after Data Explorer has started. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. SPARCstation is a trademark of SPARC International. Sun, Sun-4, XGL, and OpenWindows are trademarks of Sun Microsystems, Inc. dx-4.4.4/doc/README_sun40000644000076500000240000001110406722617735011467 00000000000000* * README for IBM Visualization Data Explorer for Suns running SunOS 4.1.x * * * The information contained in this file consists of hints for using the system, help with functions that may not be apparent, and last minute updates to the existing documentation. It is advisable to review this file any time Data Explorer updates are applied. ======================================================================== CONTENTS To go directly to an item, search for the item number beginning at the left margin. 1. System Configuration A. Default Keyboard Mappings B. Memory Usage C. Running DX elsewhere and displaying on OpenWindows 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering B. Hardware Rendering Not Available Message C. Transparency for Hardware Rendering D. SunOS 4.1.2 and Two Hardware Windows 3. On Line Help Path Menu 4. Message "dlopen:stub interception failed" ======================================================================== 1. System Configuration A. Default Keyboard Mappings On the Sun SPARCstations, Ctrl+Delete is Ctrl+Del. "Del" is found on the numeric keypad. Data Explorer responds to the "End" key and arrow keys found on the numeric keypad. The mnemonic key to pull down the menus uses the diamond key as the modifier, instead of the Alt key. B. Memory Usage On Sun running SunOS 4.1.x, the Data Explorer executive uses the contents of the /etc/dmesg file to determine the amount of physical memory available on the workstation. From this amount of physical memory, it determines an allowable memory size based on the algorithm described in the architecture independent README. If this file is not available for reading or the amount of physical memory is not indicated in the file, then the executive uses a default memory size of 32 megabytes. If you wish to run Data Explorer with more or less memory than the default, then use "dx -memory #" where '#' is a number in megabytes. C. Running DX elsewhere and displaying on OpenWindows Running an OSF/Motif Version 1.2 client on another machine and displaying the windows on OpenWindows under SunOS 4.1.x can cause the OpenWindows server to ignore button presses when displaying popup or pulldown menus. Data Explorer, when run on SGIs, Data General AViiONs, Digital Equipment Corporation workstations, and Sun workstations as an OSF/Motif 1.2 client shows these problems. In these cases, either kill the user interface from the remote machine, or use OSF/Motif keyboard handling to terminate Data Explorer. 2. Hardware Rendering Considerations A. Shared Library Support for Hardware Rendering When hardware rendering is requested for the first time, the executive dynamically loads /usr/lpp/dx/bin_sun4/DXhwdd.so and the xgl shared libraries. If one of these is not present then hardware rendering will be disabled. B. Hardware Rendering Not Available Message When the message 'Hardware rendering not available: /usr/lib/libxgl.so not found' appears, then xgl shared library or run-time support has not been installed. C. Transparency Transparency is not handled by the Sun Hardware Renderer. D. SunOS 4.1.2 and Two Hardware Windows When rendering with two Hardware windows and using direct interactors, images may be corrupted and appear in the opposite window. This is fixed with SunOS 4.1.3. 3. On Line Help Path Menu In the current implementation of Data Explorer, the pop-up menu providing the current help path is not supported. 4. Message "dlopen:stub interception failed" If the message 'dlopen:stub interception failed' results when attempting hardware rendering it may be a result of a problem on SunOS when there are references in the LD_LIBRARY_PATH environment variable to directories that are by default searched by the dynamic loader (e.g. /lib or /usr/lib). This can be worked around by removing any references to directories that are searched by default. This includes removing softlinks such as /usr/ucblib which may be linked to /usr/lib. ---------------------------------------------------------------------- The following trademarks apply to this information: IBM is a registered trademark of International Business Machines Corporation. IBM Visualization Data Explorer is a trademark of International Business Machines Corporation. Motif, OSF, and OSF/Motif are trademarks of Open Software Foundation, Inc. SPARCstation is a trademark of SPARC International. Sun, Sun-4, XGL, and OpenWindows are trademarks of Sun Microsystems, Inc. AViiON is a trademark of Data General Corporation. dx-4.4.4/fonts/0000777000076500000240000000000010472427106010275 500000000000000dx-4.4.4/fonts/area.dx0000644000076500000240000211662007120225641011462 00000000000000object 1 class array type float rank 1 shape 3 items 4 msb ieee data 0 attribute "dep" string "positions" # object 2 class array type int rank 1 shape 3 items 1 msb ieee data 48 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Empty" class field component "positions" value 1 component "connections" value 2 attribute "name" string "Empty" attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 3 class array type float rank 1 shape 3 items 24 msb ieee data 60 attribute "dep" string "positions" # object 4 class array type int rank 1 shape 3 items 22 msb ieee data 348 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ApostropheCurlyOpen" class field component "positions" value 3 component "connections" value 4 attribute "name" string "ApostropheCurlyOpen" attribute "char width" number 0.225000 attribute "series position" number 1.000000 # object 5 class array type float rank 1 shape 3 items 24 msb ieee data 612 attribute "dep" string "positions" # object 6 class array type int rank 1 shape 3 items 22 msb ieee data 900 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ApostropheCurlyClose" class field component "positions" value 5 component "connections" value 6 attribute "name" string "ApostropheCurlyClose" attribute "char width" number 0.225000 attribute "series position" number 2.000000 # object 7 class array type float rank 1 shape 3 items 40 msb ieee data 1164 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 3 items 38 msb ieee data 1644 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Bullet" class field component "positions" value 7 component "connections" value 8 attribute "name" string "Bullet" attribute "char width" number 0.375000 attribute "series position" number 3.000000 # object 9 class array type float rank 1 shape 3 items 168 msb ieee data 2100 attribute "dep" string "positions" # object 10 class array type int rank 1 shape 3 items 164 msb ieee data 4116 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Cent" class field component "positions" value 9 component "connections" value 10 attribute "name" string "Cent" attribute "char width" number 0.537500 attribute "series position" number 4.000000 # object 11 class array type float rank 1 shape 3 items 235 msb ieee data 6084 attribute "dep" string "positions" # object 12 class array type int rank 1 shape 3 items 233 msb ieee data 8904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Copyright" class field component "positions" value 11 component "connections" value 12 attribute "name" string "Copyright" attribute "char width" number 0.812500 attribute "series position" number 5.000000 # object 13 class array type float rank 1 shape 3 items 12 msb ieee data 11700 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 3 items 10 msb ieee data 11844 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CrossProduct" class field component "positions" value 13 component "connections" value 14 attribute "name" string "CrossProduct" attribute "char width" number 0.612500 attribute "series position" number 6.000000 # object 15 class array type float rank 1 shape 3 items 80 msb ieee data 11964 attribute "dep" string "positions" # object 16 class array type int rank 1 shape 3 items 80 msb ieee data 12924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Degree" class field component "positions" value 15 component "connections" value 16 attribute "name" string "Degree" attribute "char width" number 0.375000 attribute "series position" number 7.000000 # object 17 class array type float rank 1 shape 3 items 4 msb ieee data 13884 attribute "dep" string "positions" # object 18 class array type int rank 1 shape 3 items 2 msb ieee data 13932 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "EmDash" class field component "positions" value 17 component "connections" value 18 attribute "name" string "EmDash" attribute "char width" number 0.987500 attribute "series position" number 8.000000 # object 19 class array type float rank 1 shape 3 items 4 msb ieee data 13956 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 3 items 2 msb ieee data 14004 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "EnDash" class field component "positions" value 19 component "connections" value 20 attribute "name" string "EnDash" attribute "char width" number 0.812500 attribute "series position" number 9.000000 # object 21 class array type float rank 1 shape 3 items 52 msb ieee data 14028 attribute "dep" string "positions" # object 22 class array type int rank 1 shape 3 items 48 msb ieee data 14652 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Exclamacion" class field component "positions" value 21 component "connections" value 22 attribute "name" string "Exclamacion" attribute "char width" number 0.225000 attribute "series position" number 10.000000 # object 23 class array type float rank 1 shape 3 items 74 msb ieee data 15228 attribute "dep" string "positions" # object 24 class array type int rank 1 shape 3 items 72 msb ieee data 16116 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Franc" class field component "positions" value 23 component "connections" value 24 attribute "name" string "Franc" attribute "char width" number 0.675000 attribute "series position" number 11.000000 # object 25 class array type float rank 1 shape 3 items 30 msb ieee data 16980 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 3 items 26 msb ieee data 17340 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetOpen" class field component "positions" value 25 component "connections" value 26 attribute "name" string "GuillemetOpen" attribute "char width" number 0.500000 attribute "series position" number 12.000000 # object 27 class array type float rank 1 shape 3 items 30 msb ieee data 17652 attribute "dep" string "positions" # object 28 class array type int rank 1 shape 3 items 26 msb ieee data 18012 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetClose" class field component "positions" value 27 component "connections" value 28 attribute "name" string "GuillemetClose" attribute "char width" number 0.500000 attribute "series position" number 13.000000 # object 29 class array type float rank 1 shape 3 items 15 msb ieee data 18324 attribute "dep" string "positions" # object 30 class array type int rank 1 shape 3 items 13 msb ieee data 18504 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetSingleOpen" class field component "positions" value 29 component "connections" value 30 attribute "name" string "GuillemetSingleOpen" attribute "char width" number 0.275000 attribute "series position" number 14.000000 # object 31 class array type float rank 1 shape 3 items 15 msb ieee data 18660 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 3 items 13 msb ieee data 18840 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetSingleClose" class field component "positions" value 31 component "connections" value 32 attribute "name" string "GuillemetSingleClose" attribute "char width" number 0.275000 attribute "series position" number 15.000000 # object 33 class array type float rank 1 shape 3 items 114 msb ieee data 18996 attribute "dep" string "positions" # object 34 class array type int rank 1 shape 3 items 116 msb ieee data 20364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Infinity" class field component "positions" value 33 component "connections" value 34 attribute "name" string "Infinity" attribute "char width" number 0.900000 attribute "series position" number 16.000000 # object 35 class array type float rank 1 shape 3 items 77 msb ieee data 21756 attribute "dep" string "positions" # object 36 class array type int rank 1 shape 3 items 75 msb ieee data 22680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Integral" class field component "positions" value 35 component "connections" value 36 attribute "name" string "Integral" attribute "char width" number 0.437500 attribute "series position" number 17.000000 # object 37 class array type float rank 1 shape 3 items 114 msb ieee data 23580 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 3 items 110 msb ieee data 24948 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Interrogacion" class field component "positions" value 37 component "connections" value 38 attribute "name" string "Interrogacion" attribute "char width" number 0.575000 attribute "series position" number 18.000000 # object 39 class array type float rank 1 shape 3 items 4 msb ieee data 26268 attribute "dep" string "positions" # object 40 class array type int rank 1 shape 3 items 2 msb ieee data 26316 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Minus" class field component "positions" value 39 component "connections" value 40 attribute "name" string "Minus" attribute "char width" number 0.612500 attribute "series position" number 19.000000 # object 41 class array type float rank 1 shape 3 items 12 msb ieee data 26340 attribute "dep" string "positions" # object 42 class array type int rank 1 shape 3 items 6 msb ieee data 26484 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "NotEqual" class field component "positions" value 41 component "connections" value 42 attribute "name" string "NotEqual" attribute "char width" number 0.612500 attribute "series position" number 20.000000 # object 43 class array type float rank 1 shape 3 items 16 msb ieee data 26556 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 3 items 12 msb ieee data 26748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "PlusMinus" class field component "positions" value 43 component "connections" value 44 attribute "name" string "PlusMinus" attribute "char width" number 0.612500 attribute "series position" number 21.000000 # object 45 class array type float rank 1 shape 3 items 149 msb ieee data 26892 attribute "dep" string "positions" # object 46 class array type int rank 1 shape 3 items 149 msb ieee data 28680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pound" class field component "positions" value 45 component "connections" value 46 attribute "name" string "Pound" attribute "char width" number 0.850000 attribute "series position" number 22.000000 # object 47 class array type float rank 1 shape 3 items 48 msb ieee data 30468 attribute "dep" string "positions" # object 48 class array type int rank 1 shape 3 items 44 msb ieee data 31044 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuoteOpen" class field component "positions" value 47 component "connections" value 48 attribute "name" string "QuoteOpen" attribute "char width" number 0.400000 attribute "series position" number 23.000000 # object 49 class array type float rank 1 shape 3 items 48 msb ieee data 31572 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 3 items 44 msb ieee data 32148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuoteClose" class field component "positions" value 49 component "connections" value 50 attribute "name" string "QuoteClose" attribute "char width" number 0.400000 attribute "series position" number 24.000000 # object 51 class array type float rank 1 shape 3 items 273 msb ieee data 32676 attribute "dep" string "positions" # object 52 class array type int rank 1 shape 3 items 273 msb ieee data 35952 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Registered" class field component "positions" value 51 component "connections" value 52 attribute "name" string "Registered" attribute "char width" number 0.812500 attribute "series position" number 25.000000 # object 53 class array type float rank 1 shape 3 items 84 msb ieee data 39228 attribute "dep" string "positions" # object 54 class array type int rank 1 shape 3 items 80 msb ieee data 40236 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Similar" class field component "positions" value 53 component "connections" value 54 attribute "name" string "Similar" attribute "char width" number 0.612500 attribute "series position" number 26.000000 # object 55 class array type float rank 1 shape 3 items 229 msb ieee data 41196 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 3 items 225 msb ieee data 43944 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Trademark" class field component "positions" value 55 component "connections" value 56 attribute "name" string "Trademark" attribute "char width" number 0.650000 attribute "series position" number 27.000000 # object 57 class array type float rank 1 shape 3 items 100 msb ieee data 46644 attribute "dep" string "positions" # object 58 class array type int rank 1 shape 3 items 98 msb ieee data 47844 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Yen" class field component "positions" value 57 component "connections" value 58 attribute "name" string "Yen" attribute "char width" number 0.900000 attribute "series position" number 28.000000 # object 59 class array type float rank 1 shape 3 items 4 msb ieee data 49020 attribute "dep" string "positions" # object 60 class array type int rank 1 shape 3 items 1 msb ieee data 49068 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Space" class field component "positions" value 59 component "connections" value 60 attribute "name" string "Space" attribute "char width" number 0.312500 attribute "series position" number 32.000000 # object 61 class array type float rank 1 shape 3 items 52 msb ieee data 49080 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 3 items 48 msb ieee data 49704 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Exclamation" class field component "positions" value 61 component "connections" value 62 attribute "name" string "Exclamation" attribute "char width" number 0.225000 attribute "series position" number 33.000000 # object 63 class array type float rank 1 shape 3 items 20 msb ieee data 50280 attribute "dep" string "positions" # object 64 class array type int rank 1 shape 3 items 16 msb ieee data 50520 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "InchMark" class field component "positions" value 63 component "connections" value 64 attribute "name" string "InchMark" attribute "char width" number 0.350000 attribute "series position" number 34.000000 # object 65 class array type float rank 1 shape 3 items 32 msb ieee data 50712 attribute "dep" string "positions" # object 66 class array type int rank 1 shape 3 items 32 msb ieee data 51096 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "HashMark" class field component "positions" value 65 component "connections" value 66 attribute "name" string "HashMark" attribute "char width" number 0.512500 attribute "series position" number 35.000000 # object 67 class array type float rank 1 shape 3 items 123 msb ieee data 51480 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 3 items 125 msb ieee data 52956 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Dollar" class field component "positions" value 67 component "connections" value 68 attribute "name" string "Dollar" attribute "char width" number 0.512500 attribute "series position" number 36.000000 # object 69 class array type float rank 1 shape 3 items 106 msb ieee data 54456 attribute "dep" string "positions" # object 70 class array type int rank 1 shape 3 items 104 msb ieee data 55728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Percent" class field component "positions" value 69 component "connections" value 70 attribute "name" string "Percent" attribute "char width" number 0.937500 attribute "series position" number 37.000000 # object 71 class array type float rank 1 shape 3 items 130 msb ieee data 56976 attribute "dep" string "positions" # object 72 class array type int rank 1 shape 3 items 132 msb ieee data 58536 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Ampersand" class field component "positions" value 71 component "connections" value 72 attribute "name" string "Ampersand" attribute "char width" number 0.850000 attribute "series position" number 38.000000 # object 73 class array type float rank 1 shape 3 items 10 msb ieee data 60120 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 3 items 8 msb ieee data 60240 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "FootMark" class field component "positions" value 73 component "connections" value 74 attribute "name" string "FootMark" attribute "char width" number 0.212500 attribute "series position" number 39.000000 # object 75 class array type float rank 1 shape 3 items 38 msb ieee data 60336 attribute "dep" string "positions" # object 76 class array type int rank 1 shape 3 items 36 msb ieee data 60792 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ParenthesisOpen" class field component "positions" value 75 component "connections" value 76 attribute "name" string "ParenthesisOpen" attribute "char width" number 0.387500 attribute "series position" number 40.000000 # object 77 class array type float rank 1 shape 3 items 38 msb ieee data 61224 attribute "dep" string "positions" # object 78 class array type int rank 1 shape 3 items 36 msb ieee data 61680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ParenthesisClose" class field component "positions" value 77 component "connections" value 78 attribute "name" string "ParenthesisClose" attribute "char width" number 0.387500 attribute "series position" number 41.000000 # object 79 class array type float rank 1 shape 3 items 53 msb ieee data 62112 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 3 items 51 msb ieee data 62748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Asterisk" class field component "positions" value 79 component "connections" value 80 attribute "name" string "Asterisk" attribute "char width" number 0.300000 attribute "series position" number 42.000000 # object 81 class array type float rank 1 shape 3 items 12 msb ieee data 63360 attribute "dep" string "positions" # object 82 class array type int rank 1 shape 3 items 10 msb ieee data 63504 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Plus" class field component "positions" value 81 component "connections" value 82 attribute "name" string "Plus" attribute "char width" number 0.612500 attribute "series position" number 43.000000 # object 83 class array type float rank 1 shape 3 items 24 msb ieee data 63624 attribute "dep" string "positions" # object 84 class array type int rank 1 shape 3 items 22 msb ieee data 63912 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Comma" class field component "positions" value 83 component "connections" value 84 attribute "name" string "Comma" attribute "char width" number 0.312500 attribute "series position" number 44.000000 # object 85 class array type float rank 1 shape 3 items 4 msb ieee data 64176 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 3 items 2 msb ieee data 64224 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Hyphen" class field component "positions" value 85 component "connections" value 86 attribute "name" string "Hyphen" attribute "char width" number 0.400000 attribute "series position" number 45.000000 # object 87 class array type float rank 1 shape 3 items 40 msb ieee data 64248 attribute "dep" string "positions" # object 88 class array type int rank 1 shape 3 items 38 msb ieee data 64728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Period" class field component "positions" value 87 component "connections" value 88 attribute "name" string "Period" attribute "char width" number 0.312500 attribute "series position" number 46.000000 # object 89 class array type float rank 1 shape 3 items 4 msb ieee data 65184 attribute "dep" string "positions" # object 90 class array type int rank 1 shape 3 items 2 msb ieee data 65232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Slash" class field component "positions" value 89 component "connections" value 90 attribute "name" string "Slash" attribute "char width" number 0.387500 attribute "series position" number 47.000000 # object 91 class array type float rank 1 shape 3 items 97 msb ieee data 65256 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 3 items 97 msb ieee data 66420 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "0" class field component "positions" value 91 component "connections" value 92 attribute "name" string "0" attribute "char width" number 0.612500 attribute "series position" number 48.000000 # object 93 class array type float rank 1 shape 3 items 47 msb ieee data 67584 attribute "dep" string "positions" # object 94 class array type int rank 1 shape 3 items 45 msb ieee data 68148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "1" class field component "positions" value 93 component "connections" value 94 attribute "name" string "1" attribute "char width" number 0.612500 attribute "series position" number 49.000000 # object 95 class array type float rank 1 shape 3 items 183 msb ieee data 68688 attribute "dep" string "positions" # object 96 class array type int rank 1 shape 3 items 181 msb ieee data 70884 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "2" class field component "positions" value 95 component "connections" value 96 attribute "name" string "2" attribute "char width" number 0.612500 attribute "series position" number 50.000000 # object 97 class array type float rank 1 shape 3 items 109 msb ieee data 73056 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 3 items 107 msb ieee data 74364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "3" class field component "positions" value 97 component "connections" value 98 attribute "name" string "3" attribute "char width" number 0.612500 attribute "series position" number 51.000000 # object 99 class array type float rank 1 shape 3 items 65 msb ieee data 75648 attribute "dep" string "positions" # object 100 class array type int rank 1 shape 3 items 65 msb ieee data 76428 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "4" class field component "positions" value 99 component "connections" value 100 attribute "name" string "4" attribute "char width" number 0.612500 attribute "series position" number 52.000000 # object 101 class array type float rank 1 shape 3 items 127 msb ieee data 77208 attribute "dep" string "positions" # object 102 class array type int rank 1 shape 3 items 125 msb ieee data 78732 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "5" class field component "positions" value 101 component "connections" value 102 attribute "name" string "5" attribute "char width" number 0.612500 attribute "series position" number 53.000000 # object 103 class array type float rank 1 shape 3 items 155 msb ieee data 80232 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 3 items 155 msb ieee data 82092 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "6" class field component "positions" value 103 component "connections" value 104 attribute "name" string "6" attribute "char width" number 0.612500 attribute "series position" number 54.000000 # object 105 class array type float rank 1 shape 3 items 121 msb ieee data 83952 attribute "dep" string "positions" # object 106 class array type int rank 1 shape 3 items 119 msb ieee data 85404 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "7" class field component "positions" value 105 component "connections" value 106 attribute "name" string "7" attribute "char width" number 0.612500 attribute "series position" number 55.000000 # object 107 class array type float rank 1 shape 3 items 158 msb ieee data 86832 attribute "dep" string "positions" # object 108 class array type int rank 1 shape 3 items 160 msb ieee data 88728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "8" class field component "positions" value 107 component "connections" value 108 attribute "name" string "8" attribute "char width" number 0.612500 attribute "series position" number 56.000000 # object 109 class array type float rank 1 shape 3 items 143 msb ieee data 90648 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 3 items 143 msb ieee data 92364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "9" class field component "positions" value 109 component "connections" value 110 attribute "name" string "9" attribute "char width" number 0.612500 attribute "series position" number 57.000000 # object 111 class array type float rank 1 shape 3 items 80 msb ieee data 94080 attribute "dep" string "positions" # object 112 class array type int rank 1 shape 3 items 76 msb ieee data 95040 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Colon" class field component "positions" value 111 component "connections" value 112 attribute "name" string "Colon" attribute "char width" number 0.312500 attribute "series position" number 58.000000 # object 113 class array type float rank 1 shape 3 items 64 msb ieee data 95952 attribute "dep" string "positions" # object 114 class array type int rank 1 shape 3 items 60 msb ieee data 96720 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Semicolon" class field component "positions" value 113 component "connections" value 114 attribute "name" string "Semicolon" attribute "char width" number 0.312500 attribute "series position" number 59.000000 # object 115 class array type float rank 1 shape 3 items 7 msb ieee data 97440 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 3 items 5 msb ieee data 97524 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AngleBracketOpen" class field component "positions" value 115 component "connections" value 116 attribute "name" string "AngleBracketOpen" attribute "char width" number 0.450000 attribute "series position" number 60.000000 # object 117 class array type float rank 1 shape 3 items 8 msb ieee data 97584 attribute "dep" string "positions" # object 118 class array type int rank 1 shape 3 items 4 msb ieee data 97680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Equals" class field component "positions" value 117 component "connections" value 118 attribute "name" string "Equals" attribute "char width" number 0.612500 attribute "series position" number 61.000000 # object 119 class array type float rank 1 shape 3 items 7 msb ieee data 97728 attribute "dep" string "positions" # object 120 class array type int rank 1 shape 3 items 5 msb ieee data 97812 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AngleBracketClose" class field component "positions" value 119 component "connections" value 120 attribute "name" string "AngleBracketClose" attribute "char width" number 0.450000 attribute "series position" number 62.000000 # object 121 class array type float rank 1 shape 3 items 114 msb ieee data 97872 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 3 items 110 msb ieee data 99240 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuestionMark" class field component "positions" value 121 component "connections" value 122 attribute "name" string "QuestionMark" attribute "char width" number 0.575000 attribute "series position" number 63.000000 # object 123 class array type float rank 1 shape 3 items 152 msb ieee data 100560 attribute "dep" string "positions" # object 124 class array type int rank 1 shape 3 items 152 msb ieee data 102384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AtSign" class field component "positions" value 123 component "connections" value 124 attribute "name" string "AtSign" attribute "char width" number 0.650000 attribute "series position" number 64.000000 # object 125 class array type float rank 1 shape 3 items 58 msb ieee data 104208 attribute "dep" string "positions" # object 126 class array type int rank 1 shape 3 items 58 msb ieee data 104904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "A" class field component "positions" value 125 component "connections" value 126 attribute "name" string "A" attribute "char width" number 0.850000 attribute "series position" number 65.000000 # object 127 class array type float rank 1 shape 3 items 129 msb ieee data 105600 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 3 items 131 msb ieee data 107148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "B" class field component "positions" value 127 component "connections" value 128 attribute "name" string "B" attribute "char width" number 0.725000 attribute "series position" number 66.000000 # object 129 class array type float rank 1 shape 3 items 155 msb ieee data 108720 attribute "dep" string "positions" # object 130 class array type int rank 1 shape 3 items 153 msb ieee data 110580 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "C" class field component "positions" value 129 component "connections" value 130 attribute "name" string "C" attribute "char width" number 0.650000 attribute "series position" number 67.000000 # object 131 class array type float rank 1 shape 3 items 106 msb ieee data 112416 attribute "dep" string "positions" # object 132 class array type int rank 1 shape 3 items 106 msb ieee data 113688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "D" class field component "positions" value 131 component "connections" value 132 attribute "name" string "D" attribute "char width" number 0.762500 attribute "series position" number 68.000000 # object 133 class array type float rank 1 shape 3 items 135 msb ieee data 114960 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 3 items 133 msb ieee data 116580 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "E" class field component "positions" value 133 component "connections" value 134 attribute "name" string "E" attribute "char width" number 0.687500 attribute "series position" number 69.000000 # object 135 class array type float rank 1 shape 3 items 114 msb ieee data 118176 attribute "dep" string "positions" # object 136 class array type int rank 1 shape 3 items 112 msb ieee data 119544 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "F" class field component "positions" value 135 component "connections" value 136 attribute "name" string "F" attribute "char width" number 0.662500 attribute "series position" number 70.000000 # object 137 class array type float rank 1 shape 3 items 185 msb ieee data 120888 attribute "dep" string "positions" # object 138 class array type int rank 1 shape 3 items 181 msb ieee data 123108 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "G" class field component "positions" value 137 component "connections" value 138 attribute "name" string "G" attribute "char width" number 0.737500 attribute "series position" number 71.000000 # object 139 class array type float rank 1 shape 3 items 123 msb ieee data 125280 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 3 items 121 msb ieee data 126756 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "H" class field component "positions" value 139 component "connections" value 140 attribute "name" string "H" attribute "char width" number 0.850000 attribute "series position" number 72.000000 # object 141 class array type float rank 1 shape 3 items 64 msb ieee data 128208 attribute "dep" string "positions" # object 142 class array type int rank 1 shape 3 items 60 msb ieee data 128976 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "I" class field component "positions" value 141 component "connections" value 142 attribute "name" string "I" attribute "char width" number 0.412500 attribute "series position" number 73.000000 # object 143 class array type float rank 1 shape 3 items 146 msb ieee data 129696 attribute "dep" string "positions" # object 144 class array type int rank 1 shape 3 items 144 msb ieee data 131448 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "J" class field component "positions" value 143 component "connections" value 144 attribute "name" string "J" attribute "char width" number 0.687500 attribute "series position" number 74.000000 # object 145 class array type float rank 1 shape 3 items 138 msb ieee data 133176 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 3 items 136 msb ieee data 134832 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "K" class field component "positions" value 145 component "connections" value 146 attribute "name" string "K" attribute "char width" number 0.862500 attribute "series position" number 75.000000 # object 147 class array type float rank 1 shape 3 items 76 msb ieee data 136464 attribute "dep" string "positions" # object 148 class array type int rank 1 shape 3 items 74 msb ieee data 137376 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "L" class field component "positions" value 147 component "connections" value 148 attribute "name" string "L" attribute "char width" number 0.687500 attribute "series position" number 76.000000 # object 149 class array type float rank 1 shape 3 items 127 msb ieee data 138264 attribute "dep" string "positions" # object 150 class array type int rank 1 shape 3 items 125 msb ieee data 139788 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "M" class field component "positions" value 149 component "connections" value 150 attribute "name" string "M" attribute "char width" number 1.000000 attribute "series position" number 77.000000 # object 151 class array type float rank 1 shape 3 items 109 msb ieee data 141288 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 3 items 107 msb ieee data 142596 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "N" class field component "positions" value 151 component "connections" value 152 attribute "name" string "N" attribute "char width" number 0.800000 attribute "series position" number 78.000000 # object 153 class array type float rank 1 shape 3 items 199 msb ieee data 143880 attribute "dep" string "positions" # object 154 class array type int rank 1 shape 3 items 199 msb ieee data 146268 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "O" class field component "positions" value 153 component "connections" value 154 attribute "name" string "O" attribute "char width" number 0.637500 attribute "series position" number 79.000000 # object 155 class array type float rank 1 shape 3 items 150 msb ieee data 148656 attribute "dep" string "positions" # object 156 class array type int rank 1 shape 3 items 150 msb ieee data 150456 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "P" class field component "positions" value 155 component "connections" value 156 attribute "name" string "P" attribute "char width" number 0.675000 attribute "series position" number 80.000000 # object 157 class array type float rank 1 shape 3 items 297 msb ieee data 152256 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 3 items 297 msb ieee data 155820 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Q" class field component "positions" value 157 component "connections" value 158 attribute "name" string "Q" attribute "char width" number 0.637500 attribute "series position" number 81.000000 # object 159 class array type float rank 1 shape 3 items 193 msb ieee data 159384 attribute "dep" string "positions" # object 160 class array type int rank 1 shape 3 items 193 msb ieee data 161700 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "R" class field component "positions" value 159 component "connections" value 160 attribute "name" string "R" attribute "char width" number 0.787500 attribute "series position" number 82.000000 # object 161 class array type float rank 1 shape 3 items 220 msb ieee data 164016 attribute "dep" string "positions" # object 162 class array type int rank 1 shape 3 items 218 msb ieee data 166656 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "S" class field component "positions" value 161 component "connections" value 162 attribute "name" string "S" attribute "char width" number 0.550000 attribute "series position" number 83.000000 # object 163 class array type float rank 1 shape 3 items 102 msb ieee data 169272 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 3 items 100 msb ieee data 170496 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "T" class field component "positions" value 163 component "connections" value 164 attribute "name" string "T" attribute "char width" number 0.662500 attribute "series position" number 84.000000 # object 165 class array type float rank 1 shape 3 items 127 msb ieee data 171696 attribute "dep" string "positions" # object 166 class array type int rank 1 shape 3 items 125 msb ieee data 173220 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "U" class field component "positions" value 165 component "connections" value 166 attribute "name" string "U" attribute "char width" number 0.775000 attribute "series position" number 85.000000 # object 167 class array type float rank 1 shape 3 items 74 msb ieee data 174720 attribute "dep" string "positions" # object 168 class array type int rank 1 shape 3 items 72 msb ieee data 175608 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "V" class field component "positions" value 167 component "connections" value 168 attribute "name" string "V" attribute "char width" number 0.850000 attribute "series position" number 86.000000 # object 169 class array type float rank 1 shape 3 items 105 msb ieee data 176472 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 3 items 103 msb ieee data 177732 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "W" class field component "positions" value 169 component "connections" value 170 attribute "name" string "W" attribute "char width" number 1.075000 attribute "series position" number 87.000000 # object 171 class array type float rank 1 shape 3 items 118 msb ieee data 178968 attribute "dep" string "positions" # object 172 class array type int rank 1 shape 3 items 116 msb ieee data 180384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "X" class field component "positions" value 171 component "connections" value 172 attribute "name" string "X" attribute "char width" number 0.837500 attribute "series position" number 88.000000 # object 173 class array type float rank 1 shape 3 items 92 msb ieee data 181776 attribute "dep" string "positions" # object 174 class array type int rank 1 shape 3 items 90 msb ieee data 182880 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Y" class field component "positions" value 173 component "connections" value 174 attribute "name" string "Y" attribute "char width" number 0.862500 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 3 items 64 msb ieee data 183960 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 3 items 62 msb ieee data 184728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Z" class field component "positions" value 175 component "connections" value 176 attribute "name" string "Z" attribute "char width" number 0.625000 attribute "series position" number 90.000000 # object 177 class array type float rank 1 shape 3 items 23 msb ieee data 185472 attribute "dep" string "positions" # object 178 class array type int rank 1 shape 3 items 21 msb ieee data 185748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "SquareBracketOpen" class field component "positions" value 177 component "connections" value 178 attribute "name" string "SquareBracketOpen" attribute "char width" number 0.250000 attribute "series position" number 91.000000 # object 179 class array type float rank 1 shape 3 items 23 msb ieee data 186000 attribute "dep" string "positions" # object 180 class array type int rank 1 shape 3 items 21 msb ieee data 186276 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "SquareBracketClose" class field component "positions" value 179 component "connections" value 180 attribute "name" string "SquareBracketClose" attribute "char width" number 0.250000 attribute "series position" number 93.000000 # object 181 class array type float rank 1 shape 3 items 7 msb ieee data 186528 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 3 items 5 msb ieee data 186612 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Circumflex" class field component "positions" value 181 component "connections" value 182 attribute "name" string "Circumflex" attribute "char width" number 0.350000 attribute "series position" number 94.000000 # object 183 class array type float rank 1 shape 3 items 4 msb ieee data 186672 attribute "dep" string "positions" # object 184 class array type int rank 1 shape 3 items 2 msb ieee data 186720 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Underscore" class field component "positions" value 183 component "connections" value 184 attribute "name" string "Underscore" attribute "char width" number 0.662500 attribute "series position" number 95.000000 # object 185 class array type float rank 1 shape 3 items 10 msb ieee data 186744 attribute "dep" string "positions" # object 186 class array type int rank 1 shape 3 items 8 msb ieee data 186864 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "BackApostrophe" class field component "positions" value 185 component "connections" value 186 attribute "name" string "BackApostrophe" attribute "char width" number 0.212500 attribute "series position" number 96.000000 # object 187 class array type float rank 1 shape 3 items 165 msb ieee data 186960 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 3 items 165 msb ieee data 188940 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "a" class field component "positions" value 187 component "connections" value 188 attribute "name" string "a" attribute "char width" number 0.625000 attribute "series position" number 97.000000 # object 189 class array type float rank 1 shape 3 items 114 msb ieee data 190920 attribute "dep" string "positions" # object 190 class array type int rank 1 shape 3 items 114 msb ieee data 192288 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "b" class field component "positions" value 189 component "connections" value 190 attribute "name" string "b" attribute "char width" number 0.612500 attribute "series position" number 98.000000 # object 191 class array type float rank 1 shape 3 items 144 msb ieee data 193656 attribute "dep" string "positions" # object 192 class array type int rank 1 shape 3 items 142 msb ieee data 195384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "c" class field component "positions" value 191 component "connections" value 192 attribute "name" string "c" attribute "char width" number 0.525000 attribute "series position" number 99.000000 # object 193 class array type float rank 1 shape 3 items 116 msb ieee data 197088 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 3 items 116 msb ieee data 198480 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "d" class field component "positions" value 193 component "connections" value 194 attribute "name" string "d" attribute "char width" number 0.650000 attribute "series position" number 100.000000 # object 195 class array type float rank 1 shape 3 items 126 msb ieee data 199872 attribute "dep" string "positions" # object 196 class array type int rank 1 shape 3 items 126 msb ieee data 201384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "e" class field component "positions" value 195 component "connections" value 196 attribute "name" string "e" attribute "char width" number 0.537500 attribute "series position" number 101.000000 # object 197 class array type float rank 1 shape 3 items 95 msb ieee data 202896 attribute "dep" string "positions" # object 198 class array type int rank 1 shape 3 items 93 msb ieee data 204036 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "f" class field component "positions" value 197 component "connections" value 198 attribute "name" string "f" attribute "char width" number 0.475000 attribute "series position" number 102.000000 # object 199 class array type float rank 1 shape 3 items 183 msb ieee data 205152 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 3 items 185 msb ieee data 207348 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "g" class field component "positions" value 199 component "connections" value 200 attribute "name" string "g" attribute "char width" number 0.600000 attribute "series position" number 103.000000 # object 201 class array type float rank 1 shape 3 items 113 msb ieee data 209568 attribute "dep" string "positions" # object 202 class array type int rank 1 shape 3 items 111 msb ieee data 210924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "h" class field component "positions" value 201 component "connections" value 202 attribute "name" string "h" attribute "char width" number 0.700000 attribute "series position" number 104.000000 # object 203 class array type float rank 1 shape 3 items 72 msb ieee data 212256 attribute "dep" string "positions" # object 204 class array type int rank 1 shape 3 items 68 msb ieee data 213120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "i" class field component "positions" value 203 component "connections" value 204 attribute "name" string "i" attribute "char width" number 0.350000 attribute "series position" number 105.000000 # object 205 class array type float rank 1 shape 3 items 87 msb ieee data 213936 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 3 items 83 msb ieee data 214980 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "j" class field component "positions" value 205 component "connections" value 206 attribute "name" string "j" attribute "char width" number 0.250000 attribute "series position" number 106.000000 # object 207 class array type float rank 1 shape 3 items 90 msb ieee data 215976 attribute "dep" string "positions" # object 208 class array type int rank 1 shape 3 items 88 msb ieee data 217056 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "k" class field component "positions" value 207 component "connections" value 208 attribute "name" string "k" attribute "char width" number 0.687500 attribute "series position" number 107.000000 # object 209 class array type float rank 1 shape 3 items 56 msb ieee data 218112 attribute "dep" string "positions" # object 210 class array type int rank 1 shape 3 items 54 msb ieee data 218784 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "l" class field component "positions" value 209 component "connections" value 210 attribute "name" string "l" attribute "char width" number 0.350000 attribute "series position" number 108.000000 # object 211 class array type float rank 1 shape 3 items 166 msb ieee data 219432 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 3 items 164 msb ieee data 221424 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "m" class field component "positions" value 211 component "connections" value 212 attribute "name" string "m" attribute "char width" number 1.012500 attribute "series position" number 109.000000 # object 213 class array type float rank 1 shape 3 items 114 msb ieee data 223392 attribute "dep" string "positions" # object 214 class array type int rank 1 shape 3 items 112 msb ieee data 224760 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "n" class field component "positions" value 213 component "connections" value 214 attribute "name" string "n" attribute "char width" number 0.700000 attribute "series position" number 110.000000 # object 215 class array type float rank 1 shape 3 items 88 msb ieee data 226104 attribute "dep" string "positions" # object 216 class array type int rank 1 shape 3 items 88 msb ieee data 227160 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "o" class field component "positions" value 215 component "connections" value 216 attribute "name" string "o" attribute "char width" number 0.525000 attribute "series position" number 111.000000 # object 217 class array type float rank 1 shape 3 items 117 msb ieee data 228216 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 3 items 117 msb ieee data 229620 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "p" class field component "positions" value 217 component "connections" value 218 attribute "name" string "p" attribute "char width" number 0.637500 attribute "series position" number 112.000000 # object 219 class array type float rank 1 shape 3 items 113 msb ieee data 231024 attribute "dep" string "positions" # object 220 class array type int rank 1 shape 3 items 113 msb ieee data 232380 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "q" class field component "positions" value 219 component "connections" value 220 attribute "name" string "q" attribute "char width" number 0.612500 attribute "series position" number 113.000000 # object 221 class array type float rank 1 shape 3 items 99 msb ieee data 233736 attribute "dep" string "positions" # object 222 class array type int rank 1 shape 3 items 97 msb ieee data 234924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "r" class field component "positions" value 221 component "connections" value 222 attribute "name" string "r" attribute "char width" number 0.537500 attribute "series position" number 114.000000 # object 223 class array type float rank 1 shape 3 items 162 msb ieee data 236088 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 3 items 160 msb ieee data 238032 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "s" class field component "positions" value 223 component "connections" value 224 attribute "name" string "s" attribute "char width" number 0.462500 attribute "series position" number 115.000000 # object 225 class array type float rank 1 shape 3 items 84 msb ieee data 239952 attribute "dep" string "positions" # object 226 class array type int rank 1 shape 3 items 82 msb ieee data 240960 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "t" class field component "positions" value 225 component "connections" value 226 attribute "name" string "t" attribute "char width" number 0.462500 attribute "series position" number 116.000000 # object 227 class array type float rank 1 shape 3 items 93 msb ieee data 241944 attribute "dep" string "positions" # object 228 class array type int rank 1 shape 3 items 91 msb ieee data 243060 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "u" class field component "positions" value 227 component "connections" value 228 attribute "name" string "u" attribute "char width" number 0.700000 attribute "series position" number 117.000000 # object 229 class array type float rank 1 shape 3 items 63 msb ieee data 244152 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 3 items 61 msb ieee data 244908 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "v" class field component "positions" value 229 component "connections" value 230 attribute "name" string "v" attribute "char width" number 0.687500 attribute "series position" number 118.000000 # object 231 class array type float rank 1 shape 3 items 88 msb ieee data 245640 attribute "dep" string "positions" # object 232 class array type int rank 1 shape 3 items 86 msb ieee data 246696 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "w" class field component "positions" value 231 component "connections" value 232 attribute "name" string "w" attribute "char width" number 0.912500 attribute "series position" number 119.000000 # object 233 class array type float rank 1 shape 3 items 117 msb ieee data 247728 attribute "dep" string "positions" # object 234 class array type int rank 1 shape 3 items 115 msb ieee data 249132 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "x" class field component "positions" value 233 component "connections" value 234 attribute "name" string "x" attribute "char width" number 0.712500 attribute "series position" number 120.000000 # object 235 class array type float rank 1 shape 3 items 92 msb ieee data 250512 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 3 items 90 msb ieee data 251616 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "y" class field component "positions" value 235 component "connections" value 236 attribute "name" string "y" attribute "char width" number 0.712500 attribute "series position" number 121.000000 # object 237 class array type float rank 1 shape 3 items 67 msb ieee data 252696 attribute "dep" string "positions" # object 238 class array type int rank 1 shape 3 items 65 msb ieee data 253500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "z" class field component "positions" value 237 component "connections" value 238 attribute "name" string "z" attribute "char width" number 0.525000 attribute "series position" number 122.000000 # object 239 class array type float rank 1 shape 3 items 52 msb ieee data 254280 attribute "dep" string "positions" # object 240 class array type int rank 1 shape 3 items 50 msb ieee data 254904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CurlyBraceOpen" class field component "positions" value 239 component "connections" value 240 attribute "name" string "CurlyBraceOpen" attribute "char width" number 0.275000 attribute "series position" number 123.000000 # object 241 class array type float rank 1 shape 3 items 8 msb ieee data 255504 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 3 items 4 msb ieee data 255600 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pipe" class field component "positions" value 241 component "connections" value 242 attribute "name" string "Pipe" attribute "char width" number 0.312500 attribute "series position" number 124.000000 # object 243 class array type float rank 1 shape 3 items 52 msb ieee data 255648 attribute "dep" string "positions" # object 244 class array type int rank 1 shape 3 items 50 msb ieee data 256272 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CurlyBraceClose" class field component "positions" value 243 component "connections" value 244 attribute "name" string "CurlyBraceClose" attribute "char width" number 0.275000 attribute "series position" number 125.000000 # object 245 class array type float rank 1 shape 3 items 42 msb ieee data 256872 attribute "dep" string "positions" # object 246 class array type int rank 1 shape 3 items 40 msb ieee data 257376 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Tilde" class field component "positions" value 245 component "connections" value 246 attribute "name" string "Tilde" attribute "char width" number 0.400000 attribute "series position" number 126.000000 # object 247 class array type float rank 1 shape 3 items 169 msb ieee data 257856 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 3 items 167 msb ieee data 259884 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "aBar" class field component "positions" value 247 component "connections" value 248 attribute "name" string "aBar" attribute "char width" number 0.450000 attribute "series position" number 128.000000 # object 249 class array type float rank 1 shape 3 items 10 msb ieee data 261888 attribute "dep" string "positions" # object 250 class array type int rank 1 shape 3 items 8 msb ieee data 262008 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentAcute" class field component "positions" value 249 component "connections" value 250 attribute "name" string "accentAcute" attribute "char width" number 0.000000 attribute "series position" number 129.000000 # object 251 class array type float rank 1 shape 3 items 10 msb ieee data 262104 attribute "dep" string "positions" # object 252 class array type int rank 1 shape 3 items 8 msb ieee data 262224 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentAcute" class field component "positions" value 251 component "connections" value 252 attribute "name" string "AccentAcute" attribute "char width" number 0.000000 attribute "series position" number 130.000000 # object 253 class array type float rank 1 shape 3 items 74 msb ieee data 262320 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 3 items 68 msb ieee data 263208 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IAccentAcute" class field component "positions" value 253 component "connections" value 254 attribute "name" string "IAccentAcute" attribute "char width" number 0.412500 attribute "series position" number 131.000000 # object 255 class array type float rank 1 shape 3 items 10 msb ieee data 264024 attribute "dep" string "positions" # object 256 class array type int rank 1 shape 3 items 8 msb ieee data 264144 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentGrave" class field component "positions" value 255 component "connections" value 256 attribute "name" string "accentGrave" attribute "char width" number 0.000000 attribute "series position" number 132.000000 # object 257 class array type float rank 1 shape 3 items 10 msb ieee data 264240 attribute "dep" string "positions" # object 258 class array type int rank 1 shape 3 items 8 msb ieee data 264360 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentGrave" class field component "positions" value 257 component "connections" value 258 attribute "name" string "AccentGrave" attribute "char width" number 0.000000 attribute "series position" number 133.000000 # object 259 class array type float rank 1 shape 3 items 74 msb ieee data 264456 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 3 items 68 msb ieee data 265344 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IAccentGrave" class field component "positions" value 259 component "connections" value 260 attribute "name" string "IAccentGrave" attribute "char width" number 0.412500 attribute "series position" number 134.000000 # object 261 class array type float rank 1 shape 3 items 22 msb ieee data 266160 attribute "dep" string "positions" # object 262 class array type int rank 1 shape 3 items 18 msb ieee data 266424 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentHungarian" class field component "positions" value 261 component "connections" value 262 attribute "name" string "accentHungarian" attribute "char width" number 0.000000 attribute "series position" number 135.000000 # object 263 class array type float rank 1 shape 3 items 22 msb ieee data 266640 attribute "dep" string "positions" # object 264 class array type int rank 1 shape 3 items 18 msb ieee data 266904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentHungarian" class field component "positions" value 263 component "connections" value 264 attribute "name" string "AccentHungarian" attribute "char width" number 0.000000 attribute "series position" number 136.000000 # object 265 class array type float rank 1 shape 3 items 176 msb ieee data 267120 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 3 items 178 msb ieee data 269232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ae" class field component "positions" value 265 component "connections" value 266 attribute "name" string "ae" attribute "char width" number 0.900000 attribute "series position" number 137.000000 # object 267 class array type float rank 1 shape 3 items 151 msb ieee data 271368 attribute "dep" string "positions" # object 268 class array type int rank 1 shape 3 items 151 msb ieee data 273180 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AE" class field component "positions" value 267 component "connections" value 268 attribute "name" string "AE" attribute "char width" number 1.112500 attribute "series position" number 138.000000 # object 269 class array type float rank 1 shape 3 items 80 msb ieee data 274992 attribute "dep" string "positions" # object 270 class array type int rank 1 shape 3 items 80 msb ieee data 275952 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "angstrom" class field component "positions" value 269 component "connections" value 270 attribute "name" string "angstrom" attribute "char width" number 0.000000 attribute "series position" number 139.000000 # object 271 class array type float rank 1 shape 3 items 80 msb ieee data 276912 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 3 items 80 msb ieee data 277872 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Angstrom" class field component "positions" value 271 component "connections" value 272 attribute "name" string "Angstrom" attribute "char width" number 0.000000 attribute "series position" number 140.000000 # object 273 class array type float rank 1 shape 3 items 28 msb ieee data 278832 attribute "dep" string "positions" # object 274 class array type int rank 1 shape 3 items 26 msb ieee data 279168 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "breve" class field component "positions" value 273 component "connections" value 274 attribute "name" string "breve" attribute "char width" number 0.000000 attribute "series position" number 141.000000 # object 275 class array type float rank 1 shape 3 items 28 msb ieee data 279480 attribute "dep" string "positions" # object 276 class array type int rank 1 shape 3 items 26 msb ieee data 279816 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Breve" class field component "positions" value 275 component "connections" value 276 attribute "name" string "Breve" attribute "char width" number 0.000000 attribute "series position" number 142.000000 # object 277 class array type float rank 1 shape 3 items 190 msb ieee data 280128 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 3 items 186 msb ieee data 282408 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "cCedilla" class field component "positions" value 277 component "connections" value 278 attribute "name" string "cCedilla" attribute "char width" number 0.525000 attribute "series position" number 143.000000 # object 279 class array type float rank 1 shape 3 items 201 msb ieee data 284640 attribute "dep" string "positions" # object 280 class array type int rank 1 shape 3 items 197 msb ieee data 287052 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CCedilla" class field component "positions" value 279 component "connections" value 280 attribute "name" string "CCedilla" attribute "char width" number 0.650000 attribute "series position" number 144.000000 # object 281 class array type float rank 1 shape 3 items 7 msb ieee data 289416 attribute "dep" string "positions" # object 282 class array type int rank 1 shape 3 items 5 msb ieee data 289500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "wideCircumflex" class field component "positions" value 281 component "connections" value 282 attribute "name" string "wideCircumflex" attribute "char width" number 0.000000 attribute "series position" number 145.000000 # object 283 class array type float rank 1 shape 3 items 7 msb ieee data 289560 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 3 items 5 msb ieee data 289644 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "WideCircumflex" class field component "positions" value 283 component "connections" value 284 attribute "name" string "WideCircumflex" attribute "char width" number 0.000000 attribute "series position" number 146.000000 # object 285 class array type float rank 1 shape 3 items 71 msb ieee data 289704 attribute "dep" string "positions" # object 286 class array type int rank 1 shape 3 items 65 msb ieee data 290556 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IWideCircumflex" class field component "positions" value 285 component "connections" value 286 attribute "name" string "IWideCircumflex" attribute "char width" number 0.437500 attribute "series position" number 147.000000 # object 287 class array type float rank 1 shape 3 items 206 msb ieee data 291336 attribute "dep" string "positions" # object 288 class array type int rank 1 shape 3 items 204 msb ieee data 293808 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OWideCircumflex" class field component "positions" value 287 component "connections" value 288 attribute "name" string "OWideCircumflex" attribute "char width" number 0.637500 attribute "series position" number 148.000000 # object 289 class array type float rank 1 shape 3 items 7 msb ieee data 296256 attribute "dep" string "positions" # object 290 class array type int rank 1 shape 3 items 5 msb ieee data 296340 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Clicka" class field component "positions" value 289 component "connections" value 290 attribute "name" string "Clicka" attribute "char width" number 0.000000 attribute "series position" number 149.000000 # object 291 class array type float rank 1 shape 3 items 24 msb ieee data 296400 attribute "dep" string "positions" # object 292 class array type int rank 1 shape 3 items 22 msb ieee data 296688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CommaRumanian" class field component "positions" value 291 component "connections" value 292 attribute "name" string "CommaRumanian" attribute "char width" number 0.000000 attribute "series position" number 150.000000 # object 293 class array type float rank 1 shape 3 items 42 msb ieee data 296952 attribute "dep" string "positions" # object 294 class array type int rank 1 shape 3 items 40 msb ieee data 297456 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "enya" class field component "positions" value 293 component "connections" value 294 attribute "name" string "enya" attribute "char width" number 0.000000 attribute "series position" number 151.000000 # object 295 class array type float rank 1 shape 3 items 42 msb ieee data 297936 attribute "dep" string "positions" # object 296 class array type int rank 1 shape 3 items 40 msb ieee data 298440 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Enya" class field component "positions" value 295 component "connections" value 296 attribute "name" string "Enya" attribute "char width" number 0.000000 attribute "series position" number 152.000000 # object 297 class array type float rank 1 shape 3 items 112 msb ieee data 298920 attribute "dep" string "positions" # object 298 class array type int rank 1 shape 3 items 112 msb ieee data 300264 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "eth" class field component "positions" value 297 component "connections" value 298 attribute "name" string "eth" attribute "char width" number 0.512500 attribute "series position" number 153.000000 # object 299 class array type float rank 1 shape 3 items 110 msb ieee data 301608 attribute "dep" string "positions" # object 300 class array type int rank 1 shape 3 items 108 msb ieee data 302928 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Eth" class field component "positions" value 299 component "connections" value 300 attribute "name" string "Eth" attribute "char width" number 0.762500 attribute "series position" number 154.000000 # object 301 class array type float rank 1 shape 3 items 22 msb ieee data 304224 attribute "dep" string "positions" # object 302 class array type int rank 1 shape 3 items 20 msb ieee data 304488 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "hookLithuanian" class field component "positions" value 301 component "connections" value 302 attribute "name" string "hookLithuanian" attribute "char width" number 0.000000 attribute "series position" number 155.000000 # object 303 class array type float rank 1 shape 3 items 94 msb ieee data 304728 attribute "dep" string "positions" # object 304 class array type int rank 1 shape 3 items 88 msb ieee data 305856 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iHookLithuanian" class field component "positions" value 303 component "connections" value 304 attribute "name" string "iHookLithuanian" attribute "char width" number 0.350000 attribute "series position" number 156.000000 # object 305 class array type float rank 1 shape 3 items 22 msb ieee data 306912 attribute "dep" string "positions" # object 306 class array type int rank 1 shape 3 items 20 msb ieee data 307176 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "HookLithuanian" class field component "positions" value 305 component "connections" value 306 attribute "name" string "HookLithuanian" attribute "char width" number 0.000000 attribute "series position" number 157.000000 # object 307 class array type float rank 1 shape 3 items 86 msb ieee data 307416 attribute "dep" string "positions" # object 308 class array type int rank 1 shape 3 items 80 msb ieee data 308448 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IHookLithuanian" class field component "positions" value 307 component "connections" value 308 attribute "name" string "IHookLithuanian" attribute "char width" number 0.412500 attribute "series position" number 158.000000 # object 309 class array type float rank 1 shape 3 items 48 msb ieee data 309408 attribute "dep" string "positions" # object 310 class array type int rank 1 shape 3 items 46 msb ieee data 309984 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iUndotted" class field component "positions" value 309 component "connections" value 310 attribute "name" string "iUndotted" attribute "char width" number 0.537500 attribute "series position" number 159.000000 # object 311 class array type float rank 1 shape 3 items 60 msb ieee data 310536 attribute "dep" string "positions" # object 312 class array type int rank 1 shape 3 items 56 msb ieee data 311256 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "lSlash" class field component "positions" value 311 component "connections" value 312 attribute "name" string "lSlash" attribute "char width" number 0.350000 attribute "series position" number 160.000000 # object 313 class array type float rank 1 shape 3 items 80 msb ieee data 311928 attribute "dep" string "positions" # object 314 class array type int rank 1 shape 3 items 76 msb ieee data 312888 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "LSlash" class field component "positions" value 313 component "connections" value 314 attribute "name" string "LSlash" attribute "char width" number 0.687500 attribute "series position" number 161.000000 # object 315 class array type float rank 1 shape 3 items 4 msb ieee data 313800 attribute "dep" string "positions" # object 316 class array type int rank 1 shape 3 items 2 msb ieee data 313848 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "macron" class field component "positions" value 315 component "connections" value 316 attribute "name" string "macron" attribute "char width" number 0.000000 attribute "series position" number 162.000000 # object 317 class array type float rank 1 shape 3 items 4 msb ieee data 313872 attribute "dep" string "positions" # object 318 class array type int rank 1 shape 3 items 2 msb ieee data 313920 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Macron" class field component "positions" value 317 component "connections" value 318 attribute "name" string "Macron" attribute "char width" number 0.000000 attribute "series position" number 163.000000 # object 319 class array type float rank 1 shape 3 items 92 msb ieee data 313944 attribute "dep" string "positions" # object 320 class array type int rank 1 shape 3 items 90 msb ieee data 315048 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "oBar" class field component "positions" value 319 component "connections" value 320 attribute "name" string "oBar" attribute "char width" number 0.450000 attribute "series position" number 164.000000 # object 321 class array type float rank 1 shape 3 items 92 msb ieee data 316128 attribute "dep" string "positions" # object 322 class array type int rank 1 shape 3 items 90 msb ieee data 317232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "oSlash" class field component "positions" value 321 component "connections" value 322 attribute "name" string "oSlash" attribute "char width" number 0.525000 attribute "series position" number 165.000000 # object 323 class array type float rank 1 shape 3 items 203 msb ieee data 318312 attribute "dep" string "positions" # object 324 class array type int rank 1 shape 3 items 201 msb ieee data 320748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OSlash" class field component "positions" value 323 component "connections" value 324 attribute "name" string "OSlash" attribute "char width" number 0.637500 attribute "series position" number 166.000000 # object 325 class array type float rank 1 shape 3 items 40 msb ieee data 323160 attribute "dep" string "positions" # object 326 class array type int rank 1 shape 3 items 38 msb ieee data 323640 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OverDot" class field component "positions" value 325 component "connections" value 326 attribute "name" string "OverDot" attribute "char width" number 0.000000 attribute "series position" number 167.000000 # object 327 class array type float rank 1 shape 3 items 88 msb ieee data 324096 attribute "dep" string "positions" # object 328 class array type int rank 1 shape 3 items 88 msb ieee data 325152 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "thorn" class field component "positions" value 327 component "connections" value 328 attribute "name" string "thorn" attribute "char width" number 0.662500 attribute "series position" number 168.000000 # object 329 class array type float rank 1 shape 3 items 107 msb ieee data 326208 attribute "dep" string "positions" # object 330 class array type int rank 1 shape 3 items 107 msb ieee data 327492 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Thorn" class field component "positions" value 329 component "connections" value 330 attribute "name" string "Thorn" attribute "char width" number 0.625000 attribute "series position" number 169.000000 # object 331 class array type float rank 1 shape 3 items 80 msb ieee data 328776 attribute "dep" string "positions" # object 332 class array type int rank 1 shape 3 items 76 msb ieee data 329736 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "umlaut" class field component "positions" value 331 component "connections" value 332 attribute "name" string "umlaut" attribute "char width" number 0.000000 attribute "series position" number 170.000000 # object 333 class array type float rank 1 shape 3 items 80 msb ieee data 330648 attribute "dep" string "positions" # object 334 class array type int rank 1 shape 3 items 76 msb ieee data 331608 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Umlaut" class field component "positions" value 333 component "connections" value 334 attribute "name" string "Umlaut" attribute "char width" number 0.000000 attribute "series position" number 171.000000 # object 335 class array type float rank 1 shape 3 items 144 msb ieee data 332520 attribute "dep" string "positions" # object 336 class array type int rank 1 shape 3 items 136 msb ieee data 334248 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IUmlaut" class field component "positions" value 335 component "connections" value 336 attribute "name" string "IUmlaut" attribute "char width" number 0.412500 attribute "series position" number 172.000000 # object 337 class array type float rank 1 shape 3 items 279 msb ieee data 335880 attribute "dep" string "positions" # object 338 class array type int rank 1 shape 3 items 275 msb ieee data 339228 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OUmlaut" class field component "positions" value 337 component "connections" value 338 attribute "name" string "OUmlaut" attribute "char width" number 0.637500 attribute "series position" number 173.000000 # object 339 class array type float rank 1 shape 3 items 38 msb ieee data 342528 attribute "dep" string "positions" # object 340 class array type int rank 1 shape 3 items 38 msb ieee data 342984 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Alpha" class field component "positions" value 339 component "connections" value 340 attribute "name" string "Alpha" attribute "char width" number 0.800000 attribute "series position" number 192.000000 # object 341 class array type float rank 1 shape 3 items 94 msb ieee data 343440 attribute "dep" string "positions" # object 342 class array type int rank 1 shape 3 items 96 msb ieee data 344568 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Beta" class field component "positions" value 341 component "connections" value 342 attribute "name" string "Beta" attribute "char width" number 0.725000 attribute "series position" number 193.000000 # object 343 class array type float rank 1 shape 3 items 89 msb ieee data 345720 attribute "dep" string "positions" # object 344 class array type int rank 1 shape 3 items 87 msb ieee data 346788 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Gamma" class field component "positions" value 343 component "connections" value 344 attribute "name" string "Gamma" attribute "char width" number 0.650000 attribute "series position" number 194.000000 # object 345 class array type float rank 1 shape 3 items 6 msb ieee data 347832 attribute "dep" string "positions" # object 346 class array type int rank 1 shape 3 items 6 msb ieee data 347904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Delta" class field component "positions" value 345 component "connections" value 346 attribute "name" string "Delta" attribute "char width" number 0.800000 attribute "series position" number 195.000000 # object 347 class array type float rank 1 shape 3 items 64 msb ieee data 347976 attribute "dep" string "positions" # object 348 class array type int rank 1 shape 3 items 62 msb ieee data 348744 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Epsilon" class field component "positions" value 347 component "connections" value 348 attribute "name" string "Epsilon" attribute "char width" number 0.687500 attribute "series position" number 196.000000 # object 349 class array type float rank 1 shape 3 items 27 msb ieee data 349488 attribute "dep" string "positions" # object 350 class array type int rank 1 shape 3 items 25 msb ieee data 349812 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Zeta" class field component "positions" value 349 component "connections" value 350 attribute "name" string "Zeta" attribute "char width" number 0.687500 attribute "series position" number 197.000000 # object 351 class array type float rank 1 shape 3 items 152 msb ieee data 350112 attribute "dep" string "positions" # object 352 class array type int rank 1 shape 3 items 150 msb ieee data 351936 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Eta" class field component "positions" value 351 component "connections" value 352 attribute "name" string "Eta" attribute "char width" number 0.825000 attribute "series position" number 198.000000 # object 353 class array type float rank 1 shape 3 items 180 msb ieee data 353736 attribute "dep" string "positions" # object 354 class array type int rank 1 shape 3 items 178 msb ieee data 355896 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Theta" class field component "positions" value 353 component "connections" value 354 attribute "name" string "Theta" attribute "char width" number 0.775000 attribute "series position" number 199.000000 # object 355 class array type float rank 1 shape 3 items 37 msb ieee data 358032 attribute "dep" string "positions" # object 356 class array type int rank 1 shape 3 items 35 msb ieee data 358476 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Iota" class field component "positions" value 355 component "connections" value 356 attribute "name" string "Iota" attribute "char width" number 0.375000 attribute "series position" number 200.000000 # object 357 class array type float rank 1 shape 3 items 74 msb ieee data 358896 attribute "dep" string "positions" # object 358 class array type int rank 1 shape 3 items 72 msb ieee data 359784 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Kappa" class field component "positions" value 357 component "connections" value 358 attribute "name" string "Kappa" attribute "char width" number 0.800000 attribute "series position" number 201.000000 # object 359 class array type float rank 1 shape 3 items 74 msb ieee data 360648 attribute "dep" string "positions" # object 360 class array type int rank 1 shape 3 items 72 msb ieee data 361536 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Lambda" class field component "positions" value 359 component "connections" value 360 attribute "name" string "Lambda" attribute "char width" number 0.762500 attribute "series position" number 202.000000 # object 361 class array type float rank 1 shape 3 items 61 msb ieee data 362400 attribute "dep" string "positions" # object 362 class array type int rank 1 shape 3 items 59 msb ieee data 363132 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Mu" class field component "positions" value 361 component "connections" value 362 attribute "name" string "Mu" attribute "char width" number 1.000000 attribute "series position" number 203.000000 # object 363 class array type float rank 1 shape 3 items 52 msb ieee data 363840 attribute "dep" string "positions" # object 364 class array type int rank 1 shape 3 items 50 msb ieee data 364464 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Nu" class field component "positions" value 363 component "connections" value 364 attribute "name" string "Nu" attribute "char width" number 0.800000 attribute "series position" number 204.000000 # object 365 class array type float rank 1 shape 3 items 88 msb ieee data 365064 attribute "dep" string "positions" # object 366 class array type int rank 1 shape 3 items 82 msb ieee data 366120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Xi" class field component "positions" value 365 component "connections" value 366 attribute "name" string "Xi" attribute "char width" number 0.750000 attribute "series position" number 205.000000 # object 367 class array type float rank 1 shape 3 items 80 msb ieee data 367104 attribute "dep" string "positions" # object 368 class array type int rank 1 shape 3 items 80 msb ieee data 368064 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Omicron" class field component "positions" value 367 component "connections" value 368 attribute "name" string "Omicron" attribute "char width" number 0.775000 attribute "series position" number 206.000000 # object 369 class array type float rank 1 shape 3 items 144 msb ieee data 369024 attribute "dep" string "positions" # object 370 class array type int rank 1 shape 3 items 140 msb ieee data 370752 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pi" class field component "positions" value 369 component "connections" value 370 attribute "name" string "Pi" attribute "char width" number 0.737500 attribute "series position" number 207.000000 # object 371 class array type float rank 1 shape 3 items 71 msb ieee data 372432 attribute "dep" string "positions" # object 372 class array type int rank 1 shape 3 items 71 msb ieee data 373284 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Rho" class field component "positions" value 371 component "connections" value 372 attribute "name" string "Rho" attribute "char width" number 0.625000 attribute "series position" number 208.000000 # object 373 class array type float rank 1 shape 3 items 23 msb ieee data 374136 attribute "dep" string "positions" # object 374 class array type int rank 1 shape 3 items 21 msb ieee data 374412 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Sigma" class field component "positions" value 373 component "connections" value 374 attribute "name" string "Sigma" attribute "char width" number 0.712500 attribute "series position" number 209.000000 # object 375 class array type float rank 1 shape 3 items 46 msb ieee data 374664 attribute "dep" string "positions" # object 376 class array type int rank 1 shape 3 items 44 msb ieee data 375216 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Tau" class field component "positions" value 375 component "connections" value 376 attribute "name" string "Tau" attribute "char width" number 0.687500 attribute "series position" number 210.000000 # object 377 class array type float rank 1 shape 3 items 94 msb ieee data 375744 attribute "dep" string "positions" # object 378 class array type int rank 1 shape 3 items 90 msb ieee data 376872 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Upsilon" class field component "positions" value 377 component "connections" value 378 attribute "name" string "Upsilon" attribute "char width" number 0.687500 attribute "series position" number 211.000000 # object 379 class array type float rank 1 shape 3 items 180 msb ieee data 377952 attribute "dep" string "positions" # object 380 class array type int rank 1 shape 3 items 178 msb ieee data 380112 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Phi" class field component "positions" value 379 component "connections" value 380 attribute "name" string "Phi" attribute "char width" number 0.625000 attribute "series position" number 212.000000 # object 381 class array type float rank 1 shape 3 items 73 msb ieee data 382248 attribute "dep" string "positions" # object 382 class array type int rank 1 shape 3 items 71 msb ieee data 383124 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Chi" class field component "positions" value 381 component "connections" value 382 attribute "name" string "Chi" attribute "char width" number 0.800000 attribute "series position" number 213.000000 # object 383 class array type float rank 1 shape 3 items 156 msb ieee data 383976 attribute "dep" string "positions" # object 384 class array type int rank 1 shape 3 items 172 msb ieee data 385848 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Psi" class field component "positions" value 383 component "connections" value 384 attribute "name" string "Psi" attribute "char width" number 0.700000 attribute "series position" number 214.000000 # object 385 class array type float rank 1 shape 3 items 196 msb ieee data 387912 attribute "dep" string "positions" # object 386 class array type int rank 1 shape 3 items 262 msb ieee data 390264 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Omega" class field component "positions" value 385 component "connections" value 386 attribute "name" string "Omega" attribute "char width" number 0.750000 attribute "series position" number 215.000000 # object 387 class array type float rank 1 shape 3 items 91 msb ieee data 393408 attribute "dep" string "positions" # object 388 class array type int rank 1 shape 3 items 91 msb ieee data 394500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "alpha" class field component "positions" value 387 component "connections" value 388 attribute "name" string "alpha" attribute "char width" number 0.725000 attribute "series position" number 216.000000 # object 389 class array type float rank 1 shape 3 items 108 msb ieee data 395592 attribute "dep" string "positions" # object 390 class array type int rank 1 shape 3 items 108 msb ieee data 396888 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "beta" class field component "positions" value 389 component "connections" value 390 attribute "name" string "beta" attribute "char width" number 0.687500 attribute "series position" number 217.000000 # object 391 class array type float rank 1 shape 3 items 62 msb ieee data 398184 attribute "dep" string "positions" # object 392 class array type int rank 1 shape 3 items 60 msb ieee data 398928 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "gamma" class field component "positions" value 391 component "connections" value 392 attribute "name" string "gamma" attribute "char width" number 0.600000 attribute "series position" number 218.000000 # object 393 class array type float rank 1 shape 3 items 106 msb ieee data 399648 attribute "dep" string "positions" # object 394 class array type int rank 1 shape 3 items 106 msb ieee data 400920 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "delta" class field component "positions" value 393 component "connections" value 394 attribute "name" string "delta" attribute "char width" number 0.525000 attribute "series position" number 219.000000 # object 395 class array type float rank 1 shape 3 items 69 msb ieee data 402192 attribute "dep" string "positions" # object 396 class array type int rank 1 shape 3 items 67 msb ieee data 403020 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "epsilon" class field component "positions" value 395 component "connections" value 396 attribute "name" string "epsilon" attribute "char width" number 0.400000 attribute "series position" number 220.000000 # object 397 class array type float rank 1 shape 3 items 108 msb ieee data 403824 attribute "dep" string "positions" # object 398 class array type int rank 1 shape 3 items 106 msb ieee data 405120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "zeta" class field component "positions" value 397 component "connections" value 398 attribute "name" string "zeta" attribute "char width" number 0.512500 attribute "series position" number 221.000000 # object 399 class array type float rank 1 shape 3 items 70 msb ieee data 406392 attribute "dep" string "positions" # object 400 class array type int rank 1 shape 3 items 68 msb ieee data 407232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "eta" class field component "positions" value 399 component "connections" value 400 attribute "name" string "eta" attribute "char width" number 0.512500 attribute "series position" number 222.000000 # object 401 class array type float rank 1 shape 3 items 93 msb ieee data 408048 attribute "dep" string "positions" # object 402 class array type int rank 1 shape 3 items 95 msb ieee data 409164 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "theta" class field component "positions" value 401 component "connections" value 402 attribute "name" string "theta" attribute "char width" number 0.550000 attribute "series position" number 223.000000 # object 403 class array type float rank 1 shape 3 items 28 msb ieee data 410304 attribute "dep" string "positions" # object 404 class array type int rank 1 shape 3 items 26 msb ieee data 410640 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iota" class field component "positions" value 403 component "connections" value 404 attribute "name" string "iota" attribute "char width" number 0.337500 attribute "series position" number 224.000000 # object 405 class array type float rank 1 shape 3 items 58 msb ieee data 410952 attribute "dep" string "positions" # object 406 class array type int rank 1 shape 3 items 56 msb ieee data 411648 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "kappa" class field component "positions" value 405 component "connections" value 406 attribute "name" string "kappa" attribute "char width" number 0.537500 attribute "series position" number 225.000000 # object 407 class array type float rank 1 shape 3 items 66 msb ieee data 412320 attribute "dep" string "positions" # object 408 class array type int rank 1 shape 3 items 64 msb ieee data 413112 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "lambda" class field component "positions" value 407 component "connections" value 408 attribute "name" string "lambda" attribute "char width" number 0.725000 attribute "series position" number 226.000000 # object 409 class array type float rank 1 shape 3 items 64 msb ieee data 413880 attribute "dep" string "positions" # object 410 class array type int rank 1 shape 3 items 62 msb ieee data 414648 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "mu" class field component "positions" value 409 component "connections" value 410 attribute "name" string "mu" attribute "char width" number 0.637500 attribute "series position" number 227.000000 # object 411 class array type float rank 1 shape 3 items 43 msb ieee data 415392 attribute "dep" string "positions" # object 412 class array type int rank 1 shape 3 items 41 msb ieee data 415908 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "nu" class field component "positions" value 411 component "connections" value 412 attribute "name" string "nu" attribute "char width" number 0.475000 attribute "series position" number 228.000000 # object 413 class array type float rank 1 shape 3 items 134 msb ieee data 416400 attribute "dep" string "positions" # object 414 class array type int rank 1 shape 3 items 132 msb ieee data 418008 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "xi" class field component "positions" value 413 component "connections" value 414 attribute "name" string "xi" attribute "char width" number 0.475000 attribute "series position" number 229.000000 # object 415 class array type float rank 1 shape 3 items 112 msb ieee data 419592 attribute "dep" string "positions" # object 416 class array type int rank 1 shape 3 items 112 msb ieee data 420936 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "omicron" class field component "positions" value 415 component "connections" value 416 attribute "name" string "omicron" attribute "char width" number 0.587500 attribute "series position" number 230.000000 # object 417 class array type float rank 1 shape 3 items 63 msb ieee data 422280 attribute "dep" string "positions" # object 418 class array type int rank 1 shape 3 items 59 msb ieee data 423036 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "pi" class field component "positions" value 417 component "connections" value 418 attribute "name" string "pi" attribute "char width" number 0.662500 attribute "series position" number 231.000000 # object 419 class array type float rank 1 shape 3 items 59 msb ieee data 423744 attribute "dep" string "positions" # object 420 class array type int rank 1 shape 3 items 57 msb ieee data 424452 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "rho" class field component "positions" value 419 component "connections" value 420 attribute "name" string "rho" attribute "char width" number 0.650000 attribute "series position" number 232.000000 # object 421 class array type float rank 1 shape 3 items 70 msb ieee data 425136 attribute "dep" string "positions" # object 422 class array type int rank 1 shape 3 items 70 msb ieee data 425976 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "sigma" class field component "positions" value 421 component "connections" value 422 attribute "name" string "sigma" attribute "char width" number 0.800000 attribute "series position" number 233.000000 # object 423 class array type float rank 1 shape 3 items 49 msb ieee data 426816 attribute "dep" string "positions" # object 424 class array type int rank 1 shape 3 items 47 msb ieee data 427404 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "tau" class field component "positions" value 423 component "connections" value 424 attribute "name" string "tau" attribute "char width" number 0.650000 attribute "series position" number 234.000000 # object 425 class array type float rank 1 shape 3 items 65 msb ieee data 427968 attribute "dep" string "positions" # object 426 class array type int rank 1 shape 3 items 63 msb ieee data 428748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "upsilon" class field component "positions" value 425 component "connections" value 426 attribute "name" string "upsilon" attribute "char width" number 0.500000 attribute "series position" number 235.000000 # object 427 class array type float rank 1 shape 3 items 143 msb ieee data 429504 attribute "dep" string "positions" # object 428 class array type int rank 1 shape 3 items 140 msb ieee data 431220 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "phi" class field component "positions" value 427 component "connections" value 428 attribute "name" string "phi" attribute "char width" number 0.687500 attribute "series position" number 236.000000 # object 429 class array type float rank 1 shape 3 items 65 msb ieee data 432900 attribute "dep" string "positions" # object 430 class array type int rank 1 shape 3 items 63 msb ieee data 433680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "chi" class field component "positions" value 429 component "connections" value 430 attribute "name" string "chi" attribute "char width" number 0.700000 attribute "series position" number 237.000000 # object 431 class array type float rank 1 shape 3 items 90 msb ieee data 434436 attribute "dep" string "positions" # object 432 class array type int rank 1 shape 3 items 88 msb ieee data 435516 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "psi" class field component "positions" value 431 component "connections" value 432 attribute "name" string "psi" attribute "char width" number 0.700000 attribute "series position" number 238.000000 # object 433 class array type float rank 1 shape 3 items 93 msb ieee data 436572 attribute "dep" string "positions" # object 434 class array type int rank 1 shape 3 items 88 msb ieee data 437688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "omega" class field component "positions" value 433 component "connections" value 434 attribute "name" string "omega" attribute "char width" number 0.725000 attribute "series position" number 239.000000 # object "default" class series member 0 position 0 value "Empty" member 1 position 1 value "ApostropheCurlyOpen" member 2 position 2 value "ApostropheCurlyClose" member 3 position 3 value "Bullet" member 4 position 4 value "Cent" member 5 position 5 value "Copyright" member 6 position 6 value "CrossProduct" member 7 position 7 value "Degree" member 8 position 8 value "EmDash" member 9 position 9 value "EnDash" member 10 position 10 value "Exclamacion" member 11 position 11 value "Franc" member 12 position 12 value "GuillemetOpen" member 13 position 13 value "GuillemetClose" member 14 position 14 value "GuillemetSingleOpen" member 15 position 15 value "GuillemetSingleClose" member 16 position 16 value "Infinity" member 17 position 17 value "Integral" member 18 position 18 value "Interrogacion" member 19 position 19 value "Minus" member 20 position 20 value "NotEqual" member 21 position 21 value "PlusMinus" member 22 position 22 value "Pound" member 23 position 23 value "QuoteOpen" member 24 position 24 value "QuoteClose" member 25 position 25 value "Registered" member 26 position 26 value "Similar" member 27 position 27 value "Trademark" member 28 position 28 value "Yen" member 29 position 29 value "Empty" member 30 position 30 value "Empty" member 31 position 31 value "Empty" member 32 position 32 value "Space" member 33 position 33 value "Exclamation" member 34 position 34 value "InchMark" member 35 position 35 value "HashMark" member 36 position 36 value "Dollar" member 37 position 37 value "Percent" member 38 position 38 value "Ampersand" member 39 position 39 value "FootMark" member 40 position 40 value "ParenthesisOpen" member 41 position 41 value "ParenthesisClose" member 42 position 42 value "Asterisk" member 43 position 43 value "Plus" member 44 position 44 value "Comma" member 45 position 45 value "Hyphen" member 46 position 46 value "Period" member 47 position 47 value "Slash" member 48 position 48 value "0" member 49 position 49 value "1" member 50 position 50 value "2" member 51 position 51 value "3" member 52 position 52 value "4" member 53 position 53 value "5" member 54 position 54 value "6" member 55 position 55 value "7" member 56 position 56 value "8" member 57 position 57 value "9" member 58 position 58 value "Colon" member 59 position 59 value "Semicolon" member 60 position 60 value "AngleBracketOpen" member 61 position 61 value "Equals" member 62 position 62 value "AngleBracketClose" member 63 position 63 value "QuestionMark" member 64 position 64 value "AtSign" member 65 position 65 value "A" member 66 position 66 value "B" member 67 position 67 value "C" member 68 position 68 value "D" member 69 position 69 value "E" member 70 position 70 value "F" member 71 position 71 value "G" member 72 position 72 value "H" member 73 position 73 value "I" member 74 position 74 value "J" member 75 position 75 value "K" member 76 position 76 value "L" member 77 position 77 value "M" member 78 position 78 value "N" member 79 position 79 value "O" member 80 position 80 value "P" member 81 position 81 value "Q" member 82 position 82 value "R" member 83 position 83 value "S" member 84 position 84 value "T" member 85 position 85 value "U" member 86 position 86 value "V" member 87 position 87 value "W" member 88 position 88 value "X" member 89 position 89 value "Y" member 90 position 90 value "Z" member 91 position 91 value "SquareBracketOpen" member 92 position 92 value "Empty" member 93 position 93 value "SquareBracketClose" member 94 position 94 value "Circumflex" member 95 position 95 value "Underscore" member 96 position 96 value "BackApostrophe" member 97 position 97 value "a" member 98 position 98 value "b" member 99 position 99 value "c" member 100 position 100 value "d" member 101 position 101 value "e" member 102 position 102 value "f" member 103 position 103 value "g" member 104 position 104 value "h" member 105 position 105 value "i" member 106 position 106 value "j" member 107 position 107 value "k" member 108 position 108 value "l" member 109 position 109 value "m" member 110 position 110 value "n" member 111 position 111 value "o" member 112 position 112 value "p" member 113 position 113 value "q" member 114 position 114 value "r" member 115 position 115 value "s" member 116 position 116 value "t" member 117 position 117 value "u" member 118 position 118 value "v" member 119 position 119 value "w" member 120 position 120 value "x" member 121 position 121 value "y" member 122 position 122 value "z" member 123 position 123 value "CurlyBraceOpen" member 124 position 124 value "Pipe" member 125 position 125 value "CurlyBraceClose" member 126 position 126 value "Tilde" member 127 position 127 value "Empty" member 128 position 128 value "aBar" member 129 position 129 value "accentAcute" member 130 position 130 value "AccentAcute" member 131 position 131 value "IAccentAcute" member 132 position 132 value "accentGrave" member 133 position 133 value "AccentGrave" member 134 position 134 value "IAccentGrave" member 135 position 135 value "accentHungarian" member 136 position 136 value "AccentHungarian" member 137 position 137 value "ae" member 138 position 138 value "AE" member 139 position 139 value "angstrom" member 140 position 140 value "Angstrom" member 141 position 141 value "breve" member 142 position 142 value "Breve" member 143 position 143 value "cCedilla" member 144 position 144 value "CCedilla" member 145 position 145 value "wideCircumflex" member 146 position 146 value "WideCircumflex" member 147 position 147 value "IWideCircumflex" member 148 position 148 value "OWideCircumflex" member 149 position 149 value "Clicka" member 150 position 150 value "CommaRumanian" member 151 position 151 value "enya" member 152 position 152 value "Enya" member 153 position 153 value "eth" member 154 position 154 value "Eth" member 155 position 155 value "hookLithuanian" member 156 position 156 value "iHookLithuanian" member 157 position 157 value "HookLithuanian" member 158 position 158 value "IHookLithuanian" member 159 position 159 value "iUndotted" member 160 position 160 value "lSlash" member 161 position 161 value "LSlash" member 162 position 162 value "macron" member 163 position 163 value "Macron" member 164 position 164 value "oBar" member 165 position 165 value "oSlash" member 166 position 166 value "OSlash" member 167 position 167 value "OverDot" member 168 position 168 value "thorn" member 169 position 169 value "Thorn" member 170 position 170 value "umlaut" member 171 position 171 value "Umlaut" member 172 position 172 value "IUmlaut" member 173 position 173 value "OUmlaut" member 174 position 174 value "Empty" member 175 position 175 value "Empty" member 176 position 176 value "Empty" member 177 position 177 value "Empty" member 178 position 178 value "Empty" member 179 position 179 value "Empty" member 180 position 180 value "Empty" member 181 position 181 value "Empty" member 182 position 182 value "Empty" member 183 position 183 value "Empty" member 184 position 184 value "Empty" member 185 position 185 value "Empty" member 186 position 186 value "Empty" member 187 position 187 value "Empty" member 188 position 188 value "Empty" member 189 position 189 value "Empty" member 190 position 190 value "Empty" member 191 position 191 value "Empty" member 192 position 192 value "Alpha" member 193 position 193 value "Beta" member 194 position 194 value "Gamma" member 195 position 195 value "Delta" member 196 position 196 value "Epsilon" member 197 position 197 value "Zeta" member 198 position 198 value "Eta" member 199 position 199 value "Theta" member 200 position 200 value "Iota" member 201 position 201 value "Kappa" member 202 position 202 value "Lambda" member 203 position 203 value "Mu" member 204 position 204 value "Nu" member 205 position 205 value "Xi" member 206 position 206 value "Omicron" member 207 position 207 value "Pi" member 208 position 208 value "Rho" member 209 position 209 value "Sigma" member 210 position 210 value "Tau" member 211 position 211 value "Upsilon" member 212 position 212 value "Phi" member 213 position 213 value "Chi" member 214 position 214 value "Psi" member 215 position 215 value "Omega" member 216 position 216 value "alpha" member 217 position 217 value "beta" member 218 position 218 value "gamma" member 219 position 219 value "delta" member 220 position 220 value "epsilon" member 221 position 221 value "zeta" member 222 position 222 value "eta" member 223 position 223 value "theta" member 224 position 224 value "iota" member 225 position 225 value "kappa" member 226 position 226 value "lambda" member 227 position 227 value "mu" member 228 position 228 value "nu" member 229 position 229 value "xi" member 230 position 230 value "omicron" member 231 position 231 value "pi" member 232 position 232 value "rho" member 233 position 233 value "sigma" member 234 position 234 value "tau" member 235 position 235 value "upsilon" member 236 position 236 value "phi" member 237 position 237 value "chi" member 238 position 238 value "psi" member 239 position 239 value "omega" member 240 position 240 value "Empty" member 241 position 241 value "Empty" member 242 position 242 value "Empty" member 243 position 243 value "Empty" member 244 position 244 value "Empty" member 245 position 245 value "Empty" member 246 position 246 value "Empty" member 247 position 247 value "Empty" member 248 position 248 value "Empty" member 249 position 249 value "Empty" member 250 position 250 value "Empty" member 251 position 251 value "Empty" member 252 position 252 value "Empty" member 253 position 253 value "Empty" member 254 position 254 value "Empty" member 255 position 255 value "Empty" attribute "font ascent" number 0.750000 attribute "font descent" number 0.250000 # end =ÐSw?!A =Ìžº?'¾Û=ß)‘?/eT>Õõ?6”ý>¿Þ?;7ä>œ/?>;X>×?@Œö=æ› ?>;¥= +?2i%=„Oú$?ÀÏ>s¦? $Ç>) ? …>1j’?¸ >0+?úV>òm? SŒ>F?!A >‚Ï?@3í=i :?$ %=ÓØ?7“>*À?c     > 0º?'\ã> â? ÚO>Á?.=Øß?ù=¼÷4? R=¹<5? Lë=ØÝ,?ùž=þ ¸? L¼>"^Ý?(,>0OÌ?s>4÷ˆ?2üæ>)Ï?:ä™>kÕ??å=Ü”¦?@ð=µ„Â??‹=’/?;—F=pø?6ñJ=ƒIò?0ªR=¨€?(Jù=ä;?'\ã=Ãv´?Ræ>89‘?$ð>ÍÏ?@y =O?+Œ~     >síR>´{>y÷>¹ d>|Ÿ‡>½ðÇ>~¦;>Ãà> d>ÈGh>}Ïn>Ív|>z÷2>Ò|o>v•–>×9™>pÆ.>Û>i­®>ßd—>axÎ>âžä>X[:>å*º>NŽn>æø>DPA>çû\>9á1>è.t>/ƒ >çò>%w$>æ#Ô>üÑ>ãó>OÚ>á V> ¦â>Ý>29>Ùd¢>•>ÔÕÛ=øÿü>Ïïy=ôò†>ÊÐ\=ô&5>ŘÚ=ö ;>ÀiÃ=üP³>»cÑ>‰ö>¶¦§>Y]>²P,>q×>®{°>¦½>«A[> ÄK>¨µ†>*‘>¦è=>4ÏJ>¥äã>?>T>¥±Ì>Iœ|>¦PF>S¨a>§¼k>]"»>©í9>eϲ>¬Ôê>mx©>°a-  !!""##$$%%&&'>‘„»â­?>™í›»Ã¨>£Ó»ƒ¬“>­9î¹èh>¹%;¹.>Áƒ¢ÉŽ%<É>ÑØ<ìCö>ר—=Â>Þv5=N6 >䥙=‚RY>ê = ô>ïIS=¿®>ô<}=ì¹t>ø1Y>™æ>û)Ç>Nij>ø2>^„q>ó¾4>f/S>ê6Ü>i'N>äFœ>h*5>ß²Â>b¸­>Ü»>WÅ>Ü|4>Iú>Ök²=ÿ@>ÐÙÛ=Ùßè>ÎA&=È”÷>ÉR=´Ë)>ÁCÊ=ž†Æ>º6Ü=Ž2 >±Ím=z¿T>©âÄ=bG>¡Øf=Q.„>šl?=K>z>’Æ=IC¾>‰™I=Q.„>‚«Ñ=U#ö>r‰ü=a/>a· =xÄ>Qá`=Œ7ç>An= ô>0;t=»¸Ã>#]Ú=×n¤>îü=æÄà>€‚=÷ > œì>U%>rª>!(2=ú>0¾y=óß>@”=ê2n>S¡2=ç¹>f®:=ãÄ£>,¢=áÉê>‰ú„=áÉê>’cý=å¿B>œÈ,=çº >§«=í*:>°²æ=÷¬>ºx¹=þúŠ>Ãÿ7>¨>ÍÅ> —â>Õ7>‚÷>ÜW>ht>âl>)Mù>è}Ž>26'>îm­>An>óß>Lîž>÷Ô>YÌ2>ûK=>i¡Î>þCM>ywx?^W>„¦‡?W>Œ‘R?[®>™næ?[®>¤Ðr?®>¬<˜>ÿ@Ÿ>´'c>üH–>¼1>ö×#>À†E>ó`h>Ãý>ïé´>Çs·>êxA>Éí>æ‚Ø>Íâ>߸>Ð{š>× F>Ò•þ>Ï€t>ÔQQ>ÅÚ?>ÔQQ>¬!>ÖLD>¦Ž>ØF·>£µ¥>Ü<>¡ºò>á.Û> ½•>æ! > ½•>ë“>¢¸O>ï)}>¥Ïÿ>ò×>« s>ò€>±’>ò€?>ñ$,? 4>ïIS? .¸>ì…?˜>èS?÷D>ã)‘?6š>ß4,?÷D>ÛÝ? ê>ÙD ? ÿ7>×È? )>×È>ûK=>ÓSô?Ú[>Ï^Œ?g>Êêt?Ä>Ã~Q? )>½°? ¢Û>¶Aå? >‘>®7H? {>>§È~?x–> Û?÷D>—òå?uñ>‘l?µH>Š–Ÿ?Ôð>„'Ü?…Å>|o?uñ>o‘æ?÷D>`¹­? ùè>SÜ? üŽ>Hù?? }â>?Ñ]? `ä>-Ce? )>k%?Í>Çk?™>¥ ?x³=û…?þ=ãÄ£>úMä=Ì2>ñe¹=´CÄ>èü<=”˜>ÛŸý=‚È->Ѻv=eå>ÇÔõ=J/I>¼sl=6dN>°‡=&Ž¥>£6ú="™2>—Õn= ž>‰{Õ="™2>vD{=.yh>Tž=BD†>8è»=mÏï>MV=Œ­¼=ï/=®S¨=·ÃP=Ì2=”"½=ë¯a=a/> ¢À=Ââ>ht<Ì™&>8&?TÙv;4ê>r‰ü»ƒ¬“>…%2»Ã¨>Úw>'W>a)½Å¤'>•Ài½º+Z>˜ˆG½ê>˜ŠË?"R¢>—òå?&,>”W*?)ß">Ip?*Rœ>‡´¬?)ù>‚Ù…?)>¬o?&e>¬o½iÞ®>‚ ™½©&…>….½¹]æ  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgegh›œ›ž›žŸ›Ÿ › ¡›¡¢›¢£›£¤›¤¥›¥¦›¦§>Ó‘…>;Än>Ùwš>àh4>=Ùr>æÿ÷>@  >ïSà>DÉø>õ9ü>I¥›>úÝ{>N*?V»>UqË?`¤>[°·?ÃI>dâ°?îr>nm•?×>xÖo? ©p>ø|? eº>‰Þ ? ÈÚ>“Ä´?Óz>¨½7? É>®bÙ? 9q>± ?â,>²†?Í'>±ÄÆ?2G>¯Ü.?'ã>«È?á>§/ ?ñˆ>w>ÿû4>†>þ)>ƒ‡þ>ú„>€í>õ 5>xQ)>ð†>r—ƒ>ê5u>l±h>ä¨L>h[ >ßä>eh>ÙÐq>d]q>Óê\>d§>Î=>eh>É(ž>f²>ÂÛ>h.£>¼ª¿>lX‘>·{>qåÜ>±7`>xÖo>«QH>F×>¦Îy>†"t>¤>ˆÒÄ>¢KÁ>‹¯>žz`>’ù>›€>˜ß;>™[ÿ>žVK>˜%J>£ã‹>–•…>ª‘—>–&‘>±?Š>•tú>¹Ö>•*>Á‚>•*>Ç >•ÍÒ>ÎO>–&¢>ÕñJ>—»>ÜFp>˜íK>ã Ð>š:0>éÎÃ><>ð©)>Ÿ,)>ö 9>¡òÜ>û>¥k->ÿ<>¨ãv?²ý>¬ð?Ç÷>±7`?°ˆ>µaU?Ù>¹ä?JÂ>¿qe? U?>Äþ©? 3R>Ê‹ô? ¸’>Ð5? äø>ÙÉ? äø>áÛ? _º>æNR? ®>ëÛ—?£”>ñhÛ?»>ôˆT?„ >öö?M5>ùcí?d¦>û ?T>ýæ¼>üÎ;>ÿ¹>÷*¿?™T>ñà?4Â>ëâ?4Â>Ù¿?æ‚>Õ)j?˜>Ó*«?ûf>ÑÇU?·>Ñ­?s²>Ñ­? \B>Òxü? žE>Ô¤+? ¦>Ø·ì? Ê>Üáä? Ê?0Û? Oî?Ñ? ©p?| ? µ ?ÔY?%[?oË?i4?œ3?â?oË?Ú ?³ ?ðé?ZÐ?kª?EÖ?kª?JÂ?Ûï? =Ï>þñ8? ÍŠ>ûÑ¿?‰±>öH?EÖ>ò?f‰>íU8?‡<>籞?eO>ã.Ù?÷>ÞS9?oË>ØN?È>Ó8ª?õ >εå? <>Ê3?Ó¸>Æ (?È>Á†\?oË>¼Qï?¾#>·Ï&? z>³ýÿ?³¤>°È3?ëÌ>ªFÂ?EÖ>¥U?¶>¡WT? G°>oü? ¬×>™žó? ê>•tú?ñë>‘K ?Òu>!?ße>‡“Í>ú`f>„t^>óoÒ>­µ>ì5>~Í>ä„>{‡>Û×a>x@Û>ÒÑÐ>w3>ÊÖ¾>w6A>Àƪ>w3>¶¶ž>y¤1>ªêg>}~>¡3.>‚_`>”¡>†0}>ŠLo>Œ™>€•0>‘K >t¬ˆ>–ØM>h.£>Èë>[°Ä>¥k->R«3>®ã>I¥›>¸'ú>Bµ>ÂÛ>=Ùr>ÊäÄ>› 3?ãí>?Î>3(? \>SoÜ?&ñ>x+?+Ðò>8÷?//>¥£Z?0”f>»Í²?0Yû>Ò,E?.`_>è2?*´>ýT=?%l?†Í?©Ç?pé?—Ô?0?? i ?“ø?WS?$sÔ>ñDB?'±>Ûç?)7H>Ä»W?(üß>®µ‹?'A>™“\?#Vâ>…Ùü?ì>h ?L«>I??:¶>/P? í>ÿÛ>÷ôf> ì>âŠ>ò>Ì_¥> Û½>¶>Â5>ŸûK> s¯>ŠÙ!>5“>n?>Pœ‡>J—>pä[>+™Ç>ŠÏÁ> Ò>žó3=ýÇ>´]–=ã,é>ʇñ=Öû>àæ}=ØÎ˜>öìJ=è›z?>>ÿ*?$)p>°?-Uà>5“·?4Ù¾>bYº?:…©>‰£8?>5ß>£’À??Ó$>¾Wñ??SH>ÙJ?<¹r>ó¿G?8?ˆc?1†??Ox?)3€?ê®?R=?&? ¼?-šü?å?3Fæ>õÛ•?6÷>Ûa?8”`>À$A?8ƒ>¥¯ ?5z°>Œ]Œ?0×B>ižÄ?*G~>?2?!ô¿>€ç^ =¡V>̘Ô=¥8>±¦µ=¹ãë>—1‚=ÞÿO>{À> ¾²>L£²>+ ´>"6÷>RŽÏ=û H>TË=¾ë_>˜ Å=‘‹ø>²L=h”>ÌÕw=N@e>çÇ =V>(?i=Û°? Ç'=¥ )?Ž<=Ù‡M  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgeghÃÄÅÃÅÆÃÆÇÃÇÈÃÈÉÃÉÊÃʠàŸÃŸžÃžÃœÃœ›Ã›ÂÃÂÁÃÁÀ¡ Ê¡ÊË¢¡Ë¢ËÌ£¢Ì£Ìͤ£Í¤ÍÎ¥¤Î¥ÎϦ¥Ï¦ÏЧ¦Ð§ÐѨ§Ñ¨ÑÒ©¨Ò©ÒÓª©ÓªÓÔ«ªÔ«ÔÕ¬«Õ¬ÕÖ­¬Ö­Ö×®­×®×د®Ø¯ØÙ°¯Ù°ÙÚ±°Ú±ÚÛ²±Û²Ûܳ²Ü³ÜÝ´³Ý´ÝÞµ´ÞµÞß¶µß¶ßà·¶à·àḷá¸á⹸â¹â㺹ãºã仺ä»äå¼»å¼åæ½¼æ½æç¾½ç¾ç迾è¿èéÀ¿éÀéêÃÀê>æc©=Ëæ£?£B>¸¼>¾L>‘?0Ë>ÓcÛ>䙫>ï+ô>¡c>«õ¹>:Ž»>ðÓ> ¡>Ôë—>†Ñ>‘Ü>ÈD>ïK>;¢=Æ*>¢>mV    >xà€? Aõ>€¢Y? »>ƒè6?Â>†-7?j›>‡c?Ù€>‡‚?UÓ>†‰”?É™>„?# >q?&A&>zâh?),>q2l?+ž>fJ?-·*>Y¿8?/Z>LÓ?0|›>>Ô6?1†>0âé?1' >#Ù?0ªÈ>¾?/¥Ì> 5¥?.‡=û“?,”=çƒ?)²˜=Ö» ?&éÒ=É£±?#ÕË=À¨? ‰ò=»¸N? =»<?ž¸=¿:?*ô=ÇF?Õ‚=Ó€E?³g=ã¿? Ø`=ö߸? Vo>’÷?=b>ã?šu> t?wò>-Î?Ý>;¿X?Í€>IŽo?IÅ>Vä4?NÀ>clœ?Ö>nع? Õù>G?#>>—#ü?‰¸>œŠÇ? k¿> Yr?ªŒ>¢wý?% >¢Ù?¸¼>¡zF?"Bj>žd=?'Ÿ6>™ªn?,­O>“j¥?1LÚ>‹Ì=?5`¯>‚ÿH?8Ï>rvn?;‚>]{B?=iÖ>G‘??>y>1B‘?>©§>Ñ?=úB>¨¢?=Ò?.¼Ã=Xmµ?)Ú¼=9ø\?$›ð=)ê?!m=%ûr?À=0ñ²?=I¡ý?§H=op{? ™.=·o?ù¥=¯0ù?åÍ=Òd×>úî¾=ùu>õ‡õ>µ´>ñ¹H>'Ÿ·>ïš¼>=îd>ï9­>T+>ð˜s>iˆZ>ó®|>}ÀÀ>øhO>ˆu>þ¨()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O>·j>ƒiº?T1>ƒiº?T1>¨Îj>·j>¨Îj>Ó—>ƒiº?)ó\>ƒiº?)ó\>¨Îj>Ó—>¨Îj=(®?æù=„=î?˜ì=z"“?"P=oŸË?Œl=i6£?á4=gõ?+5=i5Ü?u8=ož8?Éý=z x? 4=„<}? ½s=&ú? o^=——›? R=£Ln?lp=¯ûj?ÄJ=½U??]²=Ë!?;4=ص?]¦=æ?Ä3=ò¾?lN=þs? QØ>qø? o&>ç^? ½5> }©? 3Ó>K?É·>¸š?tì>B˜?*ë>¸Ð?àé>°?Œ$> ~/?" >è?˜°>rÕ?æÅ=þtó?=òÀ,?é¯=æ4?‘Û=Ø·l?øm=Ë}?í=½W›?ø{=¯ý¤?‘ó=£N‡?éÑ=—™‘?H=Ï0o>ãst=—5n>à§T=k0Ö>ÑBŽ=k!¤½œ™|=‰#½è-=­Š3¾®ç=å…¾¯L>Á·½êúÃ>'#½Ÿe™>ÇW>Ñõ+>•>ß@•=Ý/×>äÙ ()*(*+(+,(,-(-.(./(/0(01(12(23  !!""##$$%%&&'=Ä ´¾Ê>ô–¾ />J€(½÷<>zW!½­ b>ŒÊL½6®>™zÅgc>íÝn>Í6ÿ>÷#Z>ü/>÷ U?ãë>øš'?Å">ü“? ýÌ?Ð? r? ë]>þó?\>Öùf?\>Ñ?Uñ>Ñ?7g>ÓØ?i>ÝPÃ?%Ší>ñT¨?*lL?ãë?+'Å? ¸ç?)ïŠ? ¦Ò?$Ï…? ¬ì?ô0? ­.?àz?ß?ÿ?u?Ʀ?D…?=u?# f?Ù?$H?ô0?# f?$Ï…?8Ö?,ž¡?oÕ?4mÂ? ¿C?9O2>÷¬?:Æ>ÞÈ‚?9O2>Ï*F?6a‹>ÁÑ?2yø>²^«?'½>¬A?i>¨¯?I»>¢CZ?E >ŠÖ?š:>€—? ±¯>uup? ³o>q‹Ð?ôI>ލ>øßH>št>>öë >ž[Ì>ñÄÿ>r‡þ=HŒ>>bê¾;§„>QXF¼ß¢­>2Û½lÂ0>ë½l¤=Ó¾ú½¥;°=…§â½•™={±l½…ÿQ=‰[½=çd=ƒµ|¼Àd$=dUB¼ä;<õµ´:ª`‘»]Bº'x¼°¼EYq¼öH¼ß O½d ½]#Õ½ Â6½l¤¼¿¨1½ÝÙøsúS>ýî.>‡§:>÷\Ã>,º_¾TªII44556677889:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CCD   EE   FF     !!!""##$$%%%%&&'''((())001122334)*+)+,),-)-G)G.).H)H/)/0=uã1>‡j¹>DZY=@ÛÐ>NÔ==[>Zb<ÏŸE>eF<ÏŸE>k£<ï þ>s~ï=ô8>tÎ#=KU¬>&;á>‡j¹>k£>êI2>pàl>ô|>k£>ú§°>cÈ>ýíÊ>Zb>þ•g>P#>ýF)>€ÙÍ>‡j¹>ÄJ”=@ÛÐ>ɇ†=[>Ïl<ÏŸE>Ô©<ÏŸE>×ï(<ï þ>ÛÜß=ô8>Ü„y=KU¬>µ;Y>‡j¹>×ï(>êI2>Ú¡>ô|>×ï(>ú§°>Ôq>ýíÊ>Ïl>þ•g>Ê/'>ýF) >àŸ>ƒ—x>/Ý>òç£>—ó>úÃ">’}>þ M>ŒÑ…>þ ]>‰‹d>ü>… >ø$æ>„õî>ñ˜µ>¬=—>ƒ˜.>‰ˆq=‚è°>†éÓ=7?T>‰ˆ<=Ý{>uå<ÑX¸>’ :<ÆÝ°>—H/<ÛÐ[>}n>ƒ˜Ë=ìIÈ>òèó=×Vk>úÄu=¿Ä;>þ  =ªÐq>þ ´=·ñ>üæ=Žâ>ø&8=‹b>ñš >@X>ƒ™€=¬&=‚íî=“1Â=7Iñ=«;=è=­aö<Ñm±=¿·A<Æòé=Ô«<Ûå™ =uã1>‡j¹>DZY=@ÛÐ>NÔ==[>Zb<ÏŸE>eF<ÏŸE>k£<ï þ>s~ï=ô8>tÎ#=KU¬>&;á>‡j¹>k£>êI2>pàl>ô|>k£>ú§°>cÈ>ýíÊ>Zb>þ•g>P#>ýF) >}n>ƒ˜Ë=ìIÈ>òèó=×Vk>úÄu=¿Ä;>þ  =ªÐq>þ ´=·ñ>üæ=Žâ>ø&8=‹b>ñš >@X>ƒ™€=¬&=‚íî=“1Â=7Iñ=«;=è=­aö<Ñm±=¿·A<Æòé=Ô«<Ûå™ >­->kã’>°q‚>xÜ\>²§ß>ƒXó>³ÂD>І>³¹±>‘ɧ>²Žq>˜ô•>°GÆ>ŸÚ>¬ô">¦N°>¨¨q>¬)¿>£Ì>±FN>š­>µ„!>—K>¸ÈŽ>3†>ºþç>‰ï>¼L>ÂÏ>¼À>u/Â>ºå}>gdÉ>¸žÕ>Z{‹>µK1>NÅt>°ÿ€>DŒW>«ÖÕ><¢>¥ñ¼>5‡×>ŸuW>1>˜ŠŽ>.æT>‘\ñ>.÷x>ŠÑ>1N>‚îó>5ÛN>xÙ><‚>k)¢>Eú>_s„>OkB>U:g>[5ˆ>L¾¹>h.E>F5ç>vÕ>AÉ5>‚/{>?”d>‰r¥>?¥‰>‰>Aü>—ƒ >F‰_>÷¬>M0§>£Ò´>UÈ >¨ïB>``?/d†>Z“f?2«>mK?5.)>€±×?6Ýæ>‹ƒ´?7¯©>–º†?7žK>¢¥?6ª9>­;Ÿ?4Ùt>·÷þ?27r>Â"?.ÔÇ>ËÁ?*ÆÎ>Ó?&'>Ù¾?!½>Þ•Ü?©Ð>áõV?c>ã˜Ü?cÕ>ãv ? ÍÛ>áù?oª>Ýìp?k>بm>÷¿‡>Ñã>ïÔ²>ÉÇ&>éG>À‡°>äAu>¶^ÿ>àáû>«(>ß>o> VP>ßa1>•1>áIU>‰Õ:>äê×>~1¼>ê.ä>js>ðô7>Wò)>ù(>Hx?'Ï>;5?<(>0õÿ? ¥>*7 ?@>&ïù?ë >'5x? >+¿?!ß:>2HÑ?&ãÎ><ÐÖ?+o>J[{>!7Ò>¸Ž>IûÍ=ü…ë>‚âü=æÈ>žS=÷g>³Î1>I>ÆÔQ>,vl>ÍŸ¯>J[{>Ü’6>'ð>õÒ>ú·? ÒN=Öy²? ¶=Ñ !?*Á-=ì7|?4ò/>¸Ž??#->B4K?Fœs>„n±?GøR>§Ã5?D’¥>È` ?;“>ãa?/‚µ>÷ïe? .?¹;?ï´?g(?´è>ý^Ô>òP>óÛÆ>Ýî>ßyÈ>Îû‰>É»ç>Êçð>ºÉ\>±v>Ñã>Áë>ÜÂ>ZJB>Ú O>)_>Íσ> ~>µYã=æ¶>—tÑ=à™2>}þv=ðç¡>J[{VWXVXYVYZVZ[V[IVIHVHGVGFVFEVEDVDCVCBVBAVA@V@?JI[KJ[K[\LK\L\]ML]NM]ON]O]^(O^)(^)^_*)_+*_+_`,+`-,`-`a.-a/.a/ab0/b10b1bc21c32c3cd43d4de54e65e6ef76f87f8fg98g9gh:9h;:h;hi<;i=<i>=i?>iV?iPV#P#"P"!P! P PPPPPPPP$#V%$V&%V'&V'VVVViiiiijjjjjk k k kl l l l lm mmmnnnnnoooopppqqqPqPQRPRSPSTPTUPUV>›¨ø>Ç+>šY¢>Ç+>‰>£„ÂÆ½uÂ>ø½ß¾w>r¶e¾í‘>hÅ"¾2°!>eá¾9‡>W¶<¾K"Ñ>Q`E¾Që…>@|¾_ß;>9ß¾dZ>%8N¾l¬>"2žm‘h>ϱ¾r°!=Ô⣾r-=·Ô¾n—=³¾f¾n{=èľh´9=f c¾ZáH=˜™½Ø“u=±§½äÝ/=½}¿½éûç=Ô°¬½ï =Ùô2½ï²=ìyc½î{=ó¯î½ì‹D>9ô½å¡Ë>ç¾½àA‰> I½×KÇ>CD½ÍÒò>Þ—½ÁG®>ê—½¸Qì>' ½bN>©÷½["Ñ>#^1¼ñ©ü>&|¯»ƒo>+*=:^5>IÅç>Ç+>L†>Ç+>TÄ?>T°¬?>\'?›¦>bˆ?!xÕ>k±¶?,Z>x+Ç?5Òò>Lé?;o>‚è¥?‰pŒ?@zá>ŒÀó?B¬>“¬§?D´9>—Ä´?EÒò>Ÿÿ?G >¡„?GKÇ>¯¦U?G®>ºFF?G >ÈÛ?F>ÉÞÜ?DÝ/>ÖXæ?B¬>Ò½¡?&Ù>É6?)xÕ>Ä£?*~ú>¾ó?+ >» é?+ >·?*°!>´"2?)ûç>°ê½?(Ý/>®zæ?'®>«§:?%º^>©æ?$“>¨1c?!Òò>§,? “u>¥]?&é>£^1?%>¢ái?—>Ÿl?> o°? ! "! "#" # $# %$ % % &('&% & )(&)& ) *)+*++,+,-,-.-/.//0/102132343K454KJ5KI5JH5IG5HF5GE5FD5EC5D65CB6CA6B@6A76@?7@>7?87>=8>K<8=LK98<;9<:9;>¤4?>Ý™Ì>›äÀ>ÜDÓ>‘±®>Ôøè>Žó¹>¿ÊÐ>Å>¨q>Y{í>†àŒ>-³o>|>g=ì{ô>då]=‹Íš>A;‹=s6>iŒ<¶µÔ=¢Á<Ýû <•÷Ä>OS=í=»>|‚Å>‘>Cv>?™>‰îg>›N¬>G÷?>*ƒî>ló]>>DY>‡‚>S`>˜…ø>j¹G>§7> T>±U¤>Œ¶>»!>ž98>¿î7>¯¼|>¾xÔ>µb>»Ö>ÒÃ">®kƒ>Üú•=:'ò½åJ=š¹Ô½‰¤{=ìs&½Ä÷>*Ã6½ìäe>e#j¾Ø>Áܾ ß>¥¦¾!5>µ³¼½ø–d>Gô\½5èµ>$íý¼ß²î> ”¢ºØŒ=ûiÛ<éD=ìw€=z=òNÅ=½B²>ȃ·½ç4>غ½ÉäÖ>èÈU½¡³>ø23½SàZ?Xs¼™Ì4?çÐ<­¥?Y=b§7?]©=·`ò?è%=ñÁk>Þd»<׌>ÑAc¼ÏÖ—>©2½½>¯ 1½K¶g>œäÚ½Xõ>™8D½^8>|S½\Éd?B3>:«>ø×ª>!¾F>âó›>-kÄ>ή >*%m>†>&ï>º?T> ]->¸÷=Ð>Û§"=ÚjR>äh­=½9—>èÄÕ=£)’>ê>â=nX>çSn<Ä|1>¼Ø =˜6>Ç8S=ˆ±W>ÑO‹=†I>×ìI=ž1é>Û§=·c²>™(|?„×>–o?oI>“I ?—>û¬?šý>.Ý?î>íÞ?"k>@¤?CN>+o?\ˆ>®Ò?z>ŽÇƒ? §â>n? ñ^>’™´? aQ>•;?§>˜B>?Úú>›œ?ô†>Ÿ3p?T>¢ñª?ýo>¦¿7?òØ>ª„?4ˆ>®(?Àà>±•?”k>´µ–?©ü>·tü?ú«>¹ÂV? ~F>»:? +)>¼Ð9? ö×>½}h?Õõ>½’–?¼¼>½:?Ÿ*>»ö‰?qa>ºOp?'å>¸$R?·ì>µ‚ð?Ÿ>²{Ç?>H>¯!ó?$¼>«Š™?Å8>§Ì_?Ó>£þÒ?&j> 9ö?äº>œ•„?Xc            ! !" "# #$ $% %& &' '( ( ")*"*+"+,",-"-."./"/0"01"12"23"34"45"56"67"78"8#19:1:;1;<1<=1=>1>?1?@1@A1AB1BC1CD1D2?EF?FG?GH?HI?I@JKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabJbcJcdJdeJefJfgJghJhiJijJjkJklJlmJmnJnoJopJpq=´:u>…¿? a>…¿? a>ªul=´:u>ªul>@=€ ? G>ë¥+>ø­¼? =´¼á=êd=²Çü>22Å? 2Ê>22Å? 2Ê>|ü=²Çü>|ü=²Çü>¢£™? 2Ê>¢£™? 2Ê>ÈE=²Çü>ÈE  >…J> 4>µ‹> 4>µ‹>¡¬? ª>¡¬? ª>È]“>´Fœ>È]“>´Fœ?WÌ>ŽÚ?G >Ž@…>È]ª=·¼^>È]ª=·¼^>¡”p>…J>¡ó˜=³c<¹–t? F.<¹–t? F.=ÃøU=³c=ÃøU     >ÎÛ€=‹Î§>ê|ò=ϯ?’.<È?åä¼?pä?¶ ¼€wÏ?+þb¼?pä?5u¡:«Ks??.³<¾Ð0?GÓ=f~A?L:¸=¼í¢?NÉ®>eþ?OL©>4m?NFñ>at1?J²I>ƒ¨¸?A{ò>“…e?9L>œ»(?,]>¢ß?°¥>£å?ñû>ŸÍQ? tb>ö~?0>z·?>GÞÐ?‹ò>-C"?°>"o?Ó÷>&[?ñ¸>5rù?zÓ>Q|? ‚>hÖ?°>!Ï?+{b>€Ç?3(9>w÷Ù?9 Ì>[PL?:Õ>6y ?;™½>ëª?9Ž=åÝ?/“M=˜X?%Ú~= §?ªª=ƒŸ?hâ=“þm?+=Á>ß;+>¡Î>äY>&[>çk>Q|>æe>|ª>ãS>’l>Ü)<>¦s÷>È2Ê>¿†x?tØ>¿†x?Œ_>Á’P?æ\>Æ,ó?iY>Ò÷Ð?æõ>Ü-É?€Î>âQÒ>·Qö>âQÒ>°'•>ð"y>« :>ûçK>§øD?)v>¨þ?_H>­0?•>¶Ï$? ;õ>¿‡?$•i>ÌLt?(îÄ>ÙF?*ú¿>ìˆè?,ƒµ>ýîŒ?+}¨?ª?)q²?\ì?%›L??@? ;ð?Ç÷?â†?Ë??åä?*?Ó÷?kC?P×? Ž÷?\«?è ?€ï?“?Ú*?Ÿ?!?–?”Š?%W‚?¦x?)ol? ˆ•?+:?Gu?)o±? }`?#Ή?)qÈ?i?0›©?tØ?5¹‡? †¶?8Ë}?0?:Tp>öÄõ?:×s>Þ52?:Tx>ÊÔ?9 >½u˜?6¿‹>­0?2$˜>ŸÈp?-³>”†ª?&_×>\?¸÷>‡8§?G¤>„&þ?_H>ƒ!? 5l>„'E?Ä>‡8î>í“•>‹Ó½>âQà>æT>âQà>\”>áL&=ö)£>Ú"t=ðñ>Î]˜=üD>Æ-½>È<>¿†‚>›°…>¿†‚>¡Ôf>µJµ>¨þD>ªò>°(>›µ9>·Qö>Œ[Š>¼oÛ>qÓà>¾{Ñ>Q|>¾{Ñ>6y >hÈ>_h8>m²„>m»ô>Jç4>qÔ*>¤Q>n =ߤ«>d†¦=“ëŽ>Jð¤=QÞ>2a=ª> ‰Ü= F/=Ç)<=E—.=V/=Ó³<×aF=Àò­;>P©¼?pä>.?м¡7(>cvº¼×y>Žbȼ±>¤æU;Î’Õ>²4<¶¡è>ª:=ݬï>–’]=œ.w>….e=vß>U#=^Nj>,3×=vÝÍ> z@=– ÿ=úAˆ=Åz=úAˆ=úTg>Iã>¡³>Ñô>"‘>Jæ®>)+‡>pÄÄ>#¨>]Y>­Á=ö(¤=Û Í?6 =¶ÉÁ?õu>áKã>âc>ÁQ$$%%&&''(()*(*+(+,(,-(-.(../0.01.12.23.3“.“4.45.5566778EFGEGHEHIEIJEJKEKLELMEMNENOEOPDEPDPQDQRCDRCRSBCSBSTBTUBUVABVAVWAWX@AX@XY?@Y?YZ>?Z>Z[>[\=>\=\]<=]<]^;<^;^_;_`:;`:`a9:a9ab9bc89c8ooppqqrrssttuu„„……††‡uuvŽvŽvwŽwwxŒxŒxyŒyz‹Œz‹z{‹{|‘‹|‘|}Š‘}Š}~‰Š~‰~ˆ‰ˆ€ˆ€‡ˆ‡‚‡‚ƒ‡ƒ       !!""’’##$cdecefcfgcghch”c”icij8cj8jk8kl8lm8mn8no>Žâ^?!|>ñ?(>’¦‰?/Ø3>ó?7$I>¥“?;Ù„>¥õ`?>èà>óå?AC¨>”Š;?>é/>‚¥?2çë>w,R?+Üq>rt~?·>}¿Á? µÿ>‰³Ô? yB>„?–ù>¦äÁ? p>¯Ö‹? Â>´’?µ•>³œ ?¥>ª0ý? ŠÜ>› !?!|>£^£?@é<>o(Î?$R&>•j?‘>°P~?>Þ=áD{?/ØÖ>;r?7$á>\L?;Ú>@?>éy>l?@é×>= ?ADD=èÓy?>éÉ=¡>æ?2è‹=… ?+Ý=iø\?$RÄ=Îp~?(=w'?·¤=Ò3í?!|µ=’)ú? ¶›=½yž? yÛ=Ôÿÿ?->XP?—’>É?  >+]? \>3|]?¶0>2Q?@>+ö!??v>·A? ‹t>•o?!|Ÿ       !"!"!#$"#$#%$%&$&'$'($()$)*$*+$+,$,-$-.$./> Q½?'0£> ,û? ±6>å²?µ=Û=ß?×=¿c€? 2÷=»ªX? .¼=Û<$?Ü’>,Æ? .‹>#t/?<>1^T?ö&>6Ï?2Ë>*á-?:®â>‡Þ?>Ü(=Þñ’?@·t=·ôº??S =”°?;a:=ƒú+?6½~=…ÒJ?0yŽ=ªöP?(D=æ^¿?'0£=Åßì?5®>9DF?$e> ïz?@@£=’Ñ?+^4>šÿ?µ>Ü;?×>ˆå§? 2÷>‡÷O? .¼>Š„Â?5®>ÛÂ?Ü’>™#? .‹>ªÆÎ?<>±»ñ?ö&>µ®ã?$e>Ÿ£A? ±6>´«?2Ë>žµ›?'0£>®}S?:®â>£Ð¶?>Ü(>žz?@@£>É%?@·t>‡ í??S >|qŒ?;a:>t°?6½~>už?0yŽ>{‚?+^4>ƒÊP?(D>’¤f?'0£       !"!"!#$"#$#%$%&$&'$'($()$)*$*+$+,$,-$-.$./?З> \?¹m>3›? w¦>SQË?&Ú~>x¼?+¹¤>$z?.öl>¥‹Ð?0|l>»²ÿ?0B>Òc?.H±>è?*œÛ>ý04?%U¥?sb?”Y?\;?ƒŠ?v? V?}H?EÃ?$\p>ñ$0?'™8>Úüý?)8>Ä¡?(äØ>®žò?&ë>™Ä?#?©>…É1?ør>gï?7)>Hö'?&Y>/jÞ?øß>î0>÷Ñ$>û>âiË>ã>ÌB–> ̤>µç9>±û>ŸäŽ> a\>ŠÅ`>5~8>n¡>Pƒ\>JzI>pÆš>+X>о?>ö>žÞÛ=üòÐ>´F0=ã >Êm_=ÖÜ“>àÈÀ=د·>öËr=èzs?õP>ì?$:> ús?->Y>5yÞ?4Á)>b9‰?:lD>‰§?>ó>£{€??¸þ>¾<à??92>Ù+,?<Ÿ½>óœ¢?7ü÷?uC?1n!?:­?)?Ô[?<¶?%ÿ? Í?-‚L?Ó[?3-j>õºÚ?6Ý>Úùz?8z >À .?7úZ>¥™»?5`á>ŒK×?0¾>i‚ ?*/G>?N?!ݸ>nÀ?ýÛ=øÇ ? Íñ=Ën/?”=­ð¢>ç=&=¡o>Ì{¿=¥¼>±p=¹Ò|>—=ÞèŽ>{œ>> ¯Ÿ>L†™>*õâ>"ß>Ru[=úæ¡>4ø=¾Ð->˜ b=‘wR>±ù;=góŒ>̺˜=N#)>ç¨ê=VÂ? +=·@? ´=¤ñ²?y‡=Ùh_>nm°>DS>Ä™Í>DS>Èxd>EYÜ>Ë•&>H è>ͯi>LŠ>Ïò>PÊt>Ð`{>VØÚ>Ð`{>]“ˆ>ÏÉÞ>bÊ›>ÎqU>g«ž>Ìl‡>k4 >È£>mcÙ>±l>m ¼>¯§Ê>n;3>®O>qW>­b5>só‚>¬u~>wPÝ>«]d>}àx>«Š>‚M“>«Š>¶tm>«³Ï>¹%‚>­b|>»*W>¯gP>¼‚Ý>²\>¼Øý>Úx„>¼Øý>Þ‚#>¼Øý>âáâ>¼mZ>åþ¨>»€{>èÚÝ>ºÿH>êõ >¹üÜ>íüZ>¸yA>ï•t>·aS>ñ‰>¶L>ò\>´oŸ>óT>³>ô ¿>±E>õ (>®a2>õ¹p>«Yü>öe±>¨RÆ>ö»Ù>¥K>ö»Ù>÷s>÷ù>|‡ï>÷h>w%Ä>÷¾:>qW>øj‚>lat>ú/>dú…>ûq¹>]“ˆ>þxï>V,’?AE>NÅ£?>J¹?ɰ>F²e?zÄ>D­”?K>D­”?:y>E¯ó?}_>Hâ4?Ð>NDY?ú>V,’?ú>\;?ªÖ>bõ³?¨q>g«—?ÆQ>kŠ ?k:>mº? ±Ü>mº? âÊ>o“¼? ª¤>roç? >uÍ;?GG>z®#?ûø>€HÅ?ûø>£œé?Ðð>¨é…?E>­´î?B>³B.?*¢>·KÇ?òY>»*W?Äà>¾1‡?>à>Á8À>ü3†>Âçc>ø^>Ä?ó>ñ‰>Åmn>ìùñ>ÆDÄ>÷¾:>ÈŸ³>ýÌ»>ÊNV?+¶>Ì=ž?œ9>ή?Já>Ñ_5?ù>ÔD?‡ó>×-? ’>Ùrl? lv>Ý^? 9>ßÁp? Ÿ>ãà˜? †È>çê;? Ò->슎? û>ðÿÚ? òx>õµº? Çf>úk¡? [¸>ÿ!? ¯s?¿? .=?š`? 6ª?ßÇ? )}?ÄJ?†? 2\?ù? €#?Ò? ¼?{õ? g ?õæ?ê£>ý÷Æ?>ùØ©?Ï'>õ¹‡?†0>òó/?ç>í}?s>ç—É?¾j>â5¡?é€>Ý)£?é€>qÂ?é€>k¼—?¾j>g³?RÆ>b{‘?ñß>]š•?ä²>\Bc? Z>ZéÚ?^¬>[? \D>[Á™? Wt>]p+? €#>^m? ÓÝ>`øG? '˜>eâ?¦`>i·Æ?{S>Š_?{S>Œ~õ?PA>Žû?Ï>±[? >>ˆ”?”g>‘Ëy?*>’w¾?¾:>’w¾>ˆß>’!š>¡R>‘ui>|\Ý>ÜR>rÆ >ŽC2>n!>Œ¿r>m ¼>kO>m ¼>e®$>lat>bP×>j\©>_Ÿ·>hWØ>\î²>e¦Æ>Z=’>`ðé>Y>\çG>Xå >VØÚ>Z=’>P,>^óv>J¼>eâ>F²e>ª±j>Ôfk>ª±j??n>«y?.³>¬ ó?òé>­£? Ú>¯§Í?8P>²Ä¤?%1>¶7Ž?Ü<>¹U? Gå>¾JÂ? “G>×]? ÓÝ>Ëj ? þé>Önë? þí>Þ,? þí>ä:r? ¨Ë>诺? =>í»Ù?Þ>òÇÝ?ƒ®>ö»Ù?Kt>ùlë?òé>üŸ=?#ð>ÿ%D? ?ië>þ?Õ“>ùS¬?ë#>ó°í?ë#>îNÅ?•>éBÄ? >å>þxï>àÙb>üßæ>Ýç±>ùؘ>Û!>ö»é>×ü>ó‰²>Õ~P>îþ»>Ód>霗>Ò v>á߀>вí>Ú ç>ÏÆ >Ò»q>ÏZd>®»>ÏZd>¬ ó>Ь>ª±j>Ò6’()*(*+(+,(,-(-.(./(/(((((('('&(&%//0001112 2 23 3 34 4 45 5 56 6 67 77888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHI I IJ! J!JK"!K"KL#"L#LM$#M$MN%$N%NO(%OPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]P]^P^_P_`P`aPabPbÛPÛÜPÜÝPÝÞPÞßPßàPàáPáâPâãPãäPäåPåæPæçghijklqrswxywyzwz{w{|w|}w}~w~w€w€w‚w‚ƒwƒ’vw’v’“uv“u“”u”•u•–u–—u—˜u˜™u™šuš›u›œuœužtužstžsžŸqsŸpqŸopŸnoŸmnŸlmŸjlŸijŸgiŸfgŸfŸ f ¡f¡¢f¢£f£¤f¤¥f¥¦f¦§f§¨f¨©f© f  f  f  f  f efededcdbc ©©ªªª««¬¬¬­­®®¯¯¯°°±±²²²³³´´´µµ¶¶¶···¸¸¹ÿ¹þÿ¹þ¹ºýþºýº»ý»¼ý¼½üý½ü½¾ûü¾û¾¿û¿ÀúûÀùúÀùÀÁøùÁ÷øÁö÷ÁõöÁõÁÂõÂÃõÃÄôõÄôÄÅôÅÆôÆÇôÇÈôÈÉôÉÊôÊËóôËòóËòËÌòÌÍòÍÎòÎÏñòÏñÏÐðñÐðÐÑïðÑïÑÒîïÒîÒÓíîÓíÓÔìíÔìÔÕëìÕëÕÖêëÖéêÖéÖ×èé×èרèØØÙbÙbÙÚbÚÛƒ„…ƒ…†ƒ†‡ƒ‡ˆƒˆ‰ƒ‰ŠƒŠ‹ƒ‹ŒƒŒƒŽƒŽƒƒ‘ƒ‘’=ÑsÆ>#qü=è³³>$¹ª=þý>'šÉ>ÊD>5]>z\>= œ> >@â >0jÓ>Cqü>LF>B*3>v+µ>¨žt>)Øb>»³>"*T>ÇžÝ>šø>Õ/ >S)>àSO>š×>íg™>$Ì>ûïŠ>0>É?K×>>SC?,>L¹–? —ì>^SC? ð>lg¾? ð>wìÝ?Ÿè>šø?·ß>€T?æà>~S?ßÐ>vS)>ûïŠ>m¯l>ô/s>fX>èJ>b*T>Üï$>b*T>Ï^÷>h´>–68>*>ˆ¦>ƒ¬>v+µ>„ì1>YZ>„HZ>:ñ>‚\Õ>"ÚŸ>~SC> ªS>rÎ%=ì” >fX=Í“·>WìÝ=º3{>GI=²s`>5]=·K·>(™=ÑsÆ>¢¯=è³³>¢¶Š=þý>¤'>ÊD>«n>z\>®ß>¨žt>¥Eæ>»³>¡nÛ>ÇžÝ> '->Õ/ >ŸƒI>àSO> '>íg™>¢d—>ûïŠ>¨y?K×>¯ƒP?,>¶¶|? —ì>¿ƒP? ð>Æ”? ð>ÌP>ô/s>ÃZ]>v+µ>®>èJ>ÁnÛ>LF>±nË>Üï$>ÁnÛ>0jÓ>²¯>Ï^÷>Ä¢ >–68>ÑnÛ>ˆ¦>ÓZ]>v+µ>ÕEæ>YZ>Ô¢ >:ñ>Ò¶Š>"ÚŸ>σP> ªS>ÉÀÄ=ì” >ÃZ]=Í“·>¼P> >°Êþ=º3{>³þ8=²s`>«n=·K·>¤¡þ?Ÿè>Ð'-?·ß>Ðy?æà>σ8?ßÐ>˃I>ûïŠ>Ç1h           !!""##$$%%&&&'''((()*+,*,-*-./01/12/23/34/45/56/67/78/89/9:/:;</;<;=><=>=?@>?@?A@AB@BC@CD@DE@EF@FG@GH@HI@IJK@JKJL.KL.LM*.M*MN:OP:PQ:QR:RS:S;=ž7H>ñÛ°>6²>ñÛ°>:Ä5>òO€>?„>ó «>BèŸ>ôX—>E¼©>õ— >F‡ >÷g>GQÇ>øÞ>F‡ >úç´>Eö\>ûÝÊ>EHÙ>ý*º>B’>þ±>?J;>ÿBM><¡>ÿm¹>é`>ÿm¹>*>ÿá‡>×+?>{À?õO>=?›Å>¬‘?3Ä>áÓ?jù>Q,?{O>i’?Qú>Ý\?#­>Äö?*Ìã> b?/ü>ü?1xð>¾¿?2·e>]*?3Øã>"Vù?4†—>(8c?4À€>F9?4À€>J™E?4£Œ>N«s?4i§>QÖ ?3õØ>Uè;?3?>X+A?1ì½>X+A?!úÄ>XŸ ? ö6>Z40? >]˜á?}Ý>a7E?í>eIz?Ð)>hçå?Ð)>lis?í>nÉU?'>q€?šÐ>tªõ? :>v$?!0>v$?9 ™>u‰?9€g>rÛƒ?:'>má´?:ÛÏ>ht?:øÀ<õ§Ò?:øÀ<Ø´|?:¾Û<¼¨?:K <¦ ¦?9ºM<›/§?9)ÿŠ­=“\>ÿm¹=‹7¨>þùì=„âm>ýž„=D>üC={KP>ú­Ë=yï•>ù‚=}ˆ>÷IL=‚+>õ@2=ˆ€Ø>ópý=‘Œã>òO€>ûtv>òK0? >òK0?F?>ò…Ç?A>ó~À?ý¦>ô• ?>õô?K>÷ÉD?"”>ù؇?àª>ü1?Uˆ>ýGW? U>þzê?0›>ÿ‘1?F?>ÿŸÒ?~P>ÿ®|?Ý.?S¼?Yb?í‡?Ë?L?Æê?jW?`a?»8?)?8©?)?,ûl?4t?/õ ?© ?1ɼ?<?3FŽ?Î?4š?¸ç?4ˆÄ?ž"?4ˆÄ?ˆ{?4Ã[??5k?ïU?6V$?"”?7e?ö¨?8Oq?rÓ?99Ë?à^?9éŽ?!ø?:½ñ?(ö?;}?>ž?;}?àj?;}?0©?:ñ0?Ñ'?:^»>ÿÍš?9W>þn?7‚f>ßÃ?Â9>Â=Ù?7 9>Áç?8l¾>¿D:?9‘¬>½o‡?:$%>º°{?:Óç>¸, ?:ñ0>”•?:ñ0>Ž$?:¶œ>ŒÚ?:An>‹‚?9ÌB>‰¶ý?8§R>‰AÖ?7Ÿ²>‰AÖ?6µX>Š,?5—»>‹‹°?4à§>%É?4ˆÄ>*Ø?4ˆÄ>žÄõ?40å> 3C?3Ù>¡u_?3 ú>¢3¾?2!Ÿ>¢¨ë?0ßc>¢Ôå?/ß>¢ã?y>¢|?ß„>¡fÉ?T>Ÿ¯M?=Å>ž0>ÿ‘1>Ž¿å>ÿ‘1>Œë5>ÿ>Š¡[>ý¼…>‰|f>ûçÑ>‰$€>ù7j>‰|f>÷>Š,>ôû”>ŒÚ>óp>%É>òÀ^>‘DZ>òK0>Áç>òK0>ÄÂM>òÀ^>Ç '>óp>ÈàÛ>õ 8>Ê@`>÷Ž­>ÊÉ>ú>É8³>ü?³>ÇUi>þ¦Ü>År>ÿ‘1>·A²>ÿ‘1>¶³?/ >´eD?#>³‰¨? $>²­÷?qü>²8Í?žŒ>±Û?3!>±Nq?4N1>²ŸL?4?ˆ>Ô˜>÷ÉD>Õ±®>ô• >׆a>òúò>ÚEl>ñÖ>Ýt>ñ›l>ßÃ>ñ`Õ>âGð>ñÖ>åñW>ò…Ç>èš>ôÝ>êá>øÛ>꿦>ûr¤?Ÿu?3 ÷?£?4š?‰Í?4š?á±?3»¸?1ë? ?Ú ?7e?¼Ã?õ,?*I?•§?z‡?/>ùe,>ÿËÈ>÷Ë>þás>ö¦!>ý¼…>õ»Ì>ü"h>ôÑt>ùð>ôÑt>÷Ž­>õ5>õc>÷Ë>óp ZZ[[\\]]^^__``aabbccdde$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23$34$45#$5"#5!"5 !5 55667788999::;;;;MMMNNNOOOPPPQQQRRRSSTTTUUVVWWXXYYZ;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF;FG;GH;HI;IJ;JK;KL;LMfghfhifijfjkfklflmfmnfnofopfpqfqrfrsfstftufuvfvwfwxfxyfyÛfÛÜfÜÝfÝÞfÞßfßàfàáfáâfâãfã䀂‚ƒƒ„„……††‡‡ˆˆ‰‰Š~Š~Š‹~‹Œ~Œ~Ž~Ž}~|}|Ö{|Ö{Ö×z{×zרyzØyØÙyÙÚyÚÛ‘’’““””••––ÈÈÉÉÊÊËËÌÌÍÍÎÎÏÏÐÐÐÑÑÒÒÓÓÔÔÕÕÖ–—˜–˜™–™š–š›–›œ–œ–ž–žŸ–Ÿ – ¡–¡¢–¢£–£¤–¤¥–¥¦–¦§–§Ç–ÇȨ©ª¬­®¬®¯¬¯°¬°±¬±²¬²³¬³´¬´µ¬µ¶¬¶·¬·¸¬¸¹¬¹º¬º»¬»¼¬¼½¬½¾¬¾À«¬À«ÀÁª«ÁªÁ¨ªÂ¨Âç¨Å§ÅƧÆÇ¨ÃĨÄž¿À>…Š”:3ÌK?Ky:3ÌK?­X;ž¡@?V <5n­?þè<ÀÕc?9=5ƒ¥?þè=h’‹?fp=‰£?5~=–ST?ôA=œ{$>ýDŒ=Íp>÷\=¯ÚÇ>óÁ=ÀßÎ>ðú=Þ¨Š>ë¨>g>ë¨>„x'?-×>„̼?2v>…›?6P[>Ž|¡?6·]>–…‹?6Ú>¢ÿ¾?2²À>¨!R?._.>«-”?Gñ>ª„;?He>橌??C>æþ$?D°>èˆ?Hx>î×f?IÜù>ùC?IK§?Z™?F”?d?A»š?®?¸?®?3†h?'¶+?6·]?)ÖÊ?M ë?)ÖÊ?QO(?*ç?T?.?UC?2ár?TCp?7ªÙ?PñT?:t®?L…Á?:ÛÍ>úŒï?:ÛÍ>óÁ?9—î>íã?6fü>ê˜F?0ÀÕ>ì–?,“>ñµÈ?)÷Ò>ù'ö?)º?yP?)»?fp?'.?V ?!Üq>Ø‚î>´¯>~Q`?%•ˆ>~Q`?)N >‡«2?)ÖÊ>²7¶?)ÖÊ>ºº.?*ç>¾ûq?.>¾ûq?2YK>¼ Ò?7ªÙ>¶xò?:2˜>§ÝÊ?:‡.=É?:\æ<æxÀ?9Ë{<‚¥¢?8‡›;à‡Ê?5;[ ?0¥;Ô,?+)3<Œƒí?*0±=â}–?)±Ñ> Nñ?%•ˆ>\G^?ò¨=Šv?ô=aÜú?‹‹=*þ?¸w=!“‘>÷Þ=*¨e>ñ|==?x6>ê^¡=qÕ>çÄ`>ƒið>ç-²>¨¤ã>ª‹æ>À>ª‹æ> Nñ>¨F>=ù‡> ù=ôÕ*>š—/=ù‡>’·> Nñ>‰’2> •>„>½–x>ƒÎ÷>½ë$>š“>»Ê†=ÝêF>¸2•=¾…>± ®=Ÿj>}^Ã=žo>mLc=’ý>fêŒ=W¶>i <ÀÕc>uÎè;â´–<á÷Q?)H ]]^^__``aab  !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./!"1!333444578979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE67E6EF56F5FG5GGHHPPQQYYZZ[[\\]!12!23"/1/01EcFHIJHJKHKLHLMHMNHNOHOPQRSQSTQTUQUVQVWQWXQXY>H;#¸>½j;õÊ> S§ ôC<ž×A>Žw<Ô>P>F=>Žw= Þó> ôC=;’}> S§=TðØ>½j=lZç>H=€ž=üx=‰ˆ =ðj–=µ=㻄=•ö"=Öa¡=™*·=ȱ¼=š>l=»É=™*·=­§ô=•ö"= øè=µ=•D=‰ˆ =ŠÓA=€ž=è‘=lZç=ux`=TðØ=jö =;’}=d;= Þó=be®==d;<Ô>P=jö <ž×A=ux`#%=ü~ñ>(½·> ’>G‡…> ¶?.W>@Ó?7ˆ¿=æ¤?:®É=®Á?:®É=„!¯?7â==f¯Í?.oŽ=lIÝ>F!$=Œ‰L>+Šq=¶„Ï> YÏ()*(*+(+,(,-(-.(./(/0(01(12(23  !!""##$$%%&&'=zl?"†=z?"†>×ß?2Ó„>×ß?7/¸>el?;‹é=÷]d?>Ñ=Ь?>E‚=¨ß½?8Ò >8È?=ÿÔ=¸!ó?<U>5×Ë?–û>T]?–û>•ȃ?2Gú>•ȃ?6¤)>“M?;[>Žøí?=tG>ˆ³é?>E‚>}Èo?=¹ó>qÊ?;‹Ä>j(÷?8F|       =Äüç=@dg>#ÿö=@dg>>¯õ>{äÔ>™’2>{äÔ>Œ:2=@dg>®1|=@dg>»‰>~Qô>ìµ>~Qô>ðé>¡ D>Ášˆ>¡ D>Èá>Ú#ï>ûÔo>Ú#ï>þÜ]>ùË>Îò‡>ùË>Ûþ?.E×>·å×?-ø.>¬úð>ù­õ>j[>ù­õ>‚…Ñ?-ø.>A?-ø.>%6<>ù‹=Voù>ùz=9Rõ>Ú¿D>ƒ >Ú¿D>+W>Ÿé¸<Í­r>Ÿé¸<¦á>{å9=õ‚´>z®Ž>Y_û>Ú#Þ>¨ q>Ú¿#>¢«i>¡»»>I›&>¡»»            >‰fB½uƒ¥>eþ½_²ˆ>’ªí½+XŽ>’ªí=Ï„>¤ªÉ= EU>¹ð_=C,¥>ÊM¿=„$>Ù=° æ>èM=ñ•‰>ð{d>øß>õïc>1„>øâ>XÉ+>÷£>{±Q>ò©š>L¿>éd> Àß>Ú©þ>¯zÑ>Á‘ü>¼‘ð>«3i>à>“Âs>Å×j>“¹?¥>¦ÙI?Ó­>³ðZ?vœ>¾Mñ?¥0>Åðs? ¼Š>Åð)?vÆ>½6!?¼¤>¸M_?_ž>¸ØÒ>õK!>À{ä>ìc>ÊM/>è¿¡>×d<>è3õ>ÝíÞ>éJá>ì[>öíô>ïc×?ƒ>í5¢? R>âMZ?_M>ÖMŒ?0µ>Ã6#? Óz>²ÙP?#¥>£?$ê¨>“Âs?&ì>”Mó?8Ó>‘”Ã?=»´>Š}+??êE>~4??¤f>pú*?=uâ>nÌ7?9à>oã#?&ì>S†|?%vO>9Wb?$ê¯>(?#GÛ>ä¬?vb=Óm"?¾=ŸÝ?v”=o—h? 0ë=Cõ0?ë?=;;2>òë=HQE>â4=b}F>Ö4@=‰?¿>Ê4€=´áù>¾4¶=é>*>µz§> ž°>±¢>+)Ñ>«©]>P@ƒ>¨cš>jnž>¦5>k†=Ϊ°>QWŠ=×f„>-X^=í7¦>Ì>øð=ëiÎ>„C=Óm">-&ú=Ê´c>?²=é>*>Bø>ä>GT¾>Í=>Vš3>0>wTL>ÍÊ>‡H=ÿf>d=Ùú->“©Á=ŸÝ>“©Á=?• >Ž5<êÕÂ>‚5®<¥Ž>hÂ<‚V>>›<¤ü^> A=%dS=æ­c=œÐ=°"6=Ï=ˆÝ>A±=T£Æ>+)Ñ=1»¯>EWù= G‘>cã=“>jnž<éJ²>jnž½'³>nˤ½N> >€ݽyà>>’«,=έ]>’«,>¥©¥>¦ÙI>¢ïŽ>µ“ >{8>ÄM¬>”Á0>Íî>‰Øv>Ñïú>wTL>Ó’½>_V>Ò|Q>8â>Í o>¯>¾Nã=ë ->±nˤ>È‘s>>Ìf>Ð4;>Ç>Ö¿À>ä¬>á¨N=ñøC>êbZ=é>*>÷yg=íš?Ž=ÿ ¢? _b>W¢?êø>/ƒ?¼O>B?Óz>nˤ?êÓ>å%>ííÃ=¼…¡>”5s    kkllaaabjk ij i i i hihghfgfefededcdbcbyy  !!"""##$$$%%&&'''((((())**++,,--..//xxmmAABBCC]]^^__`/01/12/23/34/45/56/67/78/8u/uv/vw/wx89:8:;8;<8<=8=>8>?8?@8@A8Ao8op8pq8qr8rs8st8tuAmnAnoHIJHJKHKLHLMHMNHNOHOzHzPHPQHQRHRSGHSGSTGTUGUVGVWGWXGXYFGYFYZEFZEZ[E[\DE\CD\C\]>`§:„Ó9>‹&¹²…#?;‘ ?;3Þ?-`'?:‚{?Aˈ¼“ N?V8Tºà?_8S<Ú~v?h7ù=ѹß?jýg>;óS?k®Ë>wwØ?jþ>“Aå?c`÷>ÃÅ?Z¹»>×Õj?GUÓ>é$ò?6 >éÖ5?)Š>á‡3?q¾>Î$5?Ê >¯­7?JŽ>ú©?˜¾>Zq©?úã>‹Z? <ð­?&U;qÉq?>ÑR>Ê®N?FbN>Éý4?R:>¿šƒ?Wî‡>¯®X?\>ŠJÝ?]>Mù?YNÊ=âZ«?P =l¯÷?> £=/Ä;?2Æ==Ksn?*Ý=Œ}p?"šþ=å?ÒQ>MôÐ?*!>lW:?%±>¯­m?(r`>»qä?\;£>%Ï?IÓô=Eêˆ? â¾>fÁ? áÐ>—m?U²/=¥la?/á>Ç7ë?Js0¼n¹œ?h’`>«(æ?RÃd>âéµ?>U7>êà'?ë}=Ãð»?Ð×=o|î?. §¼ ú/?dÞ=dV´?L“ó>ÆßÉ?Z¯>£é»>XŠý>‡DŽ>{)¢>ˆÿe>•>%D>§>ž>°Ð>­ >¹a>Äã©>¾©+>înÛ>À ?Ž>¾ª•?Û‹>¹Ó?Ï>¯p\?)Â{>ž!ç?4%N>Ž5%?9¯s>n´ ?<Í>J±³?=ªª>)u?=%³=ï6 ?8þ3=ŽG™?/L³='? 4<”8Ò? 7ë<{ýr>ý® <ªC5>ß:Þ=+S>Áq`=B€Ñ>®dÐ=‹‚ >Ÿ€=Ó|d>’XÅ> “O>Œ`>L¡þ?-‘Á>jæ?-92>ÖC?+ª>ŒØã?(Ü>˜‹}? Ä>ž ¡?/o> Ìv? `>¢Ým>÷qÞ>¡%¸>ã\³>›L>É Ü>”Ï>¹ÐI>ˆ·³>® 0>x¬¦>©2ƒ>Ißo>¦mº>uª>©ãš=ù¡â>³”=·‘µ>É»ø=©ÏW>Ù¨’=™L>÷oœ=œ |?Pj=©ÈC?ñ=ÊÏC? O=æLs?%ó•>\e?+Ö-44++((  !+ ' ' ' .'..   6 6  /// 5 5 0505,&,&%&%%*%*$*$1$12#$2)#2)2")"!"!3!378979:7:;7;<7<=7=\7\]7]^7^_7_`7`a[\=[=>Z[>Z>?Z?@YZ@Y@AXYAXABWXBVWBVBCUVCUCDTUDTDETEFSTFSFGRSGRGHiRHhiHhHIghIgIJgJKfgKfKLefLeLMeMNdeNcdNcNObcObOPabPaPQ7aQ>r¼)S>‹W¼)U.>¨`;>§>¿Â<¯µÐ>Õí¯=u. >Þ¾=®Ÿ>é˜=‚¹Ô>öz=†Ó?¶ý<„SL? Ú;¶â?ÍÓ9ˆ‚ñ?/·º‹—x?8ñ0;¶?:ú{<Û„?9Ÿ¤=oÀM?5Ž=“P?±=“P?FÌ=£F$? #µ=Ϋò>÷'Ì>»·? c>Q? ~â>Šv†?™>¤:«?ý&>Æ"z?›>܃?#•º>êÀT?/Á>îÑá?8›>ëmü??c¨>áB#?AkÝ>ÐN@?@¾>Àµ»?=°×>´?6’@>¬^?/Á>¬]÷?1|>º›Z?.r>ÆÐ?&ù®>Ê4?!N>ÆÐ?Î+>½R ?r¥>«Ù?$3>œ?#>¯>Žˆ?.F>ˆm¡?8›>Šv†?C>Žˆ?J<]>™a€?Q[">¨LI?UÏ>½ÿa?Uÿ>Õ»?T¿¢>æ®¶?N¥>ù«O?G†?B^?>Á?Së?1%‰?\²?$CP?ªÁ?iâ??ôa>üa­? #µ>åSŸ?®6>Ê4>õ̤>©§­>à¾>[÷~>¡ µ>Ê3Î>±ýó>ÒW>ŦÆ>Þ‹8>ßlL>õ™k>ìO?øl>óO?žg>防?)–·>ܸ?1¹—>ɼf?7&M>˜^?:Š_>h?:á(>ˆ¨.?:Šu>FªL?3Âv>.A ?-¨&>D‡?&àv>"Ø? p>Æ?-^>ŒÅ?K%>.A >ð- >FªL>Úz*> þa>Ê4=Ôä >½ÿa=™8'>±ÊÁ=[¤´>¡„š<óÿ¬>‹Ñµ<4>d‹<4>#ä<óÿ¬=Þò=Eñâ=˜l¹=ž¤Ú=.¨4=õpu<]@î>6d%»†I>iìý>»I>ÂCÉ>r>¸Äz=ìž>§Ñä=¨²—>Žº–=…pr>v!2=z™·>NÍe=‚¹Ô>3­Ç=˜l¹>×Ò=É?:=õpu>+ï=ÚP×>-ÛU=̽©>Y?)=å(ä>,à>CK>rl?;}*=)7?3Ûõ>‰I>ð`ñ?vß>ñ?Á…>aÌû?7¨¶<’WF>@׸>íª¿?$€®>³ªb?9ÜÏ>ŒŒ>ée(>‚†N?9›>g6¦?$˜>h‘„?´e>xÕ}?"ÎJ>‡ïŠ?&à >¦w?(’'>±P„?'7>¼×g?$)ý>Äû,?aü>Ũ:?6#>Àè–? eu>¶)?ï÷>fˆ{?>Þ>–.®?(’      kk``aabbccddeef_`^_^]^<]<=]=>]>?]?@]@A]Am]mB]Bn]nj]jsjstjtPijPiPQiQRiRSiSTiTUiUViVpipWhiWhWXhXYghYgYZgZ[fg[f[[\!"#!#$!$%!%&!&'!'(!() !) )* *l l+ +, ,- -. ..///00111223334445566677888999::;;;<<<^nqCnCDnDEnErnrFnFGnGHnHonoInIznz{n{|n|}n}~n~IJKIKLILMIMNINOIOPIP€I€vIvwIwxIxIyIyzPtuPu€<øe ?ùr=xMÚ?ùr>¹=?3gÿ>¹=?7Ö°>/¤?àQ?>ñ=·ú?<Ó >µ'›½Ì}>»o‚¼ÓFÚ>ºÎÚ»"£>«ç<–¢õ>Ž2=Xž>eØ=Æ„j>2Õh>A> ž«>LÑð=Øë9>‰˜á=ÉÖ®>´S =Øë9>ß :>=?>+K"?’<>Xˆ¼?#V>†¨N?(˜>ŸÊ‚?.ý>³åá?4¤³>½ó•?9 ±>½ó•?;Ž>¸ì»??S?>° Á??ô>¡ :?>Š>{¸¢?7x„>-Α?*çb>f?!*0=ÄÏÑ?{¤=wÚÈ? ê‰=Io>ôjM<…Þ>Ñ:d<&ø'>® „Œ±=R >QØÇ=¡ž¥> º°=ò d=Á}ž>0Qù=C÷&>j ¨< p†>“9f¼«î>§T˽Ì}               !!!"""##$$$%<õÊm?@îm<Ë ??´<™ùÑ?8õÎ=L‚?3Š=Û—x?*œ?>%é}?!y>Xí7?w>€Þ]?Xy>+ö>äúj>“þæ>¹>*È>Ž?Ó>‚"¾>Ul>`Žl>hu>2£c=ÎÉ„=ú"´=[¸=”*<Öüâ=ïf;z½¡ë’»ò!†>]ÿî=-ÉÅ>„®Ð=¥öÜ>•CÊ=ü°p>§Â[>1\;>µ'N>q!G>¾¸Ç>œFË>Áé¯>¿ü>¿^ >âln>³ãV?›>ž4Ê?›E>‰Ì§?Ä]>[{?+âg> Ф?6­=Ç1?=½ì=k"?@îT               !!!"""##$$$%>+Ct>ò ¡>6„þ>òê?>@ê‘>ö`Ø>E?ï?Ú0>3ìî?-1>rJñ? Þ>~hµ?Õk>…Cµ?fw>ŠvÏ? n>ï1? ý»>‡ß1?q²><–h?¤.>ƒˆó?#¯¸>†ÿ?$İ>‰)ç?&îÒ>‡Ÿ?+ê>ƒ‹N?,ÇÁ>nÓæ?,ÿL>5¨s?gË>=r›?3~n>8A‰?6õ`>&î{?8Aö>4‚?7›¸>$Ú?4$³> Þn?gÎ=³­?*.w=žæ—?*eÝ=qŸ?)PÀ=c±Ñ?&ï=g)’?"+n=k? $>½ö?_¯=†£Ï?¶0=nÞ?‹ì=j¥`? nŽ=xvŸ? Dv=·&¯?À+>"ï?œ>œÝ>ý¾5>Ô>öÐ:>"ï>òêL>F>üD>t¯? ÏD>޲á? u>âó?š->‰*¬?)ÛS>º*?-6º>vØ?-‰î><•è?5àD>1Âã?8 >½Á?6O=…¾‘?÷±=–¤º?Ý))  **++,,   - -  . ./ /  001122%%&&''( !!""##3344$$%%>Žø‚=–zS>´þ>=–zS>´þ>>„¬*? c·>„¬*? c·>«ö >³¹Ú>«ö >³¹Ú?$ >v?K>³À>«ö(=µ‰H>«ö(=µ‰H>…,î>Žø‚>…Œ    >(.Ò½o™£>ÝI½±um>éP½Ö¨¬> ѽîÖ4>)½þ¦d>Üe¾¸J>$t½î×Ç>GÌŸ½ü3>U½Ž½0£ú>]§L¼eðö>1z¤¼é¬6>ZeI=-SH>/ž|»JÏ1>O=:=•ç2>9Ù=·a‰>.;Š=Š×>¸=ÆC4>0!=»=Ý =›|š=ÌLŒ=l™Œ=Î%…=)ð=Û*¡p_»JÏ1          =s[Õ>ƒiº>Äd»>ƒiº>Äd»>¨Îj=s[Õ>¨Îj>:AD»èXy>AÁQ»œØ>HYP;ˆ9Š>Mß¶<8eW>R1ž<œˆè>U3à<á|¢>VÓ=­y>W;=9/>UÊØ=]^>S)=€*«>O1‚=œ^>Iý0=Ÿœ¦>C¬ñ=¬Ìz>4]§=À}N>+¿)=Æš>"Ãe=ÉÀÚ>¢Ô=Ê&N>—.=ǯ†>Ùc=Âk×=ÿA)=º|Ð=ðA=°=ãé=£s°=ØF=”êž=Ï`2=„Õ=É[ª=g0@=Æ›=CA=Å·(=¿=È.<õ Ï=Íq•<¯2}=Õ`Ÿ„2¼$0+>"·¼TS >t¼nL> >þ¼qx(>)J—¼]Áè>2o¼3¥  !!""##$$%%&&'<†Wù½ =°<ѽ >ÂZe?@dË>¡<Ô?@dË> wa¼#Í>³G„¼-Ø>Ãz»*uŠ>в;Ý>Õ>Þ`¥<†©<>éR´<üU>õ£ =JÈç>ÿåø=†:±? Ã=²ë? †Ë=è½K? ù#>Ö‹?dÇ>0‘ý?'ý>_Å?Œò>…oƒ?šT>¤8R?ñæ>ðA?Õ^>ÞŠ?ÝÐ>új˜?xÛ?jÙ? 7?Y? J?:ç?yi?!w&?¯?&ð+>ù­?,ÀÅ>éR´?1â=>Õ{÷?6T“>Äaº?9>³ö¤?:Ê>¢-G?:Æê>‘Â.?:Æê>{Öâ?9h¨>_p?7[F>8Ì6?3@>²‘?.=ûî=?'ŸM=´ÈÍ?\]=†D?ÁÝ=Ebž?ÏÌ=!]>ù»x<Û¤Q>áÉô<Å¿î>ÉØp<µSª>¶¯<Û¤Q>”|\= /N>}0q=4÷‰>Kï(=f8É>%Ÿî=–¯%=ûäÛ=Çðg=²ë>³Ÿ=kŸ>ÍQ= >B` <ƒî>h¯E:¸w«>ŒøG¼-Ø> Ï?'G½>±é=?&A >Ãz?$‹6>Ña0? È>Ýe?þ>çôt?…>ím{?»->õú¯? ùÉ>üzT?§¢?JŒ>ð'¦?¨Ð>Úò©?¯>Ã!?Wñ>§£ù?Q<>“Í9>þ‡µ>w·j>ø>P ï>ïO6>%÷i>ãÙ­>ku>Ö+=ÒÙ!>ÇE=¦a¿>¼X=“é>¯,º=‰¦P>¡~'=†:±>ŽVŠ=Žp;>w¼=¡—Õ>`y°=º8v>GÙ=ØR/>3S.>ku>o>!…'>µ>?žÙ>Îf>dÆ=öu/>‡|ä=î?®>ž¿N=èÆ >µR=î?®>ÍD=ûî=>çò>é->ÿãŸ>—Ê? …ž>)¿`?jM>8Ì6?Ío>MR?­;>a×÷? È>xk?#°Q>ŒI'?&A  FFGGHHIIJJKKLLMMNNO:;<EF E DEDDCDCBCBBABA@A@?@??>?=>=<=:<::9:998978776766 56 5 !`5!`!"_`"_"#^_#^#$]^$]$%]%&\]&[\&[&'['(Z[(Z()YZ)Y)*Y*+XY+X+,X,-WX-W-.VW.V./UV/U/0TU0ST0S01RS1R12QR2PQ2P23OP3O34O4>Àý8g¼<>÷!`8g¼<? þ;¼?È;Äöà?¿ù×H=¥u\>Âó¥=¥u\>½‡Ô=³Ö>ºÑî=Ëh>¸É>Ï>¶“>ÇAy>¶“? <¶>º$n?+uN>¹vù?4ñþ>·nµ?8¬*>±U??:´ˆ>«ék?; G=èE!?6úk=Ö¦]?4Z2=Øø?/†+=âÙI?*Ç×=óÃ?(¿d>vâ?&¶ø>&&?& >v>)?& >€Ò?%>…/?!`ß>‡Q©?Û>‰Z>Çîö>‰Z>;!>„òh=Á<¬>ºÒ=¨+A>°=¥u\=óÊu= ·==à#d=˜•~=Ò•Ü=‡¤a=ÂRi=Y™=¼æŸ= -"=Àöj<­íõ=ÕJJ;ðR =î]%;­T %%&&''(())**++,,--.!!!"""##$$%  !=Ûp‘¼ˆ5ž=þø¼NÓM>„5»Ã¨>Щ;ƹ>!¥Ñ<©ä•>"¬|=fQ>ê'=G¼>·+=mÿb> j½=îW=ø#P=ƒL<=éÔ=~e[=ô m=•ù>Jø=µ,Ï>â=ÆAå>.‹=Îtæ>0­õ=Ö§â>F‹O=ÙcŒ>\hŽ=Óì9>oŠ1=Îtæ>‚Ô=ÀÊ’>Š7Ñ=°d˜>•&w=•ù>œªŠ=xî>¥Œq=<Ív>°{<ë|u>¾%g<$ÞÇ>ËÏ·»Wì>Õ`ˆ¼#¹>äh­¼zæ>ò=í¼z~>ÿ½L¼ ;m?\Y;»Ü? |7<‰?`Î=,gz?d}=Š!S? '=Æ=?Õq=ÿ¦Ò?Õq>…Ý?Ï>7Ú}?Ç>Jü ?¯3>\¿î?í*>m%ç? $Â>v¶¹? C>zÐ7?“ð>zÐ7>ø9:>v¶¹>ïWS>i i>êŽê>_{—>ç§}>N¾>åÆ>>¯¥>çÓA>(ÒX>íJ”>(>÷>—?µ>—?‘C>o?i>#[? >l_? Æí> d:? =ô )?£=Ö§â?À=³Ï ?“ð=š‡M>úEù=ŒÜý>ïWS=Š!S>â[í=’TQ>Ú(ñ=¢ºI>΋`=¿lÎ>Áû=á–ˆ>¹\þ=ú/~>®Åæ>,­>¥5>.w>œªŠ>&¯>’jÎ>.øq>‰ˆç>5Ó>~’V>;óû>`‚ >>¯¥>LZ#><¢é>:>Ô>98R>+6¢>3Àþ>_£>)ØÇ>7³>(=Ø´Ú>J¼=å®–>ã²=úÞù>8àÑ> &`>Ož> H>`‚>:>Ô>sû>Vðë>­r>s£°>‡$™>Š7Ñ>Œp@>ËÏ·>£«a>äh­>«Þ^>ôúj>´À4?6>¼DW? C>É?½? ‚®>טæ?œ>è­Û?Q_>öX*?I?_?¨Ô? @ù?Œ¦?¾¨?æË?“Ð? Ó¬? …? C?&6?ëe?+Wž>øè$?/q>ëì¿?2Û±>àO.?5—\>ÐÃã?8h>Àá?9°Ø>¯Ì-?;­>™?ö?;­>ˆ+?:Q>s£°?8ì>R×½?6FE>7ƒ?3Š>.‹?0 =þø?+¯=Ë ?%ˆÙ=™Ø¥?UÙ=?¯?€±=\<?«‹=QMR?Öe=QMR?==g*¿>ùÑ=‘¥©>ívC=¯µâ>åò*=ÐÞ>áØ³=þø>ßËô>rÔ>áØ³>,”~>åy>;œœ>ëi„>EÜá>óœ>Jûþ>þ¶ä>Gé? ü>Cxo?ûÃ>;œœ? ¡‡>,”~? ®H>ê'? žÊ>ûˆ?¥->ûˆ?>Ö:?ôj>,ëµ?‘>BÉ_? ”²>U“f?"Í,>u„?%àK>ŒD?'í >Ÿf3?(óm>¯Ì-?(›ö>¿?'•>Ë Ì?&7À>×mG?"u·>àþ?³±>è‚+?ñ¨>î¨h?)<>ópÑ?±ì>öÛe? ‹¯>öÛe?eq>ö,{>ûÏ~>ópÑ>ð1í>î¨h>çþð>ç$…>Þ™Ë>Ý“…>Öê >ÓSÉ>ÐÃÏ>Å©y>Éî§>±Øì>Âj•> >¼DW>ð+>²³†>N¾?>¨sÊ>,ëµ>ŸéZ> è>”£==ÈNè>†J=•¶>rEÔ=a³I>UêÆ=%’Ú>3Àþ<þžâ>°µ<ÝÒô=ÞÚß<ó°=~e[= >:=Ý=F^Ì<u=?¯»Ã¨=²q›¼d°¤?,?Žj   !!""???@@@AAABBBCCCDDDEEFFGGHHIIJJKKLLMMNNOOPPQQQ Q Q Q Q QXYZZ[\Z\]Z]^Z^_Z_`Z`aZabZb¶Z¶cZcdZdeZeŸXZ£WX£W£¤VW¤V¤¥UV¥U¥¦TU¦T¦§T§¨T¨©T©ªTª«T«¬T¬­T­®T®¯T¯°ST°S°±RS±R±²R²³QR³Q³´Q´´µ"#$"$%"%&"&'"'("()")*"*+"+,",7"78"89"9:":;";<"<="=>">?,-.,./,/0,01,12,23,34,45,56,67ZŸ Z ¡Z¡¢Z¢£efgeghehieijejkeklelmemnenoeopepqeqrer–e–—e—˜e˜™e™šeš›e›œeœežežŸrstrturuvrvwrwxrxyryzrz{r{|r|}r}~r~rŽrŽrr‘r‘’r’“r“”r”•r•–~€~€~‚~‚ƒ~ƒ„~„…~…†~†‡~‡ˆ~ˆ‰~‰Š~Š‹~‹Œ~Œ>¢ï‘¼:F>´f"¼#ë‚>ËsO¹îkƒ>áͦöƒ= ×Ý?Û†=2? r=±äP?±=æúî?EÞ>5è?Ãû>Eê—?vÏ>h׿?e>Œ+Û?~Û>£’w?z“>·zé? Áv>ÇåF?(³>Ö7#>þqÄ>ÝŒË>ïæ>ã#a>á¡z>ç'>Ѽ·>è`‰>½zÚ>æúä?ï?&""?ìs?,!?ø±?1OL?“ ?5Ù¤?»„?8þZ? r?:½h=ã »?:½h=¹ \?:d=¢Æ?8¤ï=‰ Z?6Œz=|æ]?1OL=|æ]?š=„ Ä?i¬=Ÿú°>ù$J=ÆgA>õÒ×=ëk¤>÷ Ð>å>û<Á> ª~?i¬>A?Mm>A?!—Æ>ž?#°>>-—¬?$¼{>F½M?%ä>çdsqü>Ùµ>>fß%>ÑS\>d>Ëé‚>fß%>ÃZç>y•>»«Ú>‚ͳ>¼^¬>`†>¿)ö>ž Î>ÁBp>¯‚a>Ä ½>Â^š>ÃZç>ÒœI>ÁB}>át‚>¼^¬>ï@;>´ÜU>ø'ý>«šç>þq•>¢†9?]i>“Úë?à >„|Ï?à >m³?¶Ð>O²?[P>1OB>÷u/>na>íÚd=ò'Þ>àh=Ë ú>ÐW=£ëá>¾à~=‘Š>¬C=‚d^>›@=2>…˜ù=‡úó>b®7=¡ >FcÎ=¶È>(=Ûͼ>Ûs>uì=óÍ>fÖ=åÕ>5&Ù=è M>GP<=ñ6>LæÎ> Dà>LæÎ>&›h>QÉ>5ùˆ>\Dõ>A&´>rŸF>BŒX>…âw>>\->\²>4;Œ>˜¾¬>!Õ>¢s>Ûs> m¼=÷KÇ> šx=Éä>Ÿa…=¥‘G>š$T=„ Ä>“Úë=RüI>#ÿ=H¿>„Öb<íœ>k£<Ìø>LæÎ<×6H>/F=íC>»…=?mü=æúî=>p=´¯¤=¥‘G=ŠÆ7=ÒEö=A¹¶>®G<ýUa>%5Ê<‘®>F½M;£ì>iªn»•>>‘xú¼#ë‚ BBCCDDEEFFGGHHIIJJKPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]OP]O]^O^_O_`O`aOabObcOcdNOdNdeNefMNfMfgMghLMhLhiLijLjkKLkKklKl       ,,--..//0011223 9 9: :; ;< <= => >? ?@ @A AB344556677889**++, !!""##$$%%&&''(())*>Š8¥ºfk?ˆºfk?È©:çî‘?ÕP<P?Ý¿<›rB?áù<ýB?áù=:%¶?Ý¿=`a?‚Ë=€O±?Ñ=Ý<?Är=•þü?=›jÖ?g©=›jÖ>ú¶=¨øb>÷R¥=¶…ý>õJ2=Ì5H>ñæÍ>5À>ò”F>ao¯?Är>ao¯?‚Ë>bÊ¡?8´>m¢J? —á>}åÄ? A%>‡œ?æ0>Žˆß?‡>“ô·?zZ>—X>ò”F>—X>ò”F?*á½>ñ9T?.òœ>í(u?3Z8>èj?6½ž>ãUG?8ñv>Ü7?:Li>Ôî|?:Î>Ï,-?:{>Ç·ì?9ÊI>¾eä?7í1>µ?Í?3ÜM>ª¿˜?.›ß>¡ð_?)0 =ôo>”¢0<¢T>‹%}<—|H>‚VG<­+²>wú<î9o>m¢J=£»>d%”=X±š>`¶=’K™>^¹Ã>ÃÒL>^¹Ã>ÃÒL>¡‘>ÂwR=ÙÂÏ>¿Á™=¶…Ë>½å=¤:>¸úŸ=›jÖ>ˆÝ¯=›jÖ>‚m_=•ÿq>xþ‘=ƒ >rŽþ=KÄL>oÙp= [6>r\<š¨>€x;¼©>„ÌÐ:çî‘>Çæ>•ý#>É>?"À>Å-;>•Oª 445566778899::;;<<=  !!""##??@@001122334#$%#%&#&'#'(#()#)*#*+#+,#,-#-.#./#/>#>?/0@/@>>šëؼi2”>³”»¼=[«>ÄR»Ë[´>Ü®5< p&>êå<­ÖW>ý7Ë=9Žº?ñ=Úz?à™=ähE?¬>Wß?å>9qV?wž>a,?&ù>‹M?ð>ŸÙ½?b•>³Ã?7‰>ÁjH?1>>În? ½j>Ø?š<>áœ>þ>½>éÔc>ò™¦>ð­õ>å•Ú>õ¥U>×âµ>ù•ž>Ì=ž>û£°>¾Šu>ý±Å>¯x—>þa">¡>ý±Å>“bé>ûûf>ƒ¡®>ù•ž>j~R>ôÊ>QÕy>ïþœ>=H¾>éÔU>ª>ÞÞ©>(»ü?!ps>3±¶?$Ý>>H>x?%Œ™>ÙðÇ?%Œ™>âØk?%4ì>èSw?#ÖC>íÉ? ij>ð‹”?ë>ò™¦?ñÌ>õW? 4]>ûN? Î?ÜÍ?Ç”?Ü? væ?t¢? ©Å? ˜§? “? sÎ?ÿÞ?Wª?4FÌ?B?8ºŸ?ÕÂ?:ȳ>øƒ?; a=ñ‘Þ?; a=Úöá?:ȸ=Âý‡?9M=µJ^?6TÞ=§—5?11°=ƒø˜>¿\6=‰su>´f|=—&Ÿ>¬ÝŠ=¯Ï>¨ =Íó=>¦÷=æœ$>¦³S=ÿE >§b­>/@>®ëŸ>*µ>¹1ý>=H¾>ÁjH>Wÿ€>ÊQû>nšv>Ï ü>…d>Óèî>”E>Ö¦]>¡>×U¹>¯x—>×U¹>Á÷@>ÕG§>Ñ >Ñ+ƒ>Þ¼K>ÊQñ>é±þ>Â¥>óø\>¶tŽ>ü0§>¨ ?~>–ò?-p>…Ò%?-p>l!Î>ÿr>Hƒ4>ûN>'¢ >ö‰ì>Ù±>ëëÍ=úS¹>ä7$=áªÓ>×3X=¸‘\>ÊÞè= —·>½Û=wâ>­j=Ĺ>šëØ=x“¸>‹*=x“¸>tS=‰ý>WPI=šm>7ÍÚ=µÓí>/@=ähE>_ð>ÀÞ=ùÊ&>¬R=ü‡˜>$äš>Ї>&CM>#A>-é>0ôK><.Î>5o>Mþ>3±¶>bŠÌ>,Ø >rûd>#A>€WH>Ke>„sl>b>‡0Û=ÞcÛ>‡à7=­>†=”i/>‚eZ=g>yÔú=0C_>idc=b0>W•<òíx>CW<ç÷»>'¢ <ýã0> ;»=*ȃ=áªÓ=g’=©c=™ä =~–=а¯=&`Å>_ð<É<Ê>$H<fª>Jûã»­ó>vÒż'p<>Ž—h¼SG VVWWXXYYZZ[[\\]]^^__`cdecefcfgcghchicijcjkcklclmcmncnobcobopbpqbqrbrsbstbtubuvbvwbwxbxyabyayz`az`z{`{|`|}`}}~           M MN NO OP PQ QR RS ST TU UV'()')*'*+'+,',-'-.'./'/0'01'12'23&'3%&3$%3#$3#34#45#56#67#78"#8!"8 !8 8899::;;<<==>>?DDEEFFGGHHIIJJKKLLM?@@AABBCCD>¡ðò¼{®Í>·“,¼Pj±>ÇÌØ»óÂÛ>Ú ¾9ý~F>è@6û.+= 0á?B=ZQ]?­=œ? #²=¸à‡?ˆ§=ô^Ÿ?@‰>üÑ?G¿>8aÈ?øl>Wzý?Nô>€•?øl>Ž8?G¿>Ĭ?éÿ>«J?Œn>¶ó? ÐÅ>ŧÏ? kþ>ÐM°?B>ÙBÕ>üˆQ>á_«>ðˆ[>èM©>ä1Ë>íŠï>Ö¬d>ñ™Z>ÇÊ>ôM¢>¸íR>õ§Å>¨³¢>÷ë>™'>õ§Å>¨Õ>ô¤.>Ô>òFy>j¤Ÿ>î8>RN>èÏo>7ð8>ಧ>$U^>×;>³>ËfÔ>â>ÂFu=ò!»>ºÖ­=ú>¥>Ñ%ÿ>’Ì>æÈ;>²>ÿËÒ>$U^? ö>7CO?}V>O™Ñ?š,>a-­?¨—>uuÀ?"`z>‚*¥?$g¯>‹K?&YI>–rÃ?'É >¤¥7?)#->®ÉE?)y¾>¼û½?)#->ËÛI?'É >×Yy?%ÁÕ>àz,?#8Ô>è@6?Uª>ìû¶?Æ>å‹ñ?–’>àÐr?57>Þrš?ÐC>Ýnº? ÿ">ßJŸ? R>æ S? †>ï¯û?š1>÷À?í?K^?€í?°€?-ç?“š?v? s4?½Ø?î? uá?r?Óß?“}?ÿ#? Í)?ÿ"? ok?#ºœ?Í`?(÷ç?ÿ¦?,Û>üˆQ?0’ô>ôk{?2ð³>êrç?5b>ÞÉÑ?7×q>Ô$R?9G9>ÈOn?:`p>¸@=?:·>§°?;Nw>—Ї?:· >…:]?9Gc>]??4¡_>G|û?1@>34ç?-ˆ">’¤?)#-> ¤³?#ºœ=áè?ôO=¼ ?„Œ=¢Zz?¯Ï=ƒBF?¥=[@ >ù =8)>èúº=Â>ÖŽ=·,>º)Ÿ=§Æ>ªqº=·,>–Tç=ðØ>{üÃ=8)>MVú=ˆªÚ>wp=žM=é‹=¾Àr=¾I=äœb=ý >™Ñ=F>’¤=™†>1Ú¾<±º>Pô< ¹R>vÏê»cê÷>û¼%& >õ+ò> t>üDÓ>%4?¡‚>?•™?ƒ>[9Ü??³>wZÓ?T >‰£>þ>—'g>øMº>£ãº>ð °>¯ˆ=>åø >¹Ë>ÚXB>Âm>Ísš>É6!>¿›`>Íü8>±&Ï>С'>¢q>ÑI>“ÖØ>ÏR¼>…´9>Ëgž>pÄ>Åk˜>Xiá>½„d>Bò>³ãã>0äT>¨Æµ>"²˜>œrí>¶1>67>.$>d>=c>f§4>éÀ>Jºà>>/³1>* ·>:™>;(Ø=ýã%>OL+=ÔÕØ>f‹´=²P>€*~=—+ˆ>޼=„$>œwG=rþÅ>«-=oeÿ>¹ÇA=}rW>Çéã=Že>Õ;Û=¦U°>ái+=Åòx>ì%=ìtƒ>p¾X?7Jî=b—>)Å ——––••””““’’‘‘ŽŽ˜— q˜ q q rqrsrsststutuuvuvwvwxwxxyxyzyz{z{{|{||}|}~}~ ~ !~!!"€"€"#€##$‚$‚$%ƒ‚%„ƒ%…„%†…%‡†%ˆ‡%‰ˆ%Љ%89:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CD8DE8EF8FG8GH8HI78I7IJ7JK7KL7LM7MN7NO7OP7PQ67Q6QR56R5RS5ST45T4TU4U™34™3™V3VW23W2WX12X1XY01Y0YZ/0Z/Z[./[.[\-.\-\],-],]^+,^+^_*+_*_`*`a)*a)ab)bc()c(cd(de'(e'ef&'f&fš&šg%&g%gh%hiŠ%iŠijŠjkŠkl‹Šl‹lmŒ‹mŒmnŒnnooop>‹Á`¼šÓ>”Ëp¼rµ_>› ~¼ty> ‰;:4D>¤É¨C•= ”>¦ß“=–r¨>¦-‘>¡½>¨õš>Eš1>¯7¥>vF>µy¯>±k>¼m¸>¡aŽ>ÅwÌ>­å£>ÏŒÊ>¹¹>Þù>ÈQ×>ó\">Û÷?à >ëô™? is>øþ#?Ìó?gà?Á@?E;?0D?K?âE?!Y]?‰F?)Xk?%D?/At???4}?•7?7òƒ? t2?9¯‡? i¦?:ÐË?û?;@?©?:¤_>ø:+?7òƒ>ñËe?4¥>îª{?/óu>ïâ?+nn>ó/˜?'nâ>÷ˆ&?%,b>ÿà7?#È_?j$?#È_?!?!Z>þ|6?†S>õr&?"Q>êR?ÉS>ß1þ?ÔS>Ôè?êU>ÈñÔ?!Y]>½»?%Þc>¯é¤?+l>¢³?/šu>–áw?3}>Œse?5Ü>‚·S?7™…>lfu?8¤†>TÂJ?8ý>=u?8x>(Aõ?6Ž‚>õÝ?3Æ~> ¿ò?/óu=é›,?&éf=é›,?65ƒ=ä '?8¤†=Г?:aŠ=´ÂÇ?;Š=˜ò?:aŠ=Ôâ?8ý‡=Xä˜?5Ü=Mć?2by=Mć>ä"=[«ë>Ûr=zDÈ>Õ‡ë=“b”>Ò æ=±úÊ>Ï÷ã=Ó[ >ЩÔ=ô»C>Õ‡ë>´>Û÷>E»>â > ½>é²=úKU?ëH>µ¶?{S>Í? NY>Þ¬?"z£>3b?#o^>II?$!f>_âZ?#o^>p9i?"!ª>&’?",>Š]^?eM>‘}Í?DN>› ~?B>§¾ ?P6>´®? ˆ5>ÁKÂ? r1>ÍÛ? À1>ÚSõ? g1>æ&? 4>ð”? }5>úP/?“8?!?¿??¢?:7>ýÊ4? g1>ö$%?;*>ë¶? >áGÿ>ûÆ2>Ôè>ð¦>ÁKÂ>áZ>´Ç­>Õ‡ë>¢³>À«Å>—“y>²­>×g>¡aŽ>‡•\>”+s>‚Q>„ßY>}‘>tâ>v"ˆ>ZvZ>mÊs>0¾>h:o>%Ò>da=éãC>da=ºšå>bªc=‚ú„>da=!ÔS>ižsp’v:Âek>Þ”¼F5# `b b bc c cd de ef f fg gh hi ij jk kl lm mn no op pq qr r rs s st tu uv vw wx x`aab  !!""##$$%%&-./-/0-01-12-23-34-45-56-67-78-89,-9+,9*+9)*99:;9;<9<=9=>9>?9?@9@A9AB9BC9CD9DE9EF9FG)9R)RS)ST)TU)UV)VW)WX()X(XY(YZ(Z[([\(\](]^(^_(_`'(`&'`&`9GH9HI9IJ9JK9KL9LM9MN9NO9OP9PQ9QR>úul>!ã¨>þÁø>9Áø?X¬>Rk6?°>kCó>ýW>×È>ø"”>Š>ðº¦>˜o>çN>¢B>Ü>ªÅ>>Ï_>±Âí>Átt>·ù>²®³>ºˆ>£kW>¼J>” —>»µ¿>„í_>¹bç>lå÷>µ.o>Qíb>¯2Ä>9šð>§•³>$ˆ>ž‡+>9j>”@J>D>‰Ü=ûf>z%Y=óHÚ>a|#=õ0§>H£l>Xù>07Ö> Áô>ÓP>‘Ê> V>,k=ÞÆl>BÖô=¼¹ª>\H(= Ã >x,=‹’Ð>ŠÔá={\ã>š7=nÛ/>©xú=qï”>¸–/=‚C>Ç=“>ÔŒà=«Ÿ>à¶=Éwü>ë?=í²>óæÙ> fÊ>Ô‡Ê>ôu’>ÜI´>úÒ´>â‡a?ú·>ç“?Øe>éãh?ê>êÓR? ô>éãh?Aà>ç“?S>â‡a?1.>ÜI´?Â>Ô‡Ê?ñ>Ër™?"¨Ô>ÁCa?$Ø‹>¶:U?&r|>ªœþ?'l>ž´™?'Àš>’Ì7?'l>‡.à?&r|>xK¡?$Ø‹>cí1?"¨Ô>QÂÏ?ñ>B??Â>5Ü?1.>,ŸD?S>' ”?Aà>%+Æ? ô>' ”?ê>,ŸD?Øe>5Ü?ú·>B?>úÒ´>QÂÏ>ôu’>cí1>ï'>xK¡>ꦴ>‡.à>çrÖ>’Ì7>å~´>ž´™>äÖ›>ªœþ>å~´>¶:U>çrÖ>ÁCa>ꦴ>Ër™>ï'>Ÿ%¼„eë>¶DA¼^t*>Íl†»Ôq>â˜W;è—c>ñúU<¦¦?Ö‡=1FÂ?Èö=‚û]? j–=²žM?¢==ÜK¸?[>â™?«â>0¤š?UA>S ?”>p(‡?ƒ>ƒý?[><`?µ“>œwÚ? >©ˆþ? Ç>³Ÿ÷?#x>¸êò?Ø>ÀÛt>úiÒ>Å} >î>Ëqr>ßò×>Ð>é6>Ô L>÷oã>Û'ø?ëÑ>äkL?#x>î‚G? rV>úk? Ã&?Ïa? –ç? ÁÎ? Ô?´>? ·?ùl?!†?"B{?ê?(à6>ù?.Ô˜>ìQ?2÷/>Ýöº?6·>Ét?9j–>º<‚?:½T>¨_b?;f´>“3i?;>z¼"?9j–>Wá?6Å>7?í?3v6>nu?0'W>ï´?+Úi=Üñ€?%<ª=º‰ü?ó›=¨Š?ª=šÈ ?¶/=•}? m=šÈ ?&=¥^>ýƒ=½/>òz…=ÚKö>ç;+>¤µ>Þ¡N>б>Ö°Ì>/Ok>Ð>}ó>ÊÈ=ôÂø>Àð=¿Õ>º=´=2>®Tø=Pÿ>ŸÆ¹=!\!>“4ž<øžw>ƒý<ÎF>d?Ä<ØÜU>D}Ê=A¼>'  =%T3>ý¹=b1é=Å$Ñ=žÀ”=ŒçÍ=Í|=Fr¹=ü³m<ø±˜>§<ŽÕ«>1ôî;¾?6>Nh»‰ì³>vÃÛ¼4ü>‹Bê¼^t*PQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\&P&%P%$P$#P#"P"!P! P PPPP'&\'\]']]^^^__```aaabbbccddeeeffff f f f f f fg gh hi ij jk kl lm mn n( ((OOONNNMMMLLKKKJJIIIHHGGGFFF‰‰ŠŠ‹‹ŒŒŽŽ‘‘’’““””•••–––——˜˜˜™™™šš›››œœœPnopnpqnqrnrsnstntunuvnvwnwxnxynyznz4n43n32n21n10n0/n/.n.-n-,n,+n+*n*)n)(z{|z|}z}~z~z€z€z‚z‚ƒzƒ„z„…z…†z†?z?>z>=z=<z<;z;:z:9z98z87z76z65z54†‡ˆ†ˆ‰†‰F†FE†ED†DC†CB†BA†A@†@?>â½—>¿ëŠ>ê¶k>ËEž>ðÂa>ײ@>ô»^>äã>öˆR>ò„ç>öç? õ>ó~À?áµ>î»\? Z(>çñÇ?a€>ßLÆ?ÑÃ>ÕÛ?ˆ¢>ÉTä?!hi>¼Œu?$X¬>®ú(?&Fç> óˆ?'&è>’Ñ ?&ó/>„ë¸?%­>o6c?#\s>VfË? >@û?Ü”>,ž#?Ü>¬?/ƒ>”•? ù5>¢¢?`Î>³>û¼>݉>íbÂ> Ø>ßáC>¢Ÿ>Òð^>"5É>Æá©>3Æ>¼+>H¢>²“i>_o>ªÓØ>yg>¤óR>Š„>¡Þ>˜ >ŸVÚ>¦;¢>Ÿ¾D>´ ô>¢J>Áq{>¦ëÇ>ÍÙF>­„ž>Ù .>µë…>Ž~¼‘>>¢ü°¼váß>¶Ã¼ˆ]>É/J;u”l>ÜÊ…<®>íZ€=;¤>øØ·=‹•?…™=Ìhx?ê>™1? øý>!²z?Æ >Gäå?Ÿ>hÜ?Âë>ˆö!? >¢¦Ò?Ê>¸I? §>Í>L?Æ…>æAð?Ö>û7"?¸?Ã;? ©ª?ÕI? D´?±8?؈?${$>ú2Ù?*:A>î´¦?/¢Ð>Ý Î?4´Ù>Ì:d?7êñ>¼Q?9Æá>©¿g?;!>—~}?;!>…ê¤?:sò>h­‘?8l¾>D+½?5aì>+Õ4?2>$ƒ?-ò$=û¸Ã?)ã·=À:u?"f=•¢ƒ?­£=i?Å=C)? w„=(G?±3="µ¢>ôth=(G>Þ%=C)>Í>L=nmœ>¾^»=—ª7>¯+=ÂîÈ> ŸŸ=öP,>•!h>ÊY>±>'Æ¿>†îé>@U>‚^§>]…Ù>{ón>zAm>u‡J>‹S9>rÒþ>—~}>r%à>©U>t-!>º¦.>y•—>Æ$d>€ÙD>× (>ˆI>ä“>eé>ì­l>—SÚ>ö$k> ŸŸ>ÿ›j>°,=>þî\>›ä>ü:>‡›þ>ù…Å>p²>ô7>JB¶>íZ€>(u.>äep> µù>Ö^=ÑÐþ>Ì:=®©Q>Àç=<á>±Ü@=k¾¨>¥°ü=Vz>™…±=IðÂ>‡ñØ=P³Õ>w(=fV&>W¼=€°|>=i =–R½>'Æ¿=±]’>~¥=ßVe>õž=çsO>)!@=úa >2—è> jY>3òh> XQ>2B>0;t>*%>?A>T>I•¿> »ë>Qi=öRˆ>S¹µ=Ñ"í>PXe=¢{^>GŽj=~¥ø>8Xe=^3ð>' =OV>É=Wr-=à‘=}Qr=­O=•£ä=€°|=¸Ÿ=5¨ÿ=×â$<ñ Œ>êÐç6;›@->6¦V»P·=>_6’¼a?Ö()*(*+(+,(,-(-.(./(/0(01(12(23(3m(mn(no(op(pq(qr(rs(st(tu(uvwxywyzwz{w{|w|}w}~w~w€w€w‚w‚ƒwƒ„w„…w…†w†‡vw‡v‡ˆvˆ‰v‰ŠvŠ‹v‹ŒvŒvŽ(vŽ34535636737838939:3:;3;<3<=3=>3>?3?@3@33333e3ef3fg3gh3hi3ij3jk3kl3lm@AB@BC@CD@DE@EF@FG@GH@HI@IJ@JK@KL@L@@@ @ @ @ @ @ @@LMNLNOLOPLPQLQRLRSLSTLTULUVLVWLWXLXYLYLLLLLLLLLLYZ[Y[\Y\]Y]^Y^_Y_`Y`aYabYbcYcdYdeYe$Y$#Y#"Y"!Y! Y YYYYYeee'e'&e&%e%$>9àƒ>©±®>A`>¬K×>GøŽ>¯sö>M~ô>³<>QÐÜ>·Ÿ>TÓ>»jÚ>Vr¿>¿è¼>V¥y>Äy>Uj>ÈþÑ>RÈE>Í]½>Nк>Ñz(>Iœh>Õ:;>CL(>؆.><Æ>ÛI]>3üå>Ýr_>+^`>Þóv>"b£>ßÃJ>B>ßܦ>6l>ß>ò>x¡>Ýî=þ¥>ÛòC=ï>ÙX=âOf>Ö/þ=×Bµ>Ò¹=Ξ¯>ΈV=Èš$>Ê9=Å[>Å»5=Äõ >Á*ð=Çlz>¼¥=̰>¸F:=ÔŸ>´)Í=ßÍ>°iÆ=ë¨?>­À=ú1>ªZ—>#p>¨1> Áî>¦°x>½²>¥à«>Þ6>¥ÇQ>(éÕ>¦e>1§§>§µä>9àƒ»õÀv>A`»jº>GøŽ;u¥3>M~ô<1±Ô>QÐÜ<™.æ>TÓ<Þ"æ>Vr¿={>V¥y=7‚>Uj=[±>RÈE=~¨T>Nк=Åß>Iœh=žÆ7>CL(=«ö ><Æ=·Å>3üå=¿¦Î>+^`=Å«>"b£=Èê[>B=ÉOÎ>6l=ÆÙ>x¡=Á•h=þ¥=¹¦`=ï=¯=Ÿ=âOf=¢A=×Bµ=”=Ξ¯=ƒþ =Èš$=eƒB=Å[=A”:=Äõ ="=Çlz<ñÇ=̰<«Ø¼=ÔŸ#p¼*ã¤> Áî¼[>½²¼u>Þ6¼x+«>(éÕ¼du`>1§§¼:X÷  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>' d½o™£>ºâ½±um>Æé½Ö¨¬>éj½îÖ4>±½þ¦d>¹÷¾¸J>#Q°½î×Ç>Fª1½ü3>T› ½0£ú>\„Þ¼eðö>0X6¼é¬6>YBÛ=-SH>.|»JÏ1>NÌ=•ç2>8·"=·a‰>-=Š×>• =ÆC4=þg=»=ÚÅ´=›|š=ʳ=l™Œ=Ëà¬=)ð=ØåÅMñ»JÏ1>9€²>ªê>A¾>¬ž>G˜¾>¯Æ6>M$>³h{>Qq >·mÛ>TsN>»½>Vï>À:û>VE©>ÄË>>U F>ÉQ >Rhu>ͯö>Npé>ÑÌd>I<ž>ÕŒ{>BìX>ØØp>;§õ>Û›>3>ÝÄ¢>*þ>ßE²>"Ó>à‚>âB>à.ß>Öœ>ß‘.>Ñ>Þ@E=ýÀ>ÜD†=î¿ì>ÙªS=áÅ>Ö‚==Öƒ">Òßõ=Íß>ÎÚ•=ÇÚƒ>Ê‹S=Ä›t>Æ t=Ä6>Á}2=ƬÛ>¼÷_=Ëðf>¸˜w=Óß{>´| =ÞH->°¼=êèŸ>­oü=ùq~>ª¬×>à>¨ƒÎ> b>§´>]á>¦2î>~e>¦>(Š>¦·B>1GÖ>¨$            !!""##$$%%&&''(())**++,,--..//00112233445566778899::;;<<==>>?=v5>>ƒ×Ê>ÓêØ=eýh>ÓêØ>"Ø> n>’’>Õx>à µ>Õx?îÈ=v5>>¡Li=³æ>22Å? V>22Å? V>|ü=³æ>|ü=³æ>¢£™? V>¢£™? V>ÈE=³æ>ÈE>Ý­>¡²4={Â?ËX={³>ä|Õ>´ûž>’Û¡=qnz>lŽ=qiå=UEÈ>ݬ›>„ï>wA/>,Òv>ƒð>/|¤>Ž# >>¾>à¹>hq>>‹’:>•åŽ>˜´µ>¡’k>¢ëú>³¹>­#>>ÈùÖ>µäã>ä´l>Á‘Æ>üßÇ>Óg?b=>èÐ9? 3…?Âu?ù(?RÊ?FR?"`Ì>ù"í?+6ê>ä´l?2‚ù>Êox?7žš>­?K?:‰Ñ>?;D >tUÿ?:‰Ñ>T:š?94>.šÀ?6ãÌ>-\?3=Å=Ü#û?."%=ž}5?'>ø=YÍ?Ï@= #?—ü<ú? ÖX=¹W?°= #>÷‘I=Zsq>ëäi=›í1>ã"Ã=ó}´>ÝLR>"Ië>ÞïÃ>:™£>äï+>K&õ>ïT'>M¶ù?€>Eô†?úš>13þ?ë>¢?ðn>Ví?°>Ví>ýg·=í§E?Yâ=ÖMŒ? ‰=áúi?Ý.>Û¬?½ú> ¢? ë>:PÉ?#½!>aŠ¢?&¼Ø>‚ì¨?'é>†™4?'âÙ>¡§÷?'Î]>»×^?%`~>ÍZ¬? ÿª>Ù‰?nl>à÷•?¹‚>ä´l? `¹>ã>Ð?Yâ>ß«>ø´õ>Ó1>ëäi>»×^>ÞÁñ>©Yw>Ôáx>˜ÐÉ>ÊSl>‡M{>¾¦>qjÁ>²ù¬>\ü@>§LÐ>H·>•É‚>?Ì>„F0>B·P>bš›>H·>B)>bÒ >.§>†­’»ÁŸ<>‰Í’ºÛYX>ŒŒî;c ‘>ŽÚE<©Ú>§ <‚r>‘çû<»çó>’•+<÷Ë´>’ªO=RI>’&â=8xû>‘$=Uœj>g=q’>;ß=…Š>Ššp=ÿ½>‡“C=™5>„9e= he>€¢=¥ký>yÇ”=¨ µ>r,t=¨u>>j¢¼=¦g”>cYä=¢Ž>\ã=›h>V?Ý=’»f>PÁ=ˆ5½>L&†=x1­>HŒÌ=]c%>F ð=@¨)>D°¬="¶K>D†j=IÜ>E=<ÌF>G¾º<‘ÿq>K <6^A>OcQ;¤»¡>T¦)¹±»Ï>Z´ˆ»žnë>ah6¼Ò¢>h–ÿ¼0ïâ>pz¼F•>w®¼I9e>8?¼8Ì>ƒ@޼´g>Ì:?:ð=Ü6T?›Ü      ;;;<<<==>>??@@AABBCCDDEEFFGGG        5 56 67 78 89 9: :;..//00112233445  !!""##$$%%**++qq,,--.%&'%'(%(p%p)%)*HIJHJKHKLHLMHMNHNOHOPHPQHQRHRSHSTHTUHUVHVWHWXHXYHYZHZ[H[\H\]H]^H^_H_`H`aHabHbcHcdHdeHefHfgHghHhiHijHjkHklHlmHmnHno? õ>ã–?‡>ã–?¸½=ÄW*>ü[è=žò¦>ïë¨=cnr>â‰ò=lÜ>ÒÑò<ª1è>¿˜{<;0x>¤¸9<Ëÿ>àv–0<ˆ>VeZ<ðÂÆ>,ÛY=M·Ž> #Z=šEö=ÖÖÏ=å=›!‘>!ÌS=r¶®>RYA=V«5>€‹y=d=Š>œS`=‡a>³õÃ=­ÓÝ>ÊŠ =î5ƒ>áˆP>|„>ïþ>:á>ühœ>gHy?àà>‡©?̸>µ`?÷ß>³é?bJ>ÇÆ€?¡”>Û£ï? $>êÔÃ>øç/>÷¯W>îbæ?Úˆ>Þã?ñˆ>Ñ,W? GÐ>Ã&ž? „>°tP? „>ží2? Ý_>Ž‘2??>{ã\?›@>Y\!?„?>=P¯>÷¯W>#›–>í+>éO>àP„>Nk>Ñ£=÷Á{>Çp=þdb>ÁîÉ>˜½>á{¦>ÇÓ0>Èñ¥>ÇÓ0>ÁîÉ>ªœ™>¿˜{>¶L >ºëð>Áûu>¶?a>ÈþU>¬æ:>Ð.>žà‚>ÒWy>‹ê¦>Ñ–V>v\~>ÊŠ >]ïO>ÄQÃ>?š>¸¢R>(.Ë>¬¯`>ù> > Í>Œ:ë>Ê6>nd²> z>KVo> ªƒ>+%w>V>éO>1‡î=÷Á{>K==× t>iž½=Ë”!>†š=ÍŠU>•CÍ=Þº†>žÃ¬>eÛ>©dË>,ôÀ>«”S>éO>®qÄ=ñlÚ>¶?a=Ò\Ò>¿˜{=ý8>ÍáÏ=Á,Ï>ÜÏ=Ëmü>é©¡=à<¶>ùDÌ>W±?>K¸? »š>:úk? Òš>WÖ?g}>s˜H?Ì>”hé?ƒt>¯ª? a>ËTœ? Òš>Þî…?jB>ñƒÃ?¯d>ühœ>ïX?7%>ÙM¥? yM>ÁîÉ? e'>¬æ:?%Ý>—Ý¥?»q>w¤|?J>R?ç? Þ>64}?p>&3?KM=ÖÖÏ>õe¿=£lz>ç`=|Ë>Ø/,=1F¢>Å|å<ò_é>±Ÿu<§–Â>–¿4<§–Â>¶Ÿ<ºH÷>^¶<ò_é>3÷ ='íb>?“=V«5=îhP=º/=±¤ß=ÈÑ=`iè> z<ó*>(.Ë;àÎ >R?ç¼:¼”>r÷缺ٰ>Œ.;¼òðž>  §½Ñl>µ5½Ñl>Â2]¼ÿ™Ä>Ö÷^¼Ÿ¶ß>êÔû©>ü[è<¨ac?Æe=D^q? =½3>¢aò>Å|å>®`>Ã&ž>²¡>¾½“>·j€>µ å>¹ÀÇ>¨FR>¹C>–{¬>µ5>„ é>®8>_×ë>§€>AýK>ž<†>':>”\6>éO>‰>ã–>u:S>Nk>c–e>së>X >äq>NÛJ>)Ê\>HæÄ>M¬²>M 6>{\N>Z=4>”hé>mv²>¦w>ƒ²¸>·º·>¯¤>ÀÐS>•‡^>ÄQÃ>‚?†>Ç\>ÁÈ> »?)>† k./0.01–.1–12–23–3‚–‚ƒ–ƒ„–„…–…†–†H-–H-HI-IJ-JK-KL-LM,-M,MN,NO+,O+OP*+P*PQ*QR)*R)RS()S(ST(T—'(—'—U&'U&UV%&V%VW$%W#$W#WX"#X"XY!"Y!YZ !Z Z[ [[\\\]]]]^^___```aaabbbccdddeeefffggghhhiijjjkkkllmmmnnooopppqqr r rs s st t tu uv v vw wx x xy yyzzzz{{||||}34535636737~3~3€3€3‚78979:7:;7;<7<=7=>7>?7?@7@‘7‘’7’“7“”7”~@AB@BC@CD@DE@E‹@‹Œ@Œ@Ž@Ž@@‘EFGEGHEH‡E‡ˆEˆ‰E‰•E•ŠEŠ‹H†‡?I…Ö: ?N¸·:ÉîÌ?Sq,;ÖM?UGä<ÿÒ£?T¸i=QÕ=?Q­û=‡¢­?L3R=“'»?5úö=’ƒ,?1qB=î (>ô*1?3Õœ>íô?7þ’>äS4?9ê>Ø¥?:ßÝ>ÍšË?:î>Ã4Z?9o;>¼|?7Z¿>¶¹?3ƒ´=óÞ=–ýÊ=1ï×=•¸ˆ<À®=ƒ'·µgU>²>¬;"l<>»4oÀRÌ<ÛûY>ÀS'==Yø>½ô=éR>²¹,=•·Z> n=•hÇ>`—=–L×>pw=õ·<>ÎR>|u{>–d”>„x ?Šž>„ ø? g>~²¨? ž>pž-?3Ï=æ[? r=”?Ä?HR=“È\?ׯ=“'F>ø*8=ô>ï y=‚„>éqí=B{³>éHj<¦77>ôT3:Ç&>þây>¨Éÿ>«ØF>¨òî>¤*1>¨òî> öþ>¬Éø>Ó†Z?"ßÝ?¸ð>®¦?g>©–Å>ëÂù;ïÛ>è>(=ô[     555667711&&''(()))**++,,--..99//880445!!""##$%&1$%1$12$23$334 !=~ƒ¡9ºbg>í”[:€ˆQ>þÜ ;›\? ¡:<';?Þª=D?:Ò=K²X?"ó#=ŽÎí?'¿ð=ºT ?,Œ½=õ5Q?/¿ð>Þ?1ýc>8 L?2¡:>a?1ýc>~q³?1 >†æî?/¿ð>Ž•?-‚€>˜.œ?+E> €‡?(µµ>¨Òs?%‚€>¯8Ù?!«u>µŸ@?Ôk>»aÏ?ýc>¿Ü°?«—>Ä£?xB>ÉvJ? YŒ>ÍMT?>ÑÈ6?‚€>׊Å?YŒ>ܦ?‚€>ãä?!«u>ê½ø?$:Ò>óä?&Ê.>ü©}?(cÇ?Åb?) ? ‡ò?)YŒ?œk?(cÇ?^ü?&Ê.?°è?$Þª?!ÙÝ?!«u?&¦¬?0”?+Åb?:Ü?/Åf?¡:?3!‹??5î]??8@D>þ82?9‡ò>îÜ ?:}´>Û¨Ö?:Ï =[½?:Ï =(¿Â?:}´=˜¾?9‡ò<ÄÊÕ?7_ <‘—¢?3Åb<‡Z2?/îX<›Õ?,i9<Þc"?(}–=/28?&ø–> =8?&ø–>2ô?&¦¬>pe?#Åb>!?ø–>!=ð™>¸=Ä‘}>[ê=ž+=ûp&=“í¦='‚-=“í¦<Ì{=Œãz<T”=eLUv ÿ>{ð>v ®>§aÌ>z„¸>®½û>…æG>´ûi>–Š>¸.œ>áki>¸.œ>ñki>¶æî>þ82>´W’?Œ½>±$_? ž>¬¦?xB>£³»?E>™vJ?Ê.>8Ù?µµ>„ûi?ýc>h¯#?«u>DØ?cÇ>+>€?ýk>R¾?µå=óI±? ü=ÅÙ?‚€=ª÷ä>üð„=™ _>æŠ=‰°6>Ìð„=„‘}> #»=„‘}>“úÅ=Œ?“>‰O=šSü>~ÿÁ=¼ãj>x™[=åÙ(>wQ­>ñÈ6>wQ­?sw>z„`?îX>ki?#!‹>†Š?%^ü>‹,ó?'‡ú>˜#Ì?)!>â³?)6>ðÇ?(@D>ÿ.5?&»(?Ê.?#s|? ü?Ï¢?µÂ?}´?µµ?°è?«u?@D?«u? ‡ò?cÇ?Ï ?xB>ü©}? èæ>ôW’?cÇ>íMT?Þª>çŠÅ>þ82>âl >ôžœ>Þ•>äžœ>Ú”ÿ>ÔuÁ>ØÒf>ÀÇ>ØÒs>l(>ØÒs>ƒVë>Ú½ø>~ÿÁ>ß8Ù>y= >åŸM\\]]^^__``aabbFF>>??@@AABBCCDDE      SSTTUUVVWWXXYYZZ[[\  !!""##$$%%&&''ssttuuvvwwxxyyzzz{{||}fghrs'qr'q'(q()pq)p)*op*o*+no+n+,mn,m,-m-.lm.kl.jk.j./j/0j01ij1i12i23i34i45hi5h56h67h78fh8f89ef9e9:de:d:;cd;c;<€c<€<=€=~=}~H}JJKKLLMMNNOOPPQQRRS=>F=FG=GH=H~IJ}I}H>­o^¼ŠóŸ>¸Œ.¼€~>ÅŸ¼W&>Ò ˆ¼zÄ>áºÀ¹¿+$>ì×< s¬>÷véYZ?‰z>9§;?Â>„U?‰ò>Žøq?™ >”ð?M×>•þï? a´>•W¼? [ª>‘¿S?eÙ>ŠZ?<]>g-?:ç> ll?>åø>ý¬=øó·>öÏd=Þϧ>ìƒ7=Áe]>ã2Ü=«Ó=>Ø=•™ª>Í Ò=…Aê>è=tJ…>¹3…=lr<>®µ=iÔû>¢ùå=tJ…>™Ó=y…'>g•=„šª>‚JÂ=”Jè>oª‘=©5Û>Ypø=Ã[>C7Q=çö²>28h>Hï>)¸Ì>jS>!9É>1k>×K>6¨>>LáÓ=ÿ%>ay=õ÷ >vcé=ê2–>‡Çk=æîf>”\Â=á´]>¤Šz=ßô>²D©=ßô>½a}=äQ¬>ˬ=æï>Ù}6=î.>åk7=ûÚ>òT8>ÓH>þé†> 4?éI>tþ? >êË?·k>,ýª?£x>:‚?…>EÔ­?{–>Ypø?÷>i!%?!±U>z ?#û>‡…ƒ?%ñ>‘úý?'“j>œpr?(Žl>¦åï?(â>·äØ?(â>Æí¸?'ç>лÞ?&˜f>Û1S?$¢_>å¦Í?! ü>ëˆÞ?ÀJ>ðB?v˜>ô¯ª?Þ5>÷ôc?@×>ý/?YÆ?NÚ? "?²z?$?×I?®‹?×I>ß_K?&$>Ø«?tª>ÔBw?>Ñ¥? V¿>ÐVj?›p>ÐVj?3Õ>ÒóÊ?’w>× ¦?sŽ>Þ·ñ?Ç9>æ ?Ç9?/Ø?á$?4‘\?§|?7.¸?Û@?9·+?ê!?:Ü? ¥k?;/­? ?:Ü?Ó5?9xk?þ?6ïô? û?3é? û?#û?/ñ?)‰p>ÿ%*?,zx>ùC?/¿1>ïtï?3é>æõ©?5#Æ>Ýø»?7C¨>ÓY6?8åþ>ÊÙÂ?:4®>Á²ú?:Ü>µîÏ?;ƒ[>¬È?;×>¤H?<Ú>›É"?;˜G>“ñ?;ƒ[>‹q?:Ü>£k?9R>rGô?8>¤>cæg?7—M>WÎ$?6Ï>?K:?3é>+®ü?0Ü> Ù?-`™>ë’?*Z¡>Šc?'?À=á´]?#S±=ÂSë?qš=¢ó€?ã2=r;?=C*?†¦=T…?ý9<érË>ôñ”<µ'Ÿ>äš<‹Qx>Ó›$<€Ûî>Ä’=±V<€Ûî>ž¨e< ˆnÁ<Ô‡ý>lB]=#Éï>:”W=]P">ù1=›X=â»ú=ÂSë=³«U=ì)¿=„šª>:ž=+#>,ýª<Î1>M¬Ç< s¬>s–¨»‰t>g•¼W&>ɼ€~?í¦>U Þ  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgegh=…:ŹCm¨>¶XL¹Cm¨>ÌÔ8¹Cm¨>ãP':Œ·>þtË;ð’? ¡l<–Ç?ªã=iä?²”=f€}?"Ìæ=œ]d?*‚\=ß,¶?/¦> #U?5n>6@j?9HÔ>c8P?<,ß>…†A?=È>šÒ?>lx>¯GØ?>¾´>Ç ®?=È>ÚR\?<>éÏ?:‘½>ù̧?7ÿê?î?5ß? ¬È?1å—?½Î?/?6?*0!?©‹?%^·?#h?!Ö9?&ú"?Í?+'?OW?/ø??3? lí?5(?[ê?7[¾>õñZ?9I>å=†?:?Ë>Õ."?:’=uæÿ?:’=eo?9í<ÖIM?8Rp<˜±?6Ö<_¬?2Ü‘<_¬?/×<˜±?+Ë<õA?)9¾=-óù?(C =ûn†?(C >þ1?'ðÒ>!±?&å¥>é!?"=h>Ö?¼->Ö>þ>=ìÕ>iz=»3E>k=¤á>Úâ=™Ë›=LÉÈ=™Ë›=+=”§ø<ÁºÆ=…<ÿ<_¬=Qñð~2P>Þ>~2P?<ú>~2P?©‹>?!„F>„<Ë?#h>ˆ‡?%_>‘º[?&§ç>¡É·?'ž›>ÌÔ8?'ž›>Ù­T?'L_>ä™?&§ç>ð͸?%±;>û¹r?#Ãß?÷ ?!Ö?Èx?òr? ì?ið?½„?êÂ?<´?Ç?i©? ¬È?ò+?›Ì?!Ö9>û”?$Ï>목?%^·>ÞÑŠ?&Uf>Ð ?&§¢>Â|?&§¢>±Ù¨?&,>¢n¼?$ºC>à+?"z¬>v}÷?– >V_1?²”><¬ú?*>$C³?¡’>þ?t›=þš? £1=Üšñ?Èx=Åz‰?¤Ô=±~>ö¾.=™&s>Ó@Ä=’º¿>ŸÜ]=‘qÁ>¶K=—7ü>†*)=©6‚>ªø=Âè°>{9=×wK    accddeeffgghhii>>445566778899::;;<<=abbc               T TU UV VW WX XY YZ Z[ [\ \] ]^ ^_ _` `a  !!""##$$%%&&''(())**++,,--..EEFFGGHHIIJJKKLLMMNNOOPPQQRRSST34>23>12>1>?1?@01@/0@/@A./A.AB.BC.CD.DE=tLá:Éy?Í:Éy? Yb;{-?#’¸;Å Ì?&'wP<?) ½>‹ÆÚ?(7>’9‰?&Ì>—b?%ï>š›u?"í«>/¸? «ì>ÔË?¢>žyÝ?ƒ_>ÔË?ï>›@„?Rg>—b?µ¾>ïg?«>Š|µ?¾$>ƒdñ?«>\;V?µ¾>$ÇY?c5>0?ï×=ä÷·?ß·=ÀÜ? õ=­ƒè? Ç÷=¤} ?‡=š+ð>šûô=š+ð>ª×=ŸT}>ˆHñ=©¥™>‚{X=»³…>}Þm=Ûñ>z¥—>0>z¥—>¬P>~ƒÿ>¯=¥>‚R>³Á4>ˆî>¶Um>µkÎ>¶Um>¿¼î>µ E>Æ/>²w>Ëý9>­Nq>ΑW>¥?>Ï6Ž>^Ï >ÐüÉ>RA>Ó>J>LÁ©>Ú,Å>G™>ßúa>G™>ç!>HãA>î)æ>Qê6>ñcj>[–=>óRv>nIG>ñcB>u½>í„×>¦6±>í[[>Úš”>ït>ê>ò­`>üø>ôœ”?Uò>óÎ`? #•>ð¾/?§>ìd.?ýx>åÈ?…{>Þ -?Ø>Öól?…{>Ѐ*?&µ>Íp†?P:>Íìp>í$N>Ì¢N>è Ó>ʳ>ãxF>Æ‚3>Þô®>Â( >Ü72>»Þ>ÚqK>µkÎ>ÙÌ<>q~>ÙÌ<>„jŒ>Û]>Î>ÞôÉ>{JË>äž>{Jt?wÒ>€µ?",ú>…´†?$Z,>Œ'`?%zø>–x}?&]ï>¢¸Ë?&îY>êð?&îY>û´\?&›Ò?§Ì?%¤6?ØÂ?$¬ž? dŸ?"½f? øê?„ ?:¨?ø+?×T?2ò?×T>ì??)Ü>äY?k™>Ü`…?÷{>×Ý?Í>Ö’ã? Yb>×Ý?#~&>Ûä¬?%m3>âü_?%¿¦>쨈?%ï>ýè?%ï?32?$#:?6¥ð?"4?8üP?´N?:Fm? ?:˜ö?÷{?:ë=dÓ9?:ë=!Ãð?:˜ö<Ò Æ?9:;<`7?6|ª<6Æ?3fJø?'“j>Qí?%¤6>ÄŸ?"½f>í,?Þû>v?_>v=ßÏY>íƒ=Â&->Ír=§µ¯>Jø=•d=JJ=•d<Ò Æ=в:<”%+=n´†?=?@=@A=AB=BC=CD=DEstu=q™þ9xa¦>¿°é9xa¦>Ã+Ù:›å>ÈÊt<æ>Ì¥°<ÓëÀ>Ì\T=Ncé>Èñ,=„ýÒ>Žì=ƒ©>¿—=”ùm>šÍÔ=•Ÿo>މ=”ú7>‚è7=ž½> ä=ªê1>{,é=ÒNœ>z6>‡Ó>z6>«Úá>~½>¯C>‚é>³š@>ˆº>¶/L>µF6>¶/L>¿š¡>´äÃ>Æl>²O¥>ËÞë>­%k>ÎsÙ>¥o>Îs“>[ÂG>Ó"Q>LAÉ>Ú >G•>ßâ†>G•>æü’>Hb>îš>Ql>ñQ+>[0>ó@Ø>mÔA>ñQ>>>íqR>¦ _>íGÐ>Ú€/>ïa1>êzÈ>ò›>üŽŽ>ô‹b?Q->ó¼î? ©>ð«¾?¥›>ìPV?üÂ>å±þ?…D>Ýò­?×ë>ÖØ¡?…D>ÐcM?& >ÍR±?N>ÍÎÀ>íå>Ì„3>èŠö>Ê”[>ã`¼>Æb$>ÞÛ²>Â>ÜU>»ºú>ÚVÛ>µF6>Ù±–>>ú>Ù±–>„5 >Úü#>`T>ÞÛÊ>zÛŠ>ä«>zÛ9?z~>€~y?"0ß>…?$^À>‹ôt?%ë>–HÛ?&c&>¢%?&óÃ>êÜû¥q?&¡ ?¢8?%©4?Ô„?$±O? aŠ?"Áv? ö¨?‡?9?ú ?ÖS?2¡?ÖS>ìj¡?(ö>ä?kr>ÜF­?øu>×Á¾?Ð >Öw-? ]>×Á¾?#‚Ù>Ûʵ?%r‚>âä°?%Å>ì“ô?%‡H>ýÙ?%‡H?3Š­?$("?6°k?"8L?9“?·É?:R?"®?:¤º?øu?:÷^=b[?:÷^=!†x?:RË<Û¬n?8ó›<‹tX?6 °µš?'™ > ¿q?%©4>4;?"Áv>^v?áÌ>ó–?M>ó–=Þ“¬>^Æ=ÀàÛ><Å=¦gè>µš=“¯†=wÒ=“¯†<ÌLY=‰[<ŽQ=kùƒ<^¨—=E<Þ<^¨—= lU<˜¥Î<’ŽÙ<õÜ;Ö\-=$ ´; z hhiijjkkllmmnnooppq   !!!"""###$$%%&&''((0222334455566677889FGHFHIFIJFJKFKLFLMFMNFNOFOPEFPEPQEQRERSESTETUEUVDEVCDVBCVABV@AV@VW@WX?@X?XY?YZ?Z[?[\?\]>?]>]^>^`=>`=`a<=a<ab;<b;bc:;c:cd9:d9de9eefffggh0112()*(*+(+,(,-(-.(./(/0^_`>­h:¼†{ >¾ t¼mí¯>Èx¼5 >Ñ »øX6>Þ_Ⱥω@>ìÂ<< @}>ù3ª<Äzž?Ò=%?>Ò=geþ?;×=•õ? Å=¯Ðá?z"<¥tt? rZ<¾”? D»%¬Í?–j¼%‡™?ļØE?ªè»¥”¯?@Ò;οì?Þ†<¥tt?Þ†=/Ï^?æM=ÁêW?@Ò>l”Î?9 >…Íé?„>€?¿h>—AÞ?#MŒ>š}B?'Óç>š}B?3ÉG>š}B?6_3>ž^$?7üã>£‰ø?8¢_>«ñ4?7ª(>³ ~?5fù>¸ÞÏ?1†>¼¿±?,­>¾ ¦>ϪÎ>¾ ¦>Ãb³>½e,>¾ÜS>º)Ä>ºUý>´Xv>¹ >«ñ4>¹ >¤Ôí>» ò>ŸŸ>½9>™×È>ôƒ'>™×È>üDè>˜ŒÓ?e >”«í?V>ŽÚ¢?¡ >†sd?™>>vìv?F„>cˆ?óÅ>Nع?ûŽ>;tX?°™>$/ ?e >Ÿ>ûŸp=ýb|>óݬ=Ö™º>ìÁf=¼¾ƒ>ã5=¢ãP>Ú=“_Ä>ϪÎ=ƒÜH>ÅS#=x5>·À=mÝn>® Ü=mÝn>­a⼈OJ>® =m]^>¢ÆK=qX2>™¢e={½{>:Ò=…´W>‚!†=•_š>o^­=ªCî>Y,!=ÄaR>Bù‡=èðâ>1ÿþ>ÀJ>)ƒ>Þn>!Æ>¢>¨Ê>7>âû>MBÊ=þËg>aÓ‰=õ©/>v·¾=éèt>‡íV=æ¥Q>”~¸=álÚ>¤§P=ÞÐH>²])=ÞÐH>½vv=ä m>Ë,N=æ¥ò>Ù‰H=íÒÉ>åsƒ=ûŠO>òXm>©Ý>þé¼> pa?çZ>Eº? Š>¸,?²a>,Æç?/>9Õ›?ˆ>E–?rÓ>Y,!? >h×Z?!¦œ>yÐã?#ï”>‡Z ?%äþ>‘ÌÉ?'†Õ>œ>í?(ˆ>¦±?(Õ>·ªŸ?(Õ>Æ®½?'Úd>ÐyÇ?&Œ>Úëó?$–·>å^? ÿw>ë>T?¶~>ïÐG?mˆ>ôb:?ÖE>÷¥ç?9½>üÞ÷?T9?&>? B?‰o? Ø?­Þ?®D?­Þ>ßi}?üO>Ø2?Jk>ÔP4?æõ>ѳ¢? *¤>Ðe_?nN>Ðe_?>Óî?cn>×?Cî>ÞÂY?—~>æ—ù?—~?/à?±³?4€§?xn?71?¬Â?9¤Ù?¼’?:ÉR? xè?;ã? Ü[?:ÉR?¨7?9f.?ñ‹?6Þ€?ö×?2ó²?ö×?#ï”?½?)|<>þÔi?,lV>øô-?/°>ï)&?2ó²>æ¬?5ä>ݲz?72>ÓP?8Óë>Ê™‹?:"/>Áu¬?:ÉR>µµ8?;pw>¬‘R?;Ä>¤‘?;íË>›—Ð?;…Y>“Â0?;pw>‹Ek?:ÉR>zd?9{ >qûF?8,Æ>cžI?7…¥>W‰Ú?6 >?¬?2ó²>+x¤?0”>nö?-R.>¾S?*M)>a­?'3D=álÚ?#Hq=Âr?h8=¢¿ë?Û’=qîg? @=Bì¯?ƒâ=$?üˆ<é(ã>ôôö<´î9>䢕<‹%->Ó©<€³ >Ĥñ±¶<€³ >žÇ<  °>ˆ”~<ÔD >l™e=#–*>:û=] $>kŠ=šêA=ã·Ø=Âr=´¶ =ëß =…´W> ó=-e>>,Æç<Òþ€>Mk©<d‘>sI‰»ji>:Ò¼LÅv>œæ¼vü?@A?AB?BC?CD?DE?EF?FGMNOOPQSTUVWXXYZ\]^[\^rstrturuvrvwrwxrxyryzrz{r{|r|}r}~r~r€r€r‚r‚ƒrƒ„r„‡qr‡q‡ˆqˆ‰q‰ŠpqŠpŠ‹op‹o‹ŒnoŒnŒnŽmnŽlmŽlŽklkk‘jk‘j‘’j’“ij“i“”hi”h”•h•–h–—h—˜gh˜g˜™g™šfgšfš›f›œefœeœeždeždžŸcdŸcŸ bc b ¡ab¡a¡¢`a¢`¢£_`£_£¤_¤¥^_¥[^¥[¥¦[¦§[§¨Z[¨Z¨©Z©ªXZªXª«X«¬VX¬V¬­V­®UV®U®¯SU¯S¯°RS°R°±QR±Q±²OQ²MO²M²³LM³L³´L´µKLµJKµJµ¶IJ¶I¶·HI·GH·G·¸?G¸„…†„†‡         99::;;<<==>    !!""##$$%%&&''(())))+++, 2 23 34 45 56 67 78 89,--..//00112)*+>ø÷f¹Ÿ¶?HÌ,¹Ÿ¶?L};cSø?Mó<ß?P†‘<¢^š?Q}×=??Q+m=G®X?Oá²=v Ÿ?M §=‡çŸ?K 7=’Ú?Fò#=’ÙZ?2”V=’3{?/®=Ÿ<?/2—=±¸?-mn=ù?Ø?-ü>*þ$?-ü?]Y?-mn?„E?-–j?àY?/ m?$É?2© ?'Ø„?Iq ?'¯K?L©_?(¦–?N—õ?*BÀ?P†‘?-Í?Q}×?1XC?P†‘?55t?NÒ?8é{?Jé?:š<?G0?;C>ôu`?:ì§>ì?7?9õ`>邪?7Èé>æJ]?55t>ä[À?1ª³>åš?-Í>è´á?*x>ñãe?'Øk? ç›?'Øs?4â?'ÃÝ?iÓ?&¸?ªÖ?$$‰?¢#? ™È?™q?¹?×T?:‰?>P?Éå?>P>Ø:š>z¢É>Ø:š>z¢É?Á.>}6ɶ?ý >.‘?#-<>„¹B?%Õ:>ˆ–F?'3…>‚Þ?'¯>• ÷?'è>»$??'¯>ÀÆê?) >ÄÍd?,ƒÈ>Æ»ó?0³f>ÄÍd?5‡ä>¿¦t?8À4>¶¢S?:®Ì>®C?;<=VHÇ?;<=uµ?: ï<Þ|Î?8À4<ª÷?6Ñ ~¬?(­> ”^?'\Û>»D?%À±>+ê?"ÚÐ>¿]? GX>œŠ?ÅM>æJ?ža>æJ> ^e>RÑ=ì^}>u=Ã'$>ì=¢Nï>·$=”ÈÞ= =”ÈÞ<¿“9=ˆ« ǹŸ¶>¸ô;cSø>¿—;íPe>ä<±>Æ<ÿã>ÄÍd==`†>ÂÞÊ=f—Ï>¾\½=‡çŸ>·G:=’5r>Š2®=’5r>…°¨=œƒE>ƒÂ=¦Ñ>‚xU=»lÎ>~€=Õ/d>{ì‚=ù?Ø>z¢É>õë>{ì‚>²àx?>P>²àx?>P>%×>?™q>}?¢#=Ítð?ù=©d–?rƒ=”ÈÞ>ò†Ê=”ÈÞ>êÌc=Š{ >奀=f—Ï>ã =3²>ã <ê@>æJ]<ƒu>í_Ú;šáÎ ssttuuvvwwxxyyz  !!""##$'''((()++,,--..nnooppqqrrs)**+$%%&&'78979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE7EF7FG67G6GI56I5IJ45J4JK34K3KL23L2LM12M1MN01N0NO/0O/OP./m.mn/PQ/QR/RSTUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcdTdfSTfSfg/SmGHISghShiSijSjkSklSlmdef>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:>޼W1>iõ¼W1>ªÂܼ^š>¹q{»ç¬‚>È ;ž€>Ø$cç}Ø=Œa>òÖB=SK>üØé=‘°W?Âó=¼fo?ÃÂ=ç—?o&>éV? o±> ïÏ? Î>;¡¤? >VS€? p}>m>? p}?W_?V?Ø?Æ0?Zœ?Æt? \;?#?#²t?qÖ?%]’?ÇÎ?'°?"v$?'°?&!Ê?'³‡?)"˜?)^¦?*͹?+´›?,xÖ?.µi?,ÎA?3 é?+x’?6b$?(w¿?9 †?$Ì?:c9?!ËL?;>¾È??;>¹qL?:x˜>´‹?8âÔ>°§?6·‘>®?4a™>¬Ãj?1`Í>­n>?/`C>®Ãï?,´ß>²Å?*^ê>¸Ê?(^a>ºÇ,?'³‡>Â~?'°>Þ&?'°>á|=?&³D>å}M?%²ÿ>ç}Ø?#™>ê);?„>êÔ?u>ë~ì?b>ì)Â>}’>ë~ì>fWÆ>ê);>Pü¼>ç}Ø>/žn>á|=>–ë>Ü%y>ç6>Óxy=Ùó>Ì!)=Á½@>ÄÉÚ=¬b>ºQ=—>ªÂÜ=„Wm> Z=xªf>”=xªf>†U=xªf>ukì=¬>]e€=ŒY†>B³¤=Ÿ B>,ì=·¯>S0=Ï+>¥¡=éÈ>MÍ=üw¨=ýB¶> ês=í>\>Dm=ßåy>0ô=Ý:>BN=ÚŽ§>TýË=âá>g­z=ò•;>y{>L°>„…ä>Q>‹2Y>©û>Ý¿>,ì>3i>4>3i>9[Ã>2ä>0ï>‰1Õ>*­1>Ú‚>)Wv>v\>,ì>k®‘>2¯Q>a>:±w>ZT‰>H b>RRi>V¹>NQS>eg™>NQS>qjÕ>Pü¼>yÂ…>Uþ >„ Í>_«T>‡d >i(>Šl>v\>ŒºÊ>‚…Y>e«>Ї‚>Œô>•ßá>ˆà>â>„ Í>¤Ž€>~ÃÍ>¨—>t7>­æX>eg™>°‘¶>Zº>³=>I`>µ=§>4>µè~>©û>µè~> Oí>´’Í=ýB¶>²’B=çç‹>°‘¶=ÇÞø>¬£=²ƒõ>§ä½=(Ð>¤Ž€=‡ÍÍ>Ÿ7¹=o’ó>›6©=OŠ>•5=$Ô%>Ý¿=y>ˆ†ú<ô<8>Ú‚<É…ð>v\<©}Í>^U¦<©}Í>NQS<žÐ0>>M <©}Í>0ô<¹}>™<Ô3”> ês=ËŸ=÷ ä=&Å=Ùó=?†=±¸í=j ¤˜¨å;\ š>,ì»O¶>D X¼ 0{>]e€¼^š>uk켄©>†U¼W1 ::;;<<==>>??@@AABBCCDDEEFFGHHIJUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiTUiTijTjkSTkSklSlmSmnSnoSopSpqSqrSrsSstRStRtuRuvQRvQvwQwxPQxPxyPyzPz{P{|P|}P}~OP~O~O€O€O‚O‚ƒNOƒNƒ„MN„M„…M…†M†‡LM‡L‡ˆLˆ‰L‰ŠKLŠJKŠJŠ‹J‹ŒJŒHJFHFŽFŽFF‘  !!""##$$%%&&''(())**++---...///000111223334445566778899:+,-=mþ¹¹d–î>¬Ò³¹d–î>µ)ç:‡¨Ö>¼8œ;>À¶RÃëŽ<¬¹­>Æ|Š=ŽŠ>Ç É=(|C>Å4 =Liù>ÃGR=pWò>À¶R=…Ö>¾%V=DÃ>¹a=”fÃ>Œ¾e=”fÃ>ˆäî=™ˆÃ>… t=«>‚zt=½vx>€º=ÜBV>Òð=ýŸ>{ù|>Wn>{ù|>‰ÔR>~Šy>­É>¼ÜØ>Á¥¶>À>Ã’w>ÁþÐ>Âî4?,‘=½vx?"ñ=¦]ž?~°=–÷±>õR~=–÷±>îCÌ=‘ÕÃ>éÆ=‚oç>åì•=V­÷>ä¤=(|C>åHY=ŽŠ>æÛ<¶ý¨>êjR< ¬~>ð0‰;hQ>÷ã{¹d–î?Mlú¹d–î?QFx:‡¨Ö?Rá;hQ?Ur< ¬~?W ª<¢u«?W°é<þÙ?W^Ë=-ža?Vº‘=V­÷?VO=pWò?T{°=‡‘æ?Q˜’=‘ÕÃ?Nµ{=–÷±?@ê0=–÷±?<¾–=™ˆÃ?:-›=žª°?6ø`=³2œ?4D=ÌÜl>ë²Ì>ÛO>êjR>Ýà>è}•>ã‚>êjR>æÛù?4gb?'eé?7J€?(®f?:-›?(®f?LȽ?(®f?O«Ø?*I?Q˜’?,‡ä?Rá?0=?Rá?2òW?Q˜’?5ƒV?O«Ø?8O?MÚ?: ?J7À?:¥K?GT¥?:÷i>òÁ‚?:÷i>ë‘?:¥K>æÛ?9\Ñ>â?7p>ÞÝã?4Œø>ÞÝã?1ûø>ÞÝã?/à>ánß?+‘‚>åHY?)öæ>ç5?(®f? ©Ã?(®f?:Á?(\K?ƒ=?'¸ ?Õ^?&k?'|?$Ôí?ƒ=?"è0>}Aú>½Ì<>}Aú?ìÁ>Òð?W>Ö„g1?$‚Ï>‰‰*?&Á®>Žç?(\K>•¹Ø?)…>ºN?)>Á1¦?)ÍÕ>Å4 ?+‘‚>ÆÎ¼?-Ðb>Ç ¡?0a\>Æ|²?3m‡>ÃGR?6'>¿m×?8fp>·ºß?: >°¬-?:¥K>¬\?; ú=Jà?:÷i=›N?:S*<ÆÓ3?8fp<Ãz?6ËÓ<}ï…?4:ØÊ>?(\K> Ÿ?'eé> œ?%'>? ûv>M“?+˜> Þ?[Ã> Þ> ¤y>M“=é6>t=˜x> œ=¦]ž> )=–÷±=?Ìâ=–÷±=›N=‘ÕÃ<¿i=ƒ¸o<‰;~=V­÷?=?@=@A=AB=BC=CD=DE=EF=FG=GH=HI=IJ=JK=KL=LM<=M<MN<NO<OP;<P;PR;WWWXXXY_`a_ab_bc_cd_de_ef_fg_gh_hi_ij_jk_kl_lm_mn_no_op_pq_qr_rs_su^_u^uv]^v]vw\]w\wx[\x[xyZ[yZyzZz{YZ{Y{|Y||}}}~~€45012;RS;ST;TU;UV;VWPQRstu=‚êȹù~Ü?&¹ù~Ü?! ):MÐÙ?$Ú‰;•®?'o¥<[t›?)²<À]™?*W_=þï?*W_>v"7?*WJ>‹4ø?)_w>‘©¹?(ê>–Óé?&ÊY>šH?$5E>œ£b?!òÍ>Hª?]³>íï?È™>Hª?3>š³?–P>–Óé?ù#>_)?SÞ>‰êh?8>‚Ðc?SÞ>[«?ù#>#?¦{>Ìd?2«=âG?!‘=¾Ñ?V™=ªÁ? Ž=¡·¿?PW=—cN>T¹=—cN>“U=œ>Š›¿=¦áï>„ÌJ=¸õ¡>?=Ù=|>D,>Ìd>éL?K>ƒ{?"s>‡7¯?$Ô¨>0ˆ?&›&>–ßr?'¼`>¤ÁK?'å°>À1~?'¼[=vW?:ÇØ=32j?:u6<åAÙ?9?]<’›®?6Wœ<{ì*?2ß7=üJv?'¼>> Ä,?'iš>Î?%yÇ>BÇ?"’ >lô?²d>!?âë>!=Ý>mE=¿jQ>KC=¤ño> Ä,=’9=#³Ç=’9<ôÄŽ=‡ä½<¶Ê=i <—Í=BP•<—Í= €O<Á‰<Œ·”= ;¿&=8\«:¹„>Åa=?)¾>ǘ ?-A>È%ï?1Ör>Ç8k?5aq>Ä´¯?7½>ÀÐd?9»ó>¸ê?;o !!"";;<<==>>??@@AABBCCD      ()E(EF(FG(GH(HI'(I'IJ'JK'K*'*+'+,',-'-.'./'/0'01'12'23&'3&34%&4%45$%5$56#$6#67"#7"78"89"9:":;?& §ºj[S?mícºj[S?q39ÅT3?uz;½>O?vb?w[Õ=v°?v‹Ï=ˆ¶¥?tC=•U?q3=•¸»?[cÁ=–_R?Y™Ì=¡n?X#0=¯ã?W|ª=¾³E?V‚ã=ÐéŸ?U_w=îÕx?T\>ó?T\?´?Tâ ?b?V/¥? Á?WÏî?$ûÖ?Yp7?'B¡?\ C?(¨?rzú?(¨?u?)6*?xZ?+|ø?yò?-®ô?y¢ ?0±?y%Ë?3K!?w¯?5å/?vÐ?7ع?sñ­?:4]?q-õ?;I?n“ç?;I?4°3?;I?2¼©?:Æ?.Õ•?9%Â?,;ˆ?68o?*Gü?1V>ýg-=Ø·½>©~ê?/·O>¦>X?3žb>¡ ›Ö#?8=>”û?:rÈ>ŒàT?:Æ=bËê?:Æ=)Žº?:†<õsd?8Ò{<ËÒ·?7…x?w?(¨> Z©?'•á>|å?&œ$>£ù?$UW>Þ?!»F>x?'q> r#?Nó> Å"=ÿ¾„>7¿=ÛQË>Pú=¸2>޾=Ÿz’>s=•U=9*ú=•U=Š,=Þ@<·`=€Aî<‚ùD=Vã¦>Xºj[S>°¦”:××Ã>·'´;²×ù>¼[ÎÀBß<è Õ>¿œ_=-B>>½U=^±a>·÷à=Šª)>²š=•U>ŠFF=•U>‡‰=ž-•>‚$š=²WT>hÒ=Ètû>zˆ=èT>wí÷> á‰>qlÍ?%¢X>r¹Ô?'é+>z4¢?'¿{>Ü:ø<òr>àÈŽåü­;?-<>íÊÕ»a¤>õ˜ÿ»š.>ýg-»ÃÐ9?Gg»a¤?{…9ÅT3? hÑ<݇? V!<üÚ+?Oè=Lzà?<~^?$UR?=Ëc?'B¡??l?'B¡?@0?&HÚ?>¥>`f?=$à=ã ?<Ñ =Æg?;1W=§H±?9=Ê=šF|?# U=—¬`? Ù‰=D5?9A=€Aî?ì9=\"?Ÿ2="ÙÏ?Ÿ2<è Õ?˜ù<Š` ? Ù‰;²×ù uuvvwwxxyyzz{{||}}~  !!""##$$$%%&&''(())))pppqqqrrrssttu*+,*,-*-.*./*/0*0b*bc*cd*de*ef*fg*gh*hi*ij)*j)jk)kl)lm)mn)no)op01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A0Aa0abBCDFGHFHIFIJFJKFKLFLMFMNFNOFOPFPQFQRFRSFSTFTUFUVFVWFWXFXZEFZEZ[DE[D[\BD\B\]AB_A_`A`aB]^B^_XYZ?¼3–E?±e¼ À©?IÄ»XU—?":É;ŽØ ?$„{<ŒLY?&&Ó<ôâk?'ÉD=.¼a?(î==v£¾?)Ôd=¶&?)¿1?uË?*º3? +?+ Ý? Hâ?,°:?$ÜC?/ôë?( ô?2åò?)o ?C=q?)o ?F.w?*ø?I ¥?-1Ä?I}?0ô?HËÓ?48º?G}#?7)Ã?DßË?9Ê?BBm?:nv?>ª?;Ê>÷úÝ?;Ê>ï{r?;Ê>êÚ?:D¨>å?8x>áë?6‚s>ßËL?3‘c>ßËL?0ô>áú?.V®>ã9…?+e«>æü?*j¦>êjù?)Ø8?7?)ÃK? 03?)EÎ? dÚ?(5æ?íH?&~™?ãc?$4ê?…Ñ?!‚¦?,ú?ÿ0?,ú?¿{?,ú=¨lU>›Ïú?48º>—<œ?7)Ã>“Î.?9^”>޽+?;Ê=Sú?;Ê=Ÿ²?:ì<Ôù‚?9I¯< ±6?6ë "A?(ÈI>ú[?&ÒF>5 ?$4ê>oÊ?!Cã> &?«„>[Í?uË>[Í>”">¾q=öÝ>!=ÒB>?Š=®õ©>I=¨lU>=˜¼'=ÊÌ=˜¼'<ì‚ =“s<°`5=†nÛ<‹Æh=yB.®ÄÓ: ´ú>µN8;ŽØ >»0D¾tö<«¬q>ÁR=æŸ>ÁR=C§T>¾tö=m}>»×ž=†n¨>¸’ë=–Ö>±b+=›Y‹>ˆ3Æ=›Y‹>„ï= ”P>€Ù=©ƒ>{|=º„>x7=ÅÖ|>tóO=ç,ó>s¤¨=þµ->s¤¨?%×C?="=]Ìê?Ú~=æŸ?wÙ<£Óå?7<0Û? ²:ì³?íH»é¬6?Ф¼«½   !!# # #$ $ $% % %& & &' **++,,--..//eeffgghhiijjkkl '( () )*!"#/01/12/23/34/45/56/67/78/89/9:/:;/;</<=/=>/>?/?@/@A/AeGHIGIJGJKGKLGLMGMNGNOGOPGPQGQRGRSGSTGTUGUVGVWGWXGXYGYZGZ[G[\FG^EF^E^_DE_D_`CD`C`aBCaBabABcAcdAdeBbcG\]G]^>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;ŸaUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.Æ=tǰºCeE>°Ý¯ºCeE>·À9TV.>¼Z´;G¥±>¿—!;à±>Âý3ÆÐ<Ÿ’l>È*S=¾/>È*S=,üƒ>Ç[V=Vh¢>Å“Á=z¦õ>ÃÌ)=ˆT>Àf=’ F>»ÞQ=œd4>·V†=žúø>Š®K=žúø>‡›'=¤(p>…Vý=­Ý >‚–ú=“Ž>€ù=âJ'>~ë>ž>~ë>ž/>ž³> ÅÀ>…€Ð>¢¶Í>‹Sø>£\}>â³d>£\}>í´>¤§Ú>öí>¥$>ÿ6>¥ó-?üÌ>§gë?óy>©Xû? ‚»>¬•s? ¿)>®3£?=>²?9?EC>·l©?æ>»%_?£˜>¾ð?c¸>Ã?út>È@€?!|‹>Íê9?#/z>ÓA%?% u>Ù¹ý?&kÔ>à2Ø?( >ç÷?)‘>îoç?)Ui>ò÷±?*Mî>ú6?*óœ?’å?+?ÇØ?+? …?+Fx?1À?*we?êp?)¨??£?(Ä?Ãa?'&>?!º?%^¥?!Iq?#Õ?$3?!ä?&ÉÂ?MN?)³X? e?+¤f?Å€?-•p?C?/¯î?ùÐ?2Âî?¨¼?4Š? _?6{¢? 7^?7ˆÝ?@?8ªÒ?f4?9ö2>ô©?:Ú>éÑé?;,Ó=jlÃ?;,Ó=,K ?:Ùû=?:œ<ä{?8èî<²æí?7J¹<“Ö?5¬€<~@B?3»sLî?'ÂK> s†?&ÉÂ>7»?$Ø´>w?"©†>¯à? £Á>û:?º.>Fš?#p>Fš=ñÒ>¯à=ÕXr>!=ºÏS>¾1=¤(p> ·=žúÆ=!ð=žúø= :@=œd4<Ñ÷Õ=’ F<‰{4=z¦²|Ä‹>Ъh>|Ä‹?И>[R?!œH>‚Dc?$…ß>‡qÞ?'š>ê²?(gù>•®ê?)`€>Ý…æ?)`€>è Q?) ­>ò„?(gü>úø ?'˜ß?â ?&ÉÂ?Œ?$Ø´?µG?#:€?»?!°ÿ? ê;?«;? .?Á§?Äà?2c?½d?›¦?Å?²?J?È?¦ø? Œ?ùÐ? üÌ?ùÐ?")?å*?úu??{>û8(?[š>ò÷±?=>ì~×?Äà>æÿ? €÷>ß(? >Ú_°?S~>Õ×ß?™>Ò›u?xð>Ð.#>ÿü¨>ÍDŒ>øµ>Ë*>ï¥>Èæ4>æ•>ÇGð>ßv÷>Æ¢C>Ó*õ>Å©Æ>ÄH5>Å©Æ>ŒLj>Å©Í>ƒÀ>ÆOs>[R>Éb|>~ë>Ë|î ]]^^__``aabbccddeeffggh  !!""###$$%%&&''(())**++‹‹ŒŒŽŽ‘‘‘’’’““””••iiz{|Š‹+Š+,‰Š,‰,-ˆ‰-ˆ-.ˆ./‡ˆ/‡/0†‡0†01…†1…12…23…34„…4„45„56„67ƒ„7ƒ78‚ƒ8‚89‚9:‚::;;<€<€<=€=~=~=>~>?}~?}?@|}@|@Az|AzAByzByBCyCDxyDwxDwDEvwEuvEtuEstErsEqrEqEFqFGqGHqHIpqIpIJpJKpKLpLMopMoMNoNOnoOnOPnPQnQRmnRmRSlmSlSTklTkTUjkUjUVijViVWiWWXXYYZZ[[\\]>©žì=n©¤>˜õõ=yS8>Œ÷0=‡S.>‚ø8=—Qœ>sG³=§Oè>cIS=·NV>SJó=Ì¡j>A÷l=ïH>8£>£>(¤®> ù>û>+žñ>Q]>?ò>üÿ>Yï>>ýú>w—$=ûüÑ>‹Éë=óý¡>¡=ñS7>®q=î¨Ú>ÁË=ñS7>Ðm†=÷R>àÁ=>¨Ë>ñÚ>ý2>þ>7>ü>?óÜ>û‰? H‡>!ú³?2Æ>-ùm?2B>8£?1Ú>Eöý?†Õ>T !?>gHä?"Ûl>sG³?$0Ÿ>F{?%…Ï>„ø?&Û>Žöù?(05>–ö,?)0> õ!?*0>¨I·?*0>­ž?*Zª>µ­?*0>¼òC?)Ú¶>ÜA?)0>É›ž?(05>ÑEÄ?'ÿ>Øs?%0ƒ>ÜD?#ÛR>á™V?"pÐ>çn? d>ìB»?†¦>ðìí?Ü>>ôì…?1Ú>øì?‡t>üA?‡Â? X?ˆ? $? ˆ}?Ê¡?ˆã?u#?Þ´?ÊS>ý¢?Ê<>õ¿ ?tÓ>í¿ß? o>å? Ê>Øl¹? R>Ðm†? R>ÅÃö? tŸ>¹›? R>§Ç ? Ê>}? t»>’sç?_>‚uŠ?ÊR>qB\?ŸÏ>^îó?Jž>Kðã? >8òç? <>'ŸY>þ@ê>K\>úAN>¡Ð>ôAî=ÿFà>îí!=çI]>èC)=ÏKÛ>ã˜÷=¿M{>Üîõ=¬¤Ã>ÕÅ=œ¦">Í›:=Rd>ÆF¨=„¨Ñ>ºòw=sþ}>²óJ=n©¤>¬IR?;ØÞ>žJ¾?;ØÞ>”ö]?;.B>Š÷h?:ƒ©>Í`?:À>vœ‚?9Û>eó¶?7ƒ÷>QõÅ?5„/>@¢7?3/>4£o?1„™>%úK?//~>ûñ?,…> ý#?*0=÷üÇ?&°a=Þª{?#0·=ÉWG?Û½=±YÕ?Ü$=™\B?1ø=†³x?2[=]kÉ? 2þ=BÃê?ˆÉ=%r5?­=Èè>þhÐ<ðB >│<ÐE7>ãÀç<ªòR>ÓB<­w>ÄnÅ<¥žë>²p£<°HW>¢rC<Å›Á>”s²<å˜[>…ʇ<õ˜>}AE= t >c™3=(>K›£=:Ä >;Gð=Lì>-ž˜=`/>JÎ=€ >öß=޲¯>MÚ=¡[g=äžó=±YÕ=É÷=Ä~=´£è=áTÊ=”§=ùRY=n©¤> ý#=>®Ÿ>û¸=¼>&ú<Т>1ù A÷l<:õµ>P —; «q>_I¹žË2>pI»´…ä>€MÕ¼<§>ˆM¼Z6b>ö̼oˆ¹>› [¼Æ>¦tœ¼1>´÷¼1>¾ò¼Æ>Éq¼oŠG>Ï›¼/>Ù™»Ôˆƒ>嘿;¿Ë>ìmo< M>òì¼<’Ê>úëæ<èv?Êô=] ?ñ=IX3?ÊS=n©¤? 4²=‹Rë? t‡=œ¦U? ɲ=µN?sé=ßJ ?É=üœ‘?ÈÉ> ÷m?È•>õÆ?s>*IÃ?H]>;Gð?rÝ>Gœ?r®>Tð?]O>eCµ? >|ëä?!õ>Ƀ?!Ç>œrß?"Ù>§r?"œÃ>¯ðç?"r*>ºoÐ?"r*>ÃÄ.?"Ù>ÏU?!Ç>Þl?!õ>ëÀ? %>õ?"?]J>þ¾'?È?ˆã?”? ÝÅ?j?H?Èz?‡Â?sb?2?2?1¿?É1?1>? Œ?!Æ9? tO?$0Ÿ? ´¨?'ÿ?ˆ?)…e?u#?+Ú}? $?.Ú2>üA?1„™>ôAî?3Ù«>ímd?6.Ò>ãÃû?8B>Ù™þ?9ƒÅ>Îðo?:Øõ>Äñs?;ƒ>¹E?;ØÞ>ÃñO;iË>ÃñO½¥Ü>ěĽ¯¡+>ÆFT½Ñž>ÊEì½ððp>ÐES¾vÂ>ך ¾ E>ßCÕ¾tÝ>éBѾ´>ñ앾sâ>ý@¾ÉA?Ê—¾¿?ôÙ¾ð? ´€¾Ê%?´/¾Ë?ó½¾Ëý?óo½ñšj?î½ÙœÌ?ˆ`½¼J„?™½–ù?H3½h£Ö?™½$ªÚ?HQ¼Ü T?Ò¼œä?Hê¼b×±?ó£¼ ‹?óï»ðoi? ô<¼ ‹? ôa¼}~Ñ? IܼæµK? ŸC½¬? _8½]úD? ŸC½‘¤H?ʽ«¡²?õ ½ÁŸ€?ŸÃ½ÌHà?õz½Ñª>û@ö½Ñª>óìd½ÌHà>íìú½ÄIº>ç홽®ö”>䘢½ŒOo>䘢½x¢#>䘢<ãÆ„>à™=Àã¬>à™>)¿£>ßT>9¾>ÜoN>L¼>×ï@>YºÃ>Ô‹>ddq>Κå>lcr>ÉF>s z>ÄF­>xbN>½GW>|aÒ>µòÁ> ;>¯>€[Q>§É}>¶Ý>Ÿtë>~ [>˜ J>{ Å>“K¨>w >Ž!>r¸ >‡÷{>kQ>‚¢±>a¹ì>{›í>XºÇ>tò>N4>n_>Dgu>iH™>4i">gža>'>fHÎ>>fž6> m>gGó=ùˆ‚>jòz=׋ó>oò6=¾9@>z›¼= æó>ÃF·=†?>¼œ¼=qÖ)>´=a×¹>­Hþ=\ƒ>¦žÔ=a×V>Ÿõ=ln>—ÊÉ=”}>‘ ã=”=x>Œ¡=®:Ž>‰÷D=Ðâ>ˆ¢=ö3™>‰!ü>˜>Šöå>!Àl>ö~>0i¥>“ö<>=½›>™õ>E¼Ë>¡ôÉ>Jœ>§I–>K‘>¯HÃ>Jfð>·r¤>E#>¼Çm><->ÀœT>1¾Ú>ÃF·>%À>æÃ3½¦øUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÇÉÊÇÊËÇËÌÇÌÍÇÍÎÇÎÏÇÏÐÇÐÑÇÑïÇï(Ç(ðÇðñÇñòÇòóÇóôÇôõÇõöÇö÷Ç÷øÇøùÇùúÇúûÇûÇÇÇÇÇÇ'û&'û&ûü&üý&ýþ%&þ%þÿ$%ÿ$ÿ$#$###"#""!"! !                ÇÑÒÓÑÓÔÑÔÕÑÕÖÑÖ×Ñ×ØÑØÙÑÙÚÑÚÛÑÛÜÑÜÝÑÝÞÑÞßÑßèÑèéÑéêÑêëÑëìÑìíÑíîÑîïßàáßáâßâãßãäßäåßåæßæçßçè=Z7&¹·om>¯ݹ·om>¶i; „M>¼ZH;ë2H>À]ðÂïÀ<Àjn>ʼn=uY>ʼn=AÙ+>Äa÷=i¬½>ÁÐ*=‡wŸ>½õ=”õ,>¶º®=NÁ>ŠhT=œÄ>‡Æ= „ú>„v¬=«p‹>‚²i=¶\->€îv=Ã5>}¯s=ÜBŒ>|g£=õôk>|g£>¡‚>~ùv>¦2>‚²ü>ª É>†¨>¬ž>‹±:>­C>ØÆø>­C>à|R>­C>èÖ)>¬u~>îÇT>ª±E>ô=6>©ºž>ø@å>§Í9>þï>¤é1?‹>¢ÒÉ?èy> j ?1a>3Ó?ÕÑ>š¢ ?Ì{>–ÇW?Ã(>‘£Â?g>‹Û»? >†²?^I>€K®?^I=ób¦?°=×ó?º=¬?Tó=«p‹?ùg=™sû? ”ƒ=z`´? Ýl=AÙ+?Án= QÆ?œ<¡•?$—<3E’?ZÑ;˜ûD?~e:m,¿?<¯q:m,¿?@a;;6¶?Bɲ<JÜ?D·<™ÞÎ?E­³= QÆ?E­³=7’?E B=jõÝ?Cé=‡wl?Al7=–=æ?<ìÊ=ž—?(sX=ž—?$ÿG=¥¨‹?"«N=°”?!vè=½m? Ú=Ð å?u=扽?u>z*Û?"ì>‡3z?Ã>Zß?*V>šôI?ì>¢©¤?¿²>ª É?€">¯ÔÌ?®Ç>µœÓ? –n>¸Ó?§->»dÝ?èy>½¤j>ü”>¿??Tó>þ¬?>ÆôÝ?rõ>ʦq?A>ÏN½?Q}>ÔrV?‡º>Ù•ë? €P>߇?"Y>ãÝ?$[>êÄÚ?%£û>ïèr?'*†>÷Æî?(!>ÿ|S?(±?(»?)È?j3?(î·? éW?(œ~?hy?'Îå?çœ?&…ÿ?¸õ?%Q?œú?#¶¢?!òÿ?!´º?%?ž:?(Jï?‡º?*È'?ÿF?-¬+?ݯ?0Rˆ? ;?36‡?F%?5v? Vñ?6Ó?g³?81?Áœ?8ê >üD¹?9õB>ñÔp?:… >çB?:×X>Ýê?:×X=nÅ?:×X=E¨ß?:… =!¯À?9·“<ýúG?8þ•<³uÉ?6ü²<ží?5aŠ<Š^¹?2+N<ŒóX?0=õ<—=å?,cH<°î ?*È'<Âçq?)C<æßB?(6]=Dé?'?±=6>?&íw=üÿÞ?&íw>Ð×?&›A> ê«?%¤”>é?$2Ž>;š?!c> ‹?¦N>žJ?'->žJ>Ñt>Un=ðÐà>Ãù=Özˆ>©Î=±Üù>œ=Ÿài>Ç=œÄ=@…+=œÄ=hz=™sû<ûmŠ=‘¾¡<ÒPµ=Š 5<©4&=„"<€W=[‹&<\1Ú=<µ›{Ç>Ú:Y>{Ç?Ù>|gZ?Ïi>€!-? .Ä>ƒ.F?"E;>‡É?$„Ì>Œú#?&I>“Ã?'¦>™Ó?(t >¢ú€?)õ>­‰?)C>¼õ?)Ñv>Ñš?)Ñz>ß×á?)Ñz>ëgõ?)->óêé?(_|>ýÎ?'˜?˜C?%°?^I?"À? ð? .Ä? ý=?ºß?eõ?à0?þ?ðð?΄?];?÷¨? ûþ?÷¨?Øg?SN??H >ú?Án>ñþè? :÷>ì_õ? VÝ>çO?^]>à¦Ç?QI>ÜPº>ÿöF>ØM>õ¯>Õ»8>æèÑ>Ó)o>×ùƒ>Ñe,>Ê©>З£>…DÂ>З£>€!->Ñà†>{Ç>Ö ~ ‹‹ŒŒŽŽ‘‘’’““””••––—!"#'()')*'*+'+,',-'-.'./'/0'01'12'23'3B&'B&BC%&C%CD%DE%EF%FG%GH%HI%IJ%JK%KL%LM%MN$%N#$N#NO!#O !O OOOOOOOOOPPQQRRSSTTUUVVWWXXYY¹¹ºº»»¼¼½½¾¾¾¿¿¿ÀÀÀµ¶·¸¹Y¸YZ·¸Z·Z[·[\µ·\µ\]µ]^µ^_´µ_´_`´`a´ab³´b³bc³cd²³d²de²ef±²f±fg°±g°gh°hi¯°i®¯i®ij­®j­jk­kl­lm¬­m¬mn«¬n«no«opª«p©ªp©pq¨©q§¨q¦§q¥¦q¥qr¥rs¥st¤¥t¤tu¤uv¤vw¤wx¤xy¤yz¤z{£¤{¢£{¢{|¢|}¢}~¢~¡¢¡€ ¡€ €Ÿ Ÿ‚žŸ‚ž‚ƒžƒƒ„œ„œ„…›œ…›…†š›†™š†™†‡˜™‡˜‡ˆÀ˜ˆÀˆ‰À‰‰ŠŠ‹34535636737838939:3:;3;<3<=3=>3>?3?@3@A3AB=e ‰[<·Û¯>…\))Ì;µz5>6z·¹¤~Ð>A!Í»i”>OÇ»ô£@>]mȼ$íö>nͼdØr>€†I¼…\>‰Ø€¼‡¹Þ>‘ÕÔ¼‡ºª>›(¼‡¹Þ>¥O\¼z'#>®!ϼtÓ|>¶ts¼_†X>Á–¼øù>ɘá»i ®>ÑA;UÉ`>Û¿âe¤<·Û¯>èc§<í]>ï =Øž>ó Ä=6zs>ùÇ=fjU>ý±ã=ˆƒw?-=Ñ´?,=½Ç?f=Õ¾ñ?+‚=ð`É?ÕŸ> ð? € >%À? Ôñ>,? */>AmS? h>V»™? */>eaU? »>v°ç? ê™>ƒUÊ? *Ö>‰SË?k>>Q}?Ö]>–O€?A­>w¾?‚z>¤Ê­?˜>ªHÕ>ú]¨>¯ñ˜>ó Ä>µï™>ë i>»C#>á¿>¿ìF>×i:>Ãk>ÍAê>Åê,>¼Çm>É>c>fjÀ>×äG>Rql>Û8‚>?Ìö>ß7/>/ÒB>ã5Ö>×>è‰j>Û<>í²Y>Üí>ñÛ¢>‰ç>ø.Ò>àæ>þ‚=ý¶?ê*=ý¶?èÐ=ý¶? ’D>Œ?åÔ>‰ç?9¾> 2Í?£O>…?â>‚¯?á€>+Ó›? ‹I>9$€?"ŠŸ>GÊC?$‰ò>Vp?%ÞÕ>cÀñ?&Þ€>o¼ø?'ˆó>Û&?(3c>‰Ø€?(ˆœ>“Õ*?(ˆœ>œ|ó?(Ê>¤¤ñ?'žF>­Ì‚?&‰G>µ–?%‰Ÿ>¼„?$4¸>Âp{?"_ü>Çd? 6 >Ììí?Ì:>ÒØ? >×¾æ?9>Ü=%?:Æ>Ý? ‘›>Ý>ëÝ¥>Þfó>ãàK>âe¤>ß7/>è8ý>Û¸>ñµã>Ù9,>ø³Ñ>Úcp>ý±ã>Ý7Ù?í[>áàä?,Ö>é3Ý?,Ö?/1?--?3/º?ØF?5„K>ÿÄ?7.e>ü]?8x>÷³æ?8ƒQ>óµ6?8ƒK>ìbQ?7ØÙ>鸈?6Ù0>æd%?5Y¯>ãe>?1°,>㺌?-†ô>㺌?)ˆG>Ý?-†ô>Öiª?0[Z>Ïl;?3">ÇÃá?5/>¿?6Ù0>¹?8.>¯ËÙ?9‚õ>¦y?:-i>ž|G?:×Ù>”?:×Ù>ˆƒ™?:×Ù>€†I?:×Ù>m0?:‚Ÿ>Yâ?9‚õ>DÊÕ?8ƒQ>3З?7>'Ôî?6.¼>/ª?4Dµ>й?20=êvF?/1=Ð?,Ç1=·Ü{?)ˆG=Ÿäi?&4=?ò?"ßÓ=eý-4=ªž>õ/Ý=/ø©>ìˆ=Jš€>ãàK=rŒ½>ÚŽ=‘è÷>Òf=¯ß+>Éèí=Å-f>ÅêF=ßÏ0>À–¸=õi>½ìð>5Ê>º˜µ>Ú@>·îï>#ÖA>µE->6z·>±ðì>I.>¯Æü>veu>ªž >‹-^>§ôE>ªxK>¢ ³>¸Èï>Ÿöë>Án>M)>ÉÃ4>™øê>Ñ@ë>•úD>×¾„>‘Q!>ݼˆ>‹S<>á¿>‡þæ>ädú>€>ç¹5>q]U>鸈>` ×>êbþ>Qh>êbþ>>Ñ>éE>.s>çò>$f>ã> M>Þfó=ó ‘>Ùi=Õ¾ñ>Ól=½Ç>ˇ=¥Ï>ÃÁ=•Ôc>»j=ˆƒw>°vK=vdô>£ÏÕ=k¾>˜~F=fjU>‹X=fiï>|¸Ú=g¾ü>h¿ê=oº«>TÅÚ=ƒÙý>@Ì€=”$>,}Ž=©Í“>×¥=½L> Þ9=ݼK=ý¶>-¾=çÌ}>Ò.=Ò~E>*Ê6=Ë+w>?Ñ=Í*³>ü@=ÁØø>˜NÚ=¹ÜQ>›Í¼=¥ã2>¡KÖ=…B¢>¢ ³=UA¶>£õ˜=©>¢ ³<ÕkÈ>Ÿ¡µ<ŠÙó>šN*‘û”Ùþ?®ú      ÁÁÂÂÃÃÄÄÅÅÆÆÇÇÈÈÉÉÉÊÊËËÌÌÍÍÎÎÏÏÐÐÑÑÒÒÓÓÔÔÕÕÖÖ×רØÙÙÚ !!""##$$%%&&''(())**++,,--..//00112233445566²²³³´´µµ¶¶··¸¸¹¹ºº»»¼¼½½¾¾¿¿ÀÀÁ67868969:6:;@ABTUVZ[\`ab`bc`cd`de`ef`fg`gh`hi`ij`jk`kl`lm`mn`no`op`pq`qr`rv_`v_vwÛ_wÛwxÛxyÛyz^Ûz^z{]^{]{|]|}]}~\]~\~Z\Z€YZ€Y€XYX‚X‚ƒXƒ„WX„W„…W…†VW†V†‡V‡ˆTVˆTˆ‰T‰ŠSTŠSŠ‹S‹ŒRSŒRŒQRQŽPQŽPŽOPONON‘MN‘M‘’M’“LM“KL“K“”JK”J”•J•–J–—IJ—HI—H—˜H˜™H™šGHšGš›FG›F›œEFœEœDEDžDžŸCDŸCŸ C ¡BC¡B¡¢@B¢@¢£@£¤?@¤?¤¥?¥¦>?¦>¦§=>§=§¨<=¨<¨©;<©;©ª6;ª6ª«6«¬6¬­6­®6®¯6¯°6°±6±²rstrturuv>ðÅT:_P]>ö‡Ó;[«">ý@;òñ$?hüî,=™kv>øsU=›VÉ>ÌJÊ=›VÉ>É»{= uq>ƈL=­B>ÄœÊ=·k>ÂÙô=Æ7›> x=Ó¨>Àî¥=ï,ß>À!ö>òc>¾ÚO>~Mk>¿~>òXÅ>ÀÅÊ? U&>±O?}ú>Ãøù? 6;>ÇÏö?#»Q>Ìî¡?&î{>ÓøÎ?(Ùû>ÜJ¥?)}Ò?CÔ?)}Ò?vþ?)+å? XA?(ˆ? •«?'@h?vê?$±??!}è?>è¿??bj>âüÁ?>Þ/þ?ç‚>Úªí?vÔ>×wÀ?X>ÖÓé?çn>ÖÓé?bV>×w¹? Z>Ø¿n?!ûØ>ÛNÀ?$9l>ÞÓÈ?%/>äDk?%/?5¦¨?$‹.?6îR?"ñ˜?8‡ê?l?:ÅT?•?;>=Méã?;>=$ôa?:si<ú‹Ò?9+À<ºŽ+?7’(<›Ö`?5ø•êªÄ<‡[Ä>âüÁ<ºŽ+>Ü–k<÷þN>Ø”=*<>ÕŒB=bd>ÕŒB=Zó>Ö0=¦ô8>ÙcB=³Àô>ÝI=Ädî>äDø=Ãë?äP=ÍZN?"Å‘=áÔú?%Tè=øÞô?'’R> )?)+å>ßÛ?*!§>ed7?*!§>pé4?)ϼ>€"š?(Ùû>…AE?'@h>‰¼?$±>ŒKr?"!»>Ž6ð?î>ŽÚË?»f>~ž?}ú>ÆF>ýÝÅ>ÆF>h‹>~ž=ú>Ž6ð=Ó¨>ŒKr=º¶>‰¼=ª²À>ƒ~==œžw>-Ò=›VÉ>!Ô=–8>˜-=†Ü >y{=o>Z×=K)_> dß='R¸>¢…<üº¶>Á)< ’Í>¶Ñ<P">*ƒŠ;[«" ZZ[[\\]]^^__``aabbccdde$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23$34$45#$5"#5!"5 !5 55667788999::;;;;MMMNNNOOOPPPQQQRRRSSTTTUUVVWWXXYYZ;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF;FG;GH;HI;IJ;JK;KL;LM>É׼O¡é>Ϙ4¼O¡é>ÝÔA¼* >æˆí¼gõ>óBÅ»¨È¬>ûÌå9Ö^F?ìo;ã»Ç?å<ƒòÔ?PŠ=¡Â?Î==7?c=mp?]¶=–Þ†?`=®ûL? ú=Ï!¦?!f=÷Q‹?#Â>À±?$i±>/ç ?%jä>L–?%À >fÓ1?%À ?ý?&Y?ÐÕ?'‹?Ø?(n}?#ˆF?+V?&áœ?-tx?(ŽB?;…??(ŽB?>ˆÓ?)9º?@5|?*æd?B7å?,èÉ?BãZ?/ìa?C9?2š=?BbÍ?5È·?@5|?8K²?=‡ ?:N?9Ø•?:ùŽ>é·W?:ùŽ>ä[Ÿ?:N>à”?9Í>ÜQÞ?86D>Øø¶?6Ÿ >ÖöQ?4œ¢>ÖJÝ?1™ >ÖJÝ?.ë/>ØMA?+ç•>ÜR ?)å2>ä‡i?(£´?ñ;?(ŽB? ôÒ?(8ˆ? v¿?&vu? ¸9?#Þ? ùœ?ƒ{?Ïü?|M?PŠ?r¶?PŠ>zë?úÎ>Ui? ùœ>6™­? Í–>Ï?  6>\„?³Y=ñJ@?ÛÛ=Ú„8?—ç=Æl\?”O=´W>ù =¤Cå>òlg=™Œ]>ë9*=+Ù>ãµ=†Ëc>סÆ=o¨>Ë“h=}ƒ¤>½‚ª=}ƒ¤>°ÈÑ=†Ëc>¤ºp=‘‚Ë>˜¬=¡–>‹FÂ=¼`š>ƒ=3=×+8>{Âï=ñõÌ>q Õ> »è>jXÜ>Óè>dý$>7ð–>bOD>ZÄÐ>bOD>×5ã>dý$>úµ‹>g«?ý>n]¥? „­>y?%Š­>ƒ=Ä?(£´>«m?(ŽB>´""?)t>¸&î?+<>¼+º?->…>¾`?0­I>¼+º?5H>¸&î?8K²>´Íí?:N#>®Æl?:ùŽ=`¼ž?:ùŽ=0‚ò?:£Ô=£ä?9¸<Õµt?8K²<•hè?5ó“…a?#Þ>Š#?‚K>8?{>Žì?0> åâ?Ð> åâ>ß?x>8>«¬§>3:>€#j>Š#>;õl>8>!@>A”=íE™>Ož=½·k>'^]=–Þ†>7q€=b¹ >K‰r="l\>`ø[<Îöù>vg6†–„;Õ>–©±»fff>ªÁ ¼UX ;;<<==>>??@@AABBCCDDEEFFGGHHIOPQTUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcdTdeTefTfhSTiRSiRijQRjQjkOQkOklNOlNlmMNmMmnLMnLnoLopKLpKpqKqrKrsKstKtuKuvKvwKwxKxyKyzKz{K{|K|}JK}IJ}I}~I~  !!""##$$%%&&''(())**++,,--...///000111222333445566778899::;Thifgh>ã™À¼°Eþ>ëx¼ŸÙº>ñIǼx†å>öñ¼1ZÌ>üÀ¹ ãC?m™<'Ž?55]?P?7BÛ? z?9P„?#Þ?;^?&òi?>Ê=?(|”?M€´?(¨b?P•?)W?Rú>?+ Ž?TX ?-ÊS?U_l?0Þ³?UÒ?4¢??SQØ?7¶ ?QDD?9lš?Nß?:Êþ?L"Q?;"–?‘?;"–>þùs?:sb>ü<°?9Ä3>ø!‡?8eÓ>ôµ?6¯Ô>ò§ý?2ìD>ò§ý?/€N>ô]à?,—»>÷Ð?*¥>þJB?(Pº?s“?(Pº?ÁF?(PÈ?Re?'4?47?%&ˆ?PÕ?"SÞ?’j?­?:Ò?ÿP>äHî=®ì)>Œ?®‚>Š¢®? É©>‹QÜ?$5¡>¶Ç?&Ƥ>˜Ö?(Pº>Á¹Ç?(P¿>ÆÛÔ?)Ù>Ì)á?*ËÎ>Ð.?-Fæ>Ðpƒ?1Ï—>ÏÓ?5¾õ>ËNß?8eß>Ç?:‰Z>¾!û?;"“=S8q?;"“=ÿ~?:sb<Öfd?8½h<ª™÷?7n<}›?4J§<}›?/×é<Ÿ¦Ÿ?,kð<÷?w?)¯+=×Ê?($û=燦?(f£>W?(PÈ> fÍ?'¡˜>àM?%ë>u?"×?>#«W?d}>¿T…<Ä>ÄÞ;&‹>Éle¼ ïš>ÐD"¼’+|>Úßç¼³¾>’Ââ?'·|                    ! !!"""###$%%&&'+,-+-.+./+/0+01+12+23+34+45+56+67+78+89+9:+:;+;<I+<I<?*I?*?@)*@)@A()A(AB'(B'BC'CCDDEEFFGGH$%<=><>?>µ4¼¨qc>¼Ñ·¼¢£H>μ‹m>Ê™æ¼:n>Î:_»‹å>Ò”¹;¡Ú{>Ö5<Å$Ã? ¨,?“\?'«í="g„?)N<¢S—?*ï‰< õý?-ž»:îé?/wý¼Q;Ý?2R¼—%?6þº¼«X?:äæ¼«X?=n¼¼—%?@²X¼¤E?Cûìn?8™Î>÷’é?5³>õeÔ?2oc>ò ?.Îì>µÇ=ÐÝÔ>€(?– >Æè?!c–>‚‰?% >„÷O?&ÔG>‰Ä?(D>?)e>ŸF?)_>dz ?)^4>˰\?*Ñh>ÎÅ÷?.C >ÎÅ÷?1ûT>Í$?5Ê9>Ê?8™Þ>Å´¸?9™(>¿¸€?:ÆÞ=;|»?:ÆÞ=\™?:$i<û?8‚•<†Ç?5ø©GV?'1.>Ÿ ?$§:>lN?!¾>­4?– >“y.=™ò>—Ó[<9a€>›sκ¼/Ç>¡AY¼Q7«>©;ú¼—%      778899::;;<<==>>??@@AAABBCCDDEEFFGLMNLNOLOPLPQLQRLRSLSTLTULUVLVWLWXLXYLYZLZ[L[\KL^JK^J^_IJ_I_`HI`H`aGHaGabGccddeeffggh  !!""##$$%%&&''(())**++,,---/00016671223344556/0-./GbcL\^\]^?Ú~¹ÝP©?Péjº# ·?U'è:ûCÙ?Wħ;å¹c?Yf´øû>ý'?1ÖH?$â?6Wc?'`?9v ?(HI?;Áé?(Û@??eú?(ñ˜?O¸J?(îÆ?Rü ?)Vž?U0Í?+Š]?Vj©?.â¿?VA>?2e?U›?5ü‘?Rþš?8EÔ?P8™?:P¦?Kå„?:ø~?ƪ?:ð2>ÿƒ?:sZ>ûn ?9Ï>ö±©?8i­>ôå…?7¹>óC>?5&]>ò›?2!k>òÃÊ?.ÈÜ>ôe?,”º>øO ?)÷Å>úmì?);—>þÖ ?)&m?D¤?(ø«?ˆ?(¤¶?Û¶?('9?Ûh?&[‡?‡­?%`á>â >ã¤>J?%Jü>i‹?'S¦>‘éè?(O >•÷?(ðÁ>ÈR†?)->Í8i?)“%>Ð|`?+I>ÓÀ±?->­>ÔhØ?0.·>Ôj?3Åñ>Òuy?6>Ï2™?8XV>Éùþ?:$n>Ãs?:õá=†)?;Ñ=]Oœ?:°Â=3€î?9¡†= ?7mÒ<ù=S?59ý<é…ð?25(<ì ?-¸=¸§?*²¯=? §?)á‡=Wî.?(æ¢>\>?(ø>Oþ?(ŽÓ>m•?'ié>Çæ4>ë>'0:=Ó'$>$Ã=³ÕV> p=žõ#>óÎ=ñs=0hü=¸J<ý–©=Š7&<Æ´Ë=yÅ<’j%=[|<¤wÿ»]¹§?u>Äþ‘:øçÞ>Ë3D< ­X>ÏœA<¡±V>ÐëC=& >Ñ“L=*íš>ÏŸ=_*à>ÍF=ß>É–‚=‰¶>¼Ût=DÐ>‰ÅW=h>…‡W=™“>ƒåø=§î‘>„cÓ=·™p>ˆy£=ÍÉ>à¯ú>¤U%?ó=ÒˆV?1=½¢¶?TR=¨¾?M=“Ú@?xž=‘Ac?‹Á=s~>÷ïõ=˜t>ôÔ§=CŠ^>ô€X=Øø>õÍO<°îJ>ú²<:¡Q?›:Ämƒ mmnnooppqqrrssttu  !!""##$$%%&&''(()))***+++,,,-..//034535636737838939:3:;3;<3<=3=>3>?3?@3@A3AB3BC3CD3DE3EF23F2FH12H1HI01I0IJ0JJKKKiijjkkllm-.FGHOPQOQRORSOSTOTUOUVOVWOWXOXYOYZOZ[O[\O\]O]^O^_O_`O`aOabNOdMNdMdeLMeLefKLgKghKhiLfgObcOcd>V³¸åæy?ÒŸ¸åæy?^;âi?<ï;Ê¿w?Ñ8ý‰4=š‡±>úOØ=¤ØÜ>÷»‘=±¾;>õ'G=ˉ/>ó8 =÷b>ñíè>ŒƒA?3¤{?"vä?68Ä?&UR?8£À?(mØ?<j?)<$?=õ ?)á4?Q ?)á4?TÙ®?*ØÒ?Vv\?-¿¦?WD»?0ä`?VÝŠ?3¡î?Vvp?668?UjC?8Nµ?S¤\?9Zî?Qw?:x?MoX?:÷Ÿ?Xâ?:÷Ÿ>üä!?:x>ùªÅ?9­x>õËÿ?8Ê‚>óa?7/>ñíè?5)û>ð£›?1ð›>ñHÙ?.·@>ô«Ù?,S>ú'Q?*3¿?w?*3¿?Ñ8?)á4?\?(DŠ?ò$?%î&?Ñ8?#ö>ÝK>³3Ž>„O´?% ->„O´?'Lì>…™Ù?(éš>‰Ê’?)·ø>V³?)á4>ºy¼?)á4>¿OÚ?*]>ÄOI?,`Ö>Æ\?/ Ê>Æã¸?1ž>Æb?4[§>ÄO{?6ˆÃ>¿P8?9Zô>·jC?:q>®9`?:âõ=Gš®?:ÎO="4E?:Rˆ=öE?:<³ó?7Òè<€]?4®)º?(Y+>Ë?&UR>ÄÊã>ˆ¤Ó>À¾>LF>Â6œ=çèG>Àìq=Èôè>¿¢L=±¾;>¼hð=¤ØÜ>·’z=—ók>Œ ’=—ók>†>è=’ÊÌ>»B=ˆy³>}=qÿÕ>wÛ=H»->uG?= Ôo>y%µ<™Úâ>ä;Àdª SSTTUUVVWWXXYYZZ[  !!""###$$%%&&''(())+++,,,-//000156757858959:5:;5;<5<=5=>5>?5?@5@A45A4AB4BC4CD4DE4EF4FG4GI34I3IJ23J2JK12K1KL1MMNNOOPPQQRRS-../)*+1LMGHI=³œØº4úH? ºº4úH?$i:õº?BC;9¥©?` <1¥Ê?ñ<¬ÍÙ?}å="„z?}å>ˆ*?lð>‘Lö?K>–8¿?l7>—Ü–?$i>™,? Ç–>˜®‰? @Ï>–Œ©? ÷>¥?Q >ˆÅv?Q =àHÓ?+%=È©Î?Û:=¼2—?¹P=± ¦>ýŠù=¦Œ8>õu=œ Ø>éÜ=–Í)>ÝdÛ=‘z=èÅ=‘z?d? =W?Wë?$-?OÍ?(à?K½?,`¢?÷Å?0Ph?Oá?4.?Ö?74 ?` ?9é?ÈP?:{Ì?0“?;#Â=®])?;#Â=ŽÞü?:{Ì=m-«?8˜ì=Kw?6¡=:å?2œD=%>íω=%>è1=?C…>à°N=y>Ü—=”¬>ÚÈ®=¸Ü‡>ÚÈ®=Ð{5>Ýh€=çrB>á#=õ8\>ëÝ=úx¯?M“>»½? ‘R>*Þ?$->!ú-?%Ñ>5©?(à>Q7m?)Ò>þÚß?)Ò=%=ò§½<ë›=ЉÈ<±Ï5=¼ÚÓ<‡Ë¶=œ´¯>?      "#$"$%"%&"&'"'6"67'()')*'*+'+,',-'-.'./'/0'01'12'23'34'45'56=§ˆ¼˜ö>;Ѽ™>LZ¼€Ëó>Y\®»¡†˜>`š^s±= dr>Vº =GI®>Fd=P²ë>Ç=P¹¼=ôÆ=~åï=çÝÊ=¨»M=Þ{s>^=Þ—›?$@¶>ù?,Ö>A-?,Õœ>UÑ?-‹7>`ß?0H•>f‹O?5îª>bÔÀ?:nƒ>V*‡?>AÄ>A.ï?>©Œ=û®?>ª•=îqÎ?*1ù          >aéf?>Ÿs=œX?>Ÿò=uäç?=Ý–=AÛ$?;8=$æ|?6¦=-(?1Þ=Lh©?-b“=†à;?,Ì >Ó~?,ËÓ>q^?)é>åË?$À>—ž?S«>‘=¬¶t>£Ï=zXN>ÊÞ=Pï=‘_«=P7=P/P=D¿m=#÷Ï=èê= H%aÞ鼚ZI=NͼS    <ߟÈ?ƒæ=·:¬?ƒæ>5ÍH?(X–>„?ƒæ>§ÓG?ƒæ>PSÏ?<=>ŸŸ?<=<Ø{W8Ši{?†v8Ši{?†v=•µR<Ø{W=•µR>6׋?2W>= à?$0ñ=‰%î??A}=[|þ?@9®=Ö?@ú<È®?<È¢<³j?8Îõ= Æb?3¾<ówâ??•<ÔåO?5÷Ñ >Xa ¼EÅý>v'ƒ¼<É_>„èµ¼!Ñ >åÜ»×Äã>˜Ÿµ–þµ> oó;É6>§½ ±Új<×¹>»ga=3Ž>Æû=’c>ÈSB=i´š>Ê’=*ȃ>Ð0Â<λû>Öî£Ý¬};³½>çÉD»WÍF>ñæ »×Äã>ý²O»û¹I?/t»×Äã? ]~»äz?Ü;³½?¸<{«'?w=Óú?¨N=‚Uó?€ =¡Ëÿ?€ >0g ?8#>@"¡?|>Mž\?i>U{Ü?)½>Yúi?¸>\9¶?û³>[? ¼j>V›|? Å >OÝ¢? Í«>CŽ? +Ù>5tÖ? =Ù=å6“?õî=ÁAú?f=¤ F?þ‘=Ñ«?O=‚Uó?W·=n3'>ÿñ•=i´š>ø={®Í>ðÆg=’>í÷N=ªÉ>ë¸=Ðüø>ígz>ÆPÍ>ìG×>×»D>èèê>ä§+>äú*>îÃö>à{–>÷Á>Ú)³>þêÖ>Ò7?¬>Ê’?(>¿V!? X>µ9W? S¢>©m? >Ÿà#?"¾>–S)?²>‰÷?úw>|U¯?²>d½4?j§>Jål? K>: Ë? sE>+oc? ÃÑ>”Ã? \B> ùh?ú=üûi?m„=èÁÛ?.8=ÉKÎ?_=°“¦>ú3= Ø©>ôñù=‘­>îÃö=ƒ Ç>è=pË >ßñ=gÍí>Ô\W=pË >ÊÏ`=ƒ¡õ>Âb=šÖ>¹ô¿=¹Ñ>³Æµ=ÙÍ>°÷˜=üûi>¯×ò>wü>°÷˜>Ô >³Æµ>)0>¸EF>1 >¾sP>6«Ø>Å1)>6«Ø>Ì~×>3Lë>ÓÌ„>-®·>Ùj¾>%Ñ7>Üɧ>Ô >à(”>ó¶>ä§+>#‘ã>êEb>6«Ø>ñ“ >IÅÅ>õÌ>d½4>ùp>xöÈ>û¯Ö>†[>üσ>•O>üÏ}>›a´>ûD>£?>ùp>­[Ú>óB†>µS>ëˆý>·xž>鵋>½¦¨>à¸k>¿åñ>×»D>Á•k>ξ >Á•>ÁBm>¾6{>¸EF>ºG»>±‡l>²j>>«Yb>¨ÝC>§j¡>>¤ ´>V>¡Ìk>WA€>M×>u#>˜ÏG=ñ¾õ>“Àä=¬>‰¤=ZRI>xPÄ=i>Yúi<Áñ>=ãT<ý&>!Ì?<¦ú@=ýî®<Êîç=ν¸=fP=‰×=cO`=/G=• O<Õy)=ÉKÎ<3ÂZ> ùhº÷Y>)0»û¹I>Q£F¼EÅý>Á•>ñÇ>Á•>L~®>¿åñ>:„g>½Ø>$ “>¶èÎ>•‘>°ºÇ=çuà>ªŒ½=Ì~k>£?=³ÆC>™"F=ŸŒº>Іë=‰×>~”õ=€­>b}ç={®Í>G†=‚Uó>+oc=‹S>Öé=¡Ëÿ>üH=º„'=í@h=׺ß=âô=÷0Ô=ÙÍ>E=ÛF'>*Ém=ë>=ãT>¼û>OÝ¢> >Yúi>"rC>e6Ö>AèE>n3÷>Z f>psD>u—Õ>tñ×>ˆ×q>vw>—rÌ>{¯±>¢¯9>€">°*ð>„ã>¹(>Š3í          * * *+ +, ,- -. ./ /0 01 12 23 34 45 56 6l ŽŽ‘‘’’““””•žŸŸ ¡Ÿ¡¢Ÿ¢£Ÿ£¤Ÿ¤…Ÿ…Œ ‹Œ Š‹ ‰Š ˆ‰ ‡ˆ †‡ …† … l…lm…rœrœrs›œs›st›tu›uv›vw›wx›xy›yz›z{š›{š{|™š|™|}™}~˜™~˜~—˜—€—€–—•–•‚•‚‚ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6AB6BC6CD6DE6EF6FG6GH6HI6IJ6Jb6bc6cd6de6ef6fg6gh6hi6ij6jk6klJKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabqr…pq…op…no…mn…>°‘7¼¢Ò8>¾˜¼qm>Íö¼E`G>ÛRv»>ðk>ëZê<©›>õ`4<½è-?^Õ=9ή? ø=ŠTµ? ¸“=²ià?»8=ò‹±?¼Í>ª·?½Ý>>¿å?ih>X"š?ið>„?ið>•|?¾ë>¤.ð?æ>³Œb?×>ÂéÓ?¼F>ÐF:?º>ÚK„? d>æQÜ? b‰>ðW&?µî>ø[f?^L?/Ï>ú¸_?†é>ð³?ˆ€>èÐ?ß>ÕúK? à¦>Èê? 6±>¿CÏ? ÷>±g? á»>¤Šß? 6±>—Ù~? 6)>‰Ò? 4>™›?Þ>pç"?Üj>b4¶?0T>H}>ò¸>J( ?5KÛ>G{õ?8¢ñ>@ÍÂ?:N€>3q[?:¤=RÆ?:¤= ”´?9£|<ÎWV?8Mp<›Þ?5öá<ƒ…@?1I»<›Þ?-<Ðû ?*pÆ=ö˜?)E=Á5ë?)E=Óêp?'ïu=áF×?%Cc=áF×?"—N=æŸ?= =æŸ>Úö‡=éK>ŽÎT=áF×=Ý+=ÙBŸ=$n =Ûî¶ðk>¼Ÿ8> m¼Ÿ8>#hê¼>´>2VºÒܱ>:Ž<;j¥><˦<è©}>8ɉ=HÃ>HÒ=½Ç>W„m<³7ë>lå ;ËÐ>€wл>ðk>‹Ó&¼/ÿÂ>ž‡±¼˜!¯>HÒ>yV>J( >¨Ü>O€.>¾<µ>XÚy>Êî>hâé>ØJs>€wÐ>äPÎ>‰Ò>ìU>˜„„>òX4>¢‰Í>õL>­å >÷°\>¼—’>÷W>Çòå>õL>×PV>ï¬!>䬷>äûÑ>îþ>Øõu>ø K>ÈAû>ü¹j>¸9‡?D>ªÝ#?]Ã> ,Ô?³H>$\?]Ã>€ä?D>`&Ó>þv>=iÓ>ú Z>®ö>õ Ì> Š>ì[³=Ô{>ãV®=²ià>ÕúK=Ä>Èê=iè>¹ë~=O/U>¬=O/U>š…’=_7Ù>Œ~(=„üƒ>™›=¥ }>n;=Åd>b4¶=ꇆ>V.a> NW>K~>$>G{õ>T ~>G{õ>„É ccddeeffgghhiijjkklqJK]^_bc b b aba`a```_`__]_]]\]\[\[Z[ZZYZXYXXWXWVWVVUVU U !TU!T!"T"#ST#S#$RS$R$%QR%PQ%OP%NO%MN%LM%KL%qK%%&'%'(%()%)4q%4q45q56pq6p67p78op8o89no9n9:n:;n;<n<=n=>n>CmnCmCDmDEmEFmFGmGHlmHlHHI)*+)+,),-)-.)./)/0)01)12)23)34>?@>@A>AB>BC>æN¼¿“ÿ>–Ú¼¿“ÿ>£}•¼¦Lü>¬qa¼xX6>¶rͼ<>¾œt»'ªi>Ç?;Â8T>ά!Ö ¢<Ήe>Üæ= d>â(+=>¯«>ì)“=Êt>ñôƒ=¹ëd>öLá=Ý3Å>úa>à >þ>ð–>ÿÑ>'¼ø?7>5n>ÿó>DpJ>ûÔ/>M§{>øÍ>UÃ>ô–—>[Xˆ>ï·Ž>^t>ê•+>_>å×Ü>_>à.ˆ>]ú›>ÛÖp>W" >Ø&¿>FH>Ôýã>6{¶>Óis>'¼ø>ÑN2>|>ά!> ?ƒ>Ë?í=õm >ŸV=Ó2\>¿íg=·Ð)>¹Ú=ž‰2>³Iî=‹“þ>©H…=q=•>¢öÇ=Wö>—ç¶=G—>ŒØ­=>¯«>ƒ^=Bæ!>q«°=SÀ>^¶u=hЉ>J³=‡]y>9Ù¤= ¤m>/Qi=³™³> ’«=ÕM¥>á‘=ÿn>0~>âÿ=ù†ï>2E3=ìã€>Nµ =ävz>phý=â[?>‰x=ävz>—Í2=ìã€>©-ú=ù†ï>´=>K¹>ÁgK>¸²>Ëï>N‘>Õj'>+í>ßk“>=ƒ>çØ>LÎß>í£>aßU>ónh>už³>õ«\>…yT>÷¤ë>>ø²ˆ>›™>ø+º>¤d>÷>¬ø/>ô| >¶ù›>î*N>¿f˜>çØ>ŸV>ày0>Éh>ÙÕ>Êüw>Αš>Ä#ê>̓ù>¼=¼>Êáì>µëþ>Æ«l>±µ>Áî!>®ŒŸ>¸úV>¯š@>­ëE>³Iî>£éÙ>¸Ž>Ÿ,‹>¾ßÉ>šö>Ä#ê>˜ÚÐ>˃F>—Í2>Óis>—Í2>ÚB>˜ÚÐ>߆>šo?>äÊ;>˜>é©C>¡`>îDØ>¦&Ç>ñ±.>«Ì>õe>±(>÷¿r>¸s„>øÍ>¾Å>>øÍ>Ç2;>ö±Õ>Õj'>ó$>ãD>îDØ>í£>åQ >ûT–>Þx}?Yú>Ö €?ÆA>Ìã?ï >ÃI? `>¼Ä‹? [f>´¼ç? ›“>ª™¾?0> Ûˆ?Ç­>˜õ[?Ç­>Žm?ó>ƒäâ?Ç­>r¹N?@Ü>^rü? ‡…>LÎß? i>9Ù? o|> Õâ?Wy>Å£?« =摵>ýö¦=®8ü>ï8=”k'>å½Q=vHA>Ú'y=Cºw>Ìv\=È>¸úV<ïË >­ëE<Ū.>˜<´Ð>Œ¾%<®|Ð>{þÏ<½<ý>_<Þðñ>Bˆ=‰ >'¼ø=$!> ´=EÖ9=ìyU=mÛU=ÆŽç=4Ÿ= ¤m=©{–=}àù=Æù=6B=ì\<çÐ)> t˜…;†à>8̼bE>MÜ|¼g}Ó>g#o¼¦Lü>‚×A¼¿“ÿ ""##$$%%&&''(())**++,,--.JKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`IJ`I`aIabIbcIcdIdeIefIfgIghHIhHhiHijHjkGHkGklGlmFGmFmnFnoFopEFpDEpDpqDqrDrsCDsCstCtuBCuBuvABvAvw@Aw?@w?wx>?x>xy>yz=>z=z{={|<=|<|};<};}~:;~:~:€9:€9€9‚89‚78‚7‚ƒ7ƒ„67„6„…6…†6†‡56‡5‡ˆ45ˆ4ˆ‰34‰3‰Š23Š2Š‹12‹01‹0‹Œ0Œ0Ž/0Ž./Ž.Ž.  !!">c¼šÖË>›~ͼ…‚V>¥~`¼`\A>°(˜»ëkô>¹}Šº0úß>ÀÒ‘;¿-<>Ê'†<…&>ÒÑÐ<ïÃ1>ÞÑM=r‡>ÞÑM<ºp >àÑ><“ÿ>ç{žº0úß>ì&º0úß?¾º0úß?¼;;S¶Ì?¼<“ÿ?¼<šq›?f§<úmj?V==4?¼ =gÝ?¼#=†˜W?¼B=Ž˜?`=Ž˜?gÓ=ž—\?½0=Á@š?gÝ>ô9?gç>¶õ-?gç>èó??wã?½&?2!¤?gÝ?8!d>ÿzŸ?:Ëñ>ú%‚?;!B>°Ó9?;!B>«~&?:!M>¦)?8Ì > Óç?5vÔ> )F?1ÌP> Óç?.!Ï>¤Ó¼?+w=>®ÓR?)wS>Ð'E?)wS>ÔѺ?(" >×|I?%ÌÑ>Ù|3? "a>ÚÑ|>ôGõ>Ï|Ì?Î^>ÆÒS?xÞ>½(%?Î>²ýÛ? >ªÓz? x•>~¸? ÍÛ>’)Ø? x>„*t? x>lV ? ÍÛ>Wž? #:>GE? #E>0X”? #Z>Yä?#ƒ=øµ{?y=È·€>÷%=¨¸Ð>îòØ=ˆº>âó[=VËú>ÔIL=1xP>Æô…=y>¹Ÿ¿<âõÞ>¤õî<ØK¡>˜KÍ<ØK¡>‡¡Ó<ØK¡>uïc<øJO>SF.=xP>2G{=1vÞ>ž-=bËê=é>æ=˜À=ª–¢=»b·=r†¶=è¶=àI> ¯R<Ç^>-®:üÉë>XVà¼5³V>⼚ÖË>Ø&î>¶õ->Ú&Ø> ö>ØÑ’>`šô>Ø&î>9ñë>Õ|_>ñ>Î'W=ëéx>Ã} =¹@í>¸Òå=™B>>®ÓR=C9>Ÿ~ž=b‡å>Ô–=Wݪ>„*t=]2Æ>m«V=r‡>Wž=‰Bå>:­±=®–Õ>%Xñ=Ó?P> ¯R> žm=øµ{><œo=è¶>iïß=ãa>ŠLe=è¶>¢Kc=øµ{>¶J‰>ù>ÉŸ >X±>Ùž}>7í>çÔ>N¬(>îÈ5>i«>ôGõ>ƒT¾>ö4>M>÷%>›~Í>öò>¦)>ôU>´Ó>îòØ>À}U>åH™>Ë|Ì>Ùžf>ÒÑÐ>ÊôZ     XXYYZZ[[\\]]^^__`WXVWUVUTUTSTSSSSS RS QR sQ s -rs-r-.r./r/0r01qr1q12q23q34pq4p45op5o56o67o78o89no9mn9m9:m:;lm;l;<kl<k<=jk=j=>j>?ij?i?@hi@h@AhABghBgBCgCDfgDfDEfEFfFGfGHefHeHIdeIdIJdJKcdKcKLbcLbLMabMaMN`aN`NO`OOP !" "# #$ $% %& &' '( () )* *+ +, ,->ŠÃÛ¼ÁÜ>™…¼ÁÜ>¥H…¼¨g'>°ó‹¼ZÝ>¿Í6»‚ƒÓ>Ï.¤< fÜ>ÙÊ<³„w>ãÝÔ=êž>ïˆØ=eÆ[>õæ=’µ¢>û»Ÿ=¬*»?„³=ÚÖÙ?ÿ=þçt?or>ù?çª>-G?_ã>6œ*?PZ>> >ÿ”>Ev>û3Û>JÛ>öõ©>Lâ°>ò·{>Mò1>ìáø>Lâ°>èÿ>JÛ>äe˜>EuÛ>à¯->;éê>Ý€‡>0>ê>Üpü>#„U>ÙÊ>l€>Õ#=ôKõ>Î=Ëý/>ÈI™=²ˆ>¿ÍW=˜‹!>·Ø=…û >®Ôs=nBá>¤8ý=T͸>™¾=CÔñ> =?–ž>„f”=CÔñ>s–0=T͸>aÑ‘=d¶†>Q¤·=;‡>-”=²ˆ> ÙŽ=Ëý/>>=é°> ^Y>*!>E>(Ž=ýÐ>#„U=ñg>6œ*=è™>G”ê=â;Ê>hvé=à®>‚W?~ü>‚W?Òk>Gå?Z2>™ãa?Z2>©Ì–?ŽŠ>¶‡(?÷8>¹ò?+ >˾?PZ>ÕJ>þêF>Ý>£>ú$P>å38>ôÖ”>í'Ô>ð˜b>òýT>ê;>új)>ãV/?RÆ>Ý^‘?ù›>Òå?9=>Êh®?œ6>ÁìN? »O>¶É? Ún>ªRs?>Ô>Ÿs?ù>“È?=b>ˆ¤Â?ù>|“?µŸ>c¬þ? ¦>G 8? †û>0²? #ÿ>ªÝ?Á> Á«?^=ù‘Ê?ë=Ù¿g>ûy·=µ®Å>ñf=“½Z>å»=xΓ>Ü/=N`¡>Ñ“™=(0ä>Æø$= }ª>»Ôä<êh>¯¢<À5>¢ç…<¯&¯>” Û<¯&¯>…»ø<¯&¯>t!é<·£>Z¬Æ<Ù”¡>> ='>!e@=´> Á=A¦ =ëÏŸ=t@=¸åO=“5n=’-Ø=µ®Å=LQU=× K= ¬n=û°æ<¢‹±>d;òÜ+>'6낃Ó>Eù°¼jù©>hú·¼°ãˆ>Þ>©DÏ=õS¬>©DÏ=ÿï>½l2> ±Ó>Íÿ(>Ê>ܶØ>;^8>èé£>Vòi>ðÞ?>vÄÓ>÷;†>ˆû>ùâi>—~e>új)>¤8ý>ùZ¢>¯ä>ö+ÿ>¼ž>ïFê>Å¢¹>çÚ>Ï.¤>ܶØ>Õ‹ñ>ÏüG>Ûaq>ÀšÙ>Ý€‡>±Á/  !!""##$$%%&&''(())**++,-./034535636737l3lm3mn}l7}78}89|}9|9:|:;|;<|<=|=>|>?|?@|@A|AB|BC{|C{CD{DEz{EzEFyzFyFGyGHxyHxHIxIJwxJwJKwKLvwLvLMvMNuvNuNOuOPtuPtPQstQsQRsRSsSTrsTrTUrUVqrVqVWpqWpWXpXYpYZopZoZ[o[\no\n\]n]^n^_n_`3n`3`a3ab3bc3cd23d2de2ef12f1fg01g0gh.0h.hi-.i-ij+-j+jk+k=L¡¬9×¾˜>‹…T9×¾˜>˜|9×¾˜> 9_;néW>§X<‚>©þb= y¶>¨«5=U«~>£³4=‚¯$>œ =HW>”ËŽ=î³>mø2=î³>f%=šˆ>b ¢=µ§>\¾ï>ïã>\¾ï>Þ!ç>b ¢>ãn>iþ¯>澈>¤±«>澈>«û&>è»M>±GÖ>ð®a>³î7>ø¡j>²pð?´;>­÷è?îø>©:?¬'>¤?•S>kQØ?•S>c Œ?>^? åC>_eO?è>d8?6ÿ>oKb? kB>|ˆÆ?$ãý>‡‹Î?(^N>’%4?*€>ç†?+/>§X?+ª>´íH?)Ûà>¼ŠØ?' ">¹q?$%.>·h“? kB>·ç_?sY>½‰'?P÷>Å'€?“Ó>ËÇ`?)á>Õ·2?~©>Þýh?ÑÙ>åO?x1>é–Ö?q»>ì¾?!?:>é–Ö?( †>äó·?-m>ÞSÐ?0úó>Õ·2?4Jã>É!?7ïŸ>½Þ?9BÎ>±ñn?:•ù>£^~?:êÃ>˜Å?:•ù>Ž+®?:A/>‚“Ñ?9j>l¥?7F >Z•?5IG>HßR?2N">:L[?.©g>/²õ?+®B>#Æ^?' ">ÙÎ? t>?ÉÂ>?Ö´>’)? õ—>æ»?è€>ó§?@‡=qº€?@‡=<»€?B$=¢Œ?Ec<ﬡ>ÿAJ<åu>õQy=¼>î=3t6>è¨=g!,>åk\>SÑ>åk\> š>âÅ> @a>Üη> @a>&×> í1=ñùº>ó§=­‘>§K=“>Š=ø/=Š¢ =7nÇ=Š¢ = =‚®ó<Ò„â=i‹r<¥z¾=EÅr"#>">?!"?!?@!@A !A AB BBCCDDDEEFFFFGGG G GR RS ST TU UVGHIGIJGJKGKLGLMGMNGNOGOPGPQGQR>h½¾=ã@>¥CC¾¶0é¾:ÏS>˼|¾3x>ß¾¾&ͯ>í—˾ô>üûz¾òd?¥œ½Ø¥Î?á ½¡>Ô? ô÷½;w? Wt¼5í? /û<Žô ? C†=)ø<?C=Œc>üûz=·z->ìÒÎ=â‘?>Ú[1>6O>ÆY•> ü >­º>™ø>›Bx>­ò>€T>­ò>LU>­ò>'eÕ>Áß>ŠŠ>"‡§=ìM©>.×\=Üéó>ANþ=ÙÕÿ>Yî‚=é9µ>jÜ$>ìœ>rŽ> xµç>*>xµç>3µ—>q>JË>f>D>cjž>]v>>VÚŽ>h½>SÆ”>œÌk>SÆ”>¬0>Xd‚>»“Í>`j>Ìv>lf%>Ûå%>€3Ú>èùä>‹¾¦>òú¯>š][>öÓŸ>¦­>ú¬†>¹é¯>ùç‰>ËœR>ù"“>×ì>õI¢>ä;Ù>í—Ë>ïÆ›>å ö>üÛV>Ú[1? >Ñ`?†>ÓnT? Ñ\>Ø ;?–À>Þù? +>æªð?—$>ô„¨?—$>ü6ƒ?o§?‘­?¾6?V©?ÑÃ>ü6ƒ?½Ò>ø]–? ½o>ú¬†?½?̯?ä?j›>ÿïJ? k>ÿï6?Íä?F—?]?ig?“-? é÷?“`?›Ò?ŽA?æ?Cê? Hý? ?#¿j?ªQ?&pä>ö¢?'˜Y>å´§?'˜]>ØÑ4?&Ó`>Ï•j?$„i>ÆY•?!pz>À1»?¿>º Ú?ƒ—>¶0é?¾6>³ü? ©ä>§’7? ná>˜ó…?3Ü>ˆÊÕ?3Ü>qDS? ná>Z.É? Gc>?¢V? BS>*x”?é>x&?n>vû>üÛE=é9µ>ôd‚=Ôt>ê&=¾"“>ÛÅ=±ÒÏ>ÏuF=±ÒÏ>Ã%=»¢>³ÁÒ=ÊrU>§r=æ%Á>œ¬K=ìM©>˜^=±ÒÏ>“pz=‰Ï«>Ž –=V‹>†[¸=Yâ>q<ót¼>^Œi<ç%>>?Å<ÿÄ|>(¯ˆ=1!H>þ=t×Î>¬H=®¾à=ß}f=é9µ=ÆÝÎ=´æÁ=«*}=n°=†;%=1!H=Nç¢<ÿÄ|=XÛ<µæ6  ¾0 ‹>Z.ɾ:ÏS>Ž-¹=’Šç>¤~F=’Šç>¶0é=‰O'>Ä ¡=€4>Ï•j=[7C>Ûå%=6Gþ>æzE<Þûn>ëH×<"˧>ïSC¼Ì>î\Ƚ.Àµ>é¾à½~Ç>âÒ½ž*å>×GA½¼òI>Çã½Õ‘Û>¸à½äõƒ>¥CC½î1C>“š½ñE7>€T½î1C>[¸Ã½äõƒ>9Ýk½Ø¥Î>î9½À;=õ‰w½”ï$=Ö½S°=Ï<¼’]Ñ=é;c<˜0ä> ²^=)ø<>2+=m®Å>i’=vø>/yã>´·ù>*h>Ëþé>/:>ÚÿÕ>GT*>ë¼®>VTê>ò½>só|>ùƒ>ŠTÏ>ûQi>™Uç>ûQi>¦›ñ>ú)ú>¶÷(>öÕ>¿Ïð>îÐŽ>Çäe>æŠø>Ìä>Û1>ÎÐm>ËœR>Ï•j>¿L>Î p>µKÏ>Ê÷|>ª†>Å2l> Sê>½âó>˜?>²'>’Hï>¨W0>—“>˜ó…>Hœ>ŠTÏ>Hœ>z€!>—“>Z.É>•¿j>F-3>žû?>9zu>¨6ÿ>8‚ >ä#V ‹‹ŒŒŽŽ‘‘’’“‚ƒ„Š‹ ‰Š ‰ ˆ‰ ˆ ‡ˆ ‡ ‡ †‡††…†„…„„‚„‚‚‚‚€€€š™š™˜™—˜—o–—o–op–pq–qr–rs–st–tu–uv–vw–wx–xy–yz•–z•z{”•{”{|”|}“”}“}~“~ !!""##$$%%&&''(())**®¯¯¯°°±±²²³³³´´´µµ››œœœ­®*­*+¬­+¬+,¬,-¬-.«¬.«./ª«/ª/0©ª0©01¨©1¨12¨23§¨3¦§3¥¦3¥34¤¥4¤45£¤5¢£5¢56¡¢6 ¡6Ÿ 6;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF:;F:FG:GH:HI:IJ9:J9JK9KL89L8LM8MN78N7NO7OP67P6PQŸ6RŸRSŸSTŸTUŸUVŸVWŸWXŸXYŸYZŸZ[Ÿ[\Ÿ\]Ÿ]^žŸ^ž^_ž_`¶ž`¶``aabddeeffgghhiijjkkllmmnnnno®¯6QRcdbc=8h4¹T>’îȹT>œ¶z;m>¡íÍ<8w*>¥0c<šÓf>§%=Ê$>§%=5¼>¤‰u=d­ß>¡íÍ=~Âk>Ÿ(·=Œk­>šÁ¾=”>u>•Šo=”>u>k/>=”>u>b Â=ž1>[ÛÂ=«F>Z;y=Èg>[‰J>ޝ¿>\×!>½¡˜>e÷ï>Ì ¡>tP >ÚQÖ>û>ãr¤>Ž^^>í:Z>˜Ìÿ>ñÊÁ>¡íÍ>õ T>ªg³>÷>²:­>øöÏ>¼©K>øöÏ>Çð>÷¨û>Îêç>ö['>Ö½á>ó¿€>ÞÛ>ñ#Õ>æcÕ>ëì†>î6Ï>ågc>òÇ2>Þ;T>÷W>ÕÁo>ûA>Êù>üŽì>Àä/>þƒ¨>’™>>þƒ¨>U¦î>üŽì=ßà‹>ùLY=©µ>ö°®=”>u>Ð8¾=”>u>Ëh=Œk{>ÅÊ=y‹ >Ã.u=Uê>‡†= Þ²>‡†<ø·>ÃÕY<¥B>É ©<#™³>Íœë;¼'>ÔÉ!¹T?#q•¹T?(Uo;m?+DŽ<8w*?-ŒÁ<¯°’?.‡!=p?-à5=Uê?,>ì=„˜?(¨å=”>u?µ =”>u?w=¦€?x-=Ð:ž?ÑC>¢?2?ÑC>Æ~?Öä>ÖhZ?çÆ>ågc? Q¿>òq¬?Ì>üàJ?Ý}?­>ûè?œ7>ï„£? 2>>äo? Óˆ>Úp? !Z>Í? ÈE>Áà? o/>³ˆ€? ÈE>¦~4? tÐ>šÖ? &ü>·u?ÞÈ>…ä?–—>s5?Ž>e÷ï?då>WŸÒ>øöÏ>WŸÒ?À>[‰J?/ª0>WŸÒ?4á‚>Q¥?9t>GùÞ?:lG=b"µ?:lG=(ÂA?9ï <ñ?7å„<•½Q?4Ž <ƒ;?0¤<‹N˜?-aþ<ëÔJ?)%=8lÉ?'­|=Ô,W?'×8=ë¥P?&ÜÚ=öá?$”¤>?Ø1>=>ð|í>=>¨ÄU>xœ>â=ýæÞ=®S=ðÜ‘=•Œ:=(ÂA=”>u<Ü*=®y%&>%>?$%?$?@$@A$AB$BC$CD$DE$EF#$F"#F"FG"GH!"H!HI !I IJ JJKKLLLMMMNNOOOOPPPQQQRRSSSSSSSSSSTUVTVWTWXTXYTYZTZ[T[\T\bSTbSbcSccddeeffgghhi):;);<\]^\^_\_`\`a\ab=PŽÞ¹¡Ÿ>“¹¡Ÿ>šŠ/:‰‚Ë> Ê*<L>¦X]<‚Р>©t<ñì’>¨m®=; ¥>¥¦“=s.ž> Ê*=ŠAå>›í»=•^\>u1=•^\>n?W=³>h±(=®^$>d†…=Ê%1>a¿g>…ÞE>c"ò>³³c>d†…>ðÏ‘>gMœ?d3>c"ò?ç»>ZÍ¥?®Ô>O±@? a=lUÉ? a=Er{?`š=è?¤+<úsõ?ç»<Ùª?Òg<ÂåÞ>þ³<Ùª>÷ÁR=V`>ñW=PŽÞ>íV°=íœ(>íV°>†í>ëA[>±—>çÈ~>Ü:>à$ö>jp>¼±>1‡>Ž3‹>1‡>5 t>jp=ÚÏÅ>xµ=£AÑ>±—=•^\=:V=•^\=è=Ð=È=‡zÅ<ä;.=x¼à<¬­=F½ <¡Ï=  Î<·ÉZ<ìã=r¤;v‰Ê>*1o?õá>:Ü?§§>NM»?¼ø>W­ì?c*>bq¶?ÅÙ>gMœ?#uÑ>gÿ7?']Æ>c"ò?,ÕÇ>['?0N­>O±ž?3Æ>C1W?4Ò2>3êH?5ƒ÷>$£9?5Ʀ>-Ü?5ƒû> £R?4 g=þ÷I?2 =ë…˜?/³=ÞT?,|á=×c^?(«=×c^?$Ù_=â×?K+=üâß?Çš>jp?Yk>±?N ''(())**++,,--../! ! !" "# #$ $% %& &'  !01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A0AB0BC0CD0DE0EF0FG<ø2޾Pîä>B¾B‹>.e¾/ʵ>=Â1¾šÖ>K¶‚¾pÒ>WìC½Í|>`¤ê½‡K >bcz¼ÎE~>`¤ê<Æff>^æa=ê~K>`¤ê>„ÁU>eà>Ô¬>k(>ýû†>i]˜?¨þ>`¤ê?¶l>To0? t÷=]Ì!? t÷=3ïK? W= P?FÌ<Àjô?¨þ<¤‚Á?êv<–ŽB>ü<ú<Î_t>ôc—=ï>íin=dÆ>>ëªè=öó¿>ëªè>2Ž>éì\> n0>ãÑ|> ,³>ÕÝ2> ,³>«!> ë<>>£> ë<=  > ,³½ŽE=>ñ½Â™B=úpß½å{þ=å‚q¾pÒ=Ä^³¾“K=´«‚¾Ã=‘ȸ¾!Ök=VÑá¾' <ø*’Y?ù§>:E,?ù›>O3›?—m>^æa?}>g/\?!*>k(?&<Ì>k(?)¹Û>fÀy?.iþ>[Ù?1wl>RAY?4:>BýÛ?5û>3Jú?6_@>\™?5ïœ> z?4ôv=þÊ‘?2þ=ëœ#?/œë=âQ?,W­=Û 9?&¬m=ÞˆL?!1=ïù¨?¤Û>ñ?—m>%t?ôÙ &&''(())**++,,--../0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<=.==>>??@       ! ! !" "# #$ $% %&ABCACDADEAEFAFGAGHAHIAIJAJKAKLALMAMNANOAOPAPQAQRARSASTATUAUV=<ý¹öð>‘ƒ¹öð>™”;bäÒ>žoM;Ç^c>£",¥Ñ‹<²¸Å>§):=R>§)˜=/G×>¥Ò"=[•€> óÕ=„Z>šhF=W&>lQÔ=W&>fó=˜”>dCÇ=­q>^å>2>^å><ÏX>£Î>Œ Ë>ìø‘= "ª>îü=W&>Ðr=W&>Ê;Š=ˆ¤L>Ä\=vo >ÁVœ=N(Š>Àªø=!Û>À«!<Ý®‚>ÂXx<_/Ü>Æ_°;§ÿ>Ëh:\;Ö?$!d:\;Ö?)*0; ùä?,ù;ç&?-Ý<’€k?.ˆè=R?.)=Ck ?,$=ï!?(~Y=WX?ø‡=Ž.?´—=~?<=sC>ÂÐ>¨>?ìš>ìµ»? I>ð¼Â? ú®>ól? pE>ól?$wO>õo¥?&ÐÀ>ü& ?'&«??%Îü?!?"s÷?»?lÀ? |M>¥%±? |M> rÒ?zˆ>¡?w>™¼A?šô>™¼p>ûz4>žoM>ôù>£Î>ñhž>Ñs!>ñhž>ÔÎR>ðì>ÔÎR>ì å>ÐÇL>çW>^å>Œ¸¡>^å?1±>\5­?6u’>RÏí?9zÚ>JÁÓ?:Ò‡=L8*?:Ò‡=ãž?:|œ<ì™&?8y<Ìa ?6Ë}<¬(³?3pI<¶æ?/S<×p?+¸"=ãž?)Æ=L8*?(²Ù=ñºÃ?(²Ù>ën?(\î>šÓ?'A>ù‰?øî>X?>ËÑ–> ¨ç>8È[>¡Ý=¥Y>•s=V°=ÎT=Œªü<ì™&=‡øf<®Ö2=k±¯<Žš³=> [<‹ít=úQ<¡k<’€k<ì™&;œgà RRSSTTUUVVWWXXY  !!"""$&&'''(*+,*,-*-.*./*/0*01*12*23*34*45*56*67)*7)79()9(9:(<<===>?=?@=@A=AN=NNOOPPQQR$%%&"#$(:;(;<789ABCACDADEAEFAFGAGHAHIAIJAJKAKLALMAMN=WóI¹¿Â">ŽÇC¹¿Â">•e:rà]>œÖ¼;ˆ3@>ŸÐÔ<-÷>¢ ‹<›Ë>£óM<ååm>¤œ¯='à¬>£óM=\ÎÃ>¡MÊ=|‘>ž)R=‹„">š19=•pµ>•e=˜¿>h o=˜¿>cUi=ž u>^ c=³6Œ>[dç=Òø–>Z)>ƒyí>[dç>Õ„“>\·¬? €z>b¤?,ëë>b¤?5…Ï>^³ø?8•3>V9?:»²>LÖ¡?;%=WóI?;%=2æD?:ÐÐ= „Ö?9ý#<æÄ??8Ô±<¯-€?6í»<œª0?4Ün<ŒÇÔ?2àL<‡~?0|<’*?-éû<¼lW?+™(=C1?) =BÇU?(JI=è\h?(JI=úâè?&÷„>i¼?$ûe>aü?!#>aü?i@>´Á>» „>>>eß>i¼=ø£=ýˆq=°‘ =ß!=š”=&ýE=˜¿±<ö¤=”&<§@A=†8üƒÙ¹ûÊ>ŒÕé¹ûÊ>’ÓË; B–>˜õ<ï>›Ð¡<‹Þ@>ž×<ë¼q>ž×=1É.>›ã=[ºv>–òs=~.>’ÓË=ˆÓ¿>•¨=ŽÑž>f½¸=ŽÑž>`¿Ý=—Ît>]÷=¬Ç>YBw=ܶ4>YBw>£ÇV>\Ar>»¾é>h=6>͸–>x·e>ܳR>…X‰>æoç>>ííC>›ã>ó+j>¥7>ö*[>° „>÷©Õ>¼Å>÷©Õ>È>ö*[>Ðýê>ó+j>ÙúÇ>ííC>â÷—>ãpó>æ¶J>Ù´]>éµ8>Ï8>ëôt>À=T>ísë>¦ÆK>ísë>7ÁE>ë4µ=¾ÀÆ>èõ= ËK>æ¶J=‹Ò·>Å%=ŽÑž>¾D…=‡TL>¹Æ=m´#>¶Ç%==Äê>¶m= ÕÔ>¶Ç%<»Í{>ºV<ç2>ÀƒR;Lj>ÅÁÞ¹ûÊ?­O¹ûÊ?‹—; B–?"Z¿;»÷'?$™÷L¹í? ²“>Ét? rR>¿}™?qC>Öµl?I>çï^?­O>ð,v?"*¬>öê?(ˆo>ù)P?.æ2>ùé ?6±>÷©Õ?;AÙ>ôªä??ÀD>ð,v?Dþk>ç/£?H];>Ûó–?Jœq>ÑwF?K¼ >¾½Ý?L{É>¨EÂ?L{É>c1þ?Lé>S»?JüP=¯Åÿ?J<“=—Ît?Hu8=Œ’«?9Â_=ŽÑž?6«l=‡TL?3ô^=m´#?2¤ø=IÀÉ?1å#=Ï?2\ÿ<ÖÄ=?3”˜<ļ?5Có<ï?8Bå; B–?<ǹûÊ?sÍó¹ûÊ?xL^; ¶?`´­>¿}™?_•>Õ5ö?\–>énÕ?Y÷ >òk¯?UÂ>þgv?P:w?²&?Iܵ?÷?D>¯? ê??…? b?9£? Û?1%h? Θ?*ç? Θ?!jð? n¸? +? b?¯j? P,?qC?Q:? Ó=?rï?µ½>ó+j>þ­Ù>ü(A>ðrØ?ÑÃ>æ¶J?в>Ù;? ϧ>Ë? O>¹Æ? Û>¤Íx? ®ý>•Ò¿? b>‰Öô? P,>t8ú?>KÇ5>ñ«ð>KÇ5?ÑÃ>GHÊ?в>:+«? €=Kóß? P,=É?Àj<ä&ü?÷<¨<)?ÑÃ<ŠB)?z’<„HÏ>ý§·<¨<)>÷©Õ<ð"Ý>ñ«ð=Kûœ>î} =ãͨ>î¬ÿ=øÆP>ë® >á“>äðj>à>Ò7>_þ>®C§>_þ>C½>a=ľ¥=øÆP=—Ît=íŠb=Œ’«=(…=ŽÑž<ð"Ý=‚ÕÐ >>???@@@AAABBBCCC~~~€€‚‚ƒƒ„„……††‡‡ˆˆˆˆ‰‰‰‰‰‰‰‰‰‰Š‹‰‹Œ‰Œ‰Ž‰Ž‰‰‘‰‘’‰’“‰“”‰”•‰•–‰™™šš››œœž"<=#;<67868969:STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeRSeRefRfhQRhQhiPQiPijOPjOjkNOkNklNlmNmnNnoNopNpqNqrMNrMrsLMsKLsKstKtuJKuJuvIJvIvwIwxHIxHxyHyzGHzGz{FG{F{|EF|E|}DE}D}~CD~fgh‰–—‰—˜‰˜™=T²·¹–Vï>‘U¾¹–Vï>˜(Ô:‰!>ž;¥H$>¢½<`šª>¥ K<Â2Õ>¥Ï= Æè>¥Ï2=<ŒP>¤õJ=e>¡·Z=„~:>œ]=‹ÿÎ>˜(Ô=’ÒÝ>iWè=’ÒÝ>câ5=¾+>^l=«dI>ZTS=ư¸>V< >f`‡>Xöã>´´X>b„Ì>È~ä>p*þ>Ø18>£k>ã>ŒŽÃ>êž[>–Ëg>ð¼>¥Ï>õ‰³>³u2>÷•Õ>Àl¬>øDŠ>̽>÷•Õ>Õ”©>ôÚû>àþ>ð >è°€>éï¦>ðá>á¿$>õ§û>ÙŽž>únö>е>ûÌ_>ÅY>þ‡2>¦_q>ý)È>->û§=¹ Š>óšF=’Òª>Ó´>=’Òª>Ì2l=\û>Ç—5=xšÌ>Ä-ª=K¾>Ã'=Q%>Ä„ì<¡p“>Ǫ<*ª>Ñ|fº"â?$uB¹–Vï?(;ë?,¥Ä<,=?.±ä<‹™Ò?/v <û…è?/·½=9ÑM?.Ç¿=i—>?,dC=‡çŸ?)<8=ü?,~=ü? ]=•«?==«dI?¼â=ÎáD?*>¾ðü?°¿>Ø18?¤ >ãËB? éÉ>î¶ž? .ó>ö8h?n >þhë?UË?ž>ý)È?XØ>ó›Ü?dù>é_8? q>ÝÅ+? %à>Ô7Éú˜? 2>½ÝŒ? ]²>²Å? Ú¦>¦}Œ? ¯>š`X? ;Æ>Žò-? [F>‡?¶F>yb/?L³>f>ÿŸ>N Š>ñqq>N Š?ïK>KP±?XØ>D}›? >=ª?­>5z? ½=>Ûù? ½=ü?Âc<ïÄ~?¼R<«‚??°4<’ïÒ?RÇ<‚“?—ó<‚“>ýº9<˜iÄ>õ‰³<äÙ>>ð =9f[>íY1=Ò&>íY1=ꦸ>ëM=û¨>çã…>ù‡>âmÜ>Ê>•þh>Vñ>(ô¯>Vñ=ư¸>>®=¥îª=ꦸ=ü=#š=’Òª<¾T=ƒÎ—Ê’£;&ÅÒ hhiijjkkllppmmnno%&'%'(%()%)*%*+%+,%,q%q-%-.%./%/0%01%12%23%34%45%57$%7$78#$8#89"#9"9:!":!:;!;<!<=!=>!>?!?@!@A!AB !B BC CCDDEEEFFFGGHHHIIIJJKKKLLMMMNNOOOOPPPPPPPPPPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]P]^P^_P_`Pccddeeffggh567P`aPabPbc>ŽÎ¼zŒä>¢â«¼@">³ìn»–›>ÄZm;îÖw>ÓÝ<ÍÀX>âÇC=H<>í»F=—;†>öÛë=Çé¸>þÅ>X? .>+Š?*h>O Ÿ?¯×>zÝ•?ÃT>°?a÷>¢/?@½>ºäH?5Û>Î]%>üUë>ÛÀ<>ñýº>ë’w>䚤>ûd§>Ù Ó?Œ>ÌC‹?Òý>ÁOˆ? ü>¶[“? ±3>«g? 6¤>žz? M>–x? M>n%q? „ˆ>G3¶? ±3>+5ô? B>t?75=õ‘?ôÄ=Äat>ù‘T=›Š>ë’w=v¸S>à°=7om>ÐÌC= Ÿ™>À^D<Óð>¯T<¬&Y>˜ÐÅ<¬&Y>q<ÜÔg>GÀM=[í>'å=OÆ—=ìlU=›Š=™ª¤=ÎÝ=>€>à,<ºG$>&W¿;Çå¨>HkE»½Œô>yi¼gë>Œ¬·>ùC€>š]Í>øYÅ>¥í>õê«>¯©þ>ò‘ç>¹fu>ìÉÿ>ÁëO>å|¯>ÌC‹>Úˆ°>ѽ„>ÐÌC>Ö›¿>Æt >Ûyñ>ºäH>Ýé>°Œ>ß¼a>Ÿ‚M>à'>‰è>>ß ¡>n²>Ü¿>J/j>×7ƒ>&äU>ѽ„> )>ÇeL=Ûb„>»Õˆ=¯’Ÿ>­Ö®=‹ñ> sŽ=t „>Œú°=eq¯>ƒÚ=jOí>fØ=S‹>GÏY=˜s>1K¾=´pÚ> Aõ=Øóg>oº>**>Œ>"!=íÂF>Fˆ¾=ß' >dõ—=ÙÞ>ˆbÇ=ß' >¡ñh=õ‘>¹¬¹> "u>Í%—>co>ÝÂ>.Ü >çP>@Ïü>íÚ§>Z^š>ó{>urÃ>÷— AABBCCDDEEFFGGHHI@A @ ?@ ? ? >?>=>=<=<;<;:;:9:98988786765654543432322121010W0WVWV V !UV!U!"TU"T"#ST#S#$S$%RS%R%&QR&Q&'Q'(PQ(P()OP)O)*NO*N*+MN+M+,LM,L,-KL-K-.JK.J./IJ/I/=*•Ⱦ@t^>ޏ­¾@t^>— ¿¾=®>›æà¾8!K>Ÿ^˾/Î?>¢Ö¾¾&>£\¾›i>¢%*¾ Ó> f¾.õ>œO½ûû>— ½ód|>’â6½ðžV>`e•½ðžV>ZØä½å„õ>V¯T½ÏR%>Sèÿ½• ³>Q"ª=I^8>ZØä=ø”>eòL<á%Ú>rná<“sð>Šƒ< „>‰Ý9Ê` >’0¢»¤ð>šƒ²¼Ô>¦N°¼W©>°¶…¼mÛÛ>½ä±¼mÛÛ>Èþ¼AvW>Øò§»ÑU“>êJZ;‘×™>üS£<Êó?|á=Tw™? °Í=–¡ƒ?ï/=áŒÕ?¿Õ>Ÿt?Þû>?Û—?šò>h¹? ô>ˆÛ‚?›>¤à?7Å>µA*?{Ë>Ƙà?«>Ü?‡>éùß? ôÓ>ú ?ð?ܳ>ý:?ûÜ>í²? Ì–>ÝÍÁ? ’ô>Ëá? ö >¹»+? ö >ªx:? T>˜nê? ˆ>‹@Á?Â6>~ëw?£>h¸§?o$>Q"ª>òLï>Q"ª?JE>Lù?<>HϘ?Â6>:ïÔ? sË=@ÈŠ? sË= I…?Â6<Ûâ?·Ò<£”û?ûÜ<‚H•?çùîg<®®^>ôa³=¼Ó>ð8*=*•È>îÕ=à™>îÕ=ë!ú>ìÀ;=ùÄ>éùß=þŽn>á¦Ó>ªe>¹j°> “>?Û—=ûÈ»J=ö;i½®Þ=ë!ú½×¥+=×½½ï:Þ<¼WŸ½îÀ=<+ÀX½õvÚ¹½# ¾ß»Å3¾ºz;êp¾(ÞZ;¥´$¾4©i<›/§¾>¸s>X>£éu>aÈÂ>ÂoW>lâ1>Óv>‚í®>âXg>ï<>ìÀH>£ˆU>õJ>¶ôÏ>÷Ù¦>ÊaJ>÷Ù¦>Ûi>ó°>æþÖ>ì¿>ñëÒ>á¦Ó>ý:>ѱ?ú>¾EÑ?T>¨Ä’?µ>–»E?Àé>­·?ð>FËu?ð+>$>ùK>l¤>ï%w=Ã)>áE³=–¡ƒ>П•=uÃß>»Y=Tw™>¥=eÌ>˜nê=€n >ˆzb=žôŒ>u5==Ó­4>aÈÂ>\ƒ>V¯T>8ë²>V¯T>„±ü OOPPQQRRSSTTUUVmmnnooppqqrrssttWlml kl k !jk!j!"j"#ij#i#$i$%hi%h%&h&'gh'g'(g()fg)f)*ef*e*+de+d+,d,-cd-bc-b-.ab.a./`a/`/0`01_`1_12^_2^23^34^45]^5]56\]6\67[\7Z[7YZ7XY7WX7W778979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE7EF7IIIJJKKLLMMNNO7FG7GH7HI>¬aÕ¾@”æ?+r¾@”æ?Õɾ<•@?Õ‡¾7@f?€ ¾-ëí?Õ?¾ —Á?Õ?¾îg?ÕX¾ï~?€9½ö‹’?+/½ëáÞ?+r½é7g?×~½é7g?‚G½á8)?׼Î*>ÿ¯µ½¦’´>ýG>8ž >ýG>°GÆ>ÿ? O>ýG?Ê`>ø[? Ê>ò[“? tˆ>ëâ? tˆ>åj? Éï>à].? t·>Ý&?tä>Ú]¶?uB>ÙˆÅ>ý–1>Ù³>öA„>Ï4?u£>Ä5U?_Û>»µÍ?ÊI>¯¶à? Ê>¢b»? ÉØ>˜c¡? ÉÁ>‹º?>|Ëé?>f#K? ts>HÐ? tˆ>,Ó? t·>¨?tä=ÿœ?Ü=Ѳ_? 9=´_ž>ù–Œ=”b€>ï—r=nž>âíê=8Ï>Õ™É=~o>ÄEþ<¼Xñ>°òd<‘²> óÕŒ M<‘²>qîÓ<§ƒ>OG><Ѭ[>-ôë=} > ø!=^Á=Ç÷=™·Z=‰R =Ç«=B«F=ï<ðk>€<`3è>4Òb:/¹>V$µ»êW>„el¼JPP>˜c¡¼4üâ>£·ð»êW>¯¶àº&Û>¹µú< æC>õ<°/>Ë´_= Z¿>Ó =MTý>Ó ½‹Ž>ҳнÇë)>Ì^4½êŒß>§ û½é7g>¡¸ ½ñ6±>œb辚¤>™?¾C÷>—ã¾"—ž>™ã/¾2ëœ>Ÿ¸%¾<•[>¥·Â¾@”æ>Î^É>ÂF+>Ó >¦óJ>Ó³§>cEy>ѳÔ>0Ÿ[>Ë´0> MV>Ã_ß=ßôã>· =³øÛ>¦bŒ=‹üu>“¹d=r¦ô>ƒºÏ=mR>`Îp=ƒý/>@ÑL=ž¥r>#~˜=Ëö²>ÖM> MV=ìZª>?H¯=Ô\É>„K¸=Ô\É>œI•=á°è>´ò=üY2>Êð>*Í>ÜCØ>+}…>émP>K{>òìy>nw¦>øký>‡Ú>ù–Œ>“¹d>øëî>Ÿ8“>õ–ê>¨ ú>ñÁò>± >êí2>»µÍ>âíê>à v>Úî£>É ï>ÐDè=Ü[>^ïå>Ð^w½Þ‘C GGHHIIJJKKLLMMNNOnQQRRSSTTUUDDEEFFppGnPPQ !!""##$$%%&&''(())**++,,--eeffgghhiijjkkllmmn-./-/0-01-12-23-34-45-56-67-78-89-9:-:o-o_-_`-`a-ab-bc-cd-de:;<:<=:=>:>?:?@:@A:AB:BC:CD:DX:XY:YZ:Z[:[\:\]:]^:^oDUVDVWDWX=j^5¹gW“>“{õ¹gW“>š®ù; ï>¡"$;ß#F>¥È¨{–<Å_v>©®œ=þ>©;O=:G>§áÚ=[ßÒ>¤HZ="–>žâ="F>™{ª=”UU>oÆ%=”UU>iÆL=îª>f,È=¬T½>^ùÀ=á &>Z->QÀÑ>[`C>£«µ>b“K>Áªô>pùM>ÚCî>€âÕ>æÝ4>‹Æ>ðvŽ>—¯>övg>¢{•>úè>¯®v>ûC>ºzú>ú©>Ä­ë>øÜ½>Í­±>ô©©>Ö­t>î8>Ýàx>år>áyü>ܯ>â­*>ÒwR>àFÑ>ÈÝø>Ù­a>ʪº>Эž>Éw>Ê.>ÅÞ>ÅG>¿Þ2>Âá)>¹ÞY>Á­ÿ>°Þ“>ÃzÁ>¨xd>ÈGl>¢xŠ>Í­±>«ß>Ö­t>š«ï>àFÑ>˜ß0>éà+>š[>ô >«ß>ú¬‰>£?ïÈ>ªÞ¹?‰K>·*ÿ?V >ÅDu?|{>ÑÝ¿?¼u>ß™?¯Ï>é¶¹?üÃ>÷ƒ5>úö?Ô£>î¬Ú?î>äyé? ¡<>ÕzI? íô>Èá?!>¹GÐ?‚>­H?‚>¡â?mé>•H»? ¡)>‹¯a? Ôg>‚?n>r,t?‡Ä>cÆy?¡x>O`Š>ô>O`Š?‡Ä>KÇ ?:ç>D” ? §>:ú¯? î=W+«? î=“? Tq<÷õ?n<«*«?T„<„Å?:úùvT<Çö´>ô©©=ú+>ðvŽ=W+«>ïÜú=åù>ïÜú=öÅg>î8>b“>è_>Èâ>àCÄ>•Ž>­Þ©> ȵ>H't>/8=ÁíÀ>b“=›ˆU=û’=”U†=?, =–"p=-‰=¼Î<Ï&n=ƒ‰µ<¡‘=W'<••ÿ=#zÄ<Ÿ/<¦,º<Ýz;òSÚ=+ùc:ïØk ZZ[[\\]]^^__``aab !" "# #$ $% %& &' '( () )* *+ +, ,- -. ./ /0 0011223344556667788899:::;;;<<===>>???@@AAABBBBCCCCCCCCDECEFCFGCGHCHICIJCJKCKLCLMCMNCNOCOPCPQCQRCUUUVVWWXXYYZCRSCSTCTU=N]ž¼Ì6T=‚*>¼±;=–fº¼vˆ¾=¡¤Ï¼.”é=ª£Hºõj{=³¡Â<€t=¯"}=¹¦=Î<È„>=÷2<9-ž>Ç;m 1>&CÅ»…Nô>8@¬»ñ;â>OÜœ¼RŽ˜>h˜\¼RŽ˜>†Ù¼d‹e>–g¼.”é>£„»©H™>¯R;%ç>¼?Ü<]'8>Ç}í<õ|>Ð|c=547>Ú ¾=‡’l>ßä=«ŒC>åHÕ=ÝÌ>èT>Ð>éÈ >ùe>é8&>9Ôú>çˆp>Qpê>ã™>j,ª>Û*>€Ti>Ïì|>‰âÄ>Ç}í>µ>¼ÏÃ>•°¿>±‘¯>™ >¥Ã·>j>˜F> ^é>Š8l>¢ž†>v>¤Þ'>W»K>¦Ú>@T>¨=‘>."f>«œý>%€>®üi>A>²[Ö>©Q>¶Û=ýÔý>»ZL=ðWK>ÀùW=çXâ>Ì7d=çXâ>ÖU­=ò–ö>áÖ>©Q>ê’1>FØ>ñQ >"äR>öð>9`{>úßk>Mœÿ>ý>aÙ‰>þμ>z•I>þμ>‡øÕ>þ>Ô>”æœ>úO€>å>õÐE>¤£è>ñàõ>©³>ìAë>®Â*>æù>²!–>ßä>³ÑM>ÖU­>³ÑM>¾)Ò>´ñ>¹ª–>¹pS>µ+[>½ï’>±Ëï>Âþµ>°¬ >ÊÝY>¯ŒQ>Ï\”>°¬ >ÓÛÐ>´ Œ>×;9>·úà>ÙzÚ>½ >Úš¥>Â">Úš¥? Å>>ÙzÚ? tõ>×;9?´‘>Ò,?ô1>Ï\”?„>ÊMr?[ð>Æ^!?ü>ÁÞâ?„>½_«?dH>¸ào?´‘>·À ? ¼ç>¶ Ò? ¥p>¶ Ò?ø>²!–? =¬>«b½? 5X>¤£è? å>å?Û>’¦û?D{>‡hæ?Ô`>xU²?T>fXÅ?T>OÜœ?Ô`>:€I?ü…>%#ö?”Ã>§Î? -=ôÖ”? íb=×›…?­Æ=¬âã?h=‹(¥?=dÙÇ>ûoL=3b@>ñàõ=iï>åƒ<ßÛÓ>Ù%2<ÄàT>ÌÇO<ÍÞÀ>© <ßÛÓ>º:~=iï>¯ŒQ=%ä¤>¦Ú=[Û^>œo˜=†©q>–@§=¯"}>Žñê=×›…>Šr«> T>…ós>FØ>‚”>/B5>~i;>B^ñ>|)—>W»K>yéù>pw >uj¾>Œx >r X>U+>j,ª>¥3Ï>e­u>­¢^>[0>µ>O1M>» >@“Ó>½ï’>/¶´>½ï’>Ù–>½ï’> ¼Ú>º%=êq>µ=ÍFo>®Â*=­ËÞ>¥Ã·=—Oµ>›¥q=…RÒ>÷H=x¨±>…)P=k*ñ>sÖp=k*ñ>^z=t)}>C~¹=€Ó>-ž=ŽQ;>Æ=ž•>Ië=´Š­=à™ü=φ=Î=æ5=µá]>¾j=¦$>»W=¡¤Ï>I’C=%›>Zoa=‹(¥>e­u=iXú>llN=7áv>n«å= éH>n«å<²ã‚>gí ^îœ<1åÁ>R²<1åÁ;š€I=f伺9‚      ŠŠ‹‹ŒŒŽŽ‘‘‘’’““””••––——˜˜™™šš››œœžžŸŸ  ¡  !!""€€‚‚ƒƒ„„……††‡‡ˆˆ‰‰Š"#$"$%"%&"&'?@A?AB?BC?CD?DE?EF?FG?GH?HI?IJ?JK?KL?LM?MN?NO?OP?PQ?QR?RS?ST?TU?UW>?W>WX>XY=>Y=YZ=Z[<=[<[\<\];<];]^:;^:^_:_`:`a9:a9ab89b8bc8cd78d7de7ef67f6fg56g5gh5hi45i34i3ij23j2jk2kl2lm12m1mn01n0no0op/0p/pq/qr./r.rs.st-.t-tu,-u,uv,vw,wx+,x+xy*+y*yz*z{)*{){|()|(|}'(}'}~"'~"~"€UVW>‹Ó¼Âî>žDؼ¡JŽ>®©î¼?l²>¼S‚9ªà>ÈŸ_<¦›Z>ÒÞŠ=;#W>Ù³X=¡á>ß*^=먂>àˆ>+×>àˆ>Yœ>ß*^>vA’>Úb8>€—Ï>Õnw>„ÜÕ>Ït">†Û>Æ’Y>…‹«>Àlp>„>>»Ð9>Ñø>¸é >r(I>¸:@>PW>¶Ü|>}Õ>´ ú=Í™Ù>¯„Ç=¦©µ>©áË=ŽÀù>£d‚=h8¡>˜vA=ND>ß½=D²û>ƒ Ž=Kˆg>q»É=bÁ±>_¢=‘|>QH´=ÃZ–>MßD> >L*L>âöo>N6¾>ë€m>ZÚâ>íä>±er>íä>¸èÅ>îê»>¿é®>ó²®>Ã(>üh­>À? >Â"E?Ýh>¿’º?s”>¸½c? »q>²Ã6? jM>T´? jM>MßD? È>K#¼?Û>K#¼?-˜’>IÅû?2 M>DNò?4ÄÐ>=#U?6Ñw>2Œ?7×Ä>&@B?8E>Û&?8/6> í?6Ñt>­²?52#=õý?2¸+=ï˜í?/¥8=ï˜í?‰â=êÐß? ŒÊ=ß4†? €=Á%$? jF=A¦ ? jF=Kç? Ü<ío?µ< zï?Wd<l²?•<l²>þIš< €´>ö =o§>ïñ =2žô>î<=e,}>í¸Ï=ʸ>íä‚=ÜxV>ë(ú=äªÚ>èmu=çf[>ᘫ=çf[>9]=ï˜í=¯‹7=ýB=w@¤>%=*½ä>8ç<¦›Z>-lC:Ùf8>G s¼?l²>gÔ¤¼¬8®>‚ñª¼·&Î !"#!#$!$%!%&!&'!'(!()!)*!*+ !+ +, ,,---./-/0-01-12-23-34-45-56-67-78-89-99:::;;<<IIJJKKLLMMNNOOPPQQRRRSS        <=><>?<?@<@A<AB<BC<CD<DE<EF<FG<GH<HI>¨½Ž¼…L–>¸¼vG»>ƔӼM¥Û>Õ©h»“,b>àœå;Æ8É>ïÙÎ<Þ@‚?)=†JÏ?)<Éï“?!²‰©?0nÃ<ÔÊ?0À=-Y/?/fÉ=k‘Ô?,³ß=ŒÖ?)rÙ=’ý—? B=’ý—?rè=&1?-Ö=¶‹±?:=á¸??—y>­ã”?:>Þ$n?-Ö>øÏ??*?Ü‘?í”?F5? B?¼? á>Øþs? á>Ò¥? >ÍÄ?wº>È|t?¨~>ÇÙì?6¼>ÉÁ†>ùq>Íè>óâ>ÔŒ±>ñÓ>Ýp2>ñ0>ñÁk>ñ0>ö3*>ïHõ>ù_Ý>é’>ûGw>˺Õ>ú¤ì>\Ë‹>÷x@>×ò>òcö>£.>ëh=Õ€>â„~=´‚>×Ö=˜ä>ÉÁ†=6“>¹â=i–>¨ =có7>–Sù=}XÉ>ŠCÅ=si>~ñ5=¬c>m*-=Õ€>`wh>èJ>W“Þ>4)>SĪ>x»2>U À>»8Ù>XØó>ûY/>XØó?K >SĪ?wº>Iœ? °›>?ÄÈ? í‰=T(Ô? Ú=Iw? °›<éÓ‰? ”,<ÆIK?&s<„@,?__þ…Û<˜Ž½>ø¦_<ìa >òLå=+†n>ñÓ=Ϫ}>ñÓ=Þçg>ïë}=éù>ì¾Ê=ó8š>çò=ú×>Þ$n>Ê>—5>Ê> A©> ü=äBw> cT=¹ß>wM=™ùj>*i=có7>,¸T=–>>.a<µž>SĪ< A>hݹUÁ>‚öy¼Ü>”lX¼vG»>¡¼vG»      001122334455667;<=;=>;>?;?@;@A;AL:;N9:N9NO89O8OP78P7PQ7QR7RS7ST7TU7UV7VW7WX7XY7YZ7Z[7\  !!""')))**++,,--..//0'(()"#$"$%"%&"&'7[\;LM;MNABCACDADEAEFAFGAGHAHIAIJAJKAKL>³|<¼C¯7>¼‘¼î>Äp¹»"­?>Ê~æ<3>Ð <·ý?©µ>âhû?Æ>êã<?æÑ>íêP?&òÆ>íêP?)ùÙ>ï»_?,yP>òÂt?..>ø5˜?.„{?Wë?-›ö?_?+É?yu?)™2?˜?%¼¾? m+>Õe/? m+>Î ü?„¥>È9p?ˆÀ>Ã:¯?• >À3š?ó>¿qž>þ>ÁB°>õÉ~>Å •>ñ>È9›>î¬ >Í…û>íOL>ôG>íêP>÷N#>ìE>ùY>çgä>÷é$>ÞÆâ>´²E=“‚ä>\è¤>ßaê>Z|—>åp>YF=>ênù>]ÐÅ>íêP>’ÉY>íêP>š 5>î…:> B{>ó6˜>¢²>øÐd>¢®¶?Dk>ŸÎ??ñð>™ç?#â>‘E·?Ò7>ŠÃQ? 3=Ga#? Yß=òc?˜3<ÏiË?³¤<ÿ‚?Zíûײ<•Md>ô“‚<Û‰ >ï W=â~>î7ý=Â'8>íœÌ=á¤>íÁ=óÎê>æXˆ>øG=)O>—t<,{>œy˜¸õÊ>¤óÙ¼ Î>¬Ó ¼0Nè=/$s>íœÖ       #$%#%&#&'#'(#()#)*#*+#+,#,-#-.#./#/0#01#12#23#34#45"#7!"7!78 !8 89 9: ::;;<<=#5>#>6#67>•B¼R/­>žöö¼<ýL>¨=»"nT>¯†r<ù>µ|©<ßwj>ºÉK=dQ¹>é'Þ>êv? p=O5? _<ÔÞ>?¼²<+ñ? ˜»"nT?¼'Êê?Rµ¼R/­?!Ÿm¼<þX?&-» 8Î?*ÐP<ˆ)?/3¹=ižR?G¶+>×W£?JÔ>ä?LÃ$>ì´›?P}P>ﯱ?_ãÒ>ïÚ?b_´>ñø?dqÓ>õú©?eš‹>ÿ•æ?e0Š?.æ?cHÀ?i/?aË?go?]ç?ÑR?Z—/? zé?ú©? zé?ªÁ?ÑR?¯¥?)`?²ë?l? ÷?ܼ? ÷>ús]? T>õ&·?Y:>ïÚ?)ç>ðƒ©?-àŽ>ðƒ©?0Û¬>î†ë?2ƒŸ>é:L?3-2>ßô1?2ƒŸ>Ö®?§~=y„;?Ëa>ìŠ4?%>ýÃE?~½?.E>û â?‘Æ>ïÇÖ? äí>ä„Í? ϲ>ÙA÷?gP>Ñø“?l>ÍU…?‡ò>Ȳx>ùÉÈ>ĸÿ>ëàœ>—=~Ðö>Wê©>Ö®>V—‡>ä—>>]7O>ëàœ>e#>ð.÷>šÓ4>ð.÷>¡E>ñ-B>¨¼>õ¥è>©äÅ>ÿ•™>©k?Ùy>¤nd?ÿ>ž&R?ÑY>½å? &=>¥Ø? &=\6?¦÷<©RO?ªTüïI<}ÔÂ>óýà<ÞPÉ>ðƒ©=5Î>ð/&=Ê¢>ï¯Ì=ã$j>îÒ=ñ·>åÀN> |>Ó^.>gД=/S‚>riÙ<Š­£>~VG:·à¬>†J»úÍ[>‹Á'¼<ýL?-!×= à3>ê&R? ¶      ,,--..//0011WW2223344556677889<=><>?<?@<@A<AB<BC<CD<DE<EF<FG<GH<HI<IJ<JK<KL;<M:;M:MN9:N9NO9OOPPQQRRSSTTU  V V   !!""##$$'''((() + +,)**+$%&$&'<LM=’°:`;?>Œ"e:`;?>“‡;K_å>›ö;¯X}>Ÿ³?<3¿*>¢…<‘†>¤á<È]1>¦Ä=8>¥tq=DÜ#>£'(=nK"> F’=€Z´>œÒ¥=Ž*^>—¤Æ=—_>“ :=›ú >oüo=›ú >j;6= ”“>j;6=¬>nÕÉ=¹æ¬>°cƒ>[–>²y>`(">´j¿>`(">ï°¦=°±‰>ñýì=¢áß>ñýì=™¬½>ÎP=™¬½>ÊHß=—_>Çûœ=w«>Ãa=|Î>À€s=7 y>¿í = w>Â:j<¬½Þ>ÆA¦Ë“è;H4>ÕËG:`;??#Jò:`;??'ƒ;K_å?*Ží;¯S??,6cÎãq>º ?º>êÆ?Q>î?&+‡>î?*Æ>ðhO?-¦Â>õ'¯?/ý>ýP?/ªv?ÿ?.»a?9E?,?,M?&¾Ù?äj?#ÞA? w½>Ø«Ý? w½>Òêª? .>Í){?š¾>É"??àÌ>ÆA¦?“„>Åÿ?²ì>ć°>ü~>ÆÔù>÷ãp>ÊHß>óHä>ÏvÁ>ïÔû>ÔQ>î®X>ç¢*>î®X>ë©j>퇲>ë>êÆ>¹N>°‡Ø>µ‘^>¯a5>±Š&>±+>€V>êËÅ>~óT>í=!>„9>>œd1>î®>>£'(>óHä>§.g>÷ãp>¨è]>ý¤¦>§Áº?F>>¥tq?&×> Ùå?t>™ò? w½>’vç? w¶=”€×? w¶=„cñ? .=_Xá?Q=?ò?—"=å?IÜ=¯ó?Bž=JŒ>ùg=1OH>ôo‡=Z¾J>ðhO=‹KÇ>î=òá4>î>@E>ìôb>éP>êÆ>k®>äåæ>˜Ëi>Mó=ú_’=£v’=ã\ =™®´=»®=™v=*h =™­!=Éâ=•¦¤<ÆŸ=‚¯6<˜I=_e3<•À1<Ï7¼<Èe•=9^ž;8í<¯Ñ="í5<í>R= ¯   !!""##$$%%%&&''(())**---...//0000123424525626727828929:12:1:;1;<1<=1=>1>?1?@1@A1AB1BC1CD1DG1gghhiijjkkllttmmnnssooppqqr*+,*,-1GH1HI1IJOPQOQRORSOSTOTUOUVOVWOWXNOXNXYNYZNZ[N[\N\]N]^N^_N_`N`aNacMNcMcdLMeLefLfgKLgJKg1JgDEFDFGMdeabc>`ù¾MÂ>@…—¾Jž>ZëE¾B߆>|S¾6çú>Œö­¾#åõ>œú;¾ %µ>«h½ζŠ>º1Q½c“«>ÈEªº…ƒ?(‚>æpþ?ùI>ð¥Á?ý>òÂ4?%õ'>óIa?)§B>ôW©?+Ãû>÷‚2?,ÿh>ÿôð?,¥6?è-?+iú?ü£?'·³? /Ï?#$J? ä>Øv¬? ä>иJ? /Ï>ËÊÆ?Ç`>ÈEª?Ô>Æ)?Ž>ÄÀ™?½5>ÆÝ;>ûÇ>ÊbS>öÎ|>Ð >ò•.>í•2>óIa>õS‘>ò•.>ø$p>ñ,¿>úA>ë‹>´—=¤ü/>g—2>çQ·>dÆZ>ñ,¿>m8ö>óI2>˜Àí>ó>žé”>ôWŽ>¤^•>üp=>¥Î?ˇ>¢É7?îR>ž5ë? ¨®>–w? ú>Ž1¨? >=^cƒ? T¦= pv? ‰ê<Äú‹? !{<Œ¨æ?Pœüp=<Ð>!>õf=& >ò•.=Ú2Ù>ò•.=ð>>ð¥©> [>énY>–J<=!O>˜fä–J<¼€‚Œ>“yd½0ãî>#m½‚¯>ƒ¢Á½¯«>qrA½Ñ‡b>Y‚ß½í°>:‰G¾…>!1z¾TÖ> ÷¾TÖ=ë÷¾…=ÉM”½óQÒ=µ—p½Ùú=Î:-½Ëå¨=â¥a½¸/”=󊙽œâ=ö[q½n×=ño¡½)ÙM=ßÔ|¼üh§=ëɼ¢M =“ͼ=p¤=XÁÛ¼=p¤=t¢¼€Æ<Œ¨æ¼Úžr:/îp½AÉ.»ËGǽž×Ç»‡«ü½Ê}·ƒo½ô<(®ö¾˜J<Û¶¾"}‚=B:°¾1úN=ü@¾==»=Æ|¯¾E°^>7é¾KR"?,èà?==>>??@@AABBCCDDEEFGEGHEHIEIJEJKEKLELMEMNENOEOPEPQEQRERSESTETUEUUVVWWXXYYZ   [ [                  !$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23#$3#35"#5"56!"7!778899::;;<<=  "67345=”zž:Óùè>ê†:Óùè>òº;@ ¢>ù ”<$/ >ýZ <¨) >ÿ€Ù= ~>ÿ€Ù>Zö¹>þmt>e¸»>ý>q¦>øê@>yŸÐ>ô÷>|P4>ë™ó>{<¾>æÂ£>xŸ>áëV>pz¶>ßÄŒ>jP>Ý >ak&>Û™f>OJ>Ûvó=ÉAt>Ú¨›=¹¨>ؤ=­Ò|>Óet=¤­Þ>Íz¿= `F>Â/ =œ®=îØ2=œ®>öå¢>ãÑZ>üF¦>êEÃ>þ÷(>ñCÞ>ÿ€Ù>úhÂ>þmt?øH>û3A?2{>öå¢?m>ðúð?±‡>èép?€>ß:Û? È=½[Í? È=£Š+? È=‡‘Å?€=hi@?l®=JJ?m=5Ø•?í =,*Ì?ÆÔ=,*Ì>þ,ª=,*Ì>µ+=/c£>°P=JJ>ªÍ)=l¶È>§N=…k>¥õÝ=Ï>¤XÆ=²™È>¥l,=Ëâ>§N=ÙÞ™>«ö=êŠ>±A’=ì±o>¹ÜÃ=ì±o>ä[=ó%Ç>訦>A}>ëâÙ>d|>ìlŽ>ÇV>ìlŽ=,*Ì=ã<×=Ÿ=º1Ö<¬5Ž=¦Ô¢<’d=‚A <šÿ*=7 @<ÆA<í‡=ôkïÅ7>}Ó  99::;;<<==>>??@@AA   BB     !" "# #$ $% %& &' '( () )7 78 89)*+)+,),-)-.)./)/0)01)12)23)34)45)56)67>‚˼Œ[M>j¼Ñ¼kÈÆ>Tðú:ˆ7r>H±<Ó?È>C‰C=–ù>C‰C>˜f>>ar>¦“}>6¥Ð>²,þ>'.j>»2œ>·>ÀZc>«Ü>ÆÌ>ÞÝ>Ê©ø>1}ÿ>Òe¤>;Í>ßI>C‰C>òžG>C‰C?)¤>H±?2¿>U”s?5â“>bwæ?9Àg>w?;¯S>„‘&?„‘&?A|>o[Y?A|>Pl¯?A|>4Ý?@2$>Jñ?>C7>«Ü?; \=ìhú?7Ñ}=Üñ¨?3ó§=ÍzW?.&ç=ÈRƒ?'µ,=ÈRƒ>ñTQ=Ã*®>ã&è=³³c>×g=šþç>Ñ—ó=k¬ >Ì+˜=µN>É’È=+©¯>ÃÈß=„oi>¾ØÃ=¥ƒ>¹lk=»4¤>³?B=ÈRƒ>©'_=ÈRƒ>šùù=ÈRƒ=yù®=Ò¢<Ó?È=çA=;¹3> g~¼Ÿð‹>,V5½†*>MØÑ½CN>nÒ$½Œ>>ƒ“½g“          !!""**++,,--..//0011112233$%&#$&#&'"#'"'("()")*=êUĽ$s>AÐj½$s>AÐj>œ9¬=êUÄ>œ9¬=êUÄ>ÒG>AÐj>ÒG>AÐj?Ao)=êUÄ?Ao)=+"®?<ÐI=‹|?<µ=·G?8$=Ïá}?1Ç=Ú;"?%zý=Ú4×>ôðº=ä>泓=ô>Û &> “º>Ñým>>ÌÏÔ>+;>ÆVÛ>îK>Âtâ=þpH>º°É=鹕>­¿ =Ú0>šT=Ú*Ô=`ƒü=ÏÎí<³Êr=µë;Þ!S=œ%¼ t£=e5ʼ‚ÙÏ=¸À¼—Ž=·´½Ÿ=‚"Ľ T=ÀD¿½¡ç=ù9e½ íŸ>€F¼Õ¼E>+6_¼\a >:¿ ºT€>BƒŠR>JH=÷>Lß-=Í>Lá¸>›ŸE>OxÝ>©Üb>W=b>µ‚­>c¥>»~³>vN´>Àðé>‡Ô9>Ä9>Ýf>Å µ>ƒ0›>É\Ö>nú@>ÎRŽ>^^F>ÓÅ>Sy>Ùù#>Lã¶>ä8>Lä>òYX>Lçb?(·>Gºm?1Æ¿>=_®?6ôG>#|š?=m6>kÈ?@©Ä=ň,?A¶Û=ƒL^?AûÒ=)eõ?AÙw          !!""**++,,--..//0011112233$%&#$&#&'"#'"'("()")*=«,•> F-=ºˆ{> ê=ÉA…>¢Z=Ñ’ø>©;ð=Þ_Å>­ý=ðKJ>®þ>òr>°F->/ö>¯¢I>3í>¬Á>o/â>£yd>ƒÀç>Ÿ¢Y>ŒÒ>žZ«>••>¶Ç>œdÕ>žZ›>¥Á> ˜>®¢/>¦¬“>µ¬l>­¶Ñ>ºËP>´éú>½þX>½¶Ñ>¿F>ÄÁ>¿F>ʃž>¼¶©>ÎZ«>¸ßŸ>ά†>¶yC>Ͷ¶>²y9>ɶÇ>®¢/>Ådå>©ƒv>ÁÛ>¡Õb>¿¢Y>š'M>¿¢Y>‘1‹>ÂÕ‰>VÝ÷>Ï¢Y>Dòr>ÑÛ>3í>Óyd>Ó¹>ÒÕ‰> XØ>Ðê=÷ù^>ͶÑ=Ö±°>ÇôB=½>ÁÛ=¨9>ºƒž=›Ðl>²1¶=–±³>©;ð=™å>¢Õ           !!""##$$%%&&&'''((()>„y>­h>(ôK>­™q>6sn>®-‡>BÊX>¯U¬>P¬>±¥ò>\=Š>³0Ô>fD*>¶F>t%ë>ºç >€¡ >Á•>‡ô·>Éñ>‰’>ų,>‹ p>ÀM&>Žå”>º„j>“†+>¶F>˜&Å>³“Š>ŸŸ>°}Ñ>¦€>¯U¬>®!‰>®òï>µu>¯U¬>½ðá>°à‡>ÄP>³“Š>Éå >· ø>ÏK>½7m>ÔN^>Èv>Õv€>Íi|>Õv€>î0H>ÕÊ>ó–N>Óˆï>ø6å>Ñ8¥>úéè>Î"é>ütÂ>Éå >ý:.>ŧ*>ü×{>‘r>ûL>¿Þr>øüP>½+o>ô¾s>¼MN>ïì>¼f>Øúð>¼J>ÒÏ~>»=ß>ÍÌ2>¹PG>ÊS¼>¶ÿý>Èv>´Lû>Æå>¯¬d>ų,>ªFd>Ç>>¥C>ʶy>£U€>ÎôV>¡Ê¢>Õ‚>¢òÇ?âB>¢-_?"ÜX>ŸÝ?'K“>*?*Ä>šV?-Ù¼>•½Û?0O>&k?33n>‹ p?5-V>ƒT?6é>xÆx?8ti>h”m?9œŽ>[x?:aü>N[È?:ĵ>=dK?:ö>-2@?:ĵ>5?:“W> CL?9Íé=ÿc¶?99×=ëVu?8²=Ô3†?7æ=À&W?5 =­¤?4gç=ŸÂD?2Ý =Š*,?0ïv=reH?.Ї=\ÍS?,âò=G5;?*Ä=4±E?(s¸=%FN?%]ÿ=ã?!´3=%FN?m=4²Ø?ˆÂ=SŒ4?¤d=~¼A?…u=”ö8?Ž©=­¤?+ð=ÆQÒ?Ž©=×I5?…u=è@Ç?R=ó ¸?/@=úÃ?Œ=úÃ?1=ö"?!‚Ù=îl2?#pk=ã 3?$˜=×I5?%Àµ=ØÔ'?'K“=àŠi?)9(=úÃ?+ºË> }à?-M>5?.mÎ>*áö?/3=>7þL?/•ú>E¡?/•õ>ULÛ?/=>`²?.mÎ>mús?,Nß>y)L?)¨7>{Ü.?)Ê>‚+û?%ò>ƒ¶Ó?"ÜX>„Þû?Æœ>„|B?& >‚ޱ?R>·\?À>tëW?¡>gÏ?G–>Wœð?o>Bå?Z>¿?Ï%=Ò¨¡? DG=¥í¯? ˆ=l9Ý? =ÙÁ?o <Èü >ütÂ<…2>òÐßé,øÝ8Î<‹Ià>ÕÈ<ÕS#>É+—=,>À¯ß=L›!>ºÎk=Š*,>µ=À&W>±C==è@Ç>®òï>ãæ>­h>„|B? ‘H>„|B>÷Ô+>ƒ¶Ó>ñ¨º>ÉB>éòj>{Â>ß&b>r› >Ù]¦>jK>Ô½>`²>Ð1>R6÷>ÍÃ>>)½>É+—>.½>Ç ¹>uP>Ç>>ó>Èv=ëVu>ÉŽQ=Êòc>Íi|=³Ïp>ѧY=¢×ù>Öªª=›!£>Ü©=”ö8>ãÆø=–>ìB·=¡M>òÐß=°¹»>øüP=Á±1>ütÂ=Þÿ’?'ó>á?²Ñ>X?‰>(‘³?Úö>;Ùm? P>Oæ ?>_S??ÈŠ>qÕ›?" >~,~?@û<%j>oÇ>Ûa§>oÇ>Ûa§>š<%j>š          * * *+ +, ,- -. ./ /0 01 12 23 34 45 56 6l ŽŽ‘‘’’““””•žŸŸ ¡Ÿ¡¢Ÿ¢£Ÿ£¤Ÿ¤…Ÿ…Œ ‹Œ Š‹ ‰Š ˆ‰ ‡ˆ †‡ …† … l…lm…rœrœrs›œs›st›tu›uv›vw›wx›xy›yz›z{š›{š{|™š|™|}™}~˜™~˜~—˜—€—€–—•–•‚•‚‚ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6AB6BC6CD6DE6EF6FG6GH6HI6IJ6Jb6bc6cd6de6ef6fg6gh6hi6ij6jk6klJKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabqr…pq…op…no…mn…¥¦§¥§¨>qî?‚H>ƒÎ‚?p>ÆÂE?3hñ>ÊDÜ?6Ü>ËØ?:'>ÇŸ?>j>¿¶ ?@%Ë>´ZR?>@>ÊêV?<·¾>¹²??Î@ >£ª€?Fëƒ>®º?CÙ>>ñu?ZÒ->ôø?]ë>ö‹Y?aY>ñÑØ?eø¦>êiE?g>ß Ž?e©;>õ’?d ù>äe\?g7| > .-?Fëƒ>!Ü›?CÙ>>“â?ZÒ->—d®?]ë>˜÷ì?aY>”>k?eø¦>ŒÕØ?g>z!?e©;>˜ %?d ù>†Ñò?g7|>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À FFGG  HH!!I""###$ $ $% % %& & &' ' '( () )* *+,-.,./,/0,01,12,23,34,45,56,67,78,89,9:,:;,;<,<E,E=+,=+=> +D+>?+?@+@A+AB+BC+CD>¸Óÿ?2W>¼8ª?$0ñ>ce??A}>q¯³?@9®>bÅ÷?@ú>Sä&?<È¢>Q=±?8Îõ>^?3¾>Y?l??•>Um?5÷Ñ >Üe?A9¹>ßÊ+?G8S>£C4?bHß>œiX?cA>”ôz?c'\>ƒ”?_Ð>Œ0Z?[ÖW>’’…?VÅg>18?bö>ŽH?Xÿ2 >‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À>ƒ„t?@Añ>†é?F@Ž>ÄN?aQ>œ?bIH=ðMÀ?b/”=ÒŠ?^Ø<=Í=5?ZÞ=æÅß?UÍ£=Ý@«?a 2=Õœ?Xk    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:@AB@BC@CD@DH@HE@EF@FI@IG>.À?!°e>žEò?.«©>§ÂØ?2ê>©Ã0?9g>¥F?>eä>K ?>å±>(ÁÀ?'®4>!ÄŠ?%/9>œq??e–> C?"°>(ÁÀ?'®4>³Rb?!°e>ú8G?.«©?Ú?2ê?ÚÂ?9g?œ:?>eä>÷úÉ??e–>ì=b?>å±>°SH?'®4>°SH?'®4>¬Ô§?%/9>¬ö?"°         >OÆè?B‘Û>®É\?O>¸FA?Sˆ>ºFš?ZI >µÉ…?_G\> Îp?_Ç'>IÈš?H­>BË]?F¯>¬‹×?`G >AIï?C‘}>IÈš?H­>ÃÕË?B‘Û?]Ú?O? Q?Sˆ? v?ZI ?Ýî?_G\???`G >üÀÅ?_Ç'>ÀÖ¯?H­>ÀÖ¯?H­>½X ?F¯>¼—`?C‘}         >kù¥¼‹ã¾>‹B ¼~’ >œ–á¼»®>¦ þºÝzš>²¥É<ß¹>½­r<¢Ÿ\>È´¯=U¹>Еl=U¨ÿ>×z=}¯>Ýùé=¹œ>äGJ=‡0Æ>ðk=ðt>ý|â<–†?%;¸L? Y>»,?lt¼9=N?,(¼eZx?)Hß¼?‰ƒ?3†§»Î w?>)C<Çm?Cø°<¯9I?I•=ðt?MêÁ=bCÝ?SÓQ=¦³Ì?Wò=Ùø?Z ·>žh?Zêd>­G?Zêd>*?YÕT>7²?VÇÁ>BÒÝ?Snz>GñÄ?Pa>H»ƒ?LWi>F^h?I•><êQ?GÏî>/ê©?E@U>†•?CH%=þï_??WÞ=̃ý?:¸=°'é?4PV=~5?-ž=u+ô?$)ý=bCÝ?¼=h‘9?¦£=‡0Æ? a =©Ú{?§=ϪÛ>ÿ§@>žG>÷ù,>(nÈ>ó?>N?/>ðk>ƒ{Þ?V•,>ƒ{Þ?Z…Ž>„EŒ?\}½>ˆÿ—?^uí>—÷j?^uí>¬r÷?]G„>º¡?[O;>Êb™?X`>Ú$?T8(>爑?MêÁ>÷J?G8†?(Á?@!s?¬y?9o8? Ó,?/û? • ?(_? Ã? 9?(d?ô? ùà?K? Ëc?2‰?¤ª?€N?´J>ûÞ?–>òur>û:o>ë^]>ñÆY>äGJ>åõ8>Ûœß>ôí >Ò(È?Ãë>Åý?Q>·_Ô? 8>§žW? ^·>—*?;>‚e(?ò>b…Ž?(d>AnË? bª> ½m? Ó5>i??G£=Õù?òm=©p.>ù§=ç>ïiR=aoD>âΆ=Lñ£>Öf'=Q®‘>ÉË[=tUÈ>¿òh=—Qà>µç=Â¥Æ>±-=ëœì>®Ïú> xh>°0Ö>2,>µe>)>ºn¬>/µÐ>¿Œ>4Ôg>È’>4Ôg>Ñy¯>0_>ØÂ>!ìA>äaÜ>,ó­>ìBœ>?Û >òÂt>b ¡>÷J >€:š>øÝl>‘Áè>øœ>`’>ö€d>©ûÉ>ñøÅ>´Ð‰>éê>¼ã>á;->Ãú >Ó >Çë>ŨŽ>Ç!R>¶°»>Ç!R>¦%’>x”m>¦%’>Q0·>¤’6>4oz>£cÆ> Iÿ>{1=Õù>”и=ƒŸÊ>„EŒ=5Qs>oU€=æD>QeÚ<ÆÆ™>0O‰<­â> <ì— =¼Âµ=/={ys=ƒŸÊ= :=¼Xh<`hU>ÕâºÝzš>#—¼2ñ$>D•è¼~’ >ôÒv>¦ï=>÷/z>±->øÂ×>¼4t>ûé‰>Ær<?¶£>Яþ?Õƒ>ÝJÍ? >爑?Üö>?*\>ô#Z?wÂ>õ¶¶?%X‚>÷J?+A>õ¶¶?0_ô>óY¯?7w>ìBœ?<1>âΆ?@!s>×Ç?DÒ>È’?FnÙ>¹×q?FÓ®>¯™¥?G8†>¦ï=>Ç!R>‚²0>Ç!R>L«Ì>Åý>*>Á™> ¥Ô>¼±J=ìЮ>´9"=¹œ>¦ þ=“Ë’>™p2=u+ô>‹B =U¨ÿ>w=ID>RÄ =ID>4Ôg=h‘9>½ª=s=û^`=¹œ=ß=ø¡û=Õù>Ô=âò©>9ó=û^`>Vé>—c>gtÆ>(8È>w6\>JãS>Ú>g?>è…>|é•>‚²&        * *+ +, ,- -. ..//žžŸŸ  ¡¡¢¢££¤¤¥¥¦­®¯ž//0œ0œ01›œ1š›1™š1¯™112313414515616˜¯1˜¯˜…­¯…­…†­†s¬­s¬st¬tu¬uv¬vw¬wx¬xy¬yz¬z{«¬{«{|ª«|ª|}©ª}©}~©~¨©¨€§¨€§€§‚¦§‚¦‚ƒ¦ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6A’6’“6“”6”•6•–6–—6—˜ABCACDADEAEFAFGAGHAHIIJKIKLILMIMNINOIOPIPQIQRIRSISTITlIlmImnInoIopIpqAIqAqrArsAs‹A‹ŒAŒAŽAŽAA‘A‘’TUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcfTfgTghThiTijTjkTklcdecefs†‡s‡ˆsˆ‰s‰ŠsŠ‹=RjC:?Õ>–wí:?Õ>Ï/;(Kä>©Yª;¤¯ >«§ƒ<"à >°¯é<”>²'€=¦×>³iý=0¢$>²“z=R1 >°ê=ƒñc>«>=˜ü>¥‘á=žÊ%>žÛ¬=¥€^>‚UY=¥€^>}ôy=¬6‡>}ôy=¹¢ù>€§É=Ñ Ÿ>…°o>»“>ÁAq>¥Š½>ÆJ>¬@ò>ËR¼>¬@ò?{‡>¬@ò?”v>©¼œ?Ö >¤³ö?Ö > zk?ÿÙ=èž\?Ø’=ó0?ÌB=´™ò?‹g=¥€>òÁ'=¥€>ìá¸=žÊ%>çÙK=°ç>ã§3=XçX>âÐp=7X\>äH®<åz>èæKí²;—8a>öS¹Ï‰?† š8Ú]¯?ˆg„;Ú/Œ?Š€¦<À/¶?‹=#5Ò?‹ø=m ?‹ø>‹ˆ¹?‹>“µ?Šì>—G•?ŠD>›yt?ˆb>&þ?‡3>ži.?… ™>œP7?ƒ_ >˜õ?‚½ý>’>ï?‚ç>‡VÚ?‚ç=üÀó?ç2=åC6?o=Ñ Ÿ?1$=¼þ?z“à=¬6‡?sç=¥€^?8¸=¥€^?4ñ”=¨Û|?2Þ=¹¢ù?0TR=Ô{¸?/}‹> K?/}‹>¡XÝ?/èî>¨?2Þ>¬@ò?5\ö>­µ?LoD>­µ?Q ‰>¬@ò?Tg¢>©¼œ?V->¤³ö?Vëõ>¡XÝ?Vëõ>REï?WWX>K½?WÂ…>@§M?[Ò>:È?^xì>7m?aƒ'>5¿~?e\>6*=?ho>>=Kq?j¾>LÑH?k>_²Z?k?ò¡?jR¿? ƒp?hõž? =q?g³s?ÁÄ?dû?í?cí1?Â?_»?oP?\•½?˜‘?Y‹ ? ˜?W¹? ûG?WWX? .?WWX>Üéã?V€’>× s?Sü=>Ó¯]?OÊ^>ÐT=?3D>ÐT=?0¿³>ÒÍ?/->Ö3­?/˜>ÝÀ¥?/˜†?aò?0TR?"xù?2Þ?%Ô?5B4?'fÊ?8¸?(Xc?i`ý?(Xc?l¼?'í?r0#?':?vÍd?%Ô?z({?#»!?}3? ` ?1$?ëÿ?1$>çÑñ?€Å>ãj^?€²[>ßÙŽ?‚ˆY>Ü ?„¡8>ÚÑ?†w>ÛÜéã?‰>Š>áQd?‰Ä¹>è==?ŠD>ð5°?ŠD?4=?‰ÄÊ?5ÄÊ?‰L4?7¨?†ïÝ?9ö©?„¡8?:Ín? o?:Ín?ÅT?9ö©? j=?8I? ?5ÄÊ>£:= 1>Rà=¬<â=Þ­Ö=£ÖR=>Eæ=¥„Â= D!=žÎ<½B=ЬT<€Ô—=M2Ö9>п?_=?+f? Ê?+é+?x-?)dÚ?x³>Öžø?6x>ÐõF?Úë>п<Œhc<¥j}<ξà<;Ö   !!""##$$%%&&''(())***;<<<===>>>??@@@AAABBCCCHIJHJKHKLHLMHMNHNOHOPHPQHQRHRSHSTHTUGHUGUVGVWGWXGXYGYZGZ[G[^FG^F^_EF_E_`DE`D`aCDaCabCbbccddee““””Ž……††‡‡ˆˆ‰‰ŠŠ‹‹ŒŒ••’“e’ef‘’f‘fg‘gghhiijjkqrsqstqtuquvqvwqwxqxyqyzqz{q{|q|}q}~q~q€pq€op€no€mn€lm€l€l‚l‚ƒklƒkƒ„k„„ބބ…Ž…;<*+,*,-*-.*./*/0*01*12*23*34*45*56*67*78*89*9:*:;[\][]^•–>¨]™?)"ñ>ªÝ•?*Ë >¬ÐÉ?,¡%>®*õ?.—ë>®ã“?0£–>®ö?2·D>®aÿ?4ÅÒ>­*ý?6ÂP>«X½?8 ;>¨ö±?:SÈ>¦ç?;ÒC>¢Âˆ?=>>Ÿ~?> Û>›)ì?>¸ð>—”??@>’ëE??>ŽÎ!?>Ôv>ŠÕ%?>8ø>‡T?=O×>ƒ²5?<Ï>€µ|j“?9¹>x„?7/2>uÏÌ?58k>t^‹?3,Ä>t9‡?1>ua³?/ †>wϰ?->{t=?+0>€'?)|‘>‚þô?'þ>†PT?&¾>‰û^?%Ä~>èí?%e>’A?$»>–'”?$±Ø>šD·?$ûå>ž=´?%—c>¡ùˆ?&€‚>¥`£?'±‰>´/²?#³á>¸Ft?&S>»~[?);Ø>½Ã?,[è>¿\?/ŸŠ>¿@-?2ò+>¾o+?6>Þ>¼˜s?9pÎ>¹ÇŸ?¶s??5>±„Z?A¢õ>¬F?C®Y>¦ti?EJJ> 4P?Fl§>™­?GG>“Ã?G+4>Œnd?F³>† …?E×W>€g?Dnë>u#?B’R>kLd?@MK>câ?=®>\¯?:ÅS>X%ž?7¥B>UŸ?4až>U+o?1ü>VÍl?-ÂN>Zzã?*`>`Œ?'R>gŽé?$Ì%>p£?"^5>{Æ? RÕ>ƒax?¶â>‰¡•?”„>(â?òà>–Î!?Õú>g~?>y>£Ë`?)Ò>©Ñ}?’>>¯SÐ?!nÖ()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O>懠?Mˆ§>é™?O1W>êúÍ?QÜ>ìTý?Rý¢>í š?U L>í ?Wú>ìŒ?Y+ˆ>ëU?[(>é‚Ä?]ï>ç ¸?^¹~>ä=î?`7ù>àìŒ?awô>ÝA…?bq‘>ÙSó?c¤>Õ<›?czö>ÑL?c„6>Ìø)?c:,>Èÿ(?bž¯>ÅC[?aµ>ÁÜ=?`„…>¾ßC?_>¼_M?]jm>ºl?[”è>¹í?Yž!>¸YM?W’x>¸FË?U~Ñ>¸Úá?Sp<>ºß?Qs¿>»ä&?O•Ó>¾F+?MâH>Á(ü?LcÉ>Äz[?K#Î>È%b?J*5>Ìô?I}>Ð*I?I Ñ>ÔQ›?I>Øn¾?Ia>Üg»?Iý>à#?Jæ9>㊧?LA>òY¶?H˜>öp{?J¸Â>ù¨c?M¡Ž>ûí?PÁŸ>ý0c?T@>ýj4?WWá>ü™2?Z¤•>úÂz?]Ö„>÷ñ¦?`ÙŽ>ô8{?cšº>ï®b?f¬>êp ?h>äžq?i¯þ>Þ^W?jÒ]>×× ?ksÿ>Ñ1Ê?kë>ʘk?k(j>Ä4Œ?j=>¾.o?hÔ¢>¸¬?fø >³Ð9?d³>¯¹x?bÑ>¬‘?_+ >ª<Ö?\ ù>¨ù?XÇT>¨¿¿?Ut²>©½?R(>«gu?Nö>®8M?Kó>±ñ|?I1Û>¶{Ž?FÃë>»¹ê?D¸‹>Á‹?C™>ÇËœ?Aú:>ÎRæ?AX—>Ôø)?A;°>Û‘…?A¤/>áõg?Bˆ>çû„?C÷õ>í}Ó?EÔ()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O=Ç2?7M·=Ú:Y?/Lä> ?&Kð>#‰C? äî>CŒ‘?ä•>cÞ?JÎ>qC?}Þ>’1Æ?Jà>¥u? >±Î˜?$åi>¼œl?*²Ã>ÅÆ?1³ˆ>Ƈ?8˜>Ãj?;N#>½ò?;N#>µ?8˜>«?2æØ>™Ì?,æ?>†–æ?+Lx>p^?*˜>X^å?+LY>)ðQ?0æ˜>î ?4æñ>Rd?9´_=ÛÒú?<ô=Ê7ß?:>„ƪ?†>=óK?-æ;      >Ѝ—?]Ž©>uà?UÖ>›wX?LŒà>ª«ì?G%à>º­’?C%‡>ʯ9?A‹Á>Ñvl?@¾Ñ>ë?B‹Ò>ýç¿?FY?Zï?K&[? ÁÛ?Póµ?õˆ?Wô{?Âj?^[Œ?(¥?a? õ ?a?ô´?^[Œ?ô%?Y'Ê>ò³d?S'2>ß~0?Qk>ÑK?PÀŠ>Ž?QM>­ßs?W'‹>£ÞQ?['ã>™|?_õQ>Ü ?b[ç>‹uC?`Â>Ý­ø?AXx>·àð?T'/      >|˜_¼¿¸²>eøî½ªœì>eøî½º¶>l®C½ÅrG>v\p½Ä~J>…K½¸š>ÑØ½²©Å>–Šh½¶ö>낽ÂÃe>¢…©½ÚéÓ>£¸0½øn.>¡F,¾ ¡Î>낾® >–@…¾òÎ>ÑØ¾í>…Å ¾ >{pi¾]Œ>qÂ;¾…³>d¡q¾JQ>[=)¾”ü>Q_½ýÿg>K#¾=€>C®¾òÛ>@g»¾ÿ¦>CÀk¾ò >Pe¾'&">d ²¾0p>zó¾5èO>…Å ¾9D>[Þ¾:åÞ>›<¾8°å>¤¾4Ä:>«­ ¾+Ùß>°´¾ pÍ>µí¾]Œ>¸të¾_8>»oÕ½ëw>ºUL½ÊÐ->¸Úݽ­ß‡>²·I½’vu>¬­¬½‚\Ö>¤{ê½pÂ>›<½a^>“/º½hbö>‰,®½|³>°¼ÄV²>æN¼¿“ÿ>–Ú¼¿“ÿ>£}•¼¦Lü>¬qa¼xX6>¶rͼ<>¾œt»'ªi>Ç?;Â8T>ά!Ö ¢<Ήe>Üæ= d>â(+=>¯«>ì)“=Êt>ñôƒ=¹ëd>öLá=Ý3Å>úa>à >þ>ð–>ÿÑ>'¼ø?7>5n>ÿó>DpJ>ûÔ/>M§{>øÍ>UÃ>ô–—>[Xˆ>ï·Ž>^t>ê•+>_>å×Ü>_>à.ˆ>]ú›>ÛÖp>W" >Ø&¿>FH>Ôýã>6{¶>Óis>'¼ø>ÑN2>|>ά!> ?ƒ>Ë?í=õm >ŸV=Ó2\>¿íg=·Ð)>¹Ú=ž‰2>³Iî=‹“þ>©H…=q=•>¢öÇ=Wö>—ç¶=G—>ŒØ­=>¯«>ƒ^=Bæ!>q«°=SÀ>^¶u=hЉ>J³=‡]y>9Ù¤= ¤m>/Qi=³™³> ’«=ÕM¥>á‘=ÿn>0~>âÿ=ù†ï>2E3=ìã€>Nµ =ävz>phý=â[?>‰x=ävz>—Í2=ìã€>©-ú=ù†ï>´=>K¹>ÁgK>¸²>Ëï>N‘>Õj'>+í>ßk“>=ƒ>çØ>LÎß>í£>aßU>ónh>už³>õ«\>…yT>÷¤ë>>ø²ˆ>›™>ø+º>¤d>÷>¬ø/>ô| >¶ù›>î*N>¿f˜>çØ>ŸV>ày0>Éh>ÙÕ>Êüw>Αš>Ä#ê>̓ù>¼=¼>Êáì>µëþ>Æ«l>±µ>Áî!>®ŒŸ>¸úV>¯š@>­ëE>³Iî>£éÙ>¸Ž>Ÿ,‹>¾ßÉ>šö>Ä#ê>˜ÚÐ>˃F>—Í2>Óis>—Í2>ÚB>˜ÚÐ>߆>šo?>äÊ;>˜>é©C>¡`>îDØ>¦&Ç>ñ±.>«Ì>õe>±(>÷¿r>¸s„>øÍ>¾Å>>øÍ>Ç2;>ö±Õ>Õj'>ó$>ãD>îDØ>í£>åQ >ûT–>Þx}?Yú>Ö €?ÆA>Ìã?ï >ÃI? `>¼Ä‹? [f>´¼ç? ›“>ª™¾?0> Ûˆ?Ç­>˜õ[?Ç­>Žm?ó>ƒäâ?Ç­>r¹N?@Ü>^rü? ‡…>LÎß? i>9Ù? o|> Õâ?Wy>Å£?« =摵>ýö¦=®8ü>ï8=”k'>å½Q=vHA>Ú'y=Cºw>Ìv\=È>¸úV<ïË >­ëE<Ū.>˜<´Ð>Œ¾%<®|Ð>{þÏ<½<ý>_<Þðñ>Bˆ=‰ >'¼ø=$!> ´=EÖ9=ìyU=mÛU=ÆŽç=4Ÿ= ¤m=©{–=}àù=Æù=6B=ì\<çÐ)> t˜…;†à>8̼bE>MÜ|¼g}Ó>g#o¼¦Lü>‚×A¼¿“ÿ,,-  ! !" " "# # #$ $% %& & &' ' '( () ))**+++,,./0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<=.=>.>?.?@.@A.AB.BP.PQ.QR.RS.ST.TU.UV.VW.WX.XY.YZ.Z[.[\xyzxz{x{|x|}x}~x~x€x€x‚x‚ƒxƒ„x„…x…†x†‡x‡ˆxˆ‰x‰ŠxŠ‹x‹ŒxŒxŽwxŽwŽww‘w‘’w’“w“”w”•w•–vw–v–—v—˜v˜™uv™u™šuš›tu›t›œtœtžstžrsžržŸrŸ r ¡qr¡q¡¢q¢£pq£p£¤op¤o¤¥no¥mn¥m¥¦lm¦l¦§l§¨kl¨k¨©k©ªjkªjª«ij«i«¬hi¬h¬­h­®gh®g®¯g¯°fg°ef°e°±e±²de²d²³d³´d´µcdµcµ¶bc¶b¶·ab·a·¸`a¸`¸¹_`¹^_¹^¹º^º»^»¼]^¼\]¼\¼½.\½BCDBDEBEFBFGBGHBHIBIJBJKBKLBLMBMNBNOBOP>œiÔ¼#‹‹>Û¿½œœõ>Û¿½®{´>“”Ó½ºeŒ>˜ô½¹VÁ>£öZ½«B>­¤Y½¥Œ]>·RX½©ÎŽ>¿ƒ½·k>ĞϽÒ9F>Åó ½òü\>Ã<1¾bv>¿ƒ¾Qá>·X¾*F>­¤Y¾¯¨>¤´õ¾FÌ>›Å‘¾LS>–fE¾ Ð>!¾å@>‰æÑ½þæ2>„lâ½ù*>>€÷m½ûëÇ>xÿ|¾h>v¾Wa>y»ê¾îm>ƒñæ¾)%†>ŽË!¾3 Ç>›÷¾9‡>¤´õ¾=Aí>°uÒ¾?>¼ˆ¨¾<ž>ÆE ¾8Bß>ÎÇÓ¾.]ž>Ô\W¾!³e>Ú(F¾LS>Ü÷f¾Ä&>àF0½ä >ß –½ÀZ>Ýh޽ ;O>Ö˜2½ÎÑ>Ï䩽_à%>ÆÌH½Hâ<>¼ˆ¨½8K;>³™G½@kÞ>¨|q½V÷Á>¯·1¼-Ë>«¼à>¶~4»þ¿#>ÃkÉ»¬ç>ϳæ¹PíÄ>ß7e;ñ°G>ê4Š<„Ñç>ôµ<Í6µ>ÿ‰†=Q ?‘=HÜ2?“=†°u? É=ª>?šë=ÑÓ?ÿÐ=úeW?;{>ž?Ñ >?‚%?Á¹>†Ñõ?Ñ~>‘Vý?èþ>–Y ?¯¶>˜It? ÎÂ>—¤?ÑW>”ñ?á>Œ|ã?¸>ƒì^?Â>&>>þ=w>N­>úÙ!>>ôô=ì,¯>éá$=Ï8>à«S=¹Á”>Õ®B=£ÇP>ËVÆ=“ž(>ÀÕß=ˆ¡'>·#®=„À8>¬&‰=ƒuS>¡)d=ˆ¡'>˜ª=‹7>‹Ô=’øÏ>€×k=¢|K>lÿ€=·+ª>W<=ÑÓ>A ñ=õ9«>0 ¶A>'Õ>ºÂ>nF>!c'>4È><‹‡>ŠC>R…ì=üE>fâ€=ó:>{‘´=ç—>Š:p=ä\6>–«ï=ß1>¦«Š=Ü›&>´>š=Ü›&>¿;Â=áÆí>ÌÎÒ=ä\×>Û[=ëwŠ>æÓ`=ù A>ó—“>^o?> œ?f¡>Ë ? }Æ>#?Ò>+ ?ù°>7þ1?Ú“>C Ô?»s>Wfˆ·?!߀>wW.?$"­>†B?& >Zí?'°Ò>š²˜?(© >¥ B?(ûÇ>µØ¹?(ûÇ>;?(>Îhñ?&¸—>ØÀœ?$È'>ãG?!:>èé•?ö×>íoï?³«>ñöO?%‡>õ1°?ž>ú]ƒ?¶…>ýÂV? v?@Ö?ˆ:?ba?:Ì?ba>àØ­?­‚>Ù“?øM>ÕÛ‡?Ž7>ÓEš? É>Ñú¥? >Ñú¥?“$>Ô“?ë>ØšÈ?ÆÀ>à3/?}>çôð?}?/Ò?5ú?4‰»?ÿÐ?7¥?8³?9 à?Oö?:Ât? ’?;1?~¦?:Ât?P?9bÓ?Å?6á“?¥Ž?3´?¥Ž?$"­?¼ç?)¡@>üMú?,‰ç>ö|¥?/ÅN>ìÊt?3´>äch?5ƒ>Û€?74Y>ÐþÛ?8Ò>È—œ?:ù>¿Ší?:Ât>³èJ?;gð>ªÛ”?;º«>¢tY?;ä>š ?;|Ÿ>’K_?;gð>‰ä!?:Ât>€1ð?9w}>o•p?8,ˆ>a\ã?7‡>Ug?6Â>=*?3´>)Å«?0 >ß–?-mv> T9?*p=þ8?'^=ß1?#}2=À*?«â=¡# ?-P=oˆ¹?sY=@þH?ü‹=Ÿ‰?…Á<æÙy>ö-z<³#8>æ<‰ÄT>Õ6 <~ÙZ>ÆX³™<~ÙZ> Ú9<žs£>Šßë<Ò*)>q=!÷.>@l›=ZÙj>9Ã=™aO=ð ×=À*=ÁƒQ=鈪=’øÏ>ŸŒ=Hܘ>+ =¢×>Kb’<„Ñç>pàe;k(Ø>‹Ô»¬ç>›X»þ¿#?m>Z™°./0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<H.HI.IJ.JK.KL.LM.MN.NO.OP.PQ.QR.RS.ST.TU.UV\]^^_`bcdefgghiklmjkm‚ƒƒ„„……††‡‡ˆˆ‰‰ŠŠ‹‹ŒŒŽŽ‘‘’’““–€–€–—€—˜€˜™€™™š~š~š›}~›}›œ}œ|}{|{žz{žzžŸzŸ yz y ¡y¡¢xy¢x¢£wx£w£¤w¤¥w¥¦w¦§vw§v§¨v¨©uv©u©ªuª«tu«t«¬t¬­st­s­®rs®r®¯qr¯q¯°pq°p°±op±o±²no²n²³n³´mn´jm´j´µjµ¶j¶·ij·i·¸i¸¹gi¹g¹ºgº»eg»e»¼e¼½de½d½¾bd¾b¾¿ab¿a¿À`aÀ`ÀÁ^`Á\^Á\ÁÂ[\Â[ÂÃ[ÃÄZ[ÄYZÄYÄÅXYÅXÅÆWXÆVWÆVÆÇ.VÇ<=><>?<?@<@A<AB<BC<CD<DÈ<ÈE<EF<FG<GH“”•“•–,,-  ! !" " "# # #$ $% %& & &' ' '( () ))**+++,,=5K?qÐ>•a?qÐ>Ø2?1F~>Р¸?qÐ?†ª?qÐ>¤¾?E+l>q¶¥?E+l>4Ä-?@ ¨>Œ‰¾?@ ¨>Ó—C?_ßV? /æ?@ ¨?&f2?@ ¨>è}?sÄD>¼šd?sÄD¼à{»?@2–=ª?@2–>VZ×?`E>«õö?@2–>äbŽ?@2–>€A?sì0>(a?sì0>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'ÀCCDDEEF   ! ! !" " "# ##$$$%%&&''()*+)+,),-)-.)./)/0)01)12)23)34)45)56)67)78)89)9B)B:():(:;(A(;<(<=(=>(>?(?@(@A>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;Ÿa=¸–ï?@ ¨>@šÅ?@ ¨>§Zã?_ßV>è#j?@ ¨?H?@ ¨>¼@¹?sÄD>^?sÄDUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÉÊËÉËÌÉÌÍÇÉÍ>ã:„?gJ£>¼‡7?gJæ>…³9?N»š>'mö?gK›= µ$?gKã>k%’??aí>—o­??a³>˜W*¾J6B>.e¾g Ž>†4i¾y¤1>…E©¾‚Ý{>‡ÔM¾†Ñ†>-𾇄>–y̾‚Ýß>¨&¾VMñ>¯ˆ¾:xØ>³g¾®ê>œý¾+…b>±re½Åö>œÿ¾{>«Þ^½†¸„>¡,‰½J|[>›]†½4)¾>ŽŽ,¹>„WѽC N>wý#>n¥É½¦Rð>o’D½ØŠÁ>vÒ¾¼¤>¥¾ ÂÅ>÷ð¾{          >ûŒ?‰2>©?Û>"?“f>&.Æ? >,•,?!ïš>5Šï?"å[>BWµ?#‰2>T•:?#7B>pl0?!Æ¡>–J“?"Î>¢s‰?7H>ªÅw?“q>³»7?A>»w?“k>ûb?²&>ÍTÔ?¼e>Ô_?"A„>Ù}ò?%Û>ܰý?*A„>Ýø«?-Æ¥>Ýø«?0§ë>ÛiN?2“q>×’D?2¼_>Õ+å?2Ax>Ñ+Ú?0A>ÍTÔ?.Ž>È6?,- >Àˆ?+7H>¸Ùò?+7H>¯ä,?,Ðà>Š! ?37H>+Ú?4- >pl0?5"Î>]9?4Ðà>H¾"?3Û>9aù?2A„>(¾"?/`=>ñU?,- >³Þ?(§ë> M~?$~÷>¾"? > WÐ?ÐÛ           !!""##$$%%&&&'''((()>u •?B®â>|¹ˆ?CÏ>‚ ?C¹>„d?G)Ã>‡R—?IJ>‹Íy?J >’3ß?J®â>›R¢?J\ð>©>?HìS>ÇR—?DH}>Ó{?B\ú>ÛÍy?A¹#>äÃ;?Ag1>ìx?A¹>ôÃd?Bר>þ\Õ?Eâ?³ˆ?Ig6?Bø?MÈ?Ü?Qg6?€V?TìT?€V?WÍš?8¨?Y¹#?M#?Yâ?õ?Yg&?ð?Wg1>þ\Õ?U>>>ù>?SR¹>ñ?R\ú>éáô?R\ú>àì1?Sö>»)¢?Z\ú>²3ß?[R¹>©>?\H}>Ÿ¤ƒ?[ö>•g?[Ï>¸þ?Yg6>…g?V…ì>~X?SR¹>sÃç?OÍš>m]?K¤¦>jÎ%?G)Ã>lgÙ?Cö           !!""##$$%%&&&'''((()>~]˜½‚A>šj©¼Ùò4>­ž‘¼uët>½®º€¡{>Ë +<%$>ÜAx=I>ånÎ=œ2Ê>ìÒ=Ý=Ö>ò>ˆ~>ö1>;;Ó>øbå>fT >ø‰V>‹>öãê>¥pû>ò>½b>ë^]>Øêe>ä>ì‘*>Ùi—?ÎÜ>Ì>¤? ”ì>ÀF ?â>³)?òX>š*Ñ?$%h>´q?.þç>¹ »?0Êœ>¹ É?8rŸ>²ú?:Ý¿>¨¡ ?;#Ä>„k?+Må>`#È?1ã\>IË,?4h&>0A±?6õ>!ý¶?5º€>P°?3¯ >ë?/^”>!Ð?+ç>\?ß?$e0>W\¨?!¦×>%/!?šÅ>€Ã?JL>v?ÿ6>"—3? {C>-%‚? "°>ƒëë?ë>>‹æÈ?3þ>”‡Ê?j.>Ÿ±? •>ª¹ÿ?šŠ>²5<>÷W;>´M¢>îv|>›*!>ø >‡H>ùÈš>gÒ >ø¢°>9ÕX>ôKç>k>îv|>vM>è¢=Û ‹>ß2ã=¯XŸ>Òî =Ô>ÉZ‡=;ä>²›ñ= ç>žBC<ñµD>ŒM„<Ò–p>fÓœ<ÓaV>2§R=cR>Æþ=_F=š4˜=˜™¿=/ñ=Ë# ×Ö»òð>H²d¼Ùò4>³—ñ=›™=>¼~Í=Ådù>ÃûH=õ¥â>ÉÞ7>•Ý>Ά>2R¬>ÐN>PT&>вd>nÝ >Ï->†–’>Ëlj>•B‘>Æ—^>£>¿½8>¯¹î>·d9>ºÞp>­Á>Ä=b>£{>Ë›±>—•â>ÐÊæ>‹™Ž>Óª\>~Î<>Ô'é>f–Ø>Ò@…>O%‡>Î*>9?>Ǧ>$Ü>¾íÝ>^>´zõ>g>¨j¿=ðŸ>› >=à ×>ŒªÚ=Ößž>{TB=ÕNa>\ËN=ÛcÔ>>{7=èù¿>!#7=ýºƒ>|3> ‘•=Øhý>C†=«Öù>0‰Ï=†[1>Eë=QÄ>\àG=(JQ>tØÜ=NŸ>†žä= b>’º=:>žs5=> >©~Ü=r”z>ºiË?4îW>·ës?9È>7èÆ? u»>E]¢? M DDkkjjiihhggffeeddcED E FE F GF G HG H IH I JIJJKJKKLKLMLM/NM/N/0ON0PO0P01QP1Q12RQ2R23SR3S34S45TS5T56UT6U67U78VU8V89WV9W9:XW:X:;YX;Y;<ZY<Z<=[Z=[=>\[>\>?]\?]?@^]@_^@_@A`_A`ABa`BbaBbBCcbCcCllmm  !!""##))**++,,--../#$%#%&#&'#'(#(n#no#o)=…:ŹCm¨>¶XL¹Cm¨>ÌÔ8¹Cm¨>ãP':Œ·>þtË;ð’? ¡l<–Ç?ªã=iä?²”=f€}?"Ìæ=œ]d?*‚\=ß,¶?/¦> #U?5n>6@j?9HÔ>c8P?<,ß>…†A?=È>šÒ?>lx>¯GØ?>¾´>Ç ®?=È>ÚR\?<>éÏ?:‘½>ù̧?7ÿê?î?5ß? ¬È?1å—?½Î?/?6?*0!?©‹?%^·?#h?!Ö9?&ú"?Í?+'?OW?/ø??3? lí?5(?[ê?7[¾>õñZ?9I>å=†?:?Ë>Õ."?:’=uæÿ?:’=eo?9í<ÖIM?8Rp<˜±?6Ö<_¬?2Ü‘<_¬?/×<˜±?+Ë<õA?)9¾=-óù?(C =ûn†?(C >þ1?'ðÒ>!±?&å¥>é!?"=h>Ö?¼->Ö>þ>=ìÕ>iz=»3E>k=¤á>Úâ=™Ë›=LÉÈ=™Ë›=+=”§ø<ÁºÆ=…<ÿ<_¬=Qñð~2P>Þ>~2P?<ú>~2P?©‹>?!„F>„<Ë?#h>ˆ‡?%_>‘º[?&§ç>¡É·?'ž›>ÌÔ8?'ž›>Ù­T?'L_>ä™?&§ç>ð͸?%±;>û¹r?#Ãß?÷ ?!Ö?Èx?òr? ì?ið?½„?êÂ?<´?Ç?i©? ¬È?ò+?›Ì?!Ö9>û”?$Ï>목?%^·>ÞÑŠ?&Uf>Ð ?&§¢>Â|?&§¢>±Ù¨?&,>¢n¼?$ºC>à+?"z¬>v}÷?– >V_1?²”><¬ú?*>$C³?¡’>þ?t›=þš? £1=Üšñ?Èx=Åz‰?¤Ô=±~>ö¾.=™&s>Ó@Ä=’º¿>ŸÜ]=‘qÁ>¶K=—7ü>†*)=©6‚>ªø=Âè°>{9=×wK=ñˆ>©ê>¹E>©ê>¹E>Îeš=ñˆ>Îeš    accddeeffgghhii>>445566778899::;;<<=abbc               T TU UV VW WX XY YZ Z[ [\ \] ]^ ^_ _` `a  !!""##$$%%&&''(())**++,,--..EEFFGGHHIIJJKKLLMMNNOOPPQQRRSST34>23>12>1>?1?@01@/0@/@A./A.AB.BC.CD.DEjkljlm>Ö®<5FÔ>©§<5FÔ>¶…#¼‘C>©)d½ò>£~×½v!•>¡yн¨g{>¢¯b½Ú—¬>¬e‘¾•¼>¸Šì¾L¸>Ë)s¾ÆÁ>Þ0*¾}d>çæL¾‰*>ñž˜½êÉz>鄽¸–>ãÚN½Ç*|>ÙSU½×[Ò>ÉŠö½ÔX>Árv½À¯£>¼/D½¡ìN>ºøß½rã?>À<½€œ>Ç„Á¼Ž„­       >l7$<5FÔ>E[<5FÔ>-¼‘C>Z½ò>½v!•>úÞ½¨g{>fŒ½Ú—¬>Ò쾕¼>1¢¾L¸>VZµ¾ÆÁ>|h#¾}d>‡ê1¾‰*>‘¢€½êÉz>‰!h½¸–>ƒÞ2½Ç*|>r®s½×[Ò>S´½ÔX>Bì¶½À¯£>8fW½¡ìN>5ùˆ½rã?>@€½€œ>OQ¼Ž„­=PŽÞ¹¡Ÿ>“¹¡Ÿ>šŠ/:‰‚Ë> Ê*<L>¦X]<‚Р>©t<ñì’>¨m®=; ¥>¥¦“=s.ž> Ê*=ŠAå>›í»=•^\>u1=•^\>n?W=³>h±(=®^$>d†…=Ê%1>a¿g>…ÞE>c"ò>³³c>d†…>ðÏ‘>gMœ?d3>c"ò?ç»>ZÍ¥?®Ô>O±@? a=lUÉ? a=Er{?`š=è?¤+<úsõ?ç»<Ùª?Òg<ÂåÞ>þ³<Ùª>÷ÁR=V`>ñW=PŽÞ>íV°=íœ(>íV°>†í>ëA[>±—>çÈ~>Ü:>à$ö>jp>¼±>1‡>Ž3‹>1‡>5 t>jp=ÚÏÅ>xµ=£AÑ>±—=•^\=:V=•^\=è=Ð=È=‡zÅ<ä;.=x¼à<¬­=F½ <¡Ï=  Î<·ÉZ<ìã=r¤;v‰Ê>*1o?õá>:Ü?§§>NM»?¼ø>W­ì?c*>bq¶?ÅÙ>gMœ?#uÑ>gÿ7?']Æ>c"ò?,ÕÇ>['?0N­>O±ž?3Æ>C1W?4Ò2>3êH?5ƒ÷>$£9?5Ʀ>-Ü?5ƒû> £R?4 g=þ÷I?2 =ë…˜?/³=ÞT?,|á=×c^?(«=×c^?$Ù_=â×?K+=üâß?Çš>jp?Yk>±?N         !!""##==>>??@@AABBCCDDE$%&&'(&()&)*&*+&+,&,-&-.&./&/0&01&12&23&34$&7#$7#78#89#9:#:;#;<#<=&45&56&67FGHFHIFIJFJKFKLFLMFMNFNOFOPFPQFQRFRSFSTFTUFUVFVWFWXFXYFYZFZ[F[\F\]?{<5FÔ>üží<5FÔ>ðzh¼‘C>㩽ò>Ýt½v!•>Ûn̽¨g{>ܤ¤½Ú—¬>æZÔ¾•¼>ò€/¾L¸?\¾ÆÁ? ¸¾}d?íɾ‰*?Éð½êÉz?‰c½¸–?ç˽Ç*|? ¤L½×[Ò?À½ÔX>ûg¸½À¯£>ö$‰½¡ìN>ôî%½rã?>ú1b½€œ?½¼Ž„­       >z)­<5FÔ>SM™<5FÔ>;‘¼‘C> M½ò>ø½v!•>í_½¨g{>Y½Ú—¬>&Åm¾•¼>?#¾L¸>dM7¾ÆÁ>…-R¾}d>Žãq¾‰*>˜›Ä½êÉz>©½¸–>Š×v½Ç*|>€Pz½×[Ò>a6½ÔX>Pß7½À¯£>FXÙ½¡ìN>Cì ½rã?>Nrƒ½€œ>]Ӽބ­>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À         !!RR""##$$SS%%&&''(())**++,,TT--U..///000111222333445566789:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CD8DE8EF8FG8GH8HQ8QI78I7IJ7P7JK7KL7LM7MN7NO7OP>7J4¹¡Ÿ>Ѳ˹¡Ÿ>Üm:‰‚Ë>â]i<L>çë›<‚Р>겯<ñì’>êí=; ¥>ç9Î=s.ž>â]i=ŠAå>Ý€õ=•^\>¼+Ä=•^\>¸²æ=³>µëÒ=®^$>³Ö}=Ê%1>²rî>…ÞE>³$´>³³c>³Ö}>ðÏ‘>µ: ?d3>³$´?ç»>®ú ?®Ô>©kÛ? a>>;è? a>4ƒ?`š>)f¸?¤+>"tö?ç»>JL?Òg>ƒ5>þ³>JL>÷ÁR>%<>ñW>7J4>íV°>yôŠ>íV°>Ö±>ëA[>ƒì>çÈ~>†X>à$ö>ˆÈo>¼±>Š+ÿ>Ž3‹>Š+ÿ>5 t>ˆÈo=ÚÏÅ>…O™=£AÑ>ƒì=•^\>1»ø=•^\>)f¸=Ð>#Ø{=‡zÅ>­ß=x¼à>¼=F½ >X‹=  Î>œ<ìã>(;v‰Ê ''(())**++,,--../! ! !" "# #$ $% %& &'  !=¬ºR¹¿Â">ž÷n¹¿Â">¥•2:rà]>­ç;ˆ3@>°ÿ<-÷>²Ð¶<›Ë>´#x<ååm>´ÌÚ='à¬>´#x=\ÎÃ>±}õ=|‘>®Y}=‹„">ªae=•pµ>¥•2=˜¿>„€c=˜¿>Úà=ž u>~jº=³6Œ>{Å>=Òø–>zr>ƒyí>{Å>>Õ„“>}? €z>1?,ëë>1?5…Ï>N?8•3>vz?:»²>m6ø?;%=¬ºR?;%=š3Î?:ÐÐ=‡?9ý#=tãz?8Ô±=Y?6í»=OÖr?4Ün=GåD?2àL=E@i?0|=J‹o?-éû=_·ƒ?+™(=‚bE?) =¢$X?(JI>ŽŠ?(JI>ÑÊ?&÷„>!Ê?$ûe>%ÂS?!#>%ÂS?i@>'>» „>$o•>eß>!Ê=ø£>$=°‘ >ég=š”=”?O=˜¿±=|Ó[=”&=U!z=†8ü=:ª[=gdÑ=*ÉJ=2v¸=0r<ÛOa=OÖr†?>Á´|?Úë>­Žu?Èq=ˆf>ŸîK ..//001122334455667&'((())**++,,--.'(&'  !!""##$$%%&89:8:;=‚êȹù~Ü?&¹ù~Ü?! ):MÐÙ?$Ú‰;•®?'o¥<[t›?)²<À]™?*W_=þï?*W_>v"7?*WJ>‹4ø?)_w>‘©¹?(ê>–Óé?&ÊY>šH?$5E>œ£b?!òÍ>Hª?]³>íï?È™>Hª?3>š³?–P>–Óé?ù#>_)?SÞ>‰êh?8>‚Ðc?SÞ>[«?ù#>#?¦{>Ìd?2«=âG?!‘=¾Ñ?V™=ªÁ? Ž=¡·¿?PW=—cN>T¹=—cN>“U=œ>Š›¿=¦áï>„ÌJ=¸õ¡>?=Ù=|>D,>Ìd>éL?K>ƒ{?"s>‡7¯?$Ô¨>0ˆ?&›&>–ßr?'¼`>¤ÁK?'å°>À1~?'¼[=vW?:ÇØ=32j?:u6<åAÙ?9?]<’›®?6Wœ<{ì*?2ß7=üJv?'¼>> Ä,?'iš>Î?%yÇ>BÇ?"’ >lô?²d>!?âë>!=Ý>mE=¿jQ>KC=¤ño> Ä,=’9=#³Ç=’9<ôÄŽ=‡ä½<¶Ê=i <—Í=BP•<—Í= €O<Á‰<Œ·”= ;¿&=8\«:¹„>Åa=?)¾>ǘ ?-A>È%ï?1Ör>Ç8k?5aq>Ä´¯?7½>ÀÐd?9»ó>¸ê?;o=™F²>ƒŠ>Å•h?U¢>®Aw?òY<ïÛÖ> Ã{ !!"";;<<==>>??@@AABBCCD      ()E(EF(FG(GH(HI'(I'IJ'JK'K*'*+'+,',-'-.'./'/0'01'12'23&'3&34%&4%45$%5$56#$6#67"#7"78"89"9:":;LMNLNO>¦Ï?+ '>âèv?+ '>âèv?7\>¦Ï?7\>f®˜?CT?v,?CT?v,?OWÂ>f®˜?OWÂ<%j>oÇ>Ûa§>oÇ>Ûa§>š<%j>š>_Ä]>­ ·>{\v>®LÔ>‰c>°Ï>”¬ö>´ýO>Ÿ Å>»BÌ>©”Ž>ßp>±>Ìg>·`š>Ô÷>¼Ð>àx>ÁÔc>ín˜>ÄÁ›>ùކ>ÆØÆ?MÕ>Æó? “P>ÆmÁ?N>À…?jï>¿R3? q>»#á?$´Ê>´Y?*$5>ªÕ«?/“ >¢ä?2ëß>šb?5Ù>’•Ò?7º¾>‹ƒˆ¬?:<î>t«í?:Ýy>^4?:Ýy>?'Ý?:rp>$eÛ?91W>*f?7…:>G/?5n=ßo·?2€Ö=½ý&?.ó=¡Žü?*$5=‹ÑW?&+i=l'c? ñ‚=N $?L“=6£X?r$=)BN? ¶ =)BN?Ží=9û„>÷ V=T½—>èj9=|à¹>Û 4=¡Žü>ÌÒ=Ä­¬>ÂÉ\=í¦õ>ºl¸> Ò">´’J>%;ì>°cõ>F®w>­v¿>\×?.ØV>o§?.ˆ>ŠÅ?-±ù>†uá?,‹§>&g?*;>“Ø?( >šb?$IÃ>ߨ? ñ‚>¡7é?c¼>¤.?jï>¦§}c?¸>¨6?–ì>§^?6ª>¤û3>÷âd>¡¢õ>ëÂz>ߨ>âÄ>–Ä!>Øü>ŽÒ…>Еl>…4Ë>ÊOï>x+>Çb·>]B#>Æ! >P·6>ÆŒ©>:#}>È£Ð>$ÐÂ>Ìœ—>Xµ>Ñkz> £Ó>×°ó=ý‰÷>ÞÌ~=çÌG>êW=ÚkQ>ö¡N=Ðb‘?Š‹=Ì3”?=Ðb‘?ØÉ=ßo·?ÿè=ó)?°j>KR?%-4>¬“?(­™> ÷?*ìå>1‘J?,Ûê>D,C?.E$      EEFFGGHHIIJJKKLLMDEDCDCCBCBABA@A@?@?>?>=>=<=<<;<:;:9:98987876766 56 5 !45!4!"[4"["#Z[#Z#$Z$%YZ%Y%&XY&X&'WX'W'(W()VW)V)*UV*U*+U+,TU,T,-ST-S-.RS.R./QR/Q/0PQ0P01OP1O12NO2N23MN3M3>‹‡~¼xþd>Ÿ|2¼>ðk>°jÖ»•ªø>À¾¬;íZâ>ÏÜé<Ìxê>Þû=Fýë>éÝ®=–Jà>òïÑ=Æ«›>úÌR>3?>*±A?$Ù>MÄ)?§ß>yNd?»=>ŽËx?Zy>¡ŠŠ?<¡>¹ºè>þm1>ÍÌ>øa>Úb–>îX>ê >àËŽ>ùÔ¦>ÕN+?ÀÌ>È›0?üv>½¸£?µ>²Ö? Òí>§ó†? Uó>š¥µ? >(>ŠQà? >(>gãæ? £[>A0? Òí>%^ë?g³>d,?a¥=éü`?%û=¹›²>ø8=|¦>ê =b3>Þž@=#1>Ï€<ïMÁ>¿,0<«“>®=‹<„ßH>—Ý›<„ßH>€H<µ@>F‚s=S½>-Ö=;ax=êô(=|¦=˜¶!=ÃH¡==Pì=þŒ:<¹ª> ˆr;Ƨð>Be»¼^ö>rÆp¼e¤j>‰i“>÷¶à>—Þ>öΚ>¢‚7>ôc^>¬/,>ñï>µÜ>ëQ;>¾Sr>äˆ>È›0>Ù,ø>Î y>Ï€>Òâî>Å8G>×¹k>¹ºè>Ú$§>¯s&>Ûõ>ž„~>ܶŸ>‰ Ñ>ÛZB>m65>ØT7>Hí¶>Ó}¾>%ÚÈ>Î y> ?.>ÃÄ·=Ú€>¸G[=®{>>ª^¿=Š2±>ò=rˆ(>‰·=d§>€¤ñ=hÛ&>`¢*=€…Â>AÊÇ=—€x>+k=³Q½>|[=ך6> ÃJ>\¤=ö>!O=⺫>ELÛ=Ô7?>c‰J=Î*=>‡‰Æ=Ô7?> ï»=éü`>¸…J>›>Ëß+>¥‘>Û¾ì>(ÿ¿>åßö>:Ö>ì`.>T<„>ñø$>o%œ>ö =A1ɽ,ÿ=Û™½Gq>ò [?x©>Õ›¨?ÝÀ AABBCCDDEEFFGGHHI@A @ ?@ ? ? >?>=>=<=<;<;:;:9:98988786765654543432322121010W0WVWV V !UV!U!"TU"T"#ST#S#$S$%RS%R%&QR&Q&'Q'(PQ(P()OP)O)*NO*N*+MN+M+,LM,L,-KL-K-.JK.J./IJ/I/XYZXZ[>¦Ÿ¤=‰ƒQ>–>K=ŽÁ,>Šs=™<ï>€Ÿ=¨öŒ>nå‘=¸°)>_+ô=ÈiÆ>OrP=ÝaU>>i;=ÿs~>5<ù> „ö>%ƒ[>,ù>”>2Ôü>>Fк>cº>`^D=ÿ>}†°=÷(³>Ž|õ=ïKè>£tv=ì¬ì>°%=ê >Âç´=ì¬ì>Ñù–=ò’$>â=üf>ò>h:>ÿW> I-?>Y>/? wÏ>õú?Q<>*Á2?;?>5<ù?)¦>BW¨?pR>PÁÇ?àð>c`?"¥e>nå‘?#ôÞ>z°É?%DV>‚–A?&“Ï>ŒjC?'ãE>”G?(ÞÞ>ž?)Úy>¥P,?)Úy>ªŽ ?*k>²jÛ?)Úy>¹Ÿî?)†š>À-F?(ÞÞ>Æå?'ãE>Íœ?&Ò¹>ÔSc?$ðy>Økœ?#¡>Ý©y?"<“>ãe?܈>è%?g†>ì»/?Ș>ð©›?)¦>ô˜?Š·>÷Þ®?—ê>ûÍ?¥>ÿ»z? ¶´??ÈK?$j?2(?sá>ýßÇ?o}>öª°?6>îÍâ?¾õ>æI[?f¯>ÙÖa?º>Ñù–?º>Ç}Õ?k>» â?º>ªÍ?f¯>Ÿ† ?Ò>• M?O>…P³?o‘>wM*?J>eH?úš>Rœ ?ÙX>?ï«>ýÄG>.æ—>ùÕá>!Ëè>õçx>P.>ðÜ>–Š>êÄ=÷–²>ä6¨=à6>ß „=ÐF’>Ù,=½î>Ò=®4E>ÊG=¡½>ÂÌ7=–ù>·¨¸=Œ"F>¯Ëé=‰ƒQ>©>’?;7m>›|(?;7m>’Oâ?:²>ˆ{Ý?9çø>~òp?9j1>r,?8n˜>aÊâ?6õ'>N"ß?4ýô>=Ä?2²á>1N“?1Œ>"äf?.Äz>*É?,%Œ>_‘?)Úy=ó9÷?&iá=ÚTg?"ùD=Å\ë?²˜=­Æ~?Ä1=–0?. =ƒ×€??¥=X‚(? Z =>L·?Ãå=!y?q=Þ>ÿ/;<éÕ>ðÅ<Êaã>äùà<¥¯l>ÔÂu<¨O >Æ.^< rÒ>´}Ž<ªî¦>¤Ãê<¿æ >—ƒ<ßYG>ˆ—]<ïU>Œ;= â>iÞ­=$d>RH7=6oP>B:·=Gx½>4Ì =[>&µÎ=z“¯>›3=‹´N> 5y=ž á=ô÷·=­Æ~=ÚÂY=À=ÅÊá=ÜóV=¦W—=ô‰Å=‰ƒQ>_‘=cÙÌ>&P==Ù>#ßô=«Ý>.¯ž<댼>>i;<¬¦F>LÓa[=Ž<™(>lFœ;‘w!>|@:Qµ>…Üï»TG€>Žay»”>˜Ý=»çðª>£‚ò¼kÓ>°ñ‘¼kÓ>»—!»çðª>Åé»”>Ëø}º2(Ý>ÕÌ$;cû½>á—¶èO<Ÿ‹[>î²i<á'>ö7=w€>ý=?(¥?Ôñ=nU~?sá=‰ƒQ?ÓÝ=+o? =®4e? U-=Ær¨?ï¢=ï¹Ú?:³>G?1é>±9?)>$jÝ?Ìq>1……?™×>B:·?¿S>NYÑ?ºØ>[t€?¡‰>k‚?YÊ>bJ?Uc>’k^?ý>žÞQ?Pü>©Z?ξ>²?¤Ù>¼Z\?¤Ù>ņ¢?Pü>Ъ?ý>ß¼?Uc>ìÖ¯?YÞ>ö,é?:>ÿƒ??ÈK?oÆ? ?_D?f7?$³?—ê?Ù£?2q?Š+?%??C~?C? ¨?!”Ø? ;?#ôÞ?Mc?&Ò¹?ÃZ?)2¾?$j?+}Î>ÿ»z?.pž>÷Þ®?1Œ>ðÜ?3ZŸ>éJµ?5¥»>ßÊÖ?7‡ð>ÕÌ‚?8ì[>ËPÂ?:;Ô>Á|À?:ã‘>¶YD?;7m=«2‹¼«!<>·‹¼ã?@? Ï0?B ’>ñ4ð?DArUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÇÉÊ>Ÿ‘§?CǶ>¢±©?DÝG>¥q?F.>§¾Y?G±™>©‹!?I^ƒ>ªÌ?K*5>«yB?M S>«Ž`?Nð>« ù?PÒ…>©ò8?R¤»>¨K?T[<>¦ó?UëD>£~„?WJí> wW?Xq“>z?YX>™†?Yøu>•ÇÞ?ZO >‘úQ?ZY>Ž5u?Zç>Š‘ ?Y‹ˆ>‡$?X·ö>„?W¢b>D§?VQ­>}î´?TÎ>zU?S!%>wÓ?QUx>vxÛ?Ov[>vN’?M“>wUl?K­#>y†â?IÚð>|Õ0?H$m>€•½?F”j>ƒ7)?E4½>†>X?D>‰˜6?C'©>/“?B‡5>íÑ?B0¡>”»^?B& >˜€4?BgÅ>œ$¢?Bô!  !!""##$$%%&&'=‚œ¾?1>šj¾?1>¤“ɾ=K>¬ó¾2É>®zx¾Oñ>¬ÏÀ¾ …>ªw-½øk>¢;@½å ,>€ÿƽãG>wL½Ýª…>oEƒ½ÈC‘>l˜¢½uÀ>iëÈ=\!|>yøÿ=…»>‡zœ•G:Ë>¯›–¼:ÀE>ÆŽB¼haé>Þ¼AjC>òçߺKtÞ?¶J<Œ¢? ¼â=1S?m =˜Þ?}/=Ùè?6Û>ÙŒ? »>pu;?! >—µ? Ï>µWë?Q>Öþ?»•>îÅß?kf>þé¯?a?{m>ú¹? 5A>ßøw?‚ >ÏëJ?-<>·×ƒ?‚ >¥RË? Û¦>•G? Ó„>„U?ùY>l˜¢>öã>l˜¢?4ö!>hR5?:û>W1¸?;¦K=‚œ?;¦K=LóV?;§= ƨ?7Ö<üáÈ?2§W=&›?*¡ü> œ?)—w>Ì,?(&_>©Ô?ˆŸ>?k>ãó»>,>-(ÿ>£?½²Ü±> EG½â}=C¥Â½ã¸å='%ĽêÄ<õ[F½÷Õ?<ÞÞÞ¾-Œ¾>no>G >l˜¢>žšŽ>wL>Èõ>…åÒ>á€è>¦ŠC>÷Æ>½T¡>üƒ>Ùªa>ü&5>ñêW>ó&C?7X>Þ*6? lâ>·Ïw? h>“ç? ¼â>dì™?¥V>/¬?¿Õ=é ‹>òfË=­Ï>ÝK=ƒwŸ>Å}=gÊd>¬ó=xæô>–1^=™9>…¹}=Ò9>wL> ¤ >”Wæ>îq&>É„¡>ýŒ?dË>Í,‰= Û=?.Š=KÑË?)²<ÑÚ¾&±=jì¾9¦Ð=F÷Á¾> r 66778899UU::VVW         K KL LM MN NO O; ;<JKJIJIIHIHGHGGFGFEFEEDERDRR CR BC B !B!"AB"A"#A#$A$%QA%Q%&@Q&@&'?@'P?'>P'=>'<=' <' '( () )* *3 3 34 45 56*+,*,-*-.*.S*S/*/T*T0*01*12*23=\¡8öjU>­é½8öjU>·à~;ÖE>¾d¼<9\>ÃÂQ<¬©f>ŬÊ= …>Åz=8qç>Ñ1=k >Ái=†ak>»µÔ=–zC>¶X;=™‹/>‰ã=™‹/>†Ò=¢½ä>‚it=µç·>~O¬=ÖÝj>{>¼> Ó>{>¼>%°>u|>-Zb>†Ò>0k8>Ô=>0k8>çfÎ>2·Ü>ÿ½1>7³E? l>FC¤?Fÿ>Z1«?S|>vð(?"2>‰D2?&¬Ž>2?)½y>µ¹f?*•>ÏÉ%?(ù=>ÞYz?%†9>ïú´? ìÙ>ÿOC?¤¯?´?Õ?7ø?¶Ã? >õ÷"?÷¬>Û#+?>Ã`?>¦?u?»æ>Ž|a?3q>y¶G? >{>¼?€">€Mß?87>† à?#®X>Ê ?%Éö>´ Œ?%û>»„º?&u >Ã`?)Ÿ>Ç5q?-¥N>Ç—§?0ÎÂ>Ä·Ô?5h5>¿Z ?7kA>¹i(?8œ>°ú£?9†Õ=7FÌ?9†Õ=òß?8«<¹¡ý?6¿‡3ª?&¿?> ¢X?&]3>M?#7>Ñ?P¿>ºõ?UB> ËØ?æÂ> ËØ>Ö¯3>Cc>?¿Æ>2=éBâ>™=¾V&>Ä=¡47>áŠ=–zC=7FÌ=–zC= Yû=Xy<Ï={åú<‘ËÐ=Dµš<‹®Ê<ó.5<—é<¼X<íºM;Kæ>|Ç1>„ªÓ>|Ç1>îrC>~OA>÷sì>„…k? À>‹k{?ôQ>—¯?¸>âþŒ?¸•>ó©Ë?Ûä?á >ýÆÒ??8>öŠ? a >èPp?Ô>ÛH‘?úg>ÏÉ%?¦,>ÂÁB?úg>²¨}?qó>¡B? œÑ>•‡×?¶Ã>‰D2>ü¬H>ûñ>é³€>z>ÍW>ugº>­%‚>sßE>É>vð(>‚8¼>z>|Ë>ü5 dddeeffgghIIJJKKLLMMNNOOPPQhiijjRScdbcbabaa`a``_`_ ^_ ^ !]^!\]!\!"[\"["#Z[#Z#$YZ$Y$%Y%&XY&X&'X'(WX(VW(UV(TU(ST(jS(,-.,./,/0,01,12,23,34,45,56,67,78,89,9:,:;,;<,<=,=?+,?+?@*+@*@A)*A)AB()B(BCj(CjCDjDDEEFFGGHHI=>?>CWÅ?ãŠ>I—Ë?ù>O‚?IÔ>S±)? Ín>WJº?"zX>YÌ?$F >[&ü?&%'>[Q>?( í>ZJk?)îX>Xç?+À>TÊ ?-w>Pt^?/>K1?0fÁ>E#&?1g>>ok?2sÖ>7@©?3I>/Ä4?3jß>()?3ur> Ÿb?33½>V’?2§Z>|ƒ?1ÓÊ> <}?0¾6>½¿?/m€>#,?-éã=ýæ?,<ú=ø ?*qL=õZ¥?(’.=õ?&«g=÷»?$È÷=ûv´?"öÅ> ¨?!@@>_ñ?°>> ¢É?P>±(?)è>dÝ?C{>“Ÿ?£ >&?Lu>-«4?Aá>54ß?ƒ™><}½?õ>Ûâ+?ãŠ>ß.?ù>áÁ†?IÔ>äÝ? Ín>åÛ¦?"zX>ç—?$F >çÉÇ?&%'>çÞè?( í>ç[~?)îX>æB¼?+À>䛘?-w>âpw?/>ßÏ?0fÁ>ÜÇØ?1g>Ùmû?2sÖ>ÕÖ?3I>Ò_?3jß>ÎJÓ?3ur>Ê…ú?33½>ÆáŽ?2§Z>ÃtŠ?1ÓÊ>ÀT‡?0¾6>½•(?/m€>»GÛ?-éã>¹{?,<ú>¸:?*qL>·Œï?(’.>·wÎ?&«g>·û7?$È÷>¹ö?"öÅ>º»?!@@>¼æ>?°>>¿‡­?P>ÂŽÙ?)è>Åè·?C{>É€?£ >Í>R?Lu>Ñ ã?Aá>Ôи?ƒ™>Øu$?õ  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>Z=?C> zD?D3/>£9œ?Eƒè>¥†ï?G‚>§S¸?H´l>¨”©?J€>©AÙ?L_;>©Vý?NF>¨Ó?P(l>§ºÏ?Qú¤>¦®?S±&>£èŠ?UA.>¡G?V Õ>ž?î?WÇ{>šæ?X­ë>—N°?YN]>“u?Y¤ò>Âè?Y¯†>‹þ ?YmÑ>ˆY¤?Xáp>„ìœ?X Þ>Ìš?VøL>~|?U§”>yâ?T#ù>uæ/?Rw >sdF?P«`>r ?NÌB>qßÀ?Lå}>ræš?K >u?I0Ù>xf^?GzU>|¼§?EêT>€ÿ¿?DФ>„ï?Ccþ>‡`Í?B}>Šø*?AÝ>޶h?A†‹>’ƒõ?A{ô>–HÊ?A½­>™í9?BJ? ÈC?C? XD?D3/?·ñ?Eƒè?Þœ?G‚?Å?H´l?ey?J€?¼?L_;?Æ¡?NF?„ì?P(l?øŒ?Qú¤?$û?S±&?i?UA.? ¾²?V Õ? ;?WÇ{? Ž,?X­ë?Â|?YN]?ã]?Y¤ò?ü˜?Y¯†?*?YmÑ?Gõ?Xáp>ÿ"å?X Þ>üâ?VøL>ùC†?U§”>öö6?T#ù>õ)`?Rw >óèl?P«`>ó;J?NÌB>ó&)?Lå}>ó©’?K >ôÂP?I0Ù>öix?GzU>ø”™?EêT>û6?DФ>þ=8?Ccþ?Ë‹?B}?—9?AÝ?vW?A†‹?]?A{ô??Š?A½­? Á?BJ  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À=à{®?AÇG=ìû¹?BÜÖ=÷ù?D-‘>—;?E±+>0Ì?G^>²¯?I)Ç> ?Kæ>7P?Lïª>0}?NÒ>þù?P¤P>°²?RZÏ=ú´ß?SêÕ=ð/"?UJ€=äd?Vq&=Öªí?WW”=ÈMw?Wø=¹T†?XNœ=ªO?XY0=› å?Xz=Œy??W‹=}ŠU?V·‰=dŠ6?U¡õ=NJ?TQ@=<$ç?Rͤ=-¾?Q ¸=#¶‰?OU =M~?Muî=¤k?K&=!¿¾?I¬´=*…¨?GÚƒ=7¾Û?F$=I÷?D“û=^#l?C4O=v\Ö?B ¨=ˆ•á?A'8=–ó^?@†È=¥ìN?@04=µ"…?@%ž=Ä5à?@gX=ÒÇ?@ó²>²U1?AÇG>µu7?BÜÖ>¸4?D-‘>ºã?E±+>¼N«?G^>½ ?I)Ç>¾<Ì?Kæ>¾Qñ?Lïª>½Î„?NÒ>¼µÅ?P¤P>»¢?RZÏ>¸ã}?SêÕ>¶B?UJ€>³:á?Vq&>¯á?WW”>¬I¦?Wø>¨‹h?XNœ>¤½Ü?XY0> øÿ?Xz>T—?W‹>™ç“?V·‰>–Ç?U¡õ>”1?TQ@>‘ºä?Rͤ>î ?Q ¸>Ž­?OU >ÿø?Muî>ê×?K&>Žn@?I¬´>†ÿ?GÚƒ>‘."?F$>“YG?D“û>•ú¶?C4O>™â?B ¨>œ[À?A'8>Ÿó?@†È>£±[?@04>§~è?@%ž>«C¾?@gX>®è-?@ó²    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:@AB@BC@CD@DE@EF@FG@GH@HI@IJ@JK@KL@LM@MN@NO@OP@PQ@QR@RS@ST@TU@UV@VW@WX@XY@YZ@Z[@[\@\]@]^@^_@_`@`a@ab@bc@cd@de@ef@fghijhjkhklhlmhmnhnohophpqhqrhrshsthtuhuvhvwhwxhxyhyzhz{h{|h|}h}~h~h€h€h‚h‚ƒhƒ„h„…h…†h†‡h‡ˆhˆ‰h‰ŠhŠ‹h‹ŒhŒhŽhŽ>mÛº?C>t¿?D3/>yšw?Eƒè>~5?G‚>€çX?H´l>‚(I?J€>‚Õx?L_;>‚ê™?NF>‚g0?P(l>Nn?Qú¤>N•?S±&>zøS?UA.>uµt?V Õ>o§?WÇ{>hó`?X­ë>aÄž?YN]>ZH)?Y¤ò>R­ ?Y¯†>K#W?YmÑ>CÚ€?Xáp>=x?X Þ>6Àr?VøL>1A´?U§”>,§!?T#ù>) h?Rw >&‹…?P«`>%1A?NÌB>%ÿ?Lå}>& Ò?K >(?O?I0Ù>+?GzU>/ãæ?EêT>5&¾?DФ>;5?Ccþ>AèÒ?B}>I”?AÝ>P”?A†‹>X/)?A{ô>_¸Ô?A½­>g²?BJ>ñ$%?C>ôD(?D3/>÷?Eƒè>ùPØ?G‚>û ?H´l>ü^’?J€>ý ¾?L_;>ý â?NF>üx?P(l>û„º?Qú¤>ùÝš?S±&>÷²n?UA.>õ?V Õ>ò Ö?WÇ{>î¯ù?X­ë>ë˜?YN]>çZ]?Y¤ò>ãŒÐ?Y¯†>ßÇô?YmÑ>Ü#‰?Xáp>ض…?X Þ>Õ–‚?VøL>Ò×#?U§”>ЉÖ?T#ù>μü?Rw >Í| ?P«`>ÌÎé?NÌB>̹È?Lå}>Í=2?K >ÎUð?I0Ù>Ïý?GzU>Ò(8?EêT>Ôɧ?DФ>×ÐÔ?Ccþ>Û*²?B}>ÞÂ?AÝ>â€M?A†‹>æMÚ?A{ô>ê¶?A½­>í·%?BJ>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;Ÿa  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO¥¦§¥§¨¥¨©¥©ª¥ª«¥«¬¥¬­¥­®¥®¯¥¯°¥°±¥±²¥²³¥³´¥´µ¥µ¶¥¶·¥·¸¥¸¹¥¹º¥º»¥»¼¥¼l¥lm¥mn¥no¥op¥pq¥qr¥rs¥st¥tu¥uv¥vw¥wx¥xy¥yz¥z{¥{|¥|}¥}~‚ƒ„Ž’“”™š›WXYYZ[kl¼jk¼j¼½ij½i½¾i¾¿hi¿h¿ÀghÀgÀÁfgÁfÁÂefÂeÂÃeÃÄeÄÅeÅÆdeÆcdÆcÆÇcÇÈcÈÉcÉÊbcÊbÊËbËÌbÌÍabÍaÍÎ`aÎ`ÎÏ_`Ï_ÏÐ^_Ð^ÐÑ]^Ñ]ÑÒ\]Ò\ÒÓ\ÓÔ[\Ô[ÔÕ[ÕÖY[ÖYÖ×YרYØÙWYÙWÙÚWÚÛVWÛVÛÜVÜÝUVÝUÝÞUÞßTUßTßàTàáSTáSáâRSâQRâQâãQãäQäåPQåPåæPæç¤Pç¤ç裤è£èé£éꢣê¢êë¢ëì¡¢ì¡ìí¡íî ¡î îïŸïðžŸðžðñžñòžòóžóôžôôõœõœõö›œö›ö÷™›÷™÷ø™øù˜™ù˜ùú˜úû—˜û—ûü—üý–—ý–ýþ•–þ•þÿ•ÿ”•””’”’‘’‘‘‘‘       Œ Œ  Œ  ‹Œ Š‹ Š ‰Šˆ‰ˆˆ‡ˆ‡†‡…†…„…„‚„‚‚€€~¥~gÊä: q“>h!_<Ö>LçÍ<û¿Ô>>=¡>,¤$=(äÙ> Šº=Sé§>Ø=™->2œ=ºž >^aÐ>m'z>öøg>m'z?  &=²"? ¢E=™-? L<=d ›? ô=3¦?A©=¡?<û¿Ô>öLQ<û¿Ô>öLQ: q“?D}: q“?Cÿ <ðþ‹?>Ì=bc?8ý9=.E`?3œœ=^ªó?.è= ª?+5§=ÚáÀ>ÉïE?;V|>½Õå?;V|=ÍxK=¿þ°=²•B=”ùÂ=•â=il=i|`=3¦=3Í=Âç<°—ˆ=@’u¢>µÄù?£b>ð?£>¢ !!"          # #$ $%# % $%$<Ù×8>åÀÊ8>ûÒˆ:릭?F*;ö‚s?é–<¦v!?!=ìº?žÉ=DVQ?)\£=«FÌ?.ˆÕ=í|}?2Sê>›d?4 O>Cüù?3y>m^”?0š‚>‡íH?+Æ—>™ÛØ?&B>¦öy?ûe>³`?\e>½i? ½d>Ãíþ? ×>Åÿª?‘O>ÊÓ™?òŒ>Ù{t?%9E>è{«?)\£>øX?*½Á?5;?)á?µe?%ÿÖ?Ž?´Ê?&–·?b?,÷â?Ï?3È?v¬?7$'>ðÉÂ?9Ž>Ûhg?:–ñ>”mmI>µrA>ºþ>¶"Î>ÓÒ>>³`>ì¦e>­Ü>ûÒ·>¨Wœ?'<>Ÿ`Q? \E>’E¯?Ï>…Û˜?‘O>c¶¸?‘O>>x}?02>]¢? Æ==þ ÿ?òR=ÆÝ'?d=¨„„>ûÒ·=Œî(>íVó=s<æ>ÜɆ=W¦z>ÃDÎ=G >­2Þ=G >•¿Õ=L>†“‡=W¦z>xvA=m¸x>p/Ž=‡i©>mmI={–>nÎk?.,Þ>´y?.,Þ>ÑÀ‘?-$>å=?+Âê>ô<Ž?(P?«™?#Ôz?×Ë?Oþ?òR?Ë„? ý?åë? ´Œ? ¨ ? \E?¹—? ¢à>ù ?ˆ[>î°¸?dÿ>åâ>ùv>ÜÂ(>ë¥>Ö¹,>Ýz>ÓO>Ìì£>Ñ¢>ºM‚>ÐX>mŧ>Є=BBCCDDEEFFGGHHII//001      SSTTUUVVVWW99::;;<<==>>??@@AAB  !!##$$%%&&JJKKLLMMNNOOPPQQRRS!"#./I-.I,-I,I2+,2*+2)*2()2(2]'(]']J&'J89W8WX78X7XY67Y6YZ56Z5Z[45[4[\34\3\]23]<™‰Y<™‰Y<ãSø<ïq<í‘h= G¿<ó¶F=k|þ= C–=^>=¥ã=¨ñ²=49X=©tÅ=5?}=¸MÛ=KC–=»ã\=Që…=ÇëŽ=n{=ÌEª=záH=׉F=“÷Ï=Ù•ƒ=™‡=ߺm=°£×=å\+=Ö=èñ¬>Äœ=étÌ> ~ú=étÌ?^5=étÌ?dZ=æåo? õÃ=âIÉ?&V=Üé{?(¼j=Ü$ì?)‡=Ó/?+Sø=ÐáI?+× =Å»?-™š=Â:?.{=³p¬?/…=®“}?/ïž=‘çu?1©ü=jvÙ?2Ðå=…/?3× <÷¾˜?4“<‰' ?4‹D<‰' ?;…? r,?;…? r,?•?ë?•?&e?|î?Ä? hs?E?n˜?t8?7L? ¹? Z?  ?" J? .˜?&Àƒ? ¹?(ƒ?gð?+÷Ï>ýÑé?-¸>ìY?/ß;>èÓü?0A‰>ÚàE?1‡>Á"?1xÕ>²ð¨?1hs>¨qª?1G®>¡%ä?0õÃ>žy?0›¦>o¡?0ƒ>šž¹?/× >™wÓ?/|î>—½t?.Àƒ>–Ç«?.5?>•c?-G®>”üñ?,›¦>“”?*MÓ>“s·?)ë…>’ð¨?'®>’¯?#÷Ï>’¯>ËC–>’¯>¸Qì>’¯>Ý/>’Ïà=ß¾w>“2*=ÌIº>•³=¤Ý/>—['=ŒIº>—î›=‡®>›l=féy>›æg=_;d>Ÿ)ü=D›¦> ‚ =¤yØ=(r°>¦ea=!ÊÁ>¯ÍÓ= =q>¯Þ6= =q>·ŒN=>Ä8R<í‘h>È]<éxÕ>ÏÞ6<ãSø>ÏÞ6!#" #!# ##CCCCCCCCCCCC#CCCC DC D D ED FE F F F FFGFB#CHGA#B@#A?#@IH>#?=#>JI<#=KJ;#<:#;LKML9#:8#9NMON7#8POQP6#7RQSR5#6TS4#5UTVUWVXW3#4$#3$32$21$10$0/$/.$.-$-,$,+$+*$*)$)($('$'&%$&<“¾©?F-³º€¥­>Éã—?;Êw?!a6=³1=ã 1=³-<>¿?:y<™¹ºts?¶ºts?+rl>DïL?"S>DïL?*¦>.z±?r=ý…·?!Ã=“Ž? Ðô=ž?&U=‡¡n>úCÅ=s1>ß™G=bYŸ>ŒË7=bYŸ>ƒ«×=xÎ->yNÂ=>’>s±›=©PU>o{À=Þ¥e>o{À>´’>ÒD>´’>á´5>´’>ðp¼>±Ã~>úCÅ>¬&W>ÿ-J>¢SQ? f>•±¸?r¯>‰ÃÁ?Ì€>€¤a? ëâ>€¤a? ëâ?îö?€(?îö?Ì€>þ@Å? f>íiI?JI>á{V>úCÅ>ÙÃA>ñØ >Ô&>çQ\>УÚ>Ø”Õ>Ï<’>o{À>Ï<’>o{À?-pî>åê?-pî>ö ê?-?WÂ?+¯Ñ?›?)”â? w#?&lz? ù[?"o?Çî?åÐ?‰ ?•?<²?;=?\?Q­?ôÉ?:Æ-<™¹?:Æ-<™¹?2´B=1š!?2´B=‹S‚?2´B=¯Ñ?0ó'=Ñý?-ÊÁ=߈Ô?);=çô™?#æ=푹?™t=푹=“Ž=å&=>’=Ñý=FG»=¯Ñ=^~=‚çÅ<ú™t=<ÔŠ<ï_N<™¹<ï_N <<==>>?      !!!"""###,-.,./+,/*+/)*/()/'(/&'/%&/%/0%03$%3$34#$7#778899::;;<$45$56$67012023<<´: Á? …?: Á?'~$>NfE? Ú>>NfE?3N>"“?6]>³?eú=Ðñè?ëˆ=¥È¸? Ež=‰?L¼=v’÷>÷ÿÀ=kó>å%=g÷¾>+ôú=f£8? …??5j`? oÎ?:¥=a«¯?:¨Ù=Lö?í=ˆ½x?í=˜­6?8ø=«Då?/Ñ=ÐtI?"Ò±>!¶?("™>±H?+tŠ>9<¹?,È„>e?-Ç€>ôÍ?-Ç€<‰ðå<Ë¢»    <ŽD·<ŽD·<áŸ<<ùÿP<éÀ©=lH<íÑ_=lË==ŽG»=Û‚=Ò-=f=¥§Ò=+Áð=©6r=0ÖÕ=¹ºM=LG¡=½‰ð=Thë=Ê==uòË=ËBW=wû&=Õ­=Ó:=Õî<=‘UP=Ý t=§±:=â ^=Ç´Ä=ä(¹=ä«Ù=å,à>[Ü=å,à?Ì4=äªÍ?À=áž=? åD=܉`?%¨Ö=Ö±R?(  =ÖpO?(3H=ÍJ®?*|¯=ɼ?+/Ž=¼¬?-7è=·pß?-ÊC=¦)è?/q=£`?/²=‹|F?1±=‰´î?1(=e­Ú?1ë:=Wc?2¾ž<õîš?2ß%<švÙ?30s<švÙ?:ç>ÁÜ€?:ç>ÁÜ€?30s>ºž¹?2ïg>·?2¾ž>¬#5?1û|>¥¨’?1Õ>Ÿ„?/º8>žìë?/‘‘>›^I?.D7>š9–?-¹ÿ>—M’?,5>–Ie?+P>”?(öj>“}é?(3H>’Y7?%Ù¡>‘uŽ?" ö>‘ü?:K>ów?Ì4>ów>Ìê,? Æ>Ìê,? Æ?Ì4? µÙ?B3? d‹?" ö?ât?&kø?P?(Å¡?Kì?*þÅ?ê]?+±¥?ŧ?-'¥?Ë?-êÆ?”©?/Z?¨à?/‘‘>ý¢%?1Õ>ýPØ?1(>ö3œ?1û|>ì*Y?2¾ž>èýL?2ïg>â£4?30s>â£4?:ç?M[á?:ç?M[á?30s?I¼ý?2Îá?Gåm?2Õ?CÔ·?1Ú÷?A)¾?1(?=³…?/²?=Šà?/¡Ó?;Š£?.LX?:ð*?-ÊC?9Y£?,5?8çÏ?+€Ü?7¢—?)Wû?7aŽ?(µ_?6žl?&Ku?6Ž'?%éã?5ëŒ? åD?5ª€?Rx?5š[Ü?5ºÃ=ç¸[?5ûÎ=ɽ?6®®=§±:?7šy=’%?7¢—=Q"?8ïò=wû&?99=qâ?:øN=PX5?;aþ=J?F?=Šà=.LQ?=ìp=*½Á?@ø÷=Y|?A)¾=UP?D¨=w?IÍA<éÀ©?K6<å¯ó?M[á<áŸ<?M[á>â£4>â£4<áŸ<>è£<éÀ©>êÄ<íÑ_>÷7Ê=>ý‘á=UP?Õy='/?ˆY=-ÊK?WÉ=BŸà?3N=OT ?í=jÄÕ?úž=tîŸ?R=޳?P=‘×g? ù=¨3@? …=ÐXJ? µÙ=ötß? Æ>[Ü? Æ>´Æø>ów>´Æø>ów>[Ü>‘ü=Ù}Ý>‘U =Ç´Ä>’y¿=¨µg>” Œ=‘UP>–»>=vtô>–Ë|=uòË>™Uí=Xy¤>™Ø=Thë>V=<É>žÌc=2ß0>¤´«=ô–>¥É=f>¬æY=>·Q&<íÑ_>ºßÆ<éÀ©>ÁÜ€<áŸ<>ÁÜ€#%$"%#!%" %!% %%77777777777%7777878 8 …8 †… † † † † ††6%7‡†ˆ‡5%64%5‰ˆ3%42%3Љ1%2‹ŠŒ‹0%1ŒŽ/%0.%/Ž-%.,%-‘+%,’‘*%+“’)%*”“(%)•”&%('&(–•—–tsrIKJutrHKIGKHvurFKGwvrEKFxwryxrDKECKD98…„9…^„ƒ^9„^:9^;:^<;^=<^>=^?>^@?^A@^BA^CB^KC^ƒ‚^‚^€^€_^_~_~}_}|_|{_{z_zy_yr]K^`_r\K]a`r[K\ZK[barYKZcbrXKYdcrWKXedrferVKWUKVgfrhgrTKUSKTihrRKSjirkjrQKRlkrPKQmlrOKPNKOnmronrLKNMLNporqpr?k>¹ŸÓ?_ >ÙÝ? H¸>Xtµ?Ng> ?Gð=Ð×Ù?h=·¸¢>øMó=«°>ôÍ?=fi¬>ë¥=*†”>æ x=±>Û‹:<Ô$_>ÖQ÷<¼Ë¾>ÈW<›LÂ>Ãã<šH÷>µ"…<¯™Æ>±ðo<ºÄ1>¦Ðâ<ò—Â>¢ñ¾=­>˜Žý=;F>‘¼³=jy>…C=¯ß>$ö=Çö+>nC> Ò*>li6>á‘>Yù…>L‡}>NkÍ>Š+ê>I8>¹ŸÓ>LtZ>ä þ>Uã?‚¥>h¹;?› >xU@?\@>€Hµ?"É>>Š«z?)j`>ŽK­?+99>—ƒ‰?.÷i> p?0­ë>§h?2ö“>¬æc?3¹u>»(O?4½M>¿•?4ÍŒ>Íæ¨?4ç>Ñ(y?3ɲ>Ü8L?2ö>à'-?1™>êz1?-ãT>ñ\5?*øB>ýÆ'?#¼Ø?ùö? ¡?ôH?»ˆ?bn?·®? ?}ô? Ò>꺹ÀR<­‚û>ßû<¼Bì>ãà=&fª?³Ê=:Ž÷?×±=žkÆ?Rc=°]–?¯#>@G?#¤{> Åk?&Ø¡>?..?0#Ü>GJÜ?1`>;?8c%>„Ôê?9 ©>£0²?<Ü>ã\?>1%>ätn?<ËÛ?8è?8Üï?K›?2L ?^9?0}2?×ä?&èà?!|a?$o|?+ÇŠ?Im?-æO?5Â?5´S?Ž0?7o?A¯?;ÉÑ>åç»?<7ô>á·×?=è–>¼Z-?=ðv>¹ÀR?”Rd?;éK>?7-æ>^k[?6"u>S¢t?.sè>aÈ?+îâ> H…?!Ë =±`•?Z =—=}?à_=AE?èî=ø/?1 ;ª†Q>þÁà;2¤˜>àf¼Fòc>¿ók¼ŽÅ>Ÿ"X¼Bâ¾>$ö;c^t>IÀ)<îˆY>=u³=5Ê> Íø=–9“><=ª†”=°Û|>Y = ¢#>gR==‚>Nð¨=+Ï.>Yú}<Á-w>Œ3š<²mÌ>‘F×¶´Å>{K>Ú5¡>‚À >Ú5—>‚äU>Ø_î>‚ü„>×zÑ>ƒur>ÓT>ƒÖ:>ÑB‘>„¯÷>·Ï>…_]>Í0$>…•É>ÌÔ~>†Ê>˪¬>‡è>Ë,¥>ˆ}Ã>Ê0¦>‰ø>Éàr>жW>É4œ>ŠìÃ>É)'>mñ>È«!>‚2>È}N>’pH>Èf^>ð’l>ÈeÄ>óD>Èq8>ö>">Ȫv>øj>Èï+>ùÉq>ÉJÐ>ûdÂ>Éðå>û¹r>Ê$n>ýW>ËF>ýlõ>ËY¼>þ›h>Ì”¾>þð>Í ?9Ÿ>϶?9Ÿ>ϼJ?ÊÍ>Òéš?7°>ÖÎ2?IÙ>Øî?n%>Ú›Ý? Ž>Ú›Ó? O>—Ÿ™?mè>—ŸŸ?IŸ>™çÚ?7{>›©?Ы>žêÒ?Q§>¡±>ÿ8d>¤=ü>ýå°>¥à>ý©/>¦>ü&>§Tg>ü÷>§_ß>úµ>¨(U>ú~©>¨Dø>øïx>¨È³>ø×F>¨Îp>özc>©5Ž>ôf>©Wë>ñ;˜>©nÛ>’p >©oy>š2>©X“>m´>©*Ç>‹¼>¨¸<>‰oy>¨#S>‰Q<>¨Þ>‡æL>§C÷>‡<ð>¦Ë±>†“>¥¡ß>…•†>¥~>„ÁÊ>£8>„—t>£7M>ƒ½ª> “u>ƒ\â>žb'>‚ïù>š[5>‚ãÙ>™v>‚¿‘>— s>{J>— v54kj5k65ji6j76ih7i87hg8h98gf9g:9fe:f;:ed;ec;d<;cb<c=<b>=b>bab>a>a>aa>>?>a`a@?` @!@ `"@!`#@"_`_A@#_$A#%A$__&A%'A&^_ ^BA' ^(B')B( ^ ^*B)+B*] ^CB+ ],C+ ]-C,]].C-\]/C.[\DC/[[0D/1D0[2D1[ED2E23E3Z[ZZZEYEZFEYXFYGFXHGXWHXIHWVIWJIVUJVKJUTKULKTSLTMLSRMSNMRQNRONQPOQ±³²’‘°³±“’¯³°”“®³¯•”­³®¬³­–•«³¬š™˜}¢¡}£¢}¤£}¥¤}¦¥}§¦}¨§}©¨}ª©}«ª}³«}¡ } Ÿ}Ÿž}ž~}~œ~œ›~›š~š˜~˜—~—–~–~|³}{³|€€z³{y³z‚x³yƒ‚„ƒw³x…„v³w†…u³v‡†t³uˆ‡s³tr³s‰ˆŠ‰q³r‹Šp³qŒ‹o³pŒn³ol³nmlnŽŽ<™t¡ºã>®t ºã>®t <ê‘S>£™7<ê‘S>š¨=#„>š=kÞ>ˆuê=0ü’>€ÿh=aÕæ>xÕÎ=—–Ñ>uȃ=Í/®>uq>?!­K>w#‰?'Èo>~™w?-Kž>†—ù?0Û}>`ú?2wõ>–µ?3|z>£™7?3þ¹>®GÁ?4**>­ð½?;Ç<”–?:òû<”÷?3’0=I[?3Q=oŽ?3Q=ŸÎÙ?2¹=Ëç°?0šN=áž=?-5ë=ïÝ©?(øl=øê?"œ*=ú ?6Ê=ú =Ïæx=ñåÜ=™ŸÓ=ç ù=w‹½=Ü0=F²=Á Ã=F»=ÅP=á=w³<ò´˜<œ.º<çØÍ !!""##$              !<¡sùº>7ß>«Qº‹A>«Q<èñ×>Ÿ‘Å<ñ.Ç>“ºL=ò‹>ŠÍÀ=ê1>„ =6_–>~D{=gÌ}>v©=”Ù”>p‰Â=ËÄn>p‰Â>¥”ï>‡_>°´>­ ‡>Œ.·>ÛΉ>0£?A=¸‹Ê?/=„_á?ÞÍ=QÔú?×2=0áµ?Ü= pl>úç<óí˜>àœÛ<ñ.Ç>àœ¯º‹A?Fu%º‹A?Fu%<óí˜?AþÜ= pl?<)= h?7=A[W?1Ý=mJ^?,_3=—˜…>´­›>×á?vß?(ñD?¤}?-g‹?$"^?0~^?) @?2?/v?4Dè?9j*?5Lƒ?9j*?; A>áÐV?;"=>áLi?4œÅ>îWd?4œÅ>úç?3í ?Çý?1ÝÔ?'v?/â?'v?+°6?Ü?'‘Ë>ñÆ?–>ÎÓ? µL>—(ú>ßîp>pâ>Æ0Y>pŠ&?Çà>qé=? ´r>wg%?*Pº>á.?/â>ˆÌ?1ÝÔ>Ïe?3•0>Vœ?4Dè>«Q?4œÅ>«Q?;"B<žº*?;8=<¤9U?2åo=;Ñg?2åo=’œ?2¹~=³š?1Çã=Ñ2Ä“=ò/ =ÆF=ç3Þ=ŒœÂ=Öº.=QÔú=µÆã=lQ=‡Û<þéU<¡vÞ<ü+ GGHHI      "#$"$%"%'!"'!'( !( () ))***+ - -. ./ /0 0178979:7:;7;<67<6<=56=5=>45>4>?34?3?@23@2@A12A1AB 1B BC CD D DE EF FG+,,-%&'?:ÛY<Ú¸c?:ÛB¹¨ÁU>Áœ—¹ŸN>ÁœÆ<Úß/>Ìtµ<àØG>Ñðž<æÒ¨>ÝH1=^‚>ãö=Sˆ>ä#!=Pr>èÝ=%Á`>ê~t=18½>ìm =@¬á>íûç=Q &>íûç=RÐ>ï+=fÎ>ïÚ”=z™>ïÚ”=|t>ðZL=’1>ð:h=›éê>ï;9=²YL>ì]~=Ö¾S>ê?!=í­u>é?ì=÷&X>›\o>ú>f>'°=ø­[>% =í5ù>!¢ƒ=ÕGÓ>å=±b®>å™=”÷Û>$†=}>ãñ=oI> ¢Ž=[©Ò>"àÏ=J6 >&]=:BI>)ûu=,Ì>*ÚÎ=*Mô>4ó4=Þ>9Ï“= d>Gå<øÝ>I.<öÞ3>do½<àë®>j+u<Þì>u¢ò<Úîc>u¢¹›A:<€k{¹•+<€n`<Û<Î4·<á­<ôP<äþ7=:Ü*<üêl=`@}= j\=f»¹=h=„‘:=$X=‡O/=(U=œ?æ=P6Ê=¬4L=x£=»)€=”yö=Ä"þ=¦ln=Ói=ÉÑå=ßà=ç;Ö=ß}=èºÇ>²ŒÛ?;€™>À¢_?;€‚?#œú=ï¦ì?&:ñ=¿J™?&ºŽ=¶Q;?()t=ŸáÊ?)X=í…?+6=x÷»?-¯=V4?/Sÿ=6(f?1²5=;/?4@J=JW?6®x<ò¨D?8 t<è®ûIHIGHFGEFDE?>@?A@BACBDCD>>    >  >>   =><=<)+*(+)'+(&+'%+&$+%#+$<<;<;;;;;;; : ;9 :9! 8!98"!8#"8+#7+86+75+64+53+42+31+20+1/+0.+/,+.-,.<’ÏU:ìÀ>‹¯É:ìÀ>‹Ýù=F0>€&W=(@>jªý= í >Wë›=;$>IÎ=;³>=ö\=tÁì>6Ày=Ÿß²>0ûÃ=ÐçÊ>0ûÃ?œk>ë–G:ìÀ>òù:Ó•??³œ?ÒQ??³œ=â5ø?>û =±-Ü?<ÑB=z†·?;Ë=Fœ$?8!k=;$?2¹=(@?&vø=(@?&vø:Ó•?vÜÂ:ìÀ?vóõ=ÔÔ?pÒØ=F0?kSS= í ?fÿÉ=v|?bÃ@=BHR?_Éá=z†·?^X´=¨†¾?]CÒ>@Ä?]‰?ˆ·?^X´?%Fá?_m˜?+ š?bOó?/_#?f£€?2A?kSS?3²®?vÜÂ?3²®?w ö?;-Ò?@ê?;Dâ?øH><W>nþ?;Dâ<’Ìq?;-Í<’ÈÅ?3ÉÃ=~c?4=e'?3²®=•/ä?2ú=º® ?0ÐP=Ϙœ?-íô=ážÞ?)šk=èÔj?$ê”=붸?É=붸=í¿c=ãµ=´0=ÝJò=Ž‘†=Îß=]¯=½ò=;³=”wÞ=θ=RhÓ= u=ùß=·j<’Ò5=ÔÔ99::;;< ( () )2 2 23 34 44556677889     ! !" "#$%&$&'#$' #' ' '()*+)+,),-)-.)./)/0)01)12‰ÓÏ7ΑÉ>‰ÓÏ<ø>sC=ª?>`ô¯= î{>U°y=ÔÇ>IÂ=9ÿP>?( =amô>8p=²™>3ãÜ=ÂeŒ>.Aº>ÿf>.Aº?Ä?' úº¯§"?./Bº¯%?./B?ùè?.‰d?#Š?/Ķ?)-Ú?1´•?-”}?4ßÂ?0¿«?8e?2Üw?Vr>M=P?:õ~/­7<ËZ¹%1?7!%¹%1?7!%>/ª?0Ä¡>/ª?,Ü]=ÿTY=M =>=Ð=,‡>/ª>.¾Ò>ó#6>=ã|>ó#%>>O>ïÊÝ>>–æ>î)->?ýÆ>ææn>Aæ>âÒ2>C¢æ>ÝØ0>E«j>Ûe >FLå>Ú¾’>I,Â>ØŸ‘>JɈ>×¹Ì>Nì[>ÕîW>P­ >Õ\!>Uƒv>Ô"Ó>V$ø>Ô ö>]“`>Ó(1>c¾½>ÒÔ¢>lpJ>ÒªÒ?ïÇ>Ò©¸?ïK>Ò¾™?$ >Ó&õ?Ák>Ó¤C?ŧ>ÔKM?öÅ>Õz? 5˜>ÕØ? >Q>ׄ7? x§>Ø þ? Xÿ>ÚJI? —Î>Û%•? ¶ý>à6? ¶ý>à ¡? Žc>åÕs?/ì>ìîl?JÞ>ï7/?€µ>óݘ?dÍ>ó݇?dr>sz0?€X>szD?J…>{ÌŽ?/ž>€B? —>‡ c? Ú¦>Œ<? Ír>¾²? Ò3>“¹? ¥R>”+ß? †->–_Å? }1>–t¬?tw>—â+?L>˜\?#ñ>™”?>™?QP>™Ìþ?Æw>š ©?m?>š5u>lo¢>š6–>dÜ>š Ý>]’¸>™¹X>Vl >˜è†>Q¹Ž>—Ù>Q_Ó>—Ä'>M*ð>–AË>K4u>•f…>GÖó>“G‡>FL>’#&>C×Ú>|g>CZB>ŽßÂ>@Ô >Š”>?´ß>†8>>q³>}q1>>MÉ>z-Ñ>=â >s}A>.½h>s}c?-¦Í?7«?-§T?;,?&6»?¥?)¸?8Œ=qèæ?;.…=ÁÒž?:³=qàƒ?:á=¦a?:ÍMON.-,LOM/.,KOL0/,JOK10,IOJHOI21,GOH654>=?>@?A@BACBDCEDFEGFOG=<<;;::999887766443322,,OO,,OO,O, ,O! ,O"!,O#",O$#,OO%$,&%, O'&, O (', O )(, O O  *),+*,PQRPRSQTUQURTVWTWU?Ê÷=Êt?'5D=åSÕ?/æ>#¼%?6¦Ç>Yæ¥?;L¡>‰éï?=ºh>¨ d?=àÌ>Æ™·?;¾Ö>äÔZ?7aþ?þX?0åÂ?­{?(s?!W?>ý?& f?Š?/&Ú?ï?6:Y>ï˜E?;7>Ò׋?=¤Æ>µ®ã?=Í>˜Ö?;ä>z'?6þ‰>EÊR?02À>B?'XZ=Ù1°?§/=“ªÎ?b =;K0?Ø<áÛ>è¹g<”!À>Ê—ò¬ Ÿ<Ó“ì>Ï=/—ˆ>aMJ=‹­°>*¹=ÏCº=ñ‚ª>qç=š2<>?E¿="¬Û>rö•«»ãÅ7>±ße¼Šc·>ϼk>ëàμÎt?Ùð<Èz?èâ=îÍ>âÆ=. >ôn¾=yI…?k1=±|? ÊÂ=ô>?'•>!¢Í?Y‘>NP[??÷>?Â0>™Tb?Ðm>³í?d>ΪÄ? >èã¥?/4?ùg?‡›? (? ¦6?´?°? >û¢'?'zh>êuž?-/>ØFæ?0’†>ň‚?2ý>²°®?1x(> 6%?.ÈÌ>Žh?*Õ>|K‰?#yè>^ÍK?!­>EYþ?@¼>0’ ?U> ø|>óËÏ>ï›>Ùþv>¶®>¿eY>hK>¤¨>ùÚ>Šo9>);‹>bÀ>;Ùß>41>S_z> Vå>o8=Ìr¯>‡Z =‘x->˜†ˆ=Jcú>ªµG=nz>½s¤<òí¹>ÐK|=g 00//..--,,++**))((O10 21 2 32 43 4 54 65 6 76787989:9:;:;;<;<=<==>=>?>??@?@A@ABABCBCDCDEDEFEGFG HG H !IH!JI!J!"KJ"K"#LK#ML#M#$NM$N$%ON%O%&O&'O'>ÑUš?:Ñ>ÑUš?3î.> “?3½8>žzÅ?3œ’>•(@?2ùW>ëƒ?2vÂ>‰‡Ð?1Pô>†c_?0dG>…ŒÙ?0Õ>‚Ó©?.Ì7>¬¹?.‚>~½?,.ý>}F%?+bö>z!»?)/Õ>yì?(æc>wž2?%…J>vÇ¡?"·>v\j?Ã>v\j=þö>v’ =àñè>wž2=ÀÏ[>xßó=©X§>z=šÊ>}–™=‰6>~‡î=…¤>i®=m/Á>‚÷=fŽ?>„ù]=M J>†ò=Eé>ŒNl=%Cò>Œ[Ñ=%Cò>“˦= È>œè<ôÖ¡>Ÿ×^<î·‰>¥ÏÌ<ây—>¥ÏÌÔ7Ú?3½8>Ïìn?:Ñ>Ïìn?3î.>ÕCÿ<î·‰>Ïìn<ây—>Ïìn>ÖP"?3¬å>×ý/<ôÖ¡>ß½x?3û>àÿC= Âü>äßf?2—j>ç}Ä=!/M>ë w?1q™>ëÖ•?18z>ív6=?Ê >ï>?0Õ>ôËD=`>ô°p= Ô>ñÜo=at‚?! G?Ã>ùœ¼?Ã>ùœ¼=öàÒ>ùg?"–s>øû×?%…J>÷ï²?(ż>ö“?*èŒ>öxG?+Z>ôˆ6?,û>ón§?-߉>ðµx?/gJ>ùg=Ô³ú>ù©=¾Bl>ø%T=¤Áf>øè=£¼<?! G=þö>öã‰=’ç>ö „=›„>ñHô=\Z¤?!²=àñè?!'?"·?!\¹?%…J?!\¹=ÀÏ[?!­+=©X§?!ð5?(æc?!ý?)/Õ?"o=šÊ?"Æ»?+bö?"ÚÕ=‰6?#,=…¤?#$”?,.ý?$*=m/Á?$K‰?.‚?$,=fŽ??$ß?.Ì7?%ñá=M J?&;?0Õ?&~¦=Eé?&¦à?0dG?(9?1Pô?)œc=%Cò?)£=%Cò?+jð?2vÂ?-[= È?. P?2ùW?1év<ôÖ¡?2²”?3œ’?3`ß<î·‰?3¾º?3½8?5än?:Ñ?5än?3î.?6]<ây—?6]EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$HIJKLMNIHOKMPINQOMRIPSQMTIRUITVSMWIUXYZ[\][^\[_^[`_[a`[ba[cb[dc[ed[We[IW[]f[fg[gh[hij[ijikjkljlXjXZjZmjmVjVMnjMoI[pIoqnMrqMsIptIsurMvItwuMxwMyIvzxM{Iy|zM}I{~|MI}€~MI‚Iƒ€M„ƒM…I‚†„M‡I…ˆ†M‰I‡ŠˆM‹I‰ŒI‹Œ‹ŽŠMŽM¬m¹·Mà>¬m=M>¢2g=M>”)ƒ=‡g>ˆï1=!^à>‚ža=C ×>y§È=d¼j>r£O=ˆÒÔ>m`Ü=µ¼V>m`Ü>¡8v>±¢”>¡8v>Ưî>¢Ÿ¾>à >¦Õ>÷¢I>°{®?Ñ >¾*Æ? e0>ËS?€>ÞEž?ëÜ>ð„Q?&2?0?µä? su?ëð?wè?Ðì?ã¤?ôà?è? ¿?%+m?b?+"g?f?/XH>ðÊ ?3Ž'>ßó$?6\º>Ê2(?9+N>±¢”?:’–>–Dp?;F=<–OØ?;F=<“}¦?3Ž'=VÂ?3Ž'=šÃ¸?2Ä=Ä, ?0 ì=Òè?,‰³=àð-?'F[=é[ò?4r=ì*{?’×=ì*{=Ú9Ó=æM=¢@=ÛS=€gI=Ǭ÷=C ×=®i½=!^à=‡£= êT=&`¢=´ëkù—>»/R>kù—?#Ä$>p/s?)aL>uÌ“?,ã„>‘3?-Ä>§J?.JÏ>§ì?-=W>¹Z¯?*Ș>Ç ?(SÚ>Ô-?$õ>ß?‚?&ù>ç«ì”Á?%>íü ?í>ëá>öÕ!>ç«<>æ±K>áZp>Ú²>Ø; >ω>Ì L>ŵó>¼Üé>À×>¬m>½J@>‰ÏÉ>»/E --..//0     C CD DE EF F1 1BCBBBABA@A@@@?@?>?>=>=<=<;<;:;:9:98978676 56 5 #45#4#$34$3$%23%2%&12&1&' 1' '( () )* *+ +, ,- !" "#<Œ<_·Pœ?#ûo·Pœ?.Õ½>jì)?&² >k=°?#X>B?ƒk>%ù·?Ø•> Ì?$X=àB?ê;=Âs?ä€=²¼0>AºC=²¼0>ÈHÓ>¾=>N~â?%ûK?J?%ûK? à?#…?Kù?4*?!8A?Lu?%É?o‹?'h5? ?“?1-T? Sÿ?%‘?;!"’¨²>°1¦       >5ÿ8–»™?~68–»™?~6<ññJ>øò<ññJ>í w=ñ!>âù=eé>Û[=(÷U>Ô\^=[´õ>ÏçX=Ži>Ìш=Ë >ÌÑ`?-}Ý>ï ?-}Ý>ûqš?,ÎU?”?+Ç ? X?+ƒ?4Ò?)ì?©Ã?&úa?o/?#äq?…^? 4÷?C1?óA?ú?ÎÆ?!¸$? &Á?)šº? &Á?&Ü›?:ܳ<ù3?:ܳ<¦éÿ? <±=YÞ‹? <±=f3? …Á=x.?Œö=”`?RO=¬“? vÊ=Ço~?$I=íÔ„?(ž> |.?*7>"Ì4?+oI>;{J?,ÎU>S"s?-¿¶>mÞ?.YK>zá?.…*>zá=ÓU>¼Ä=‰GÀ>ˆð =P¼{>e9=â>jË<ú*Ô>NV¥<ìrŸ>5§1<鵦 **++,,-      & &' '( () )* &  !!""##$$%%&>ÛAi>óE¸ñ,(>Ûkn=Çиñ,(>Ýãž=ž¸ìúj>à…Ö=|Ô͸èȬ>å!¹=H(€¸àe0>í_=¸ÓÏö>ôFw=QޏÇ:½>ÿö@<Ð R¸²B?`<Ò±n¸¡{?ó´<Ín¸’Ì÷? Gú¸’Ì÷>¬WŽ9¨ŸÇ¹!{>¬‚ ? ›Ò¹ n >­ý0?…¢¹b0>±ï?ʹIR>µ;H?M¼¹”>ºU…? (Ô¹åÖ>ÀB…?$ı¹´>È)W?)в¹ ] >Îè³?-üx¹Þ>×ö¡?2n0¸÷vÅ>áÖñ?5ø(¸æ¯Í>ï ?9¸¸Ïž8>ú3p?:©¸¼¾b?¯F?üVê?$¸¸Œ¤>õ®? =è¸Å!Þ>íçÆ?²¸ÞLQ>áW? 柸æ¯Í>Ý?X¸ïI>ÛAG>üÔ̸ñ,(=Aál?(â'¹€sX=yš?&?ì¹…±…<†î1?)6k¹Ž<±°?,,빋uê= 5"?0t„¹†7½=Q®´?4g×¹}Áa=ˆqø?8ã¹oI=²•t?:ýb¹]?â=ß[?a‚?<áø¹6sÅ=ƒ-?*œ¨¹q,(>$Yç?>°?:©¹7½=´?+oT¹]?â>Uì?9¸¸æ¯Í>oi?5ø(¸¸Œ¤>”Ø?2n0¸–þµ=ëÞ2?+û¹E!Þ>Š¢Æ?-üx¸oI>‘b(?)в¸<¾b> ÷?)в¹0)(>™Hú?$ı¸ i{>Ÿ5ô? (Ô·Àð >|?'åO¹!{>¤P7?M¼·já‹>:i$?$¹ i{>¨m‰?Ê·7½>«ŽO?…¢¶ISœ>Hç¡? =è¸ù£>­ l? ›Ò>Y x?¨z¸ÞLQ>dãl?²¸Ëlz>phº? 柸¶sÅ>xöÈ?X¸§Å¬>|”p>üÔ̸¡{>­3ô9¨ŸÇ>|”->óE¸¡{> ÷¹0)(>H6<Ín¹/¹>|<Ò±n¹!{>3*r<Ð R¹´>JŠ =Qޏ÷vÅ>Y@=¸ÞLQ>hÓ†=H(€¸Å!Þ>r K=|Ô͸²B>wOµ=ž¸©Þ‹>|@)=Çи¡{"! " """"""#"##$#$$$%$%%&%&&'&'('(( )( ) *) +* ,+ -, .- . .         87686585484383282181080/;:8;8/;/9?>=?=;?;9?9<BA?B?<B<@EDBEB@E@CGECGCFJIGJGFJFHLJHLHKLKMLMNLNOLOPRLPRPQSRQWVUWUTWTRXWRYXRZYR[ZR\[R]\RS]R>ûñæ?:Ñ>ûñæ?3î8>ö·t?3½@>ô*Œ?3œœ>èÑ ?2ùb>âpã?2vÏ>Ú©†?1Q>ÖÖ.?0dS>ÕÑ?0ß>Ò€Ñ&?.Œ>ÎJô?,/>Ífn?+c>Ë|Å?)/á>Ë\?(æm>Éõ?%…S>Érp?"·$>É1&?Ã">É1&=þ>ÉQÉ=àñõ>Éõ=ÀÏ[>ʸæ=©X§>˾=šÚ>Í—i=‰6>Î*N=…¤>ÐÇ‹=m/ä>Ñ›½=fŽb>Õz=M J>Öt>=Eé;>Þ  =%D>Þô=%D>ç(¾= È5>ò@Ü<ôÖ¡>õÒî<î·‰>ý²<ây—>ý²=øÇý=øÇý<ây—> eÍ<î·‰>W<ôÖ¡>%öO= Âü>5ÆO=!/p>DOÖ=?ÊC>Mžï=\ZÄ>O=at‚>UèÜ= Ô>V*"=p>Z ·=›„>[Có=’ç>^2É=£¼M>^Sl=¤Áv>`Ÿ =¾B|>abë=Ô´>aå~=öàà>aå~?Ã">abë?"–~>`]¾?%…S>]ÐÙ?(ÅÈ>Z€?*è•>Z>Ç?+d>U†ì?,û>RÙd?-ß“>L7Ó?/gP>H¥È?0ß>@[Û?18„>>r,?1q¥>/f?2—r>"æÐ?3> ò²?3¬ï>Øá?3½@=øÇý?3î8=øÇý?:Ñ>åwP>¾+ñ>äMi>¨hº>áf>—±_>Ù&£>„´¯>Ò̦>w¯ >Ï׃>qpñ>Ç >dE>Äɉ>`hÕ>½&>X÷O>¹&¦>UI>°Ü)>Pôz>¬½&>O>¡q>Ml(>ç >M[ü>’Ž >N¯%> ->O`¿>‡Bš>RØë>„4 >T­6>xú>[ 8>mB>`ê>Y“->oKá>Sû>uzk>Cû>„¤†>AÑH>…¦ä>3E¨>”ºf>*(.>¦”h>&G4>¾+ñ>(šô>ÓM­>/d®>䦄>>è‡>÷£7>K94?+Ø>Q¸g?ßÛ>bº?+ >gÔZ?¼>v_ú?î> ?È>‡ã÷? êÉ>Œc? K­>—Ný? ÌÞ>šÌª? Ôï>¦­? | >¨ª†? SÀ>±d¶? q«>´? ¤>¼¤P?dÚ>Âv?ñm>Ëݺ?X÷>Ï)½?ÍU>×|>÷Ã>ײF>öÁ!>ßé>ç|>ãmü>Ö•g<š-³>¾<<ÃK>ÐÏÑ<Îî>Ó-a= {»>âÚO=0bÔ>åù¦=‹–:>õ]Û=™¾>øµ»=Ø÷é?LÛ=îMC?ä>!ô?ƒ~>$ˆ[? ï>Rû!? $>Xåg? ñë>„fJ?Ö^>ÿÝ?ì>·ãð?ÎM>Ï ? Ù³>åÁÆ? –>êšù?¯æ>þJI?ì°?:Þ?±É? Yä>ùO#?  >ö?î?.s>ç­¦??ƒ>äeì?û@>Ô/Ã?R!>Òà?§x>¿‡'?­¬>¾<?^‹>« N?>©{>?XV>™,Ý?…T>–~Ž? uÑ>‡Ãá? xì>„ ?xì>oÝ=>ýƒ³>i]ð>éÔc>V±ú>æº>TLS>Ï€ >Fk«>̤P>E(µ>´°½>=–ã>›'>:ðž>3>=·/>Sû>E‰Ÿ>&xÔ>R˜Z>Æg>VQ=ë2Ü>iQ=Ú…*>n)7=š!Ù>ƒ¼=U >†Ç=2¶®>•SÎ=$¿Ó>˜E<ÒÏ>§–Ç<Ç,>ª½<š-³>¼¸‰EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$}|³²}³~}²±~²~±°±€°¯€°€¯®¯‚®­‚®ƒ‚­¬ƒ­«ƒ¬„ƒ«ª„«…„ª†…ªb†ª©bªc†bab©d†c`a©e†d_`©^_©f†eg†f‡†g]^©¨]©ˆ‡g\]¨hˆgiˆh[\¨jˆiZ[¨kˆj§Z¨YZ§‰ˆkXY§l‰km‰lWX§VW§n‰mo‰n¦V§UV¦Š‰oTU¦pŠoqŠpST¦RS¦rŠqsŠr¥R¦‹ŠsQR¥t‹sPQ¥u‹tOP¥NO¥v‹u¤N¥w‹v£N¤Œ‹wMN£LM£xŒwyŒxKL£zŒyJK£Œzz{{H¢J£¢IJ¢HI¢H¡¢Ž¡ Ž¡Ž  Ÿ ‘Ÿž‘Ÿ’‘ž’ž“’œ“”“œ›”œ•”›š•›–•š™–š—–™˜—™<‚õ9¡f>‹*Ó9¡f>‹*Ó<éúÛ>\x<éúÛ>Qr <úÜ>Bú = Éå>=`=*¸c>:j=X0><ÇÒ=‡¦7>C«W=£4@>g}°>”;>À5ý>ŸI´?®»=ÄE5? €=ê`? ÐÛ=h¸Ž? p&=,~?_=‹v?/‡<éù>ê[<캴>ê;}9¡f?E¶þ9¡f?E¶þ<éúÛ??Ü=…á?; ‡=!ç?5†¶=B$Ë?0´@=yA?+áÈ=£4@?$þ?=è„>丫>Ð2Ä?ð?ñY?#E`?#W´?+áÈ?*ë—?0\?.µ‰?67?1vî?<?2x?CMÅ?3‡ÿ?CMÅ?;ß?+ë?;ß?+ë?3/Ñ? 1‘?3/Ñ?S«?2פ?År?2'J?~Q?0=?.«?-TÒ?&$?'Ò? ) ?»L>Ôà>æ> >•€?"§Z>ýM?(*,>ì>?,LJ>ýM?/¾>“o?1Ï>›³I?2ן>§iH?3µ>º/?3EÐ>¹Rx?;ß<ç¯è?;ß<ç­?3[æ=L,?3/Ñ=’"?2x=½Ø?14×=è6?.sg=ý&?+CÄ>PŒ?&Éy>Ù?!F§>®LÔ>·f> ïÕ=Ò <=úθ=¥õ®=θ*=~Ãû=ªåÞ=G§§=‡z=&–¢=;|»=‹v<‚õ=% EEFFGGH        "#$"$%"%'!"'!'( !( () ))***+++,,,- - -. .A AB BC CD DE%&'56757858959:45:4:;34;3;<23<2<=12=1=>1>?01?0?@/0@/@A./A?9Þ?:Ðø?9Þ?3î#?œ¦?3½+?V1?3œ†>ùRú?2ùM>òòº?2v¸>ë+c?1Pê>çX?0d=>æRâ?0Ë>ã?.Ì,>á›?.v>ÞÌÒ?,.ó>ÝèO?+bë>Ûþ ?)/Ë>ÛÝý?(æY>Úvç?%…?>ÙôQ?"·>Ù³?Ã>Ù³=þé>ÙÓª=àñÛ>Úvç=ÀÏJ>Û:Ç=©X—>Ü?é=šÊ>ÞG=‰6 >Þ¬/=…¤>áIf=m/Á>â—=fŽ?>åŸW=M '>æö=Eé>îŒz=%Cò>îœÏ=%Cò>÷ª›= È?a]<ôÖ\?*d<î·‰?ÌÈ<ây—?ÌÈ>gÜ>gÜ<ây—>*iª<î·‰>1 ;<ôÖ\>Fú%= Âü>VÊ%=!/M>eS¬=?Ê >n¢¿=\Z¤>p Û=at_>vì²= Ã>w-ò=`>{¤=›t>|GÃ=’ç >6Ÿ=£¼<>WB=¤Áf>€Ñq=¾B[>3]=Ô³ß>t§=öàÅ>t§?Ã>3]?"–i>€°Ê?%…?>~Ô¨?(Å´>{ƒê?*è>{B?+P>vм?,úý>sÝ3?-ß>m;©?/g<>i©—?0Ë>a_«?18l>_uû?1q>Piá?2—]>Cê­?3ñ>,ö–?3¬Û>'ÜÅ?3½+>gÜ?3î#>gÜ?:Ðø=9f?#¦š;Œ7=aÔt? Ï5;Œ7=+c?œç;Œ7=¦æ‡?´À;Œ7=µq?Ä;Œ7=Èÿ?Âê;Œ7=â‘‚?òœ;Œ7=þüæ>ù„;Œ7> Û,>î¯;Œ7>AÂ>æVü;Œ7>5Ôý>à¨S;Œ7>L5>Þ,;Œ7>q$ù>ÛTª;Œ7>Yè>ÛTª;Œ7>²>ÛTª;Œ7>²IQ>¨¸%;Œ7>Yè>¨å;Œ7>hžÜ>¨å;Œ7>Gñ•>ª~©;Œ7>#¹I>®Á;Œ7=ý‘¬>¶dN;Œ7=µq>Ä™š;Œ7=•$á>Ñê;Œ7=~>L>á¹A;Œ7=gƒZ>ñYß;Œ7=\%°?3;Œ7=Vvê? _;Œ7=\%°?‰ˆ;Œ7=?»Ø?î#;Œ7=£ÛI;Œ7=¸¨ô?dN;Œ7=ª°–?Û*;Œ7=…ðæ?ù=;Œ7>’v»>Ç";Œ7>iT¯>ÂÒû;Œ7>N8J>Í=þ;Œ7>><‰>Ïöø;Œ7>/éL>Ô£è;Œ7?*_B? °è»?*"¨?#¦š»Þ?,Ÿ?":ç»ÛÂ?(\ ?18»Q3?(=º?Aþ»Q3?&:?î#»ƒˆ?ßð>ÛI»7½?$sá?‰ˆ»µÝ?$ÎÎ? _»µÝ?$sá?3»µÝ?#¾>ñYß»Ƥ?"RY>á¹A»øù?‘¡>Ñê»<?’Î>ę𻱅?„ >¶dN»­.? Gê>®Á»¨Ö?9Ø>ª~©»¤>ð>¨å» ~™?n>?!?dN»ÂL?V£>ù„»­.?à*?Û*»÷?ä?òœ»H„?\?Âê»ô¡?’Î?Ä»±…?!x!?ù=» À?Ym?´À»0? 0Ñ?œç»+N?$ö? Ï5»Ƥ>Ñõ»>Ç"» ">ä¿‚>¨å» &_>²#)>¨¸%» ç>²Py>ÛTª» Ö=>ä¿‚>ÛTª» &_>ëÙú>ÛTª» Áµ>ïÂ">ÂÒû» `>þQô>Þ,»Æ >ýPU>Í=þ»ÖÔ?Á>à¨S»/?§>Ïöø»ac? %Ì>æVü»v?;í>Ô£è»ü¹EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$gHfgfegeHhHehedhdHicbibaia`i`_i_^i^]i]\i\[i[ZiZYiYPiPcjdcjcPjPOjOdkHdkdOkONkNMkMLkLHlHLlLKlKJlJIlIHmXWmWVmVUmUTmTXnYXnXTnTSnSYoYSoSRoRYpYRpRQpQYqYQqQPqPYtsrutrsurusvwuvswvzyx{zx|{x}|x~}x~x€x€x‚xƒ‚x„ƒxy„xyw…„y…†„…w†…ws‡†w‡ˆ†‡‰ˆ‡Š‰‡sЇŠs‹ŒŠ‹Œ‹Ž‹sŽ‹‘’‘“’”“”ƒ•”•–”•ƒ–•–ƒ—˜–—ƒ˜—˜ƒ™š˜™ƒš™šƒ›„š›ƒ„›>ÝtÈ>õü>ÝtYµISœ?,DüµISœ?0°=ùów?)mÙ=ùów?(ÌC=Ù!?'‰=ÄîK?%õ!=«®Þ?#nË=—|$?b=ˆV ?à=€Ã ?Y*=€Ã >ú}»=…ϼ>õq =—|$>óŒG=¸N•>óŒG=íSÀ>ý¥©=üyÜ?ØÅ>`? µ¶>|Z?êS>,ò<?½>AÆ•?!Š >a÷l?'=>€r’?,•ò>’ñ?0_J>¡•Í?36m>² ™?5¥>ÆZ%?5¨º>ؾ?4Êc>ìå?2å¢>ý½J?0?Vn?,•Ç?:@?$±ó?àƒ?À†?%°'?p§?,?Ð?1 ¯?ì1?4Ö3?·”?8Ÿ¶>ñó?;&>Þa?=¬g>È u?>ï‘>·•¦?>ï‘>·•¦?6ºô>¿ÊF?6ºô>Ì»?6AÌ>ׯ†?4…h>å©e?0k1>ïÂÇ?+ ¡>ùÜ"?$lû?·Û?ÌU?fd?X?$? ”?lž?¨3?6x>ð|?J>Û§¨?›h>Àƒz?©>« •?¶¤>˜¿—?>…Ð?ª >g¥ª>ý>Mį>ñ§ˆ>3B>åÒ>E×>äÑË=²jw>ïŒë>I–?„¸>#ÕV?µ<«­Ã?ff=+®g>óŒ"=/ U>ï! =>2]>ìÐŒ=_Ü>ì.ú=Œ‹T?+ËË=³Aá?)ˆÉ=Š?(–f=u½×?'8L=WqÉ?$±ó=?á4? —¦=0»,?!Li?)Í?W0>èqÙ?®™>ÚÐp?d`>Ìíb?© >¿h»?š&>žÙ™?ø‘>‘˜M?ëA>….s? q¿? <²>] •?J>Kª?K;>:Õ>ËÈf?;[í>Ôƒ¾?8 ›>Ü‚?7O>äÑ÷?5\â>ìб?24ô>óŒG?.5>ùp–?)Êu>ýÀÎ?%Y”>‘í=²jw¹J` >™J >õü¹Cÿ>™J|µISœ¹Cÿ>ƒ2‹=íSÀ¹VõE>‡1ñ>I–¹RÇ>r2Z=üyܹ_XÁ>KjÔ>#ÕV¹p¸>V>`¹kíú>:¦Ò>|Z¹wvÅ>Ôf>,ò<¹ƒo>6¿>AÆ•¹‡Êd=Ϋ>a÷l¹ŽÉ>‘·>E×¹J` >*©§<«­Ã¹~ÍÑ=q¦×µISœ¹–þµ>þ-=€Ã ¹„¥>cä=+®g¹e£]>h=€Ã ¹cŠ~>ƒ2´=/ U¹VõE>x‚5=…ϼ¹]?â>‡Ð=>2]¹RÇ>MÊ=—|$¹X´>‰îF=_ܹPª¨>ƒ2‹=¸N•¹VõE>ŠÜ=Œ‹T¹Pª¨=y: =³Aá¹–x}=*õW=ùów¹šª;=Œ‡=ùów¹”_ž=”™8=Ù!¹“Ùf=޵=й”_ž=ž²Ž=ÄîK¹’Ì÷=–H=u½×¹“Ùf=«RD=«®Þ¹‘:P=¡9=Wqɹ’Ì÷=¿…=—|$¹!q=µk©=?á4¹-à=çêz=ˆV ¹Šï³=Ö>=0»,¹Œ‚Z=И ?)͹ŽÉ=žw>€r’¹’Ì÷=l—s>’ñ¹–þµ=0>¡•͹šª;=â>² ™¹IR<Èxº>ÆZ%¹žÛù<¶Ö>ؾ¹Ÿb0<Ò ì>ì幞UÁ=œ„>ý½J¹œÃ=5»?Vn¹š$=lš5?:@¹–þµ=µk©?àƒ¹-à=ì÷7?%°'¹Ši{>»?,¹„¥>*=¦?1 ¯¹~ÍÑ>IÌç?4Ö3¹q,(>jŸS?8Ÿ¶¹b~>…¸æ?;&¹TÜf>_ä?X¹g¼<>4 ã>èqÙ¹zœ>U)? ”¹kíú>.ÃG>ÚÐp¹|´ò>OË.?¨3¹oI>+ì+>Ìíb¹}Áa>L£Æ>ð|¹p¸>2×0>¿h»¹{¨‚>LSE>Û§¨¹p¸>K >Àƒz¹q,(>+>žÙ™¹~ÍÑ>NÙ>« •¹oI>-›e>‘˜M¹}Áa>R£>˜¿—¹lúj>1Ц>….s¹{¨‚>[y?>…йiÕ>8Œ>q¿¹xƒ4>fÕ†>g¥ª¹d–î>@Šâ>] •¹u]æ>su†>Mį¹_XÁ>LSE>Kª¹p¸>…M>3B¹TÜf>\PÁ>:Õ¹hȬ>ªöo?;[í¹5gU>˜¨{?=¬g¹Dn>®]?>2B>¿),?>#“î>¿),?6ºô¹#“î>¶ô?6ºô¹*êû>¢;?8 ›¹;±ò>ªÒ?6A̹5gU>šžøL?4…h¹>×A>‘ìâ?5\â¹J` >‘m?0k1¹J` >‰î!?24ô¹Pª¨>†ü ?+ ¡¹SÏö>ƒ2‹?.5¹VõE>yÅa?$lû¹\3r>zœx?)Êu¹\3r>jž@?ÌU¹b~>qü ?%Y”¹_XÁ???@@@AAAAAAA>A>BB B C C C D D D E E E F F FGGGHHHHIIIJJJKKKLL L M M M NNNNNNNNNNN N !N!"N"#N#$N$%N%&N&2N2O2O23O3P3P34P4Q4Q45Q5R5R56R67R7S7S78S8T8T89T9U9U9:U:V:V:;V;W;W;<W<X<X<=X=Y=Y=>Y>Z&'Z'(Z()Z)*Z*+Z+&[&+[+,[,&\&,\,-\-&]&-]-.].&^&.^./^/&_&/_/0_0&`&0`01`1&a&1a12a2&dcbedbcebecfgefcgfgchighjihkjhlkhmlhnmhcnhpdoqpodqoqdrsqrdsrsdtustdutudvwuvdwvwdxywxdyxydzeyzdez|p{}|{~}{p~{~p€~p€€p‚€p‚‚pƒ„‚ƒp„ƒ„p…†„…p†…†p‡q†‡pq‡‰mˆŠ‰ˆ‹ŠˆŒ‹ˆŒˆŽˆŽˆˆ‘ˆ’‘ˆ“’ˆ”“ˆ•”ˆ–•ˆ—–ˆ˜—ˆ™˜ˆš™ˆmšˆšm›œš›mœ›œmžœmžžmŸ žŸm Ÿ m¡¢ ¡£¢¡m£¡£m¤¥£¤m¥¤¥m¦§¥¦m§¦§m¨©§¨m©¨©mª«©ªm«ª«m¬­«¬m­¬­m®¯­®m¯®¯m°n¯°mn°²™±³²±´³±µ´±¶µ±™¶±¶™·¸¶·™¸·¸™¹º¸¹™º¹º™»¼º»™¼»¼™½¾¼½™¾½¾™¿À¾¿™À¿À™ÁÂÀÁ™ÂÁ™ÚÂÙšÃ?^?É©?•>ÞŽã?ò«>¿Ä?¥@>»@é?>¾ù?V>Èžú?à>Ûéã>þCa>îvô>ðã?ã>åäÒ?q>Ùol? 'Y>È”V? ?>¶ý¨? À3>¥fô? a7>&5? †S>‚9“?/ƒ>D°¹>ûCÜ>ìC>åq=Õ7>цw=‹j>´Å›=.Ã>”­ë<Û3Þ>c›Ì<¬Là>)»<Û3Þ=⬃=¤$=†©µ=bÛè= ºß= U";  =ï{3¼5*„>b=¼|fÎ>F㻼Lé¨>oîºoEž>’Ym<•Ïj>¦€ä=:>»c¶=wB>͆°=·£ª>ߨÌ=õú€>ç®J>Ô>ì}U=ûÈ;>ñž¢=¤X>ø7†=D™j?<Ü<×6?J¤<@Ël?B¶;1x³?°p: £è? Ž: £è?'X®;ÏŠL?-5“<†ýë?)Õ=ËÍi?#¨=¸Ô?<=®?è=·’?%=ÈÕ„? î=ó!¾?µ >yv?É>={?M:>j}±? 6>S/R?a>l}€? $Ç>ƒœ¦?ãÖ>L§?ï7>Ÿp#?ã€>²\>?2Ì%?/’>Î&f>`s0>¼lý>6S>­1ß>!*>”ò>‡Í>ynú=Ù‰Ò>X ƒ=Å`1>C=Ê=Å`1>-Ü[=ÏsU>Þþ=ê»ó>3>§u>„I>:-›>`>qð_>#å¿>“ƒô>>è>¬ßÜ>c->ÂÒ>†ˆ\>Ó"½>˜f>Þ´>«qW>å†\>µg>æ?>»Bê>æ?>ÂJ»>äî†>Èrm>à¡>׉>Ìþ>Üø>ÄOg>áp>µÆ´>ãÑ>©î¿>áÍŸ>››>Û}L>‡<¦     TTUUVVWWXXYYZZ??ST S RS R RQRPQPOPOONONMNMLMLKLKJKJJIJIHIHGHGFGFFEFEEDED CD C !C!"C"#BC#B#$AB$@A$?@$?$$$%%%8899::;;<<==>%&'%'(%()%)*%*+%+,%,3%34%45%56%67%78,-.,./,/0,01,12,23;¢5µ¾VLÊ=“u¾TúA>)<’£>'_-ÿ¤»G®>Fsg¼@®œ>t¸¼•8&>Õ¼ŸËL>§÷c¼jüM>DZ_»ƒ>ÞÓ©<&â£>ÿ6â= D? Ú+=†Œ&?Â=ãQ? –>3.?UÝ>EМ? üu>g1¸? üu>ˆV?YÏ><ÿ?fñ>­?t>·­U?‰ð>Â@ª>þÑ>È H>ìµ >ÌÓÿ>ܬz>Ðvå>ïØ¾>ÑJ<>ÿà>ÔÂ? Ú+>ÜÉ?>åH·?^/>óÓK? §Û?ÚT?$ó´?!Ï?&ïU?O?(AÁ?ª6?'®?‡?$ _?'Dq?Á±?-àˆ?z8?2€ú?Þ ?6#¢? ›?9>ÿ6K?:0>êI?:¡>ç/ú?;>Ò²€?:ÄR>²Â?7L«>Ÿ´?3Ô>‘å‹?.ŠØ>† ?**j>u±.?#wè>Vø™?;>WL%?¹¡>Œ4£>óÓK>ŽÙx?Õõ>’к? m¨>™lÍ?>¨Ëw?ˆ(>·>[?!æÆ>¹DZ?"€>Ä ?%ÜÊ>Ý2†?)¤>þcì?(ÖT?Lû?&ïÖ? ?Ü?#öf?â?Uï?‡W?t?qâ?U™?È©?b»?Ï:? ?ÜX?&/?™>>ÿÓ>ð¬H>öx>Þ*y>ï2Ù>ÌQÛ>è–¿>ºÍÀ>ãöT>®F¡>ävl>Ÿ8±>âÿ’>—Ê^>Ý^Ô>˜¼<>Ç¡(> EÈ>ÂO©>«Ee>¿®Ô>¸éú>¼¾á>ÇU‡>¹Î>ÙŠ3>³Ýb>æö>­Ã4>óQ >£Ù>þ¨>•÷¶?é|>ˆV?’±>{û?@E>`•¨>ýä{>>6Ò>ó{¥>%½>æ>_Š>Ùá =ç6>Ì>=É4­>½Á=­ãü>ªt=˜Ùè>˜›_=ƒ®h>€$-=„Ë}>\“]=—}>EhŠ=­Xd>7ç&=Ú_ =¨þ¾Q¾=Ì{¾CüÃ=ä/;,P4=ù|Ѿ§ > œ?½‘v›>1e¼ò±n>”J¯>Ѫ¸eeffgghhiij      ``aabbccdjdjd3j34j445IJKIKLILkIkMIMNINOHIOHOPGHPGPQFGQFQEFEEEEEEEE DE D !CD!C!"BC"B"#AB#A#$A$%@A%@%&?@&?&'>?'>'(=>(=()=)*<=*<*+<+,;<,;,-;-.:;.:./9:/9/090189181278267256252          V VW WX XY YZ Z[ [\ \] ]^ ^_ _`QQRRSSTTUUV=r`ö>â"=˜,õ>è=ËÑÞ>î"ý=õ">ð¸ >·ç>óM>A%É>ð¸ >^i™>걟>tÊ­>à]q>ƒÝ->Õ,î>Tü>×>–ÌÒ>¯Mœ>ŸhL>—3Û>¢Ù®>~43>£Él>N§é>¤eÄ>"P/>¡ ù>‰q>›=–W¸>‘¢¼;ÊŸ>Š¿ï½IûÇ>ƒÝ-½Áór>‚–·½éÈC>ƒ>¾»:>ƒÝ-¾-;>‰B¾þ>–ʾֽ>¡t£¾­ >ª˜Ï¾ Jk>³4M½àï÷>¸^c½¢öè>»Ïǽ5Si>Ì*g=ÃÆ>Õ¢9>Í;>êJ>ìñ? YÜ>Öø?Ѓ>àÇÈ?£Á>æÛ¼?tZ>óÿ¥?{_>þì? ÓÎ?š?î?e«?„?‰U>û‡>û 5>÷3Ç>óM>æÙ+>Ö F>Ø7C>¸År>ÄN,>–s>»¾0>¿LÆ>¬IB>ázW>œ&>ú{º>ƒÝ-?ÚI>FOâ? `>ž"? à¸=¾ 9? `=r`ö? ’û=ܘ?E<<ÑRn?‰U<š÷šÓ<šîÿY<ÑRn>æcÛ=¿ƒ>á9É=I>á9É>m;_? ™"  ! - - -. ./ /0 0 01 1= = ==2222333445556677788999:::;;;<!"#!#$!$%!%&!&'!'(!()!)* !-!*+!+,!,->¹ö©>ëZF>°y>÷Í>¡¸>þŽ >’”?ˆ>> ?Ôö>ffÒ?µ>H t>ý;’>,׌>õt*>ßñ>í×=å`º>Ü€º=ªt:>Ê%x=‡ís>¸Ù=Rß>–y@<ÉD!>cì<žŠ>6,´<ºP”>Pç=y«=ƨë=?¼¡=ƒE:=–…˜<êŽ.=Í€¡;úËC>ĻӠÇ>4¢:¼…óT>w{¼™?l>ŒW&¼$?æ>›;Þà*>¬ÁG=Ô±>µ§§=M >È¢Y=Æ9“>Ùæ¹>W“>êNw>fÝ÷>ù¨>œ{9>û`>´ >ùÙF>½’Ú>øÈ˜>ÌQŽ>÷×/>ݲz>ò[Ý>í|v>êã+>øBô>äZ>?¼X>Ú¯Ã?|H>Ãê\? q>¶³u?µ>¯ø??ò>«ªK?{>®Í?"F0>²U÷?'•!>À½?*Âæ>Ï ‡?+R±>ÕÕ—?)½@>äüû?#´Å>í©M?\>óü¨?Uò>ø*£?’?QÈ?øS?jD?!?Ú?&=²?ìƒ?-¥>÷¡?3ê >éÎ@?7Ʀ>Û‘I?:( >ÍÅ?:ÉÂ>»aþ?;vÆ>¦dX?:[Ç>"Ô?6<Û>~ˆ`?/à >nÀÃ?*a<>h‡=?$ì >jYâ?\>pô¢?¼p>zYŸ?F5>…Sâ? ïø>“½'?ZV>¥eÊ?U@>´Ò>÷æ?>FÒa=W”A>1m=nÜŸ>1=šŽ>:»=Ø5=îþä>¾=ï‡þ>4ËN=õk¯>]4½>n£>†6´>ÖW>˜q >%wg>¬|´>9À>»T >SŒ9>ȇÔ>k4u>Ñt1>Œ­Þ>×Òª>—M>ذ>£[Î>Õˆô>­aâ>Ïm>µÎì>Ä ö>ºžä>¸Ÿ3>¼ºb>°5Õ>¼ô>›çp>¸¦D>† ý>±%>c*I>§t><Μ>Ÿ%Á>ד>—™)>]a>Õ»=ß`ž>‡±©=·£ª>~öÑ=šW>k’À=‚­>ZX =k"®>QJ=YˆÓ>õ`ú>äÍP VVWWXXYYZZ[[\_`aUV U TU T ST S S RSRQRQQPQOPONONMNLMLKLKJKJIJIhIghggfgfefededcdcbcabaa_a_ _ !^_!^!"^"i]^i]i#]#$\]$\$%\%&\&&''(())*01202303404505606707808909:0:;/0;/;<./<.<=.=>-.>->?-?@,-@,@A,AB+,B+BC+CD+DE*+E*EF*H*FG*GH>¼í?7W>“³?µø>ÅQ?¢ƒ>Ã?Ö? 1¡>ºÑW?X>ª¦'?°:>˜'? Oî> z? MS>Sðq?)>7 =>ÿÊ>!¦>î–c=ç7b>ßs =¥)5>Ⱦ==K·1>«'à<ýM=>†°<ÆAm>Or´<ÑC¿>%=*¯ÿ=·³§=Œcà=JC»=ÓóMB‰»]5>;+¼wÔ˜>ZÑò¼§óÏ>yx¼²ö">€¼‘îð>žó¡¼Áœ>¨Â²;¯÷à>ªÿ£<œÑÈ>©s6=7…>¤I‹=; û>œÉ=Så¸>‘\–=ZÆÎ>ŠO0=UF+>€­=D•>h”æ=?Al>R%=UF+><‹e=ƒhj>/Ð6=°3>)Å>fQ>*¦`>4DÆ>/y>OrÏ>;+>h8 >Hî>s:i>V±>x»—>iõ1>~<Ì>zx½>>ˆîä>€~®>‘0§>€~®>œ3 >.Ô>£}>„Ÿ•>©õþ>‰pš>¬¶•>“ÂØ>ª¦'>š¤R>¦…A>Ÿu]>žC{>¡…Ì>”¡d>¢æ>ŠÿR>£–=>zx½>¤ö‰>^òÎ>¥¦²>Sðq>©Ç”>OÏ•>´Ì>UPÃ>¾l>\2=>Ç]ñ>kU}>ÓÀ>ƒm³>äD(>ŽC>îj‡>šÒ»>öØ(>«VJ>ÿñ>´øX?l D        ' '( () )* *+ +< <= => >? ?@ @A AB BC CD  !!""##$$%%&&'./0.01.12.23.34.45.56.67.78-.8-89-9:,-:,:;+,;+;<=¼8*º‚nÛ=ÑM¼\Dº=ö)ؼ¯F>=b9¼âŠ>l¼üP>Žü¼ÙÍ;>ŠË¼¬üƒ>’C¼.òÇ>˜¢Îº>œ±, uà=8,²> Ži=©r>žfV=ß+ª>–î°>¢¼>Šº»>1ö°>}/ >Aj>]Õ>W I>Bì>f>!’>Šï>.>–ûj=ﳜ>¬kã=ö§Ÿ>Ù_> d”>×LÓ>!’>ì½H>>Šä>übb>]Õ?¹•>ˆ©ï?z§>šFF?k8>«¢?\t>»û\?¾_>Æit?œã>Ï~?·6>Ú±;?މ>çp©?ز>ð!³?K‰>öÓ÷? ¦>ùg?!‰¿>øÒÀ?$or>õ@+?'’ø>í<?)¦u>峨?*Ï%>Ü—‚?*ÆÝ>Ó(Ü?)ð¢>ȺÊ?'éu>Â[?%âH>šÔ½?&U«>‹Ãø?&U«>€-8?&ê>dŠK?(\Ø>TPÎ?*d >T`‰?.>>]–;?0û>hF?3>rr^?4=Å>x+ý?6>x=¼?8–J>l¦ò?;1Ð>[Då?;1Ð>IÁ^?::¦>>L?6ÙI>3Ýö?3©m>0cç?0û>,éí?-I¸>,éí?)……>6/S?%ÁV>G‘g?#oü>]–;?!²û>nøV? Ôx>{·½? Ôx>Qÿx?G><÷?>+ i?+±>Bl?€¶=ýö?r[=Ê 6?4$=ž”?õî=v¤Ê>óoq=‘†>ÜAõ<ò÷õ>Ët3<² >²‰³<»WÅ>¡'›=Án>QÜ==<ÿ>+=l!\>p‹=‘¢@>aŠs=¦€Ð>Y?=ÀÚÒ>NkÆ=ßÀà>B’·>1§>9£>üÙ>,Lt>+Á4>!9r>?t²>z>O®=ÿ;Ý>\m‰=Ì>B>_ç˜=§(¦>b8è=zàÁ>aÇ=oÖ>\ I<›€>Uy€<`¾Q>K h;˜ÐF>3Ýö; ü/>6|<)›> N\<•t±=üœ<Ñ» =Ñ´»<ô==¾¨ë<Ï'u=·•p<•t±=·•p34>3>?23?2?@12@1@A01A0AB0BC0CD/0D=QC>ëvB=q$>ëvB=–Ÿ{>ðâ=©˜Ð>÷¨Ó=Åb|>ÿÊa=ãçK?…=ç3X?Z8>;´>ýÂ>–§>ñ‰=wî=×k=1ß=g“=‚îMN=ûÉ>¡Œ=— >$ÃB=Ý’‚>,äC>.'>R2Ó>Áȃ>[®G>Òd9>cL>Ù×ã>ƒ×[>å³Þ>žF>êÈÅ>«&—>è>>º¼‡>ßñ*>Ä9_>Ђ>Æï>¿jT>Æï>±ÜÔ>š¶€½×U>” ¾‘>”q ¾/Å->šÛ¾>­B>¦èå¾B¾>µ#â¾Ac'>ÂZ¾0l>ËÖØ¾uj>Ð놽Í(>Ò¥½†¬1>Ô¥¼Ê› >ÛB‚=Ž<>ãe>^ >é~Z>Uk½>÷ á>µ@2>ùM>Ëœå>ùM>ÜË>ó¨>ìÑ4>èÐà>üg'>Ù:ô?ö >ÈJ? aì>³sâ? Å{> Nü?  >‘‘Æ? -Š>~5Z? />a¿Y?UG>AŒ4?Hœ>:qÄ?Y€>#gš? Ô> §…? Ƀ=Úc?ͽ=™Ua? Ƀ=fÅl? jY=0e?ù=,¥z?¾2<¨Íd>û¹®<¨Íd>öMà<ß‹>ðâ=à;>î,'          !!""##$$%%&&''((())***++,,--..//00112233334455566778999::;;<<==>>??@@AAABBCCDDEE89>F‡¼Ì2ï>s $¼­«à>–Ç”;`c>²I ="z>Í(Š=¼ >áÓÈ>2>ïѸ>P…«>úó9>†xŠ?%>šÒ¤?;¥>¹_?,>ß¿?’K>þ[??ò“? |ö?gP?X˜>ûDf?#¯>ïѸ?,¦è>á0ô?4H±>Êîq?9°¡>»5?;G°>­ ?;™>œWU?:|'>%Ë?8jþ>€… ?5<ê>\&É?.àÅ>2Ϫ?& Â>ëy?W=ôj†?¿=ÐÌÉ? Î]=¨¤?D"=ï·>ñ=7“>Ôap<ठ>° ô<£–H>™Þm<…D>‡lÈdߺ<<.>0¸ä<·ðg>`Þ= Ââ=Íäª=<¤+=Ö^=jnÜ=F\=£<¢"•=ÐÌÉ:—íÈ>퉼u•y>)E•¼Âÿ=à±ÿ>¤…>Ú[“>¤…>Õ¾¡>–^à>ÐÌ>ƒí >ÈÝÆ>fǨ>½ä÷>?Yƒ>¶—>%F >®ó>šF>¤t‰=ð;>™¤~=LJð>‹¦_= Á>€… =†©Q>l¯þ=xø‚>S?d=sâ >>åG=~>%t­=‹¿×>  =¯]y=ìȨ=Ý(<=ÓX> <=ÅY.>48R=Â*å>_wÊ=ÅY.>…2è=ÓX>˜Á¹=ØmÝ>ŸéS>âv–>Ê×3> u¶>Ê×3>_>ÜD>Œ“>é^b>*‹1>û-,>;f?8\>Lã7? 7S>a³?Г>&·?þ>‘6û?Åå>™õ¤?!× > ôŸ?#¿~>ªV?$Ÿb>²Ãs?%!>» ?$³º>Â?#¿~>Éý?"(v>Ó3?cX>ÙfÉ?ló>Þá?ür>ßëX? ñ²>áÓÈ?D">âv–>ø¡ã>âv–>軃>ãh>ÚÅ445566778899::;;<<=ABC-./34232 12 1 01 /0 / -/ - - ,-D,DEC,ECEFMNOZ[\D- \D \ \Z\ZYZXYWXVWVUVUTUTTSTSSRSQRQPQPOPOMOMMLMLKLKKJKJIJI I !HI!H!"GH"G"#G#$FG$CF$C$%AC%A%&A&'@A'@'(?@(?()>?)=>)=)*=*+=+=í¢Ã? ØB<Ø)Ó=l{ï<Í ÷=ïŸ<ì™k<µR=&#;7Ö0=kSP¼Z0 =•¥¹¼ŸÀÕ=Êýë¼Á_F> Ú&¼Æ:â>.ã ¼¨’«>NîR¼Swa>w3<4%l>†8(=m`>“›;=€)}>šüt=¹¯)>Ÿ²k=òŠç>€VP=ê½P>uš1=¹»Ï>c3³=—ð‰>U×=ŠÊ>AÒÍ=ˆR>7.…= b>5ï­=Û”F>}‹??óÜ>…#Á? ¯‚>„+? ›ö>À? Ä=þvä? ¼        <Ø·a=ƒT <¶¨¹<Ì܇<Ð(a;ãe=¼S¨=q\§¼”sË=ÄQe¼—=÷A¼MS> ÐÖ<Ûý>P=bÿò>;›Å>w8ª>S¢$>…râ> Íg=Q£ >ª«½<â;>¹0];n >ÅÏ»þÁ<>Ï®C¼_µ>Þ¼Ö²>îÝð¼^‰">û„»™í|?]<‚õ?$O=:r¨?/Ó=œ‘?ö=·äi?—¡=Ê;>ù: =Ìü@>ò”á=Æèã>í7=¥¢@>ì§¡=[g>å¨w=dkj>Ý:=Hþ>Ík=öV>»®¼>3>©R >S >˜R>Ðô>އ<>¤y½>«=>¾3÷>ÁÉY>Ô%J>Õ­ƒ>éåÜ>íY?ü,>ð£Q? Eü>ñâÑ?š|>î_?ö!>èJÇ?¨h>âà;?¿»>Ù“c?´r>ÒÇ?­„>ÀY|?§ˆ>M‰Á>«Ïm>cÛP>ávî>oÙc>ü®î>ux? ,g>mZN? Ѱ>QÑ?ü7>(T?{4>¿?‹L=èíó? ,=Ø}¥?–Z=ÖxG?ËX          ! !" " "# #$ $% %& &' '( () )* *+ +, ,- -. ..//0011223344556677889>î>î¸w>?` >…ÛD> ¦^>Lx=ôH=‹ÍF=êÖ8=/˜=ñ+<&ê…>ðŒ¼s>[e¼Œ,ä>)ûÚ¼‹;¸>@1;»ä>MÕÀX€=]\•>aK1=Ç":>pp|>eE>|iy>SØÅ>c5>œ@½>—!Ò>´°>¢†">ÍÉ>¸Eª>¢K>È)Â>tæ}>à ^=úš=>ìX=ˆ.U>÷»Ê<Ò8Q>ÿÚ_;áqŸ?ºþ¼l?ôp¼ž‹|?ÏÕ¼¨ªÉ?$@!¼€-]?*ä®»¼Ê÷?0Rë&à>üâL>tÂ>â­q>µN+>¿Íš>ý§8>±´Ý? C>¦Y:?k>™ä? {s>Þß?&Ï>xP*?.f…>_Ú?22A>5Oß?7Àû>|ž?:s=Ú‘a?:Ž•=“ ™?;%9=>³Ý?:Ì‹=Ó³?:©Ú<Ôì ?9—å<¤|w?7ãÞ<=à?4º<¤|w?2ƒ;<ÿ–X?/ûf=7wk?/x=~R¼?.‡=¯>?-Ä>?+µ>2¸â?%‹>\Ö=?èW>~ÿð? ü $$$%%%&&''(())**++,,--..//00A  !!""##$01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A<}. ¾gÕË=— f¾}Õ=¯;¾~׬=Ë›¾rQ=ìà3¾Q=ûä¾2ìò>+(½Ë)€>/`á<}ãü>0&gº¨ç>7ÇS¼œ¦Š>H¶°¼¼*Î>hW¼ªúö>ƒ|§¼zS¹>” t»©>  œ; ¶¢>»KÍ<ß[¥>Äì=5â>¿$…º÷@>>È{|¼ ]>ÚÅþ¼³>èÏå»Gm>ÿ‰¿;Ѻ=?ÏX<Òe? ?H=,Nr? Ú=g²? ˆâ=gL?(Ì=™{·?Ö2=ÄsÝ? }>+V?®,?ë?#? Æ?žK?]?Öô?ÞÊ?M ?ƒ? [š?Ëù? èz? §?ðí? Ÿe?v?[ >ùÛ>ïA)>ò;Í>×ú>éïE>µ™ê>Îûn=Û^m>¿,‘=Á–„>¨8Ä=“O>”:Í=‰º >ŠWÉ=ƒÿi>z‡ñ=‰º >k<1=¦_t>b¹¬=ÑWž>c”ç>âŒ>ŸIq?^7>ŸŸ÷?½:>™¼? $>OÏ?¡Ï>€?U@>w‹œ?oú>cñé? w˜>S#k? >u>E'7?tË>5fø>õ&w>/†>é)¸=Æ5a>Æ!<ÇÓN¾ym‰=D¼¾å>??      ,,--..//000112233445566778899::;;<<=  !!""##$$%%&&''(())**++,<Ëß?ä=áã?Ó1=fœª?«=‰¯)?4˜=—«¹>óžM=•4ß¼™n=Ï󼡛P=ùè·¼‚V|>!«·º(\«>G9<ÒËê>n˜®=o?>LO=Ù”¹>Ÿ®ë>+ >µ0Ò>JQ§>Åv">})>ÖD>£u>àj‚>Ç`š>ã6¢>ìUh>àj‚?.¾>Ø6? >ÏuC? Ê>ÄžB? q,>¼ &? èº>³¨Ó? ù>¯j?J¶>®š>ýcí>°Ü¶>ñNø>²BÃ>Ýh¶>³¨Ó>ƪª>­´>¨…>–g>ŠúC>LO>„’h>[>aX9>`B1>Jš6>IáL>Bò>I¸$>ùOB>F E?-Î>8Çw? ˆ">.Çä?Â><®?^=¶pã?×C=@Ù”?kQ<Ãmî? ú   """##$$%%&&''((()))*          ! !">… ó?2Û>™‚f?C >¤´ä?ã–>´V?cÌ>½õí?‡[>Çç}?´B>Ó,?Ã,>ÜŽÛ?r>ãÎx?!0B>äKP?&”@>ß” ?*Úf>Õõ¸?,u>Çš[?,0Ä>½ð&?*ûe>™–?(Ø>“ðÜ?'Ÿë>…qŸ?'Ÿë>f¥/?(:Ž>MFŠ?(Õ0>5&?* t>*=´?,u>*\?/‹Ä>1p?1ðn>9ò4?3´›>Pæ_?6¹Æ>Pæ_?9¾õ>G$±?;»¯>.§é?<8j> “?:ô8>O?7Tl>} ?1ÕÅ>_Ü?-¡> ýÖ?(:Ž> ?%/†>(>(?$÷>A1Ñ?"ÊÛ>Pæ_?"ÊÛ>3”ª? Ý>¾?e> Ÿy?s.=åV©?ëj=Ã'?þL=‹ð»? YO=Wó?`€=#ç±?,–= ¾D>÷.=é6>ê_Ü==q>ݰŠ=E»>Ñ›×=‰†#>÷>=¹Øø>»BZ=ö@d>³h>Sì>®“>ÿ¤>ªó9=Û¬~>¤N==¡8'>›Jj=mM@>’ÉÑ=1ØB>ŠTî= îä>€9<Ý’>c!Ò<£‚¡>ANP<­->&ºd<Æp>ä=hb=ã% =Oe3=¼|t=•šè=š¨ë=ÈX6=‚’=ïÔ=^Vj>%h¥=2ØÃ>Hqn=$Y–>sï"=ž‹>† @=¯y>Q=;>“V<<Þcc>’»•<‡h>Q<‚ >†¦ç»ÔR>u$o»ç >jD÷¼;>f¥/¼{(>eoá¼Á1i>kzD¼ñƒö>u$o½cD>…}y½Úá>†~¼Ñ…I>²á¼3Ã\>¾[!;ÜZ>>Ã03<Ѹê>ÃH =:Â>¼gj=…¿j>±«Î=ž½õ>©ÑŽ=ªÒª>žò=´|È>“x=»¼o>‡c^=Âü>vX=̦2>`¯*=Ò²²>MŠ3=âdÿ>7ËV=óNÔ>)L>Q•>ö>w>ç¶>*Ma>'.>E‡›>*²>aCè>;Á>y`m>IH]>„¨j>Sý5>Šôã>`àÞ>™Þ>mU+>–cA>‚îR>œ[i>†È¾>y=>‘¨)>y=>š;>œ[i> nÏ>œ[i>§g>ŸI(>«¡r>¤¸Ý>¬Ö¼>«øz>©6ê>´ –>¤‹s>¸+>>™ól>¸>“ ç>·Œ>‰ýf>µ×™>€Mc>·Fˆ>k¦4>»¿ü>W«ƒ>«Ž>C˜é>ÈŒS>.!2>Ó;¼> ë>Ý}>&>ê â>ž†>øÁ>$à?ÐT>9Ø? ÷à>O»Ê?ö‰>rKÁ?[      $$%%&&''(())**++,,…   !!"""##$$$,-.,./,/0,01,12,23,3445646747848949:4:;4;<4<=4=>4>?4?@4@f4fg4gh4hi4ij4jk4kl4lm,4~,~,€,€,‚,‚ƒ,ƒ„,„…4mn4no4op4pq4qr4rs4st4tu4uv4vw4wy4yz4z{4{|4|}4}~@AB@BC@CD@DE@EF@FG@GHMNOMOPMPQMQRMRSMSTMTULMULUVKLVKVWJKWJWXJXYIJYIYZHIZHZ[H[\@H\@\]@]^@^_@_`@`a@ab@bc@cd@de@efwxy>JöN>‹T>Xä@>«Ï>fàg>ÇK>w”®>àå…>öÜ>î§>‚¬>ï/Ë>‰m±>ù ‡>ŒiQ>üv>¹ê?^^>•mñ?u>š¡×?t¢>Ÿò)?m@>§¥Z?×>¬Ãô?B\>´Î?à¯>¸¹ˆ?Iº>½U?6x>Áw!?Ü.>Äï>ÿç¢>ÇgF>ûóa>Êø>ò`³>Ë×Ð>îÅ>>Ìþ›>áÌd>Í)>àzõ>Ë Ï>ƬÂ>Æ®‘>©ô¯>À÷D>Š™Ä>º*è>VÄÆ>³ˆ>â¬>ªÄ=Õ‡>¤ =ŸÓæ>£Û¿=›c^>º=gjÖ>šn=L9z>•¼=*_B>‘Î=-ã>‹åç<ñöG>†À3<Õ‰>}S<»“I>s‡–<¸? >cö†<Â[<Õ‰>QŸ/<ó+>Iö•=-ã>C Ø=+{l>>=L9z>6ßh=Œ q>55==›c^>2ÒP=ÏÔç>2à…=ÔŒ>6Ñ9>â¬>?@©>Uï¦<Þü4>ŠR½==/Á>­ =ˆ t>ñ"=’4D>Èí=ÏÍü>ÞB²=ÙY–>á,Œ>j >ók>K¬>öf´>??–¦>F>½?˜#>o3l?¨‡>w¢ê? }£>‘`Õ? “ã>”Ÿò? ãÎ>®Æó?•>¯æ£?#x>É-ã? þr>Êt¢? ãÎ>ÝËÀ? ”>ஆ? }£>ñmq?´H>ô…|?˜#?»Z>øÂ?µ¿>öf´?[L>äK²? 7>àÂ? ”Í>Ëòl? ý’>Èí?,>°h7?Ú>¬»? ó2>ŠR½?3>OÔç?žñ> >x?¤‰>+>ò·Â=Ý´–>ïÜ=ÏÏ>ݶs=…0œ>Ú0N=qö">Ž<öfª>“A<×RÝ>®\;Щ›>ª³;UP>”c¼J0>‘69¼$D£>neu¼qõü>kß ¼t.P>9»¼*í>7Q¼$D£>[Ô:xœ^> $d;UP=Òiª<²²:=Æ^Ì<×RÝ=‹‹y=]mŸ=ƒTÓ=qö"=,ûV=ÀJù= þ«=ÍU–<Íõ>zß<ÄXÊ>+<Ÿñ>GR<¡F>OÝmonlom4olk4lj4k54ji5j65ih6i76hg7h87gf8g98fe9fd9e:9d;:d0;d1;0/0d2;1./dc.db.c-.b3;2<;3,-b=<3+,b=3*+b=)*b()b=a(b`(a>='(`>?>&'`??%&`?$%`??#$`_#`@?^#_A@ A"#^!"^ A !^ A  ^^ A ]^] A \]BA CB \C C\C\C[\CZ[ZDCDEDEZEEZYZYYEXEYFEXGFXWGXHGWVHWIHVUIVTIUJITKJTSKTLKSMLSRMSNMRONRQORPOQ>"W=à–“>ú=X9­>:Á<ñjF>!ïó;¾mY>4‚–¼[`>K«^¼‘Lc>[¿×¼¡˜±>gmž¼·õæ>ƒy­¼cwŸ>‰Œw¼êÄ>‹ÙȈ#û=ÅU‚>£Ž>ëW±?­¬>î­£? ¤/>î@¸?L—>íž0?æJ>îue?ˆD>ò ‘?!oE>öo?" ~>ûý? …?xÖ?ìi? ›ð? >? öI? I¶? âÄ>Éaì? íã>Yþÿ?Y>?? î=Êíg? f^=—•£?²˜=SJî?¡‚=pm>ùÆ÷<µ™ë>ãã‹=˧>Þã‚=a¦s>Ü6X=šz0>Þ7Û=·Òu>ç =ÙC>î9>8Ú>ñO>w3¢>úü>V˜ø>ïÓù>“ô>¨®—>Œ_ù>]¢×?!™Ä? T<²zì>î"c>ÔX >îÍ©>ÉÝ¿>ªY>>Çy>‘æŠ>Äùþ>/ØÝ>ÇÅH=Ù”A>É*ì=^Ï>ÎÁ<Û>ÏtN<?…>Ó¥<ºÉÀ©>å!¥¼~Ym>ûμ¹•?Ì<½Kj>úZ<±bï>øª¹=€+0>ó&=½£n>÷û³>n¸>öó[>oi>ýh¹>»ÏÕ?>ð` ))(( **         ' & &'+  !!""##$$%%&,-.,./,/0,01,12,23,34,45,56,67,7;,;<,<=,=>78979:7:;<]°•¾p]–=§¶¾rA=õ&¾_ô >® ¾RÓ> dþ=2>ø>½âÉ>7Y²<‹„S>\÷å¼^ö>wøó¼u•y>”¬ ¼ª>}>®`p¼“èà>ÉìØ¼C->ØôØ;2·x>ê,œ<¤gÿ>ÿW=QB ?xh=’µ? °=á—D?î(>@é4?Îð>sÙú?ê¸>Š}»? š+> Lô? ¸ð>±d¶?˵>ÉýÑ?>è ý?,?–4?\?-Œ>ïßq? ˆÍ>ÓÌ}?0œ>Ìr­? íM>Ä©Ä? }j>¦—? ±H>{(ú?öÍ>6“&>áY>rÜ>ÄðØ>Nãñ=¸ãi>P\o=¸“É>^úh>7×6>qJ¹>…o > >¦fŸ>†o>Èjê>–á:>åç>¬5>ò°¤>зü>úa×>×Êx>ú@>ç¡k>óš¸>÷FB>á'>ú…>ÄžB>ö½Ý>¡‚>ðp×>†O‘>ì@>f˜š>çè3>EvT>á"<>å>Øg=ó•>ÐDÓ=˼õ>¸l„=µâ? æâ=ÞxA>ÿ=›JË>‹„·=…òí>À™á>øŸ³      78899"""##$$%%&&'5645434323221211010/0/./-.--,-,+,++*+**:*: ): ) !()!'(!'!>uEμÓZ@>”»¼±¦ >«É¼šå>Ì#<ÌS*>ãõ¶=r˜>ýðŠ=òR?ð(>'`M? Aï>b[{?ÒQ>Ö?†>¨¦&?,/>À…¼? N>ÖýÊ? 4L>ç××?ð(>õ/?~>ô¬c?X>óà?+èc>óà?9?¯>ô{Z?=R>÷Jc?A¬¶?5“?DÃÍ?Îw?DÃÍ?¸»?Ašë? •^?ÿ4u?d^>îZl? ~>ÏuS? V¿>¬Y»? ï;>Ѝ‡? Å~>X?à>"¤->ýþ3=ÎßÍ>Ûè=ƒ ¡>¿Ñô=Zê>¡  <¤©H>s5ˆ<™mJ>4×<Æ]<>u°=1Ó=˜1=°µÌ<¾=c>ö¼5->>$¼±¦ >Fín<ðÖ²>;WÌ=4É >4¬œ=›>6>´>B·§>\½p>WÈ>>žÑž>qK>ÎÀ>…+/>î)˜>”OÏ>úŽ´>¤>ÿ“Þ>°† >ÿSS>°>út>Éj·>ö†>Ϙé>å¼>Îå)>ËÁÁ>ÉG>¥× >ÀÚ>v„>¶QÒ>¼Ê>©®L= ž#> =@ Ö>”»<ÌS*>Šs<{^>}²Õ<7õ¥>eÓI<7õ¥>R*3<”&þ>Fî1<î=ê ˆ; =©›=ÌÚn==>>??@@AABBCC*+<=< < < ;< ; ; :; 9: 89 78 67 56 5 555555555555554543433232 12 1 !1!"1"#1#$01$0$%0%E0E&/0&/&'/'D./D.D(-.(,-(+,(+()C+)C)>TN6=ßÿó>Mvè=¬£>Lš=e>P3o<ï>>_@f;"˜F>rh¼H)Ð>†áì¼áø>Ëz¼ï¤Ã>—ñ¼ï¥Õ>ŸÀ¼ÔHG>§缨ˆo>­,]¼|tp>·¨µ;ûòõ>ºùX=ë%>µ("=‚è>« ’=й¡>Ï}Õ>ë*M?>î]Ç?>íïz?ØÚ>íJä?q>îR?‚Î>ð¶í? &>õ(ž?!e[>úõú? …?Dí?]Ó? ý?*S? w? ¼?ð>ËL9?4>[|Œ?)ý>°V? #M=ÊôÏ? |@=–öƒ?¿¶=Pâä?ž/=6>ù›<­¼f>ãp°<þ½ >Þ`s=_lð>Ûª›=™äq>ݲ¢=·›í>æµÄ=Ùxý>íç¸>Í¥>ðÔV>yØ>ùó3>ŽŠP>ï‡Ù>Ãb’> “.>¶ñO><‘m>ºvx=bÞ‡?"p?_ö<ª“'>íÐÅ ..--,,//  !!"+."**+"0#"#$"$%"%&"&'"'("()")*<½vî? ¥=<´Ûà??Þ=!•?¥[=y+]>ÿ«6=ž†è>ÿP´=ÍxÄ>îºM=ã½t>ßÉ=øªy>¿O×>oM>£èž>?>‘R´>(¾>zH7=òÏô>@öI=â8è>œN=å6=àc«=í¾ø=­êÝ>ÑÂ=®»>|Ñ<(JØ>0]¼©±º>V!½ÿò>ã½ÿò>¡¦—¼_î2>¼U2<Çù>ÊÍ=t±>Ø8=Í¥³>çš>1q™>ïZû>~žÿ>ó#ž>£0¼>óÜ;>ÅÎ>ðùÉ>Ýš;>ë4ç>úr¨>â”?Qá>Ùæ:? Û>ÉP0?+®>»n“? ^>¶¿? >¶’£?Ÿ¹>¹xÈ>þ;ë>¿É6>÷í…>ÎÆ>òPÃ>Õ? >Í*>Ô‚>´"Í>Ñn >™tS>Î.á>„.Y>È—–>Tpò>¿7¥>»>°ù<=ʰ>¡I‡=SÑ>„Et=yŸ>qx=‹M¿>dd=»C>Xèñ>–>d>T˜>i >–î°>bòf>®»V>\Z¾>Ƹ¦>K²y>ãì?>:â>ú Ò>$wÿ?›[> Í? w<=åÁ¹?ß®=¹Â?Ý=ƒ´‘?iñ=6¤ª?áO<úi? Šy<×g? 0n        0 1 1 12 2233445566778899:::;;;<<<===>@>??@ 01++,,--..//0  !!""##&&''(())**+#$%#%&?S>¡i>û$E>‰ý>ó>là >åKL>BL>ÛÝ>.y«>×¼>'}ß>̳N>w|>É#E>r >Àè> C>º³S>P>°Ó>)å>¬v>Ї>Ÿm=þm1>›'=þI>Ž£°>ŸÇ>‹é?>fn>‚›>G>~ÁV>SM>n?>s1>c›S>ž>Q_>%ç>KºÜ>,£>? 0>B'ë>>)>Di¼>5ÐY>f!¤>4ÿ†>‡J>= š>¡i>JÁ‚>¹ >[uk>Ìp¡>vÈI>á¬0>„1>ëh8>‰/>ï7^>“ü">ö–w>—§ë>ø™"> Ä0>üÂ>¦ã>þª'>°ò?š>´à}?w>Á¸…?–ë>Ť?Ÿó>Ò‚?<¡>Ôáî?|>Þ-˜?¬>ájˆ>ÿ(>é®>û”>îý‡>øPß>ø Í>ðF:>úíÌ>ìÑc?[>áÐO?Ϙ>à¯\?ñ‚>ÏÁ\?%‹>¼µª<Åq>¡{$= ÍB>¶AN=,G>>¸æ}=†|ò>Ên=’© >ÍëÜ=ÜMX>ß"=壟>âß%>!kv>ð+)>/k>ó»>_w¯>þ¤>gE@>ÿpÀ>oÏ?ž>’êþ?üæ>®²6?¦>Ë«ë?ØC>èBˆ?¡?Ø?áÔ? gŠ?;O?á>þsô?¢†>óÍ(?¤§>ñ â?"#t>㊴?#›y>àá?(”[>ÏÓs?)Wo>Ì(b?+c3>ºp?+~]>·³‚?*‹Œ>¢íZ?*g>¡{$?&~¦>Œ«û?%ãE>ŠEü?’S>pØ?L?>jã?–>I#°?ÞÌ>@¾¼?V€>%ºo?à>vk>ñI> •%>í€>æõ>ѵ =îÄ9>ÎW¼=ëñö>²‡=Û >•–Ò=Õ>rc=ÛL<>?#o=ìʧ>¯¾>ÿe>Ò> (Í=¿å¸>.,=¯å¨>#ÒØ=hç»>>Ží=R’Å>EBs<üð·>gxÃ<é=–>m›Ñ<¥¹>ˆ(=<£PL>Šú<¿2{>ŸÉÇ>»ˆŸ?TÔ>{¶=¶y>lv¼¶‡k>gǽ/f…>i+ÿ½sÙF>pMŸ½šT>{¶½¨Dâ>„EϽ°Ó:>Œ£½¥j¾>’ˆf½šT>˜ÄÁ½}Õ+>îa½:ÏT>¢ ¼¢i>§¹¿<0Ïá>«wÑ=Q²>²?¼=ñ·>Äqq>†Â>ÓkÖ>Îß>êÅÒ?Å#>òf?’ä>ö,.?&ªE>ú™?,çT>ù"?1³>öY3?6µ>ï8Ï?93Ý>èâ?:s`>ÜÝ?:\>ÖEK?9az>Ò,þ?6ù>Í ?3«>Ëùè?.îY>Ê›Ì?)H—>ÊA·?%œ>Èw€?]>Çàæ?-54kj5k65ji6j76ih7i87hg8h98gf9g:9fe:f;:ed;ec;d<;cb<c=<b>=b>bab>a>a>aa>>?>a`a@?` @!@ `"@!`#@"_`_A@#_$A#%A$__&A%'A&^_ ^BA' ^(B')B( ^ ^*B)+B*] ^CB+ ],C+ ]-C,]].C-\]/C.[\DC/[[0D/1D0[2D1[ED2E23E3Z[ZZZEYEZFEYXFYGFXHGXWHXIHWVIWJIVUJVKJUTKULKTSLTMLSRMSNMRQNRONQPOQlmnlnoloplpqlqrlrslstltuluvlvwlwxlxylyzlz{l{|l|}l}~l~l€l€l‚l‚ƒlƒ„l„…l…†l†‡l‡ˆlˆ‰l‰ŠlŠ‹ŒŽ‹ŒŽ>ˆõ6>b Ö> âú=¯4<¬“§½‡€=·À½‡€>\n =Ø8Î>šÉU>Ln>£G>=þøŒ>®7l=„©‹>»%º<Î6>ÌÖQ»¸^>áȼØeØ>ï!#½¢^>ÿî ½4œ’? ÙÀ½;r_?¼½7T°?"ã½*ü‹?—뽎Á?! ò¼±f ?"Ãͼ_p?#sZ;Óÿ&?!d¸<¸¨(?Ÿ;=º}?ù=º}?k×<ê}?kÝ<„ˆ†?§ú¼ž4? ?«¼M4œ?+A»‘ä.>óêA<„®Ì>à#–=|H>ÉjE>‚Û>úÛ>»—?"ã>óP!?/sZ?™v?Gu?™v>ÁL*> äJ>­Å¸>èÕ>¡îu??Ô>”`{? øœ>‹³`? ÛE>tn?:f>QuR?:\>-Í? ƒ…>|¡? =ûš? Ä=à,[>þHØ=Ú¯ÿ>óP!=âê‰>èWt=þVÍ>ᨋ>œ>àù2>/)³>ç*(>3;+>ïŽ~>/sc>ùPò>8ÀV?˜>LM)?Õ*>`Šc?û|>tè>ûD>„)¡>ä•Ñ>Œ7Ó>À:<>С>£Å#>“>[>‘å>“íæ>‚Û>”n>z½d>Ð#÷>øò>Ê·ç>Jðî     ???@@ !!##>          !"#$%&$&'$'($()$)*$*7$78$89$9:$:;$;<$<=$=>$>#*+,*,-*-.*./*/0*01*12*24*45*56*67234<Õ$>ØÐd= V>ÒBÐ=q>>ÊØ=1@>½_u=2§>³"N=ã¨>¢À^<â?«>t;<Õ$>}k_<â?«>Tvz= V>3²“=FPA> Û=Àv>}=¾æC>éV>!6=êã+>'ˆ„=áË>IïÒ=áË>v+r=áË>J ½wÊD>>”F½×£H>@7§¾Á$>P™ž¾#>eåľÆ‚>~y¾ Ð*>‡mK½þôª>)5½Ñª>©Æ~=áßÇ>Èç=án>âKœ=êã+>ó<=þ‹ê?Ys> ½¼?ç >|D?>-%?Óâ>J¢!?ƒ…>h9?av>€Y? ¨>>»?!âÊ>Ö.?"´€>®8"?#ï >¸Þ1?&Ìý>ÁàÚ?*|ž>˵=?/fÏ>Õ‰œ?-Ãi>Ü3?(Ù8>×,ý?#ï >ÒBÐ?Ö>ÊØ?¾>¾š?wG>´Å¶?0}>«Ã ?é¯> KF?¢é>’^h? \>ˆŠ ?U>€Y?+$>m b>öòX>]ë>äS>We >Ò»Y>UiF>±ð}>Wd†>Ü•U? é >àY?Ñ«>å•ë?˜¶>ïà&?*nž>îüH?3wA>â$Â?9¿S>ÙóÔ?:ùÝ>ÑÂÏ?:ùÝ>ÈÀ*?:(+>Á`ã?8„Å>¼ª¼?5ÛF>»A¨?4˜>¸¬U?0’w>³,Ç?¯>²H-?ÓA>¯ ò? f>ˆ0ä>Vá>W ù>Vá>*ÏL>\§r>õ>h9=âðü>u:g=Ìp>ƒŸÜ=Ⱥ¶>Ÿ=Ⱥ¶>~=¾æC>¨|B=±Ë>¹¯å=§öÂ>ÆË=‘A>Пl=`†›>×,ý=þÖ>ÚsÌ>=Y.½íÁ>Èÿä>Æ&Ÿ      OOOPPPQQRRRSSTTUUVVWXX  !!""##$$55566778899JJKKLLMMNNO()*(*+'(+'+,',-'-.'./&'/&/0&01&12%&2%23$%3$34$45<=><>?<?@<@A<AB<BC<CD;<D;DE;EF:;F:FG:GH9Y:9:H9HI9IJ?A6¼œ¢˜?$Ç<ª"´?Ú=ƒ2?$(ã=ê˜?-K>C‹¬?1‚>‰æƒ?3B >¯P?3Ñ>ÒÏþ?0ÙŽ>ë?!?,°‘?b´?&Ü\? ?!9|?Hã?ª1?-Á? ¢?hi?¹»? ? m?–e? 0{?S??JÕ?3h?*>ü>a?l£>ÖÅ]?…>½¡Y?ôÉ>¢‰K?ÐË>c ?î†>eà?îó>-N? /=ÿ8L?²d=ÔÜß>õ&Œ=¿X°?LÛ»Ì<>ø`F=Å­ë>æh®=Á^á>­cB=·¼o>Ä”O=á;¬>ÃÃ/>û>Äy>%->ÅýY>Tè>Ñ›Í>Y;>Ϥ>’Âm>ÈûÑ>›Æa>»¯Ï> À‹>®BŠ>žßM>¨'{>Ÿx|> ¨O>›5>ž>•eh>›Ö>‡FV>Ùá>s^í>žÉ_>8ÞÙ>œ,> È?>‹–l=Öœ>…[¹=²yW>a =»fQ>A—=Ç»s> ­Æ=íñ>(>a> Hr>Fê> Ú>|Iw>Pm>–$T>#6Ø>¶¤Ê>3¨ç>Í{4>QÓ?>殎>q¦^>òÃb>ˆG9>÷l>’;T>ÿ!B>”S8?9>‘A? ¸}>…£«?-„>n‹ ?Í>>åÛ? ÁÓ>üŠ?†(>Ä?{]=¾@È>å΀=vJ>Àù–="þ‚>¥än<Þì9>‹Â›<¹¯>TµŒ<ßMþ>$ã=*Ö«=ãu5=p›·=ˆwh=°Ÿè<–\>—4¼|‹>¸à¼WÉ >š¼Û:ÝHE>ÒÙ`=Êcê>Á>ý=á.‘>^²Ã¼—ÿV>Ÿ‹ó;ÙŸä>¬)<‹ª™>²ÙŒ:÷ é>½¼}G¿>Ә߼úNÁ>ð„¨¼÷ž?ƒ¼¯á>ã\ž½ _å     RRS$%&$&'$'($()$)*$*+$+,$,-#$-#-."#."./!"/!/0 !0 01 112S2S223<=><>?<?@<@A<AB<BC<CD<DE<EF;<F;FG;GH9;H9HI9IJ9JK89K8KL78L7LM67M6MN56N5NO45O4OT4TP34P3PQ3QU3VVWWXXYY\\ZZ[3UVdx-4.4.4/fonts/cyril_d.dx0000644000076500000240000024571707120226015012203 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 10 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 80 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 11 msb ieee data 152 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 320 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 36 msb ieee data 416 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 34 msb ieee data 704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 976 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 43 msb ieee data 1392 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 43 msb ieee data 1736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.782500 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2080 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2184 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2440 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2696 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2768 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2816 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2920 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2944 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 3008 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 32 msb ieee data 3032 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 34 msb ieee data 3288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 8 msb ieee data 3560 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 5 msb ieee data 3624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 37 msb ieee data 3664 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 37 msb ieee data 3960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 39 msb ieee data 4256 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 39 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 8 msb ieee data 4880 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 5 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 41 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 42 msb ieee data 5776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6112 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 21 msb ieee data 6288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6456 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 41 msb ieee data 7232 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 42 msb ieee data 7560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7896 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 7960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 8024 attribute "dep" string "positions" # object 81 class field component "positions" value 82 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 84 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 85 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 83 class field component "positions" value 84 component "connections" value 85 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 87 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 88 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 86 class field component "positions" value 87 component "connections" value 88 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 90 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 91 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 89 class field component "positions" value 90 component "connections" value 91 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 93 class array type float rank 1 shape 2 items 27 msb ieee data 8240 attribute "dep" string "positions" # object 94 class array type int rank 1 shape 2 items 26 msb ieee data 8456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 92 class field component "positions" value 93 component "connections" value 94 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 96 class array type float rank 1 shape 2 items 48 msb ieee data 8664 attribute "dep" string "positions" # object 97 class array type int rank 1 shape 2 items 48 msb ieee data 9048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 95 class field component "positions" value 96 component "connections" value 97 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 99 class array type float rank 1 shape 2 items 11 msb ieee data 9432 attribute "dep" string "positions" # object 100 class array type int rank 1 shape 2 items 6 msb ieee data 9520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 98 class field component "positions" value 99 component "connections" value 100 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 102 class array type float rank 1 shape 2 items 24 msb ieee data 9568 attribute "dep" string "positions" # object 103 class array type int rank 1 shape 2 items 21 msb ieee data 9760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 101 class field component "positions" value 102 component "connections" value 103 attribute "char width" number 0.688600 attribute "series position" number 66.000000 # object 105 class array type float rank 1 shape 2 items 34 msb ieee data 9928 attribute "dep" string "positions" # object 106 class array type int rank 1 shape 2 items 33 msb ieee data 10200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 104 class field component "positions" value 105 component "connections" value 106 attribute "char width" number 0.688600 attribute "series position" number 67.000000 # object 108 class array type float rank 1 shape 2 items 10 msb ieee data 10464 attribute "dep" string "positions" # object 109 class array type int rank 1 shape 2 items 6 msb ieee data 10544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 107 class field component "positions" value 108 component "connections" value 109 attribute "char width" number 0.563400 attribute "series position" number 68.000000 # object 111 class array type float rank 1 shape 2 items 18 msb ieee data 10592 attribute "dep" string "positions" # object 112 class array type int rank 1 shape 2 items 13 msb ieee data 10736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 110 class field component "positions" value 111 component "connections" value 112 attribute "char width" number 0.751200 attribute "series position" number 69.000000 # object 114 class array type float rank 1 shape 2 items 16 msb ieee data 10840 attribute "dep" string "positions" # object 115 class array type int rank 1 shape 2 items 10 msb ieee data 10968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 113 class field component "positions" value 114 component "connections" value 115 attribute "char width" number 0.657300 attribute "series position" number 70.000000 # object 117 class array type float rank 1 shape 2 items 58 msb ieee data 11048 attribute "dep" string "positions" # object 118 class array type int rank 1 shape 2 items 53 msb ieee data 11512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 116 class field component "positions" value 117 component "connections" value 118 attribute "char width" number 0.970300 attribute "series position" number 71.000000 # object 120 class array type float rank 1 shape 2 items 36 msb ieee data 11936 attribute "dep" string "positions" # object 121 class array type int rank 1 shape 2 items 37 msb ieee data 12224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 119 class field component "positions" value 120 component "connections" value 121 attribute "char width" number 0.626000 attribute "series position" number 72.000000 # object 123 class array type float rank 1 shape 2 items 18 msb ieee data 12520 attribute "dep" string "positions" # object 124 class array type int rank 1 shape 2 items 9 msb ieee data 12664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 122 class field component "positions" value 123 component "connections" value 124 attribute "char width" number 0.751200 attribute "series position" number 73.000000 # object 126 class array type float rank 1 shape 2 items 27 msb ieee data 12736 attribute "dep" string "positions" # object 127 class array type int rank 1 shape 2 items 17 msb ieee data 12952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 125 class field component "positions" value 126 component "connections" value 127 attribute "char width" number 0.751200 attribute "series position" number 74.000000 # object 129 class array type float rank 1 shape 2 items 34 msb ieee data 13088 attribute "dep" string "positions" # object 130 class array type int rank 1 shape 2 items 29 msb ieee data 13360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 128 class field component "positions" value 129 component "connections" value 130 attribute "char width" number 0.751200 attribute "series position" number 75.000000 # object 132 class array type float rank 1 shape 2 items 20 msb ieee data 13592 attribute "dep" string "positions" # object 133 class array type int rank 1 shape 2 items 15 msb ieee data 13752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 131 class field component "positions" value 132 component "connections" value 133 attribute "char width" number 0.782500 attribute "series position" number 76.000000 # object 135 class array type float rank 1 shape 2 items 15 msb ieee data 13872 attribute "dep" string "positions" # object 136 class array type int rank 1 shape 2 items 10 msb ieee data 13992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 134 class field component "positions" value 135 component "connections" value 136 attribute "char width" number 0.782500 attribute "series position" number 77.000000 # object 138 class array type float rank 1 shape 2 items 18 msb ieee data 14072 attribute "dep" string "positions" # object 139 class array type int rank 1 shape 2 items 9 msb ieee data 14216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 137 class field component "positions" value 138 component "connections" value 139 attribute "char width" number 0.751200 attribute "series position" number 78.000000 # object 141 class array type float rank 1 shape 2 items 36 msb ieee data 14288 attribute "dep" string "positions" # object 142 class array type int rank 1 shape 2 items 38 msb ieee data 14576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 140 class field component "positions" value 141 component "connections" value 142 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 144 class array type float rank 1 shape 2 items 14 msb ieee data 14880 attribute "dep" string "positions" # object 145 class array type int rank 1 shape 2 items 7 msb ieee data 14992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 143 class field component "positions" value 144 component "connections" value 145 attribute "char width" number 0.751200 attribute "series position" number 80.000000 # object 147 class array type float rank 1 shape 2 items 22 msb ieee data 15048 attribute "dep" string "positions" # object 148 class array type int rank 1 shape 2 items 19 msb ieee data 15224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 146 class field component "positions" value 147 component "connections" value 148 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 150 class array type float rank 1 shape 2 items 27 msb ieee data 15376 attribute "dep" string "positions" # object 151 class array type int rank 1 shape 2 items 28 msb ieee data 15592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 149 class field component "positions" value 150 component "connections" value 151 attribute "char width" number 0.657300 attribute "series position" number 82.000000 # object 153 class array type float rank 1 shape 2 items 12 msb ieee data 15816 attribute "dep" string "positions" # object 154 class array type int rank 1 shape 2 items 8 msb ieee data 15912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 152 class field component "positions" value 153 component "connections" value 154 attribute "char width" number 0.594700 attribute "series position" number 83.000000 # object 156 class array type float rank 1 shape 2 items 18 msb ieee data 15976 attribute "dep" string "positions" # object 157 class array type int rank 1 shape 2 items 14 msb ieee data 16120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 155 class field component "positions" value 156 component "connections" value 157 attribute "char width" number 0.657300 attribute "series position" number 84.000000 # object 159 class array type float rank 1 shape 2 items 36 msb ieee data 16232 attribute "dep" string "positions" # object 160 class array type int rank 1 shape 2 items 34 msb ieee data 16520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 158 class field component "positions" value 159 component "connections" value 160 attribute "char width" number 0.782500 attribute "series position" number 85.000000 # object 162 class array type float rank 1 shape 2 items 14 msb ieee data 16792 attribute "dep" string "positions" # object 163 class array type int rank 1 shape 2 items 7 msb ieee data 16904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 161 class field component "positions" value 162 component "connections" value 163 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 165 class array type float rank 1 shape 2 items 16 msb ieee data 16960 attribute "dep" string "positions" # object 166 class array type int rank 1 shape 2 items 9 msb ieee data 17088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 164 class field component "positions" value 165 component "connections" value 166 attribute "char width" number 0.751200 attribute "series position" number 87.000000 # object 168 class array type float rank 1 shape 2 items 20 msb ieee data 17160 attribute "dep" string "positions" # object 169 class array type int rank 1 shape 2 items 14 msb ieee data 17320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 167 class field component "positions" value 168 component "connections" value 169 attribute "char width" number 0.719900 attribute "series position" number 88.000000 # object 171 class array type float rank 1 shape 2 items 20 msb ieee data 17432 attribute "dep" string "positions" # object 172 class array type int rank 1 shape 2 items 10 msb ieee data 17592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 170 class field component "positions" value 171 component "connections" value 172 attribute "char width" number 1.032900 attribute "series position" number 89.000000 # object 174 class array type float rank 1 shape 2 items 22 msb ieee data 17672 attribute "dep" string "positions" # object 175 class array type int rank 1 shape 2 items 12 msb ieee data 17848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 173 class field component "positions" value 174 component "connections" value 175 attribute "char width" number 1.032900 attribute "series position" number 90.000000 # object 177 class array type float rank 1 shape 2 items 6 msb ieee data 17944 attribute "dep" string "positions" # object 178 class array type int rank 1 shape 2 items 4 msb ieee data 17992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 176 class field component "positions" value 177 component "connections" value 178 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 180 class array type float rank 1 shape 2 items 2 msb ieee data 18024 attribute "dep" string "positions" # object 181 class array type int rank 1 shape 2 items 1 msb ieee data 18040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 179 class field component "positions" value 180 component "connections" value 181 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 183 class array type float rank 1 shape 2 items 6 msb ieee data 18048 attribute "dep" string "positions" # object 184 class array type int rank 1 shape 2 items 4 msb ieee data 18096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 182 class field component "positions" value 183 component "connections" value 184 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 186 class array type float rank 1 shape 2 items 7 msb ieee data 18128 attribute "dep" string "positions" # object 187 class array type int rank 1 shape 2 items 5 msb ieee data 18184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 185 class field component "positions" value 186 component "connections" value 187 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 189 class array type float rank 1 shape 2 items 2 msb ieee data 18224 attribute "dep" string "positions" # object 190 class array type int rank 1 shape 2 items 1 msb ieee data 18240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 188 class field component "positions" value 189 component "connections" value 190 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 192 class array type float rank 1 shape 2 items 7 msb ieee data 18248 attribute "dep" string "positions" # object 193 class array type int rank 1 shape 2 items 6 msb ieee data 18304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 191 class field component "positions" value 192 component "connections" value 193 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 195 class array type float rank 1 shape 2 items 30 msb ieee data 18352 attribute "dep" string "positions" # object 196 class array type int rank 1 shape 2 items 31 msb ieee data 18592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 194 class field component "positions" value 195 component "connections" value 196 attribute "char width" number 0.626000 attribute "series position" number 97.000000 # object 198 class array type float rank 1 shape 2 items 38 msb ieee data 18840 attribute "dep" string "positions" # object 199 class array type int rank 1 shape 2 items 40 msb ieee data 19144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 197 class field component "positions" value 198 component "connections" value 199 attribute "char width" number 0.626000 attribute "series position" number 98.000000 # object 201 class array type float rank 1 shape 2 items 26 msb ieee data 19464 attribute "dep" string "positions" # object 202 class array type int rank 1 shape 2 items 25 msb ieee data 19672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 200 class field component "positions" value 201 component "connections" value 202 attribute "char width" number 0.626000 attribute "series position" number 99.000000 # object 204 class array type float rank 1 shape 2 items 10 msb ieee data 19872 attribute "dep" string "positions" # object 205 class array type int rank 1 shape 2 items 6 msb ieee data 19952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 203 class field component "positions" value 204 component "connections" value 205 attribute "char width" number 0.563400 attribute "series position" number 100.000000 # object 207 class array type float rank 1 shape 2 items 17 msb ieee data 20000 attribute "dep" string "positions" # object 208 class array type int rank 1 shape 2 items 12 msb ieee data 20136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 206 class field component "positions" value 207 component "connections" value 208 attribute "char width" number 0.719900 attribute "series position" number 101.000000 # object 210 class array type float rank 1 shape 2 items 24 msb ieee data 20232 attribute "dep" string "positions" # object 211 class array type int rank 1 shape 2 items 25 msb ieee data 20424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 209 class field component "positions" value 210 component "connections" value 211 attribute "char width" number 0.594700 attribute "series position" number 102.000000 # object 213 class array type float rank 1 shape 2 items 46 msb ieee data 20624 attribute "dep" string "positions" # object 214 class array type int rank 1 shape 2 items 41 msb ieee data 20992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 212 class field component "positions" value 213 component "connections" value 214 attribute "char width" number 0.845100 attribute "series position" number 103.000000 # object 216 class array type float rank 1 shape 2 items 32 msb ieee data 21320 attribute "dep" string "positions" # object 217 class array type int rank 1 shape 2 items 34 msb ieee data 21576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 215 class field component "positions" value 216 component "connections" value 217 attribute "char width" number 0.563400 attribute "series position" number 104.000000 # object 219 class array type float rank 1 shape 2 items 18 msb ieee data 21848 attribute "dep" string "positions" # object 220 class array type int rank 1 shape 2 items 9 msb ieee data 21992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 218 class field component "positions" value 219 component "connections" value 220 attribute "char width" number 0.688600 attribute "series position" number 105.000000 # object 222 class array type float rank 1 shape 2 items 27 msb ieee data 22064 attribute "dep" string "positions" # object 223 class array type int rank 1 shape 2 items 17 msb ieee data 22280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 221 class field component "positions" value 222 component "connections" value 223 attribute "char width" number 0.688600 attribute "series position" number 106.000000 # object 225 class array type float rank 1 shape 2 items 29 msb ieee data 22416 attribute "dep" string "positions" # object 226 class array type int rank 1 shape 2 items 24 msb ieee data 22648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 224 class field component "positions" value 225 component "connections" value 226 attribute "char width" number 0.626000 attribute "series position" number 107.000000 # object 228 class array type float rank 1 shape 2 items 17 msb ieee data 22840 attribute "dep" string "positions" # object 229 class array type int rank 1 shape 2 items 12 msb ieee data 22976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 227 class field component "positions" value 228 component "connections" value 229 attribute "char width" number 0.688600 attribute "series position" number 108.000000 # object 231 class array type float rank 1 shape 2 items 15 msb ieee data 23072 attribute "dep" string "positions" # object 232 class array type int rank 1 shape 2 items 10 msb ieee data 23192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 230 class field component "positions" value 231 component "connections" value 232 attribute "char width" number 0.719900 attribute "series position" number 109.000000 # object 234 class array type float rank 1 shape 2 items 18 msb ieee data 23272 attribute "dep" string "positions" # object 235 class array type int rank 1 shape 2 items 9 msb ieee data 23416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 233 class field component "positions" value 234 component "connections" value 235 attribute "char width" number 0.688600 attribute "series position" number 110.000000 # object 237 class array type float rank 1 shape 2 items 28 msb ieee data 23488 attribute "dep" string "positions" # object 238 class array type int rank 1 shape 2 items 30 msb ieee data 23712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 236 class field component "positions" value 237 component "connections" value 238 attribute "char width" number 0.626000 attribute "series position" number 111.000000 # object 240 class array type float rank 1 shape 2 items 14 msb ieee data 23952 attribute "dep" string "positions" # object 241 class array type int rank 1 shape 2 items 7 msb ieee data 24064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 239 class field component "positions" value 240 component "connections" value 241 attribute "char width" number 0.688600 attribute "series position" number 112.000000 # object 243 class array type float rank 1 shape 2 items 27 msb ieee data 24120 attribute "dep" string "positions" # object 244 class array type int rank 1 shape 2 items 24 msb ieee data 24336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 242 class field component "positions" value 243 component "connections" value 244 attribute "char width" number 0.657300 attribute "series position" number 113.000000 # object 246 class array type float rank 1 shape 2 items 24 msb ieee data 24528 attribute "dep" string "positions" # object 247 class array type int rank 1 shape 2 items 24 msb ieee data 24720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 245 class field component "positions" value 246 component "connections" value 247 attribute "char width" number 0.594700 attribute "series position" number 114.000000 # object 249 class array type float rank 1 shape 2 items 12 msb ieee data 24912 attribute "dep" string "positions" # object 250 class array type int rank 1 shape 2 items 8 msb ieee data 25008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 248 class field component "positions" value 249 component "connections" value 250 attribute "char width" number 0.594700 attribute "series position" number 115.000000 # object 252 class array type float rank 1 shape 2 items 16 msb ieee data 25072 attribute "dep" string "positions" # object 253 class array type int rank 1 shape 2 items 12 msb ieee data 25200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 251 class field component "positions" value 252 component "connections" value 253 attribute "char width" number 0.563400 attribute "series position" number 116.000000 # object 255 class array type float rank 1 shape 2 items 39 msb ieee data 25296 attribute "dep" string "positions" # object 256 class array type int rank 1 shape 2 items 36 msb ieee data 25608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 254 class field component "positions" value 255 component "connections" value 256 attribute "char width" number 0.657300 attribute "series position" number 117.000000 # object 258 class array type float rank 1 shape 2 items 14 msb ieee data 25896 attribute "dep" string "positions" # object 259 class array type int rank 1 shape 2 items 7 msb ieee data 26008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 257 class field component "positions" value 258 component "connections" value 259 attribute "char width" number 0.626000 attribute "series position" number 118.000000 # object 261 class array type float rank 1 shape 2 items 16 msb ieee data 26064 attribute "dep" string "positions" # object 262 class array type int rank 1 shape 2 items 9 msb ieee data 26192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 260 class field component "positions" value 261 component "connections" value 262 attribute "char width" number 0.688600 attribute "series position" number 119.000000 # object 264 class array type float rank 1 shape 2 items 20 msb ieee data 26264 attribute "dep" string "positions" # object 265 class array type int rank 1 shape 2 items 14 msb ieee data 26424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 263 class field component "positions" value 264 component "connections" value 265 attribute "char width" number 0.688600 attribute "series position" number 120.000000 # object 267 class array type float rank 1 shape 2 items 20 msb ieee data 26536 attribute "dep" string "positions" # object 268 class array type int rank 1 shape 2 items 10 msb ieee data 26696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 266 class field component "positions" value 267 component "connections" value 268 attribute "char width" number 0.970300 attribute "series position" number 121.000000 # object 270 class array type float rank 1 shape 2 items 22 msb ieee data 26776 attribute "dep" string "positions" # object 271 class array type int rank 1 shape 2 items 12 msb ieee data 26952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 269 class field component "positions" value 270 component "connections" value 271 attribute "char width" number 0.970300 attribute "series position" number 122.000000 # object 273 class array type float rank 1 shape 2 items 35 msb ieee data 27048 attribute "dep" string "positions" # object 274 class array type int rank 1 shape 2 items 34 msb ieee data 27328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 272 class field component "positions" value 273 component "connections" value 274 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 276 class array type float rank 1 shape 2 items 2 msb ieee data 27600 attribute "dep" string "positions" # object 277 class array type int rank 1 shape 2 items 1 msb ieee data 27616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 275 class field component "positions" value 276 component "connections" value 277 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 279 class array type float rank 1 shape 2 items 35 msb ieee data 27624 attribute "dep" string "positions" # object 280 class array type int rank 1 shape 2 items 34 msb ieee data 27904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 278 class field component "positions" value 279 component "connections" value 280 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 282 class array type float rank 1 shape 2 items 20 msb ieee data 28176 attribute "dep" string "positions" # object 283 class array type int rank 1 shape 2 items 20 msb ieee data 28336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 281 class field component "positions" value 282 component "connections" value 283 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 285 class array type float rank 1 shape 2 items 12 msb ieee data 28496 attribute "dep" string "positions" # object 286 class array type int rank 1 shape 2 items 12 msb ieee data 28592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 284 class field component "positions" value 285 component "connections" value 286 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 83 member 61 position 61 value 86 member 62 position 62 value 89 member 63 position 63 value 92 member 64 position 64 value 95 member 65 position 65 value 98 member 66 position 66 value 101 member 67 position 67 value 104 member 68 position 68 value 107 member 69 position 69 value 110 member 70 position 70 value 113 member 71 position 71 value 116 member 72 position 72 value 119 member 73 position 73 value 122 member 74 position 74 value 125 member 75 position 75 value 128 member 76 position 76 value 131 member 77 position 77 value 134 member 78 position 78 value 137 member 79 position 79 value 140 member 80 position 80 value 143 member 81 position 81 value 146 member 82 position 82 value 149 member 83 position 83 value 152 member 84 position 84 value 155 member 85 position 85 value 158 member 86 position 86 value 161 member 87 position 87 value 164 member 88 position 88 value 167 member 89 position 89 value 170 member 90 position 90 value 173 member 91 position 91 value 176 member 92 position 92 value 179 member 93 position 93 value 182 member 94 position 94 value 185 member 95 position 95 value 188 member 96 position 96 value 191 member 97 position 97 value 194 member 98 position 98 value 197 member 99 position 99 value 200 member 100 position 100 value 203 member 101 position 101 value 206 member 102 position 102 value 209 member 103 position 103 value 212 member 104 position 104 value 215 member 105 position 105 value 218 member 106 position 106 value 221 member 107 position 107 value 224 member 108 position 108 value 227 member 109 position 109 value 230 member 110 position 110 value 233 member 111 position 111 value 236 member 112 position 112 value 239 member 113 position 113 value 242 member 114 position 114 value 245 member 115 position 115 value 248 member 116 position 116 value 251 member 117 position 117 value 254 member 118 position 118 value 257 member 119 position 119 value 260 member 120 position 120 value 263 member 121 position 121 value 266 member 122 position 122 value 269 member 123 position 123 value 272 member 124 position 124 value 275 member 125 position 125 value 278 member 126 position 126 value 281 member 127 position 127 value 284 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.994699 attribute "font descent" number -0.100801 # end ½Å8è>0{½Å8è?6‡½…²=òF¿½…²>9=–½…²>¬¿½…²?sq½…²?6‡½…²?F¨½ õ>0{½ õ?6‡ ½Å8è»â!ï½Å8è>0{½Å8è?sq½…²<Çà_½…²=òF¿½…²>9=–½…²>üàT½…²?v¸½ õ=²,…½ õ>0{½ õ?sq  ¾‘uŽ>yW;o½ÎpÁ¾o>ÜÓ9½…²½ÎpÁ½ õ?F¨>Ìk>yWÍ>Ìk?F¨>=Ù†>ÜÓ9¾‘uŽ>YJ²¾‘uŽ>yW;‘uŽ?}F¾‘uŽ?.ƒÓ¾o>YJ²¾o>Œ²t¾o?v¸¾bÐß>0{¾bÐß>yW;bÐß?sq¾bÐß?v¸¾bÐß?>Ša¾"¶®>üàT¾"¶®?sq¾©“»â!ᄅ“=òF¿¾©“?F¨¾©“?fšÃ»H»â!ï»H=òF¿»H?F¨»H?fšÃ<ì¿Ì>ÜÓ9<ì¿Ì>ìÙÇ=»da>0{=»da>ÌÌ«=»da>ÜÓ9=»da?&€=»da?>Ša=û~ž>ÌÌ«=û~ž?}F=û~ž?.ƒÓ>Ìk>YJ²>Ìk>¬¿>Ìk?&€>Ìk?.ƒÓ""##  ! !! ¾±‚ª=òF¿¾±‚ª?}F¾±‚ª?.ƒÓ¾¡|?>Ša¾‘uŽ?v¸¾o?F¨¾bÐß?v¸¾BÃÊ?F¨¾"¶®?yÿ¾©“?&€¾©“?6‡¾©“?>Ša½ õ?6‡»H>9=–»H>yWÍ<ì¿Ì>œ¹=v”T=òF¿=v”T?6‡=»da>¬¿=û~ž=òF¿>Ìk>¬¿>Ìk?>Ša>=Ù†>0{>]æ›>YJ²>]æ›>Œ²t>]æ›?F¨   ¾±‚ª>YJ²¾±‚ª>œ¹¾¡|>0{¾¡|>YJ²¾¡|>œ¹¾¡|>¼Æ¾‘uŽ>0{¾‘uŽ>¼Æ¾bÐß=òF¿¾bÐß>ÜÓ9¾bÐß?}F¾bÐß?.ƒÓ¾BÃÊ?sq¾BÃÊ?v¸¾BÃÊ?>Ša¾©“=òF¿¾©“>ÜÓ9¾©“>üàT¾©“?F¨½…²>0{½…²?v¸½…²?>Ša½ õ?}F½ õ?.ƒÓ»H>YJ²<ì¿Ì>YJ²=v”T>YJ²=v”T>œ¹=»da>0{=û~ž>0{=û~ž>ìÙÇ>Ìk?sq>=Ù†=òF¿>=Ù†>üàT>=Ù†?v¸>]æ›=òF¿>]æ›>ìÙÇ>]æ›?sq>]æ›?v¸>}ó½>0{>}ó½>9=–>}ó½>üàT>}ó½?sq%!!$$))**&&""  ##''(  ½Å8è?yÿ½Å8è?>Ša½…²?}F½…²?6‡½…²?F¨½ õ?.ƒÓ½ õ?>Ša¾"¶®>¬¿¾"¶®>ìÙǾ©“>9=–¾©“>¬¿¾©“>ìÙǾ©“?}F½Å8è>9=–½Å8è?}F½…²=d$½…²=²,…½…²?6‡½…²?>Ša»H½x¬»H?V”6=v”T½ÎpÁ=v”T?fšÃ    ¾BÃʽÎpÁ¾BÃÊ?fšÃ¾©“½x¬¾©“?V”6½…²=d$½…²=²,…½…²?6‡½…²?>Ša½ õ>9=–½ õ?}F»H>9=–»H>¬¿»H>ìÙÇ»H?}F<ì¿Ì>¬¿<ì¿Ì>ìÙÇ   ¾bÐß>üàT¾bÐß?.ƒÓ½…²>ÌÌ«½…²?F¨=»da>üàT=»da?.ƒÓ¾±‚ª>ÌÌ«½…²=òF¿½…²?.ƒÓ>]æ›>ÌÌ«½Å8è»â!ï½Å8è>0{½…²<Çà_½…²=òF¿½…²>9=–½ õ=²,…½ õ>0{¾±‚ª>ÌÌ«>]æ›>ÌÌ«½Å8è>0{½…²=òF¿½…²>9=–½ õ>0{¾±‚ª½ÎpÁ>]æ›?fšÃ¾‘uŽ>ÌÌ«¾‘uŽ>üàT¾o>yW;o>ÌÌ«¾o>üàT¾o?&€¾bÐß>yW;bÐß?&€¾BÃÊ>0{¾BÃÊ>9=–¾BÃÊ?6‡¾BÃÊ?>Ša¾"¶®>0{¾"¶®?>Ša½Å8è=òF¿½Å8è?F¨½ õ=òF¿½ õ?F¨<ì¿Ì>0{<ì¿Ì?>Ša=v”T>0{=v”T>9=–=v”T?6‡=v”T?>Ša=»da>yWÍ=»da?&€=û~ž>yWÍ=û~ž>ÌÌ«=û~ž>üàT=û~ž?&€>Ìk>ÌÌ«>Ìk>üàT   ¾BÃÊ=òF¿¾BÃÊ?&€¾©“?.ƒÓ½…²=òF¿½…²?>Ša½ õ=òF¿½ õ?F¨=»da=òF¿¾‘uŽ=òF¿¾‘uŽ>9=–¾‘uŽ>YJ²¾‘uŽ?}F¾‘uŽ?&€¾o>YJ²¾o>œ¹¾o?yÿ¾o?&€¾o?6‡¾bÐß?}F¾bÐß?>Ša¾BÃÊ>YJ²¾BÃÊ>¼Æ¾©“>ÌÌ«¾©“?F¨½ õ=òF¿½ õ>0{»H>ìÙÇ»H?F¨<ì¿Ì>ìÙÇ=v”T>0{=v”T?>Ša=»da=òF¿=»da?sq=»da?6‡=»da?>Ša=û~ž>0{=û~ž>9=–=û~ž?sq=û~ž?yÿ=û~ž?&€=û~ž?6‡>Ìk>YJ²>Ìk>Œ²t>Ìk?yÿ>Ìk?&€   $$##  ! !!"¾‘uŽ>yW;‘uŽ>Œ²t¾‘uŽ?}F¾‘uŽ?&€¾o>9=–¾o>yW;o>œ¹¾o?yÿ¾o?&€¾o?6‡¾bÐß>0{¾bÐß>Œ²t¾bÐß?}F¾bÐß?>Ša¾©“=òF¿¾©“?F¨½Å8è>üàT»H=òF¿»H>üàT»H?F¨=v”T>0{=v”T>ìÙÇ=v”T?sq=v”T?>Ša=»da>0{=»da>9=–=»da>ÜÓ9=»da?sq=»da?yÿ=»da?.ƒÓ=»da?>Ša=û~ž>9=–=û~ž>yWÍ=û~ž>¬¿=û~ž>ÌÌ«=û~ž?yÿ=û~ž?.ƒÓ>Ìk>yWÍ>Ìk>¬¿  $$##""&&%%  !! ¾¡|>œ¹½Å8è=òF¿»H=òF¿»H?6‡<ì¿Ì=òF¿<ì¿Ì?F¨=û~ž=òF¿>=Ù†>œ¹¾‘uŽ>yW;‘uŽ>Œ²t¾‘uŽ>ìÙǾo>9=–¾o>yW;o>œ¹¾bÐß>0{¾bÐß>Œ²t¾bÐß?sq¾bÐß?>Ša¾bÐß?F¨¾©“=òF¿¾©“?v¸½…²?>Ša½ õ=òF¿½ õ?v¸<ì¿Ì>0{<ì¿Ì?sq=v”T>0{=v”T?sq=»da>YJ²=»da>ìÙÇ=»da?F¨=û~ž>YJ²=û~ž>œ¹=û~ž>¼Æ=û~ž>ìÙÇ>Ìk>œ¹>Ìk>¼Æ     ¾‘uŽ>œ¹¾‘uŽ>üàT¾o>YJ²¾o>œ¹¾o>¬¿¾o>üàT¾o?}F¾bÐß>YJ²¾bÐß>ÜÓ9¾bÐß?}F¾bÐß?.ƒÓ¾BÃÊ>0{¾BÃÊ?.ƒÓ¾"¶®>0{¾"¶®>üàT¾"¶®?>Ša¾©“?>Ša½Å8è=òF¿½…²?sq½…²?F¨½ õ=òF¿½ õ?sq<ì¿Ì>0{<ì¿Ì>üàT<ì¿Ì?F¨=v”T>0{=v”T>üàT=v”T?&€=»da>YJ²=»da>ÜÓ9=»da?}F=»da?.ƒÓ=»da?>Ša=û~ž>YJ²=û~ž>œ¹=û~ž>¬¿=û~ž>ÜÓ9=û~ž?&€=û~ž?.ƒÓ>Ìk>œ¹>Ìk>¬¿%%&&   !!''(($$  ""##¾‘uŽ?yÿ¾‘uŽ?&€¾‘uŽ?F¨¾o?6‡¾BÃÊ?>Ša¾BÃÊ?F¨¾©“?>Ša¾©“?F¨½Å8è=òF¿½Å8è>Œ²t½…²=òF¿½…²>Œ²t½…²>¼Æ½ õ>¼Æ½ õ>ÜÓ9»H>ÜÓ9<ì¿Ì?.ƒÓ=»da?.ƒÓ=û~ž?yÿ=û~ž?6‡>Ìk?.ƒÓ>Ìk?F¨  ¾‘uŽ>yW;‘uŽ>¼Æ¾o>9=–¾o>yW;o>¼Æ¾o>ÜÓ9¾o?yÿ¾o?.ƒÓ¾bÐß>0{¾bÐß>9=–¾bÐß>ÜÓ9¾bÐß>ìÙǾbÐß?sq¾bÐß?yÿ¾bÐß?.ƒÓ¾bÐß?>Ša¾BÃÊ>0{¾BÃÊ>ìÙǾBÃÊ?sq¾BÃÊ?>Ša¾©“=òF¿¾©“>üàT¾©“?F¨»H=òF¿»H>üàT»H?F¨=v”T>0{=v”T>ìÙÇ=v”T?sq=v”T?>Ša=»da>0{=»da>9=–=»da>ÜÓ9=»da>ìÙÇ=»da?sq=»da?yÿ=»da?.ƒÓ=»da?>Ša=û~ž>9=–=û~ž>yWÍ=û~ž>¼Æ=û~ž>ÜÓ9=û~ž?yÿ=û~ž?.ƒÓ>Ìk>yWÍ>Ìk>¼Æ ""**++%% ##$$ &&,,--))!!  ''(( ¾‘uŽ?v¸¾‘uŽ?yÿ¾o>YJ²¾o>yW;o>ìÙǾo?v¸¾o?yÿ¾o?.ƒÓ¾bÐß>0{¾bÐß>YJ²¾bÐß>Œ²t¾bÐß>ìÙǾbÐß?.ƒÓ¾BÃÊ>yW;BÃÊ>ÌÌ«¾BÃÊ?>Ša¾"¶®=òF¿¾"¶®>ÌÌ«¾"¶®?>Ša½Å8è>¼Æ½Å8è?F¨½…²=òF¿½…²>¼Æ½ õ?F¨»H>0{<ì¿Ì>0{<ì¿Ì>ÌÌ«<ì¿Ì?>Ša=v”T>YJ²=v”T?>Ša=»da>YJ²=»da>Œ²t=»da>ìÙÇ=»da?.ƒÓ=û~ž>Œ²t=û~ž>ÌÌ«=û~ž?v¸=û~ž?yÿ=û~ž?.ƒÓ>Ìk>ÌÌ«>Ìk?yÿ$ &&((''""   !!%%##½Å8è>0{½Å8è?sq½…²=òF¿½…²>9=–½…²>üàT½…²?v¸½ õ>0{½ õ?sq½Å8è»â!ï½Å8è>0{½Å8è?sq½…²<Çà_½…²=òF¿½…²>9=–½…²>üàT½…²?v¸½ õ=²,…½ õ>0{½ õ?sq¾¡|>ÌÌ«>=Ù†=òF¿>=Ù†?.ƒÓ¾±‚ª>œ¹¾±‚ª>üàT>]æ›>œ¹>]æ›>üàT¾¡|=òF¿¾¡|?.ƒÓ>=Ù†>ÌÌ«¾o?}F¾o?&€¾bÐß?yÿ¾bÐß?&€¾bÐß?6‡¾BÃÊ?}F¾BÃÊ?>Ša¾©“?F¨½Å8è>0{½…²=òF¿½…²>9=–½…²>¬¿½…²>ÜÓ9½ õ>0{½ õ?F¨»H>ìÙÇ<ì¿Ì?>Ša=v”T>üàT=v”T?sq=v”T?6‡=v”T?>Ša=»da?sq=»da?yÿ=»da?&€=»da?6‡=û~ž?yÿ=û~ž?&€   ¾Á‰7>ÌÌ«¾Á‰7>üàT¾±‚ª>œ¹¾±‚ª?yÿ¾¡|>yW;¡|?&€¾o>9=–¾o?6‡¾bÐß>¼Æ¾bÐß>ìÙǾBÃÊ>0{¾BÃÊ>œ¹¾BÃÊ>¼Æ¾BÃÊ>ìÙǾBÃÊ?v¸¾BÃÊ?>Ša¾"¶®>œ¹¾"¶®?v¸¾"¶®?yÿ¾©“>Œ²t½Å8è=òF¿½Å8è?}F½Å8è?F¨½ õ>Œ²t»H=òF¿»H?}F»H?F¨<ì¿Ì>œ¹=v”T>œ¹=v”T>¼Æ=v”T?yÿ=»da>0{=»da>œ¹=»da>¼Æ=»da?sq=»da?}F=»da?>Ša=û~ž>Œ²t=û~ž?}F>Ìk>9=–>Ìk?6‡>=Ù†>YJ²>=Ù†>Œ²t>]æ›?&€>}ó½>¬¿>}ó½?yÿ>l>ÜÓ9>l>üàT"   #%%**,,..//--++(($$ '')&!! %¾±‚ª=òF¿¾‘uŽ=òF¿¾bÐß>œ¹¾"¶®=òF¿½…²?.ƒÓ½…²?F¨<ì¿Ì=òF¿=v”T>œ¹=û~ž=òF¿>Ìk=òF¿>]æ›=òF¿  ¾±‚ª=òF¿¾±‚ª?F¨¾o=òF¿¾o?F¨¾bÐß=òF¿¾bÐß>ìÙǾbÐß?F¨<ì¿Ì=òF¿<ì¿Ì>ìÙÇ=»da>0{=»da>ÜÓ9=û~ž>0{=û~ž>9=–=û~ž>ÌÌ«=û~ž>ÜÓ9=û~ž?F¨>Ìk>9=–>Ìk>yWÍ>Ìk>¬¿>Ìk>ÌÌ«>Ìk?yÿ>Ìk?F¨>=Ù†>yWÍ>=Ù†>¬¿   ¾±‚ª=òF¿¾±‚ª?F¨¾o=òF¿¾o?F¨¾bÐß=òF¿¾bÐß>ìÙǾbÐß?F¨<ì¿Ì=òF¿<ì¿Ì>ìÙÇ<ì¿Ì?F¨=»da>0{=»da>ÜÓ9=»da>üàT=»da?>Ša=û~ž>0{=û~ž>9=–=û~ž>ÌÌ«=û~ž>ÜÓ9=û~ž>üàT=û~ž?sq=û~ž?6‡=û~ž?>Ša>Ìk>9=–>Ìk>yWÍ>Ìk>¬¿>Ìk>ÌÌ«>Ìk?sq>Ìk?yÿ>Ìk?&€>Ìk?6‡>=Ù†>yWÍ>=Ù†>¬¿>=Ù†?yÿ>=Ù†?&€ !!     ¾‘uŽ=òF¿¾‘uŽ?F¨¾BÃÊ=òF¿¾BÃÊ?F¨¾"¶®=òF¿¾"¶®?F¨½…²=òF¿>Ìk?F¨>=Ù†?yÿ>=Ù†?F¨ ¾ÑŽÎpÁ¾ÑÅ=òF¿¾Á‰7=òF¿¾¡|=òF¿¾‘uŽ>0{¾‘uŽ?F¨¾o>YJ²¾bÐß>¬¿¾BÃÊ?yÿ¾BÃÊ?F¨=û~ž=òF¿=û~ž?F¨>Ìk=òF¿>Ìk?F¨>]æ›=òF¿>}ó½½ÎpÁ>}ó½=òF¿>}ó½?F¨  ¾±‚ª=òF¿¾±‚ª?F¨¾o=òF¿¾o?F¨¾bÐß=òF¿¾bÐß>ìÙǾbÐß?F¨½ õ>¬¿½ õ>ìÙǽ õ?yÿ=û~ž=òF¿=û~ž?F¨>Ìk=òF¿>Ìk>œ¹>Ìk?yÿ>Ìk?F¨   ¾ñœà>YJ²¾á–S>0{¾á–S?6‡¾á–S?>Ša¾ÑÅ=òF¿¾ÑÅ?.ƒÓ¾ÑÅ?>Ša¾ÑÅ?F¨¾Á‰7=òF¿¾Á‰7?6‡¾Á‰7?F¨¾±‚ª=òF¿¾±‚ª>0{¾±‚ª?>Ša¾¡|>0{¾¡|>YJ²¾¡|?.ƒÓ¾‘uŽ>YJ²¾‘uŽ>¼Æ¾‘uŽ?v¸¾o>¼Æ¾o>ÜÓ9¾o>üàT¾bÐß>ÜÓ9¾BÃÊ>ìÙǾ"¶®=òF¿¾"¶®?F¨½…²=òF¿½…²?F¨½ õ=òF¿½ õ?F¨=v”T=òF¿=v”T?F¨=»da>ìÙÇ=û~ž>ÜÓ9>Ìk>¼Æ>Ìk>ÜÓ9>Ìk>üàT>=Ù†>YJ²>=Ù†>¼Æ>=Ù†?v¸>]æ›>0{>]æ›>YJ²>]æ›?.ƒÓ>}ó½=òF¿>}ó½>0{>}ó½?>Ša>l=òF¿>l?6‡>l?F¨>Ÿ÷=òF¿>Ÿ÷?.ƒÓ>Ÿ÷?>Ša>Ÿ÷?F¨>¯ ˆ>0{>¯ ˆ?6‡>¯ ˆ?>Ša>¿>YJ²   !!%%((++..1155887733004  !$$''**--/!""##&&)),,22669¾‘uŽ>yW;‘uŽ>Œ²t¾‘uŽ?yÿ¾‘uŽ?F¨¾o>9=–¾o>yW;o>œ¹¾o?.ƒÓ¾bÐß>0{¾bÐß>Œ²t¾BÃÊ?>Ša¾"¶®=òF¿¾©“?F¨½Å8è>üàT»H=òF¿»H>üàT»H?F¨=v”T>0{=v”T>ìÙÇ=v”T?sq=v”T?>Ša=»da>0{=»da>9=–=»da>ÜÓ9=»da?sq=»da?yÿ=»da?.ƒÓ=»da?>Ša=û~ž>9=–=û~ž>yWÍ=û~ž>¬¿=û~ž>ÌÌ«=û~ž?yÿ=û~ž?.ƒÓ>Ìk>yWÍ>Ìk>¬¿ !!  ##""  ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o>9=–¾o?F¨¾"¶®=òF¿¾"¶®?F¨<ì¿Ì=òF¿<ì¿Ì?F¨=û~ž=òF¿=û~ž?6‡=û~ž?F¨>Ìk=òF¿>Ìk?F¨>}ó½=òF¿>}ó½?F¨    ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o>9=–¾o?F¨¾bÐß?v¡Q¾bÐß?~¤˜¾BÃÊ?fšÃ¾BÃÊ?v¡Q¾BÃÊ?~¤˜¾"¶®=òF¿¾"¶®?F¨¾©“?^—}»H?^—}<ì¿Ì=òF¿<ì¿Ì?F¨=v”T?fšÃ=»da?v¡Q=û~ž=òF¿=û~ž?6‡=û~ž?F¨>Ìk=òF¿>Ìk?F¨>}ó½=òF¿>}ó½?F¨    ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o>ìÙǾo?F¨¾"¶®=òF¿¾"¶®?F¨½ õ>ìÙÇ»H>ÜÓ9<ì¿Ì>¼Æ<ì¿Ì>ÜÓ9<ì¿Ì>üàT=v”T>YJ²=v”T>¼Æ=v”T?v¸=»da>0{=»da>YJ²=»da?.ƒÓ=û~ž=òF¿=û~ž>0{=û~ž?>Ša>Ìk=òF¿>Ìk?6‡>Ìk?F¨>=Ù†=òF¿>=Ù†?.ƒÓ>=Ù†?>Ša>=Ù†?F¨>]æ›>0{>]æ›?6‡>]æ›?>Ša>}ó½>YJ²    !¾ÑÅ>0{¾ÑÅ>9=–¾Á‰7=òF¿¾Á‰7>0{¾Á‰7>YJ²¾±‚ª=òF¿¾±‚ª>9=–¾¡|>0{¾¡|?F¨¾‘uŽ>YJ²¾o>¬¿¾bÐß?yÿ¾bÐß?F¨<ì¿Ì=òF¿=û~ž=òF¿=û~ž?F¨>Ìk=òF¿>Ìk?F¨>}ó½=òF¿>}ó½?F¨  ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o?F¨¾BÃÊ=òF¿½…²=òF¿½…²>YJ²=v”T=òF¿>Ìk=òF¿>Ìk?F¨>=Ù†=òF¿>=Ù†?F¨>l=òF¿>l?F¨    ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o>ìÙǾo?F¨¾"¶®=òF¿¾"¶®?F¨<ì¿Ì=òF¿<ì¿Ì?F¨=û~ž=òF¿=û~ž>ìÙÇ=û~ž?F¨>Ìk=òF¿>Ìk?F¨>}ó½=òF¿>}ó½?F¨    ¾¡|>ÌÌ«¾¡|>üàT¾‘uŽ>Œ²t¾‘uŽ>ÌÌ«¾‘uŽ>üàT¾‘uŽ?}F¾o>YJ²¾o>Œ²t¾o?}F¾o?.ƒÓ¾bÐß>YJ²¾bÐß?.ƒÓ¾BÃÊ>0{¾BÃÊ?>Ša¾"¶®>0{¾"¶®?>Ša½Å8è=òF¿½Å8è?F¨½ õ=òF¿½ õ?F¨<ì¿Ì>0{<ì¿Ì?>Ša=v”T>0{=v”T?>Ša=»da>YJ²=»da?.ƒÓ=û~ž>YJ²=û~ž>Œ²t=û~ž?}F=û~ž?.ƒÓ>Ìk>Œ²t>Ìk>ÌÌ«>Ìk>üàT>Ìk?}F>=Ù†>ÌÌ«>=Ù†>üàT  ""##!!   ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o?F¨¾"¶®=òF¿<ì¿Ì=òF¿=û~ž=òF¿=û~ž?F¨>Ìk=òF¿>Ìk?F¨>}ó½=òF¿>}ó½?F¨    ¾±‚ª=òF¿¾±‚ª?F¨¾o=òF¿¾o?F¨¾bÐß=òF¿¾bÐß>ÜÓ9¾bÐß?F¨¾©“=òF¿<ì¿Ì>ÜÓ9<ì¿Ì?F¨=»da>ìÙÇ=»da?>Ša=û~ž>ìÙÇ=û~ž>üàT=û~ž?6‡=û~ž?>Ša>Ìk>üàT>Ìk?v¸>Ìk?&€>Ìk?6‡>=Ù†?v¸>=Ù†?&€    ¾¡|>¼Æ¾¡|?sq¾‘uŽ>Œ²t¾‘uŽ>¼Æ¾‘uŽ?sq¾‘uŽ?}F¾o>YJ²¾o>Œ²t¾o?}F¾o?.ƒÓ¾bÐß>YJ²¾bÐß?.ƒÓ¾BÃÊ>0{¾BÃÊ?>Ša¾"¶®>0{¾"¶®?>Ša½Å8è=òF¿½Å8è?F¨½ õ=òF¿½ õ?F¨=v”T>0{=v”T?>Ša=û~ž>YJ²=û~ž?.ƒÓ>Ìk>Œ²t>Ìk?yÿ>Ìk?F¨    ¾‘uŽ?yÿ¾‘uŽ?F¨¾o?F¨¾"¶®=òF¿½…²=òF¿½…²?F¨½ õ=òF¿½ õ?F¨=v”T=òF¿>Ìk?F¨>=Ù†?yÿ>=Ù†?F¨ ¾±‚ª?F¨¾‘uŽ?F¨¾o>0{¾o>9=–¾o?F¨¾bÐß=òF¿¾bÐß>0{¾bÐß>YJ²¾BÃÊ=òF¿¾BÃÊ>9=–¾"¶®?F¨¾©“>0{½Å8è>9=–½…²>Œ²t½ õ>Œ²t=v”T?F¨>=Ù†?F¨>}ó½?F¨    ¾±‚ª>ÌÌ«¾±‚ª>üàT¾¡|>œ¹¾¡|>ÌÌ«¾¡|>üàT¾¡|?yÿ¾‘uŽ>œ¹¾‘uŽ?yÿ¾o>yW;o?&€¾bÐß>yW;bÐß?&€¾"¶®=òF¿¾"¶®?F¨¾©“>YJ²¾©“?.ƒÓ½…²=òF¿½…²?F¨½ õ=òF¿½ õ?F¨<ì¿Ì>YJ²<ì¿Ì?.ƒÓ=v”T=òF¿=v”T?F¨=û~ž>yWÍ=û~ž?&€>Ìk>yWÍ>Ìk?&€>=Ù†>œ¹>=Ù†?yÿ>]æ›>œ¹>]æ›>ÌÌ«>]æ›>üàT>]æ›?yÿ>}ó½>ÌÌ«>}ó½>üàT  ""##!!    ¾±‚ª=òF¿¾±‚ª?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o?F¨¾"¶®=òF¿¾"¶®?F¨<ì¿Ì=òF¿<ì¿Ì?F¨=û~ž=òF¿>Ìk=òF¿>Ìk?F¨>]æ›=òF¿>]æ›?F¨    ¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ=òF¿¾‘uŽ?F¨¾o=òF¿¾o?F¨¾"¶®?F¨<ì¿Ì?F¨=û~ž=òF¿=û~ž?F¨>Ìk=òF¿>Ìk?F¨>]æ›=òF¿>}ó½½ÎpÁ>}ó½=òF¿>}ó½?F¨    ¾Á‰7?F¨¾‘uŽ>ÜÓ9¾‘uŽ?F¨¾o>¼Æ¾o>ÜÓ9¾o?F¨¾bÐß>¼Æ¾"¶®>¬¿¾"¶®?F¨½…²>¬¿»H=òF¿»H?F¨<ì¿Ì>¼Æ=»da=òF¿=»da>ÜÓ9=»da?F¨=û~ž=òF¿=û~ž?F¨>]æ›=òF¿>]æ›?F¨    ¿Ñµ=òF¿¿Ñµ?F¨¾ÑÅ=òF¿¾ÑÅ?F¨¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ?F¨¾"¶®?F¨½…²=òF¿½…²?F¨½ õ=òF¿½ õ?F¨=v”T?F¨>=Ù†?F¨>l=òF¿>l?F¨>Ÿ÷=òF¿>Ÿ÷?F¨>Ï£=òF¿>Ï£?F¨   ¿Ñµ=òF¿¿Ñµ?F¨¾ÑÅ=òF¿¾ÑÅ?F¨¾Á‰7=òF¿¾Á‰7?F¨¾‘uŽ?F¨¾"¶®?F¨½…²=òF¿½…²?F¨½ õ=òF¿½ õ?F¨=v”T?F¨>=Ù†?F¨>l=òF¿>l?F¨>Ÿ÷=òF¿>Ÿ÷?F¨>¿=òF¿>Ï£½ÎpÁ>Ï£=òF¿>Ï£?F¨   ¾"¶®½ÎpÁ¾"¶®?fšÃ¾©“½ÎpÁ¾©“?fšÃ=v”T½ÎpÁ=v”T?fšÃ¾‘uŽ?F¨>Ìk<Çà_¾BÃʽÎpÁ¾BÃÊ?fšÃ»H½ÎpÁ»H?fšÃ<ì¿Ì½ÎpÁ<ì¿Ì?fšÃ¾bÐß>üàT¾©“?yÿ½…²=òF¿½…²?&€½…²?.ƒÓ»H?yÿ=»da>üàT¾¡|=d$>=Ù†=d$½Å8è?}F½Å8è?.ƒÓ½…²?yÿ½…²?&€½…²?>Ša½ õ?}F½ õ?F¨¾o>YJ²¾o>Œ²t¾bÐß>0{¾bÐß>YJ²¾bÐß>Œ²t¾bÐß>¬¿¾bÐß>ìÙǾbÐß>üàT¾BÃÊ>0{¾BÃÊ>¬¿¾BÃÊ>ìÙǾBÃÊ>üàT¾BÃÊ?sq¾©“=òF¿¾©“>¼Æ¾©“?v¸½ õ=òF¿»H?v¸<ì¿Ì>0{=v”T>ÌÌ«=v”T?sq=»da>YJ²=»da>ÜÓ9=»da>üàT=û~ž>0{=û~ž>YJ²=û~ž>ÜÓ9>Ìk>0{>=Ù†=òF¿>]æ›=òF¿     ¾‘uŽ>œ¹¾‘uŽ>¼Æ¾‘uŽ>ÜÓ9¾o>YJ²¾o>œ¹¾o>¼Æ¾o>ìÙǾo?sq¾bÐß>YJ²¾bÐß>ìÙǾBÃÊ>0{¾BÃÊ?sq¾BÃÊ?yÿ¾BÃÊ?}F¾"¶®>0{¾"¶®?sq½Å8è=òF¿½Å8è?v¸½Å8è?&€½Å8è?.ƒÓ½ õ=òF¿½ õ?v¸<ì¿Ì>0{<ì¿Ì?sq<ì¿Ì?.ƒÓ=v”T>0{=v”T?sq=»da>YJ²=»da>ìÙÇ=»da?6‡=»da?>Ša=û~ž>YJ²=û~ž>œ¹=û~ž>¼Æ=û~ž>ìÙÇ=û~ž?F¨>Ìk>œ¹>Ìk>¼Æ#  $$%%"" #   !!¾¡|=òF¿¾¡|?v¸¾bÐß=òF¿¾bÐß?v¸¾BÃÊ=òF¿¾BÃÊ>¬¿¾BÃÊ?v¸<ì¿Ì=òF¿<ì¿Ì>¬¿<ì¿Ì?v¸=»da>0{=»da>œ¹=»da>¼Æ=»da?sq=û~ž>0{=û~ž>YJ²=û~ž>yWÍ=û~ž>œ¹=û~ž>¼Æ=û~ž>ÜÓ9=û~ž>ìÙÇ=û~ž?sq>Ìk>YJ²>Ìk>yWÍ>Ìk>ÜÓ9>Ìk>ìÙÇ     ¾¡|=òF¿¾¡|?v¸¾bÐß=òF¿¾bÐß?v¸¾BÃÊ=òF¿¾BÃÊ?v¸½Å8è=òF¿=»da?v¸=û~ž>ÌÌ«=û~ž?v¸ ¾Á‰7½x¬¾Á‰7=òF¿¾±‚ª=òF¿¾‘uŽ=òF¿¾‘uŽ?v¸¾o>0{¾bÐß>yW;BÃÊ>ÜÓ9¾BÃÊ?v¸=»da=òF¿=»da?v¸=û~ž=òF¿=û~ž?v¸>=Ù†=òF¿>]曽x¬>]æ›=òF¿>]æ›?v¸  ¾‘uŽ>œ¹¾‘uŽ>¼Æ¾o>YJ²¾o>œ¹¾o>¼Æ¾o>ìÙǾbÐß>YJ²¾bÐß>ìÙǾBÃÊ>0{¾BÃÊ?sq¾"¶®>0{¾"¶®?sq½Å8è=òF¿½Å8è?v¸½ õ=òF¿»H?v¸=v”T>0{=v”T?sq=»da>¼Æ=»da>ìÙÇ=»da>üàT=û~ž>YJ²=û~ž>¼Æ=û~ž>ÜÓ9    ¾ÑÅ>YJ²¾Á‰7>0{¾Á‰7?sq¾±‚ª=òF¿¾±‚ª>üàT¾±‚ª?v¸¾¡|=òF¿¾¡|?sq¾¡|?v¸¾‘uŽ=òF¿¾‘uŽ>0{¾‘uŽ?sq¾o>0{¾bÐß>Œ²t¾bÐß>ÌÌ«¾BÃÊ>Œ²t¾BÃÊ>œ¹¾BÃÊ>¼Æ¾"¶®=òF¿¾"¶®?v¸¾©“>¬¿½…²=òF¿½…²?v¸½ õ=òF¿½ õ?v¸<ì¿Ì>¬¿=v”T=òF¿=v”T?v¸=»da>Œ²t=»da>œ¹=»da>¼Æ=û~ž>Œ²t=û~ž>ÌÌ«>Ìk>0{>=Ù†=òF¿>=Ù†>0{>=Ù†?sq>]æ›=òF¿>]æ›?sq>]æ›?v¸>}ó½=òF¿>}ó½>üàT>}ó½?v¸>l>0{>l?sq>Ÿ÷>YJ²  $$''**,,))&  ##%!!""((++-¾o>YJ²¾o>yW;o>ÜÓ9¾o?v¸¾bÐß>0{¾bÐß>YJ²¾bÐß>Œ²t¾bÐß>üàT¾BÃÊ>yW;BÃÊ?sq¾©“=òF¿¾©“?v¸½Å8è>¬¿»H=òF¿»H>¬¿»H?v¸=v”T>0{=v”T>œ¹=v”T>¼Æ=v”T?sq=»da>0{=»da>YJ²=»da>yWÍ=»da>œ¹=»da>¼Æ=»da>ÜÓ9=»da>ìÙÇ=»da?sq=û~ž>YJ²=û~ž>yWÍ=û~ž>ÜÓ9=û~ž>ìÙÇ    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß=òF¿¾bÐß>0{¾bÐß?v¸¾©“=òF¿¾©“?v¸»H=òF¿»H?v¸=»da=òF¿=»da?sq=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß=òF¿¾bÐß>0{¾bÐß?v¸¾BÃÊ?>Ša¾BÃÊ?F¨¾"¶®?.ƒÓ¾"¶®?>Ša¾"¶®?F¨¾©“=òF¿¾©“?v¸½Å8è?&€½ õ?&€»H=òF¿»H?v¸<ì¿Ì?.ƒÓ=v”T?>Ša=»da=òF¿=»da?sq=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾¡|=òF¿¾¡|?v¸¾bÐß=òF¿¾bÐß?v¸¾BÃÊ=òF¿¾BÃÊ>¬¿¾BÃÊ?v¸¾©“>¬¿½Å8è=òF¿½Å8è?v¸½…²>œ¹½ õ>Œ²t½ õ>œ¹½ õ>¼Æ»H>Œ²t»H>ÌÌ«<ì¿Ì>0{=v”T=òF¿=v”T>0{=v”T?sq=»da=òF¿=»da?sq=»da?v¸=û~ž=òF¿=û~ž>üàT=û~ž?v¸>Ìk>0{>Ìk?sq>=Ù†>YJ²    ¾±‚ª>0{¾¡|=òF¿¾¡|>9=–¾‘uŽ=òF¿¾‘uŽ>0{¾‘uŽ?v¸¾o>0{¾bÐß>yW;BÃÊ>ÜÓ9¾BÃÊ?v¸»H=òF¿=»da=òF¿=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß?v¸¾"¶®=òF¿½…²=òF¿½…²>9=–<ì¿Ì=òF¿=û~ž=òF¿=û~ž?v¸>Ìk=òF¿>Ìk?v¸>}ó½=òF¿>}ó½?v¸    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß=òF¿¾bÐß>¬¿¾bÐß?v¸¾©“=òF¿¾©“?v¸»H=òF¿»H?v¸=»da=òF¿=»da>¬¿=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾‘uŽ>œ¹¾‘uŽ>¼Æ¾o>YJ²¾o>œ¹¾o>¼Æ¾o>ìÙǾbÐß>YJ²¾bÐß>ìÙǾBÃÊ>0{¾BÃÊ?sq¾"¶®>0{¾"¶®?sq½Å8è=òF¿½Å8è?v¸½ õ=òF¿½ õ?v¸<ì¿Ì>0{<ì¿Ì?sq=v”T>0{=v”T?sq=»da>YJ²=»da>ìÙÇ=û~ž>YJ²=û~ž>œ¹=û~ž>¼Æ=û~ž>ìÙÇ>Ìk>œ¹>Ìk>¼Æ    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß=òF¿¾bÐß?v¸¾©“=òF¿»H=òF¿=»da=òF¿=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾±‚ª½ÎpÁ¾±‚ª?v¸¾o½ÎpÁ¾o?v¸¾bÐß½ÎpÁ¾bÐß>YJ²¾bÐß>ìÙǾbÐß?v¸¾"¶®>0{¾"¶®?sq¾©“½ÎpÁ½Å8è=òF¿½Å8è?v¸½ õ=òF¿½ õ?v¸<ì¿Ì>0{<ì¿Ì?sq=v”T>0{=v”T?sq=»da>YJ²=»da>ìÙÇ=û~ž>YJ²=û~ž>œ¹=û~ž>¼Æ=û~ž>ìÙÇ>Ìk>œ¹>Ìk>¼Æ    ¾‘uŽ>œ¹¾‘uŽ>¼Æ¾o>YJ²¾o>œ¹¾o>¼Æ¾o>ìÙǾbÐß>YJ²¾bÐß>ìÙǾBÃÊ>0{¾BÃÊ?sq¾"¶®>0{¾"¶®?sq½Å8è=òF¿½Å8è?v¸½ õ=òF¿»H?v¸=v”T>0{=v”T>ÜÓ9=v”T?sq=»da>ÌÌ«=»da>ìÙÇ=û~ž>YJ²=û~ž>ÜÓ9=û~ž>ìÙÇ    ¾o>ÌÌ«¾o?v¸¾bÐß?v¸¾"¶®=òF¿½…²=òF¿½…²?v¸½ õ=òF¿½ õ?v¸=v”T=òF¿=û~ž?v¸>Ìk>ÌÌ«>Ìk?v¸ ¾¡|½ŽV¾¡|?v¸¾‘u޽ÎpÁ¾‘u޽x¬¾o½ÎpÁ¾o½ŽV¾o?v¸¾bÐß?v¸¾BÃʽŽV¾©“»â!ᄅ“?v¸½…²=òF¿½…²>9=–»H?v¸=û~ž?v¸>=Ù†?v¸    ¾‘uŽ>yW;‘uŽ>ÜÓ9¾o>0{¾o>yW;o>ÜÓ9¾o?sq¾bÐß>0{¾bÐß?sq¾BÃÊ=òF¿¾BÃÊ?v¸¾"¶®½ÎpÁ¾"¶®?F¨¾©“=òF¿¾©“?v¸½Å8è>0{½Å8è?sq½…²½ÎpÁ½…²>YJ²½…²>ìÙǽ…²?F¨½ õ½ÎpÁ½ õ>YJ²½ õ>ìÙǽ õ?F¨»H>0{»H?sq<ì¿Ì=òF¿<ì¿Ì?v¸=v”T½ÎpÁ=»da=òF¿=»da?v¸=û~ž>0{=û~ž?sq>Ìk>0{>Ìk>yWÍ>Ìk>ÜÓ9>Ìk?sq>=Ù†>yWÍ>=Ù†>ÜÓ9     ##""$$&&%%!! ¾¡|=òF¿¾¡|?v¸¾o=òF¿¾o?v¸¾bÐß?v¸¾©“=òF¿¾©“?v¸»H=òF¿»H?v¸=»da=òF¿=û~ž=òF¿=û~ž?v¸>=Ù†=òF¿>=Ù†?v¸    ¾±‚ª=òF¿¾±‚ª?v¸¾o=òF¿¾o?v¸¾bÐß=òF¿¾bÐß?v¸¾©“?v¸»H?v¸=»da=òF¿=»da?v¸=û~ž=òF¿=û~ž?v¸>=Ù†=òF¿>]曽x¬>]æ›=òF¿>]æ›?v¸   ¾±‚ª?v¸¾o>¬¿¾o?v¸¾bÐß>Œ²t¾bÐß>¬¿¾bÐß?v¸¾BÃÊ>Œ²t¾©“>yW;©“?v¸½…²>yWÍ»H=òF¿»H?v¸<ì¿Ì>Œ²t=»da=òF¿=»da>¬¿=»da?v¸=û~ž=òF¿=û~ž?v¸>]æ›=òF¿>]æ›?v¸    ¾ñœà=òF¿¾ñœà?v¸¾Á‰7=òF¿¾Á‰7?v¸¾±‚ª=òF¿¾±‚ª?v¸¾o?v¸¾"¶®?v¸½…²=òF¿½…²?v¸½ õ=òF¿½ õ?v¸=v”T?v¸>Ìk?v¸>}ó½=òF¿>}ó½?v¸>l=òF¿>l?v¸>¿=òF¿>¿?v¸   ¾ñœà=òF¿¾ñœà?v¸¾Á‰7=òF¿¾Á‰7?v¸¾±‚ª=òF¿¾±‚ª?v¸¾o?v¸¾"¶®?v¸½…²=òF¿½…²?v¸½ õ=òF¿½ õ?v¸=v”T?v¸>Ìk?v¸>}ó½=òF¿>}ó½?v¸>l=òF¿>l?v¸>¯ ˆ=òF¿>¿½x¬>¿=òF¿>¿?v¸   ¾"¶®>ÌÌ«¾©“<Çà_¾©“=²,…¾©“?6‡¾©“?F¨½Å8è½x¬½Å8è»â!ï½Å8è=d$½Å8è>0{½Å8è>¼Æ½Å8è>ÜÓ9½Å8è?&€½Å8è?>Ša½Å8è?Nï½Å8è?V”6½…²½ŽV½…²=òF¿½…²>9=–½…²?}F½…²?.ƒÓ½…²?^—}½ õ>0{½ õ>yWͽ õ>œ¹½ õ>¬¿½ õ>ìÙǽ õ>üàT½ õ?v¸½ õ?&€»H½ÎpÁ»H>YJ²»H>Œ²t»H?sq»H?yÿ»H?fšÃ"   !!  ½…²½ÎpÁ½…²?fšÃ¾©“½ÎpÁ¾©“>YJ²¾©“>Œ²t¾©“?sq¾©“?yÿ¾©“?fšÃ½Å8è>0{½Å8è>yWͽÅ8è>œ¹½Å8è>¬¿½Å8è>ìÙǽÅ8è>üàT½Å8è?v¸½Å8è?&€½…²½ŽV½…²=òF¿½…²>9=–½…²?}F½…²?.ƒÓ½…²?^—}½ õ½x¬½ õ»â!ï½ õ=d$½ õ>0{½ õ>¼Æ½ õ>ÜÓ9½ õ?&€½ õ?>Ša½ õ?Nï½ õ?V”6»H<Çà_»H=²,…»H?6‡»H?F¨<ì¿Ì>ÌÌ«!!    "" ¾±‚ª>œ¹¾±‚ª>¼Æ¾¡|>ÜÓ9¾¡|>ìÙǾo>ìÙǾo>üàT¾BÃÊ>ìÙǾBÃÊ>üàT¾©“>ÜÓ9¾©“>ìÙÇ»H>¬¿»H>¼Æ=v”T>œ¹=v”T>¬¿=û~ž>œ¹=û~ž>¬¿>=Ù†>¬¿>=Ù†>¼Æ>]æ›>ÜÓ9>]æ›>üàT  ¾BÃÊ?}F¾BÃÊ?.ƒÓ¾"¶®?v¸¾"¶®?>Ša½Å8è?sq½Å8è?F¨½ õ?sq½ õ?F¨<ì¿Ì?v¸<ì¿Ì?>Ša=v”T?}F=v”T?.ƒÓ dx-4.4.4/fonts/fixed.dx0000644000076500000240000022305706701436512011657 00000000000000object 1 class field attribute "char width" number 0.665517 # object 2 class field attribute "char width" number 0.665517 # object 3 class field attribute "char width" number 0.665517 # object 4 class field attribute "char width" number 0.665517 # object 5 class field attribute "char width" number 0.665517 # object 6 class field attribute "char width" number 0.665517 # object 7 class field attribute "char width" number 0.665517 # object 8 class field attribute "char width" number 0.665517 # object 9 class field attribute "char width" number 0.665517 # object 10 class field attribute "char width" number 0.665517 # object 11 class field attribute "char width" number 0.665517 # object 12 class field attribute "char width" number 0.665517 # object 13 class field attribute "char width" number 0.665517 # object 14 class field attribute "char width" number 0.665517 # object 15 class field attribute "char width" number 0.665517 # object 16 class field attribute "char width" number 0.665517 # object 17 class field attribute "char width" number 0.665517 # object 18 class field attribute "char width" number 0.665517 # object 19 class field attribute "char width" number 0.665517 # object 20 class field attribute "char width" number 0.665517 # object 21 class field attribute "char width" number 0.665517 # object 22 class field attribute "char width" number 0.665517 # object 23 class field attribute "char width" number 0.665517 # object 24 class field attribute "char width" number 0.665517 # object 25 class field attribute "char width" number 0.665517 # object 26 class field attribute "char width" number 0.665517 # object 27 class field attribute "char width" number 0.665517 # object 28 class field attribute "char width" number 0.665517 # object 29 class field attribute "char width" number 0.665517 # object 30 class field attribute "char width" number 0.665517 # object 31 class field attribute "char width" number 0.665517 # object 32 class field attribute "char width" number 0.665517 # object 33 class field attribute "char width" number 0.665517 # object 35 class array type float rank 1 shape 3 items 386 data follows 0.11379 0.413793 0 0.320683 0.206897 0 0.320683 0.413793 0 0.11379 0.206897 0 0.265517 0.724138 0 0.265517 0.241379 0 0.265517 0.068966 0 0.231034 0.034483 0 0.265517 0 0 0.3 0.034483 0 0.127586 0.724138 0 0.127586 0.482759 0 0.403448 0.724138 0 0.403448 0.482759 0 0.3 0.862069 0 0.058621 -0.241379 0 0.506897 0.862069 0 0.265517 -0.241379 0 0.058621 0.413793 0 0.541379 0.413793 0 0.024138 0.206897 0 0.506897 0.206897 0 0.196552 0.862069 0 0.196552 -0.137931 0 0.334483 0.862069 0 0.334483 -0.137931 0 0.506897 0.62069 0 0.437931 0.689655 0 0.334483 0.724138 0 0.196552 0.724138 0 0.093103 0.689655 0 0.024138 0.62069 0 0.024138 0.551724 0 0.058621 0.482759 0 0.093103 0.448276 0 0.162069 0.413793 0 0.368966 0.344828 0 0.437931 0.310345 0 0.472414 0.275862 0 0.506897 0.103448 0 0.437931 0.034483 0 0.334483 0 0 0.196552 0 0 0.093103 0.034483 0 0.024138 0.103448 0 0.575862 0.724138 0 -0.044828 0 0 0.196552 0.655172 0 0.196552 0.586207 0 0.162069 0.517241 0 0.093103 0.482759 0 0.024138 0.482759 0 -0.044828 0.551724 0 -0.044828 0.62069 0 -0.010345 0.689655 0 0.058621 0.724138 0 0.196552 0.689655 0 0.3 0.655172 0 0.403448 0.655172 0 0.506897 0.689655 0 0.437931 0.241379 0 0.368966 0.206897 0 0.334483 0.137931 0 0.334483 0.068966 0 0.403448 0 0 0.472414 0 0 0.541379 0.034483 0 0.575862 0.103448 0 0.575862 0.172414 0 0.506897 0.241379 0 0.610345 0.413793 0 0.610345 0.448276 0 0.575862 0.482759 0 0.541379 0.482759 0 0.506897 0.448276 0 0.472414 0.37931 0 0.403448 0.206897 0 0.334483 0.103448 0 0.265517 0.034483 0 0.058621 0 0 -0.010345 0.034483 0 -0.044828 0.068966 0 -0.07931 0.137931 0 -0.07931 0.206897 0 -0.044828 0.275862 0 -0.010345 0.310345 0 0.231034 0.448276 0 0.265517 0.482759 0 0.3 0.551724 0 0.3 0.62069 0 0.265517 0.689655 0 0.127586 0.689655 0 0.093103 0.62069 0 0.093103 0.551724 0 0.127586 0.448276 0 0.196552 0.344828 0 0.368966 0.103448 0 0.506897 0 0 0.575862 0 0 0.610345 0.034483 0 0.610345 0.068966 0 0.265517 0.655172 0 0.231034 0.689655 0 0.3 0.689655 0 0.265517 0.551724 0 0.231034 0.517241 0 0.403448 0.862069 0 0.334483 0.793103 0 0.196552 0.551724 0 0.162069 0.37931 0 0.162069 0.241379 0 0.196552 0.068966 0 0.265517 -0.068966 0 0.334483 -0.172414 0 0.403448 -0.241379 0 0.127586 0.862069 0 0.196552 0.793103 0 0.334483 0.551724 0 0.368966 0.37931 0 0.368966 0.241379 0 0.196552 -0.172414 0 0.127586 -0.241379 0 0.265517 0.310345 0 0.437931 0.413793 0 0.437931 0.62069 0 0.093103 0.413793 0 0.265517 0.62069 0 -0.044828 0.310345 0 0.575862 0.310345 0 0.3 -0.034483 0 0.265517 -0.103448 0 0.231034 -0.137931 0 0.575862 0.862069 0 -0.044828 -0.241379 0 0.231034 0.724138 0 0.058621 0.586207 0 0.024138 0.413793 0 0.024138 0.310345 0 0.058621 0.137931 0 0.127586 0.034483 0 0.231034 0 0 0.3 0 0 0.403448 0.034483 0 0.472414 0.137931 0 0.506897 0.310345 0 0.506897 0.413793 0 0.472414 0.586207 0 0.403448 0.689655 0 0.3 0.724138 0 0.127586 0.586207 0 0.196552 0.62069 0 0.058621 0.551724 0 0.093103 0.655172 0 0.437931 0.655172 0 0.472414 0.517241 0 0.437931 0.448276 0 0.024138 0 0 0.093103 0.724138 0 0.472414 0.724138 0 0.265517 0.448276 0 0.368966 0.448276 0 0.506897 0.275862 0 0.472414 0.103448 0 0.058621 0.068966 0 0.024138 0.137931 0 0.368966 0.724138 0 0.024138 0.241379 0 0.541379 0.241379 0 0.368966 0 0 0.437931 0.724138 0 0.196552 0.482759 0 0.3 0.482759 0 0.403448 0.448276 0 0.472414 0.62069 0 0.162069 0.689655 0 0.093103 0.586207 0 0.058621 0.241379 0 0.093103 0.103448 0 0.162069 0.034483 0 0.472414 0.344828 0 0.403448 0.413793 0 0.3 0.448276 0 0.093103 0.344828 0 0.506897 0.724138 0 0.162069 0 0 0.024138 0.724138 0 0.058621 0.62069 0 0.162069 0.448276 0 0.3 0.413793 0 0.403448 0.37931 0 0.472414 0.310345 0 0.506897 0.137931 0 0.472414 0.068966 0 0.058621 0.310345 0 0.127586 0.37931 0 0.231034 0.413793 0 0.437931 0.482759 0 0.472414 0.551724 0 0.472414 0.482759 0 0.437931 0.37931 0 0.368966 0.310345 0 0.265517 0.275862 0 0.231034 0.275862 0 0.127586 0.310345 0 0.058621 0.37931 0 0.024138 0.517241 0 0.368966 0.689655 0 0.437931 0.137931 0 0.368966 0.034483 0 0.058621 0.103448 0 0.265517 0.413793 0 0.541379 0.62069 0 0.541379 0 0 -0.044828 0.413793 0 0.575862 0.413793 0 -0.044828 0.206897 0 0.575862 0.206897 0 -0.010345 0.62069 0 0.541379 0.310345 0 -0.010345 0 0 0.265517 0.344828 0 0.403448 0.517241 0 0.231034 0.551724 0 0.093103 0.37931 0 0.093103 0.275862 0 0.127586 0.206897 0 0.196552 0.172414 0 0.3 0.172414 0 0.403448 0.275862 0 0.162069 0.482759 0 0.127586 0.275862 0 0.162069 0.206897 0 0.437931 0.551724 0 0.472414 0.172414 0 0.541379 0.172414 0 0.610345 0.241379 0 0.644828 0.344828 0 0.644828 0.413793 0 0.610345 0.517241 0 0.575862 0.586207 0 0.506897 0.655172 0 0.058621 0.655172 0 -0.010345 0.586207 0 -0.044828 0.517241 0 -0.07931 0.413793 0 -0.07931 0.310345 0 -0.010345 0.137931 0 0.506897 0.068966 0 0.541379 0.103448 0 0.437931 0.275862 0 0.437931 0.206897 0 0.093103 0.241379 0 0.472414 0.655172 0 0.506897 0.586207 0 0.506897 0.517241 0 0.472414 0.448276 0 0.334483 0.37931 0 0.024138 0.37931 0 0.437931 0.344828 0 0.541379 0.551724 0 0.024138 0.448276 0 0.024138 0.275862 0 0.058621 0.172414 0 0.437931 0.103448 0 0.541379 0.275862 0 0.368966 0.275862 0 0.506897 0.37931 0 0.403448 0.172414 0 0.368966 0.068966 0 0.334483 0.034483 0 0.093103 0.068966 0 0.196552 0.413793 0 -0.010345 0.724138 0 0.541379 0.724138 0 -0.010345 0.448276 0 -0.010345 0.275862 0 0.024138 0.172414 0 0.506897 0.172414 0 0.541379 0.448276 0 0.506897 0.551724 0 0.506897 0.482759 0 0.472414 0.413793 0 0.334483 0.344828 0 0.024138 0.344828 0 0.3 0.137931 0 0.506897 -0.068966 0 0.265517 0.37931 0 -0.07931 0.724138 0 0.093103 0 0 0.437931 0 0 0.610345 0.724138 0 0.162069 0.862069 0 0.162069 -0.241379 0 0.196552 -0.241379 0 0.506897 -0.103448 0 0.334483 -0.241379 0 0.368966 0.862069 0 0.368966 -0.241379 0 0.196552 0.517241 0 0.334483 0.517241 0 0.265517 0.586207 0 -0.010345 -0.068966 0 0.541379 -0.068966 0 0.231034 0.62069 0 0.265517 0.517241 0 0.334483 0.482759 0 0.231034 0.482759 0 0.058621 0.275862 0 0.058621 0.206897 0 0.472414 0.206897 0 0.472414 -0.068966 0 0.437931 -0.172414 0 0.403448 -0.206897 0 0.231034 -0.241379 0 0.162069 -0.206897 0 0.196552 0.448276 0 0.368966 0.482759 0 0.265517 0.758621 0 0.3 0.758621 0 0.3 -0.103448 0 0.265517 -0.206897 0 0.093103 0.137931 0 0 0.482759 0 0 0 0 0 0.344828 0 0.072414 0.448276 0 0.12069 0.482759 0 0.193103 0.482759 0 0.241379 0.448276 0 0.337931 0.448276 0 0.386207 0.482759 0 0.458621 0.482759 0 0.531034 0.344828 0 0.531034 0 0 0.472414 -0.241379 0 0.162069 0.275862 0 0.196552 0.37931 0 0.196552 0.275862 0 0.265517 0.137931 0 -0.010345 0.482759 0 0.127586 0 0 0.127586 -0.206897 0 0.024138 -0.241379 0 0.265517 0.827586 0 0.231034 0.793103 0 0.231034 0.586207 0 0.231034 0.344828 0 0.231034 0.758621 0 0.3 0.586207 0 0.334483 0.448276 0 0.3 0.37931 0 0.162069 0.310345 0 0.3 0.241379 0 0.334483 0.172414 0 0.231034 -0.068966 0 0.3 0.206897 0 0.196552 -0.034483 0 0.196552 -0.103448 0 0.231034 -0.172414 0 0.265517 0.862069 0 0.3 0.793103 0 0.334483 0.655172 0 0.3 0.344828 0 0.231034 0.37931 0 0.231034 0.241379 0 0.196552 0.103448 0 0.3 -0.068966 0 0.3 -0.137931 0 0.3 0.275862 0 0.231034 0.206897 0 0.231034 0.137931 0 0.334483 -0.034483 0 0.334483 -0.103448 0 0.3 -0.172414 0 -0.010345 0.37931 0 0.127586 0.413793 0 0.334483 0.275862 0 0.403448 0.241379 0 0.472414 0.241379 0 0.575862 0.344828 0 -0.010345 0.344828 0 0.334483 0.241379 0 0.127586 0.62069 0 0.127586 0.551724 0 0.403448 0.551724 0 0.403448 0.62069 0 attribute "dep" string "positions" # object 36 class array type int rank 1 shape 2 items 5 data follows 4 5 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 34 class field component "positions" value 35 component "connections" value 36 attribute "char width" number 0.665517 # object 38 class array type int rank 1 shape 2 items 2 data follows 10 11 12 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 37 class field component "positions" value 35 component "connections" value 38 attribute "char width" number 0.665517 # object 40 class array type int rank 1 shape 2 items 4 data follows 14 15 16 17 18 19 20 21 attribute "element type" string "lines" attribute "ref" string "positions" # object 39 class field component "positions" value 35 component "connections" value 40 attribute "char width" number 0.665517 # object 42 class array type int rank 1 shape 2 items 21 data follows 22 23 24 25 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 21 21 39 39 40 40 41 41 42 42 43 43 44 attribute "element type" string "lines" attribute "ref" string "positions" # object 41 class field component "positions" value 35 component "connections" value 42 attribute "char width" number 0.665517 # object 44 class array type int rank 1 shape 2 items 26 data follows 45 46 10 47 47 48 48 49 49 50 50 51 51 52 52 53 53 54 54 55 55 10 10 56 56 57 57 58 58 59 59 45 60 61 61 62 62 63 63 64 64 65 65 66 66 67 67 68 68 69 69 60 attribute "element type" string "lines" attribute "ref" string "positions" # object 43 class field component "positions" value 35 component "connections" value 44 attribute "char width" number 0.665517 # object 46 class array type int rank 1 shape 2 items 33 data follows 70 71 71 72 72 73 73 74 74 75 75 76 76 77 77 78 78 42 42 79 79 80 80 81 81 82 82 83 83 84 84 85 85 86 86 87 87 88 88 89 89 90 90 29 29 91 91 92 92 93 93 94 94 95 95 96 96 40 40 97 97 98 98 99 99 100 attribute "element type" string "lines" attribute "ref" string "positions" # object 45 class field component "positions" value 35 component "connections" value 46 attribute "char width" number 0.665517 # object 48 class array type int rank 1 shape 2 items 6 data follows 101 102 102 4 4 103 103 89 89 104 104 105 attribute "element type" string "lines" attribute "ref" string "positions" # object 47 class field component "positions" value 35 component "connections" value 48 attribute "char width" number 0.665517 # object 50 class array type int rank 1 shape 2 items 9 data follows 106 107 107 90 90 108 108 109 109 110 110 111 111 112 112 113 113 114 attribute "element type" string "lines" attribute "ref" string "positions" # object 49 class field component "positions" value 35 component "connections" value 50 attribute "char width" number 0.665517 # object 52 class array type int rank 1 shape 2 items 9 data follows 115 116 116 90 90 117 117 118 118 119 119 63 63 112 112 120 120 121 attribute "element type" string "lines" attribute "ref" string "positions" # object 51 class field component "positions" value 35 component "connections" value 52 attribute "char width" number 0.665517 # object 54 class array type int rank 1 shape 2 items 3 data follows 4 122 92 123 124 125 attribute "element type" string "lines" attribute "ref" string "positions" # object 53 class field component "positions" value 35 component "connections" value 54 attribute "char width" number 0.665517 # object 56 class array type int rank 1 shape 2 items 2 data follows 126 8 127 128 attribute "element type" string "lines" attribute "ref" string "positions" # object 55 class field component "positions" value 35 component "connections" value 56 attribute "char width" number 0.665517 # object 58 class array type int rank 1 shape 2 items 7 data follows 9 8 8 7 7 6 6 9 9 129 129 130 130 131 attribute "element type" string "lines" attribute "ref" string "positions" # object 57 class field component "positions" value 35 component "connections" value 58 attribute "char width" number 0.665517 # object 60 class array type int rank 1 shape 2 items 1 data follows 127 128 attribute "element type" string "lines" attribute "ref" string "positions" # object 59 class field component "positions" value 35 component "connections" value 60 attribute "char width" number 0.665517 # object 62 class array type int rank 1 shape 2 items 4 data follows 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 61 class field component "positions" value 35 component "connections" value 62 attribute "char width" number 0.665517 # object 64 class array type int rank 1 shape 2 items 1 data follows 132 133 attribute "element type" string "lines" attribute "ref" string "positions" # object 63 class field component "positions" value 35 component "connections" value 64 attribute "char width" number 0.665517 # object 66 class array type int rank 1 shape 2 items 16 data follows 134 91 91 135 135 136 136 137 137 138 138 139 139 140 140 141 141 142 142 143 143 144 144 145 145 146 146 147 147 148 148 134 attribute "element type" string "lines" attribute "ref" string "positions" # object 65 class field component "positions" value 35 component "connections" value 66 attribute "char width" number 0.665517 # object 68 class array type int rank 1 shape 2 items 3 data follows 149 150 150 148 148 141 attribute "element type" string "lines" attribute "ref" string "positions" # object 67 class field component "positions" value 35 component "connections" value 68 attribute "char width" number 0.665517 # object 70 class array type int rank 1 shape 2 items 13 data follows 151 135 135 152 152 91 91 29 29 28 28 147 147 153 153 146 146 154 154 155 155 36 36 156 156 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 69 class field component "positions" value 35 component "connections" value 70 attribute "char width" number 0.665517 # object 72 class array type int rank 1 shape 2 items 14 data follows 157 158 158 159 159 160 160 123 123 75 75 161 161 21 21 162 162 142 142 141 141 42 42 43 43 163 163 164 attribute "element type" string "lines" attribute "ref" string "positions" # object 71 class field component "positions" value 35 component "connections" value 72 attribute "char width" number 0.665517 # object 74 class array type int rank 1 shape 2 items 3 data follows 165 166 166 167 165 168 attribute "element type" string "lines" attribute "ref" string "positions" # object 73 class field component "positions" value 35 component "connections" value 74 attribute "char width" number 0.665517 # object 76 class array type int rank 1 shape 2 items 16 data follows 169 157 157 18 18 34 34 170 170 171 171 172 172 75 75 161 161 21 21 162 162 142 142 141 141 42 42 43 43 163 163 164 attribute "element type" string "lines" attribute "ref" string "positions" # object 75 class field component "positions" value 35 component "connections" value 76 attribute "char width" number 0.665517 # object 78 class array type int rank 1 shape 2 items 22 data follows 173 27 27 28 28 4 4 174 174 175 175 18 18 176 176 177 177 178 178 8 8 141 141 142 142 162 162 21 21 69 69 179 179 180 180 181 181 159 159 35 35 182 182 176 attribute "element type" string "lines" attribute "ref" string "positions" # object 77 class field component "positions" value 35 component "connections" value 78 attribute "char width" number 0.665517 # object 80 class array type int rank 1 shape 2 items 2 data follows 183 184 185 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 79 class field component "positions" value 35 component "connections" value 80 attribute "char width" number 0.665517 # object 82 class array type int rank 1 shape 2 items 28 data follows 29 30 30 186 186 151 151 50 50 187 187 188 188 189 189 190 190 69 69 191 191 192 192 40 40 41 41 42 42 43 43 163 163 164 164 166 166 193 193 194 194 195 195 160 160 196 196 197 197 173 173 27 27 28 28 29 attribute "element type" string "lines" attribute "ref" string "positions" # object 81 class field component "positions" value 35 component "connections" value 82 attribute "char width" number 0.665517 # object 84 class array type int rank 1 shape 2 items 22 data follows 198 199 199 200 200 201 201 202 202 203 203 204 204 51 51 205 205 186 186 91 91 134 134 4 4 206 206 124 124 198 198 190 190 207 207 208 208 8 8 42 42 43 43 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 83 class field component "positions" value 35 component "connections" value 84 attribute "char width" number 0.665517 # object 86 class array type int rank 1 shape 2 items 8 data follows 87 86 86 210 210 181 181 87 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 85 class field component "positions" value 35 component "connections" value 86 attribute "char width" number 0.665517 # object 88 class array type int rank 1 shape 2 items 11 data follows 87 86 86 210 210 181 181 87 9 8 8 7 7 6 6 9 9 129 129 130 130 131 attribute "element type" string "lines" attribute "ref" string "positions" # object 87 class field component "positions" value 35 component "connections" value 88 attribute "char width" number 0.665517 # object 90 class array type int rank 1 shape 2 items 2 data follows 211 85 85 212 attribute "element type" string "lines" attribute "ref" string "positions" # object 89 class field component "positions" value 35 component "connections" value 90 attribute "char width" number 0.665517 # object 92 class array type int rank 1 shape 2 items 2 data follows 213 214 215 216 attribute "element type" string "lines" attribute "ref" string "positions" # object 91 class field component "positions" value 35 component "connections" value 92 attribute "char width" number 0.665517 # object 94 class array type int rank 1 shape 2 items 2 data follows 217 218 218 219 attribute "element type" string "lines" attribute "ref" string "positions" # object 93 class field component "positions" value 35 component "connections" value 94 attribute "char width" number 0.665517 # object 96 class array type int rank 1 shape 2 items 17 data follows 151 135 135 152 152 91 91 29 29 28 28 147 147 153 153 146 146 154 154 155 155 180 180 220 220 5 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 95 class field component "positions" value 35 component "connections" value 96 attribute "char width" number 0.665517 # object 98 class array type int rank 1 shape 2 items 48 data follows 155 221 221 117 117 222 222 49 49 11 11 223 223 224 224 225 225 226 226 227 227 61 61 228 222 229 229 194 194 230 230 231 231 226 232 228 228 76 76 233 233 234 234 235 235 236 236 237 237 238 238 239 239 240 240 27 27 28 28 134 134 91 91 241 241 242 242 243 243 244 244 245 245 215 215 246 246 163 163 139 139 140 140 41 41 40 40 247 247 248 197 249 249 250 250 233 attribute "element type" string "lines" attribute "ref" string "positions" # object 97 class field component "positions" value 35 component "connections" value 98 attribute "char width" number 0.665517 # object 100 class array type int rank 1 shape 2 items 3 data follows 4 219 4 212 251 60 attribute "element type" string "lines" attribute "ref" string "positions" # object 99 class field component "positions" value 35 component "connections" value 100 attribute "char width" number 0.665517 # object 102 class array type int rank 1 shape 2 items 18 data follows 185 156 185 28 28 27 27 252 252 253 253 254 254 255 255 123 123 256 257 256 256 258 258 190 190 69 69 191 191 192 192 40 40 41 41 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 101 class field component "positions" value 35 component "connections" value 102 attribute "char width" number 0.665517 # object 104 class array type int rank 1 shape 2 items 17 data follows 259 26 26 27 27 165 165 134 134 174 174 92 92 151 151 260 260 261 261 262 262 177 177 178 178 140 140 168 168 40 40 39 39 234 attribute "element type" string "lines" attribute "ref" string "positions" # object 103 class field component "positions" value 35 component "connections" value 104 attribute "char width" number 0.665517 # object 106 class array type int rank 1 shape 2 items 12 data follows 185 156 185 4 4 206 206 124 124 197 197 74 74 161 161 233 233 263 263 208 208 8 8 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 105 class field component "positions" value 35 component "connections" value 106 attribute "char width" number 0.665517 # object 108 class array type int rank 1 shape 2 items 4 data follows 55 79 55 183 204 256 79 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 107 class field component "positions" value 35 component "connections" value 108 attribute "char width" number 0.665517 # object 110 class array type int rank 1 shape 2 items 3 data follows 55 79 55 183 204 256 attribute "element type" string "lines" attribute "ref" string "positions" # object 109 class field component "positions" value 35 component "connections" value 110 attribute "char width" number 0.665517 # object 112 class array type int rank 1 shape 2 items 19 data follows 259 26 26 27 27 165 165 134 134 174 174 92 92 151 151 260 260 261 261 262 262 177 177 178 178 140 140 168 168 40 40 39 39 234 234 264 265 264 attribute "element type" string "lines" attribute "ref" string "positions" # object 111 class field component "positions" value 35 component "connections" value 112 attribute "char width" number 0.665517 # object 114 class array type int rank 1 shape 2 items 3 data follows 185 156 183 97 257 266 attribute "element type" string "lines" attribute "ref" string "positions" # object 113 class field component "positions" value 35 component "connections" value 114 attribute "char width" number 0.665517 # object 116 class array type int rank 1 shape 2 items 1 data follows 4 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 115 class field component "positions" value 35 component "connections" value 116 attribute "char width" number 0.665517 # object 118 class array type int rank 1 shape 2 items 9 data follows 12 267 267 268 268 269 269 8 8 42 42 139 139 270 270 262 262 176 attribute "element type" string "lines" attribute "ref" string "positions" # object 117 class field component "positions" value 35 component "connections" value 118 attribute "char width" number 0.665517 # object 120 class array type int rank 1 shape 2 items 3 data follows 185 156 183 166 271 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 119 class field component "positions" value 35 component "connections" value 120 attribute "char width" number 0.665517 # object 122 class array type int rank 1 shape 2 items 2 data follows 55 79 79 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 121 class field component "positions" value 35 component "connections" value 122 attribute "char width" number 0.665517 # object 124 class array type int rank 1 shape 2 items 4 data follows 272 219 272 8 273 8 273 212 attribute "element type" string "lines" attribute "ref" string "positions" # object 123 class field component "positions" value 35 component "connections" value 124 attribute "char width" number 0.665517 # object 126 class array type int rank 1 shape 2 items 3 data follows 185 156 185 97 183 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 125 class field component "positions" value 35 component "connections" value 126 attribute "char width" number 0.665517 # object 128 class array type int rank 1 shape 2 items 20 data follows 29 91 91 186 186 32 32 274 274 275 275 276 276 209 209 139 139 42 42 41 41 142 142 162 162 277 277 264 264 278 278 279 279 173 173 147 147 28 28 29 attribute "element type" string "lines" attribute "ref" string "positions" # object 127 class field component "positions" value 35 component "connections" value 128 attribute "char width" number 0.665517 # object 130 class array type int rank 1 shape 2 items 10 data follows 185 156 185 28 28 27 27 252 252 253 253 280 280 281 281 199 199 282 282 283 attribute "element type" string "lines" attribute "ref" string "positions" # object 129 class field component "positions" value 35 component "connections" value 130 attribute "char width" number 0.665517 # object 132 class array type int rank 1 shape 2 items 21 data follows 29 91 91 186 186 32 32 274 274 275 275 276 276 209 209 139 139 42 42 41 41 142 142 162 162 277 277 264 264 278 278 279 279 173 173 147 147 28 28 29 284 285 attribute "element type" string "lines" attribute "ref" string "positions" # object 131 class field component "positions" value 35 component "connections" value 132 attribute "char width" number 0.665517 # object 134 class array type int rank 1 shape 2 items 11 data follows 185 156 185 28 28 27 27 252 252 253 253 254 254 255 255 123 123 256 256 257 286 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 133 class field component "positions" value 35 component "connections" value 134 attribute "char width" number 0.665517 # object 136 class array type int rank 1 shape 2 items 19 data follows 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 21 21 39 39 40 40 41 41 42 42 43 43 44 attribute "element type" string "lines" attribute "ref" string "positions" # object 135 class field component "positions" value 35 component "connections" value 136 attribute "char width" number 0.665517 # object 138 class array type int rank 1 shape 2 items 2 data follows 4 8 185 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 137 class field component "positions" value 35 component "connections" value 138 attribute "char width" number 0.665517 # object 140 class array type int rank 1 shape 2 items 9 data follows 185 20 20 209 209 139 139 140 140 141 141 142 142 162 162 21 21 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 139 class field component "positions" value 35 component "connections" value 140 attribute "char width" number 0.665517 # object 142 class array type int rank 1 shape 2 items 2 data follows 272 8 273 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 141 class field component "positions" value 35 component "connections" value 142 attribute "char width" number 0.665517 # object 144 class array type int rank 1 shape 2 items 4 data follows 287 288 4 288 4 289 290 289 attribute "element type" string "lines" attribute "ref" string "positions" # object 143 class field component "positions" value 35 component "connections" value 144 attribute "char width" number 0.665517 # object 146 class array type int rank 1 shape 2 items 2 data follows 185 97 183 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 145 class field component "positions" value 35 component "connections" value 146 attribute "char width" number 0.665517 # object 148 class array type int rank 1 shape 2 items 3 data follows 272 286 286 8 273 286 attribute "element type" string "lines" attribute "ref" string "positions" # object 147 class field component "positions" value 35 component "connections" value 148 attribute "char width" number 0.665517 # object 150 class array type int rank 1 shape 2 items 3 data follows 183 156 185 183 156 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 149 class field component "positions" value 35 component "connections" value 150 attribute "char width" number 0.665517 # object 152 class array type int rank 1 shape 2 items 4 data follows 291 292 22 293 291 106 292 114 attribute "element type" string "lines" attribute "ref" string "positions" # object 151 class field component "positions" value 35 component "connections" value 152 attribute "char width" number 0.665517 # object 154 class array type int rank 1 shape 2 items 1 data follows 185 294 attribute "element type" string "lines" attribute "ref" string "positions" # object 153 class field component "positions" value 35 component "connections" value 154 attribute "char width" number 0.665517 # object 156 class array type int rank 1 shape 2 items 4 data follows 24 295 296 297 115 296 121 297 attribute "element type" string "lines" attribute "ref" string "positions" # object 155 class field component "positions" value 35 component "connections" value 156 attribute "char width" number 0.665517 # object 158 class array type int rank 1 shape 2 items 5 data follows 298 126 126 299 125 300 300 123 300 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 157 class field component "positions" value 35 component "connections" value 158 attribute "char width" number 0.665517 # object 160 class array type int rank 1 shape 2 items 1 data follows 301 302 attribute "element type" string "lines" attribute "ref" string "positions" # object 159 class field component "positions" value 35 component "connections" value 160 attribute "char width" number 0.665517 # object 162 class array type int rank 1 shape 2 items 6 data follows 148 90 90 303 303 222 222 304 304 88 88 300 attribute "element type" string "lines" attribute "ref" string "positions" # object 161 class field component "positions" value 35 component "connections" value 162 attribute "char width" number 0.665517 # object 164 class array type int rank 1 shape 2 items 14 data follows 198 65 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 163 class field component "positions" value 35 component "connections" value 164 attribute "char width" number 0.665517 # object 166 class array type int rank 1 shape 2 items 14 data follows 55 79 204 94 94 170 170 171 171 160 160 199 199 38 38 309 309 263 263 208 208 141 141 42 42 139 139 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 165 class field component "positions" value 35 component "connections" value 166 attribute "char width" number 0.665517 # object 168 class array type int rank 1 shape 2 items 13 data follows 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 167 class field component "positions" value 35 component "connections" value 168 attribute "char width" number 0.665517 # object 170 class array type int rank 1 shape 2 items 14 data follows 158 65 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 169 class field component "positions" value 35 component "connections" value 170 attribute "char width" number 0.665517 # object 172 class array type int rank 1 shape 2 items 16 data follows 307 38 38 179 179 123 123 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 171 class field component "positions" value 35 component "connections" value 172 attribute "char width" number 0.665517 # object 174 class array type int rank 1 shape 2 items 5 data follows 169 165 165 103 103 300 300 8 229 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 173 class field component "positions" value 35 component "connections" value 174 attribute "char width" number 0.665517 # object 176 class array type int rank 1 shape 2 items 19 data follows 198 310 310 311 311 312 312 295 295 313 313 314 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 175 class field component "positions" value 35 component "connections" value 176 attribute "char width" number 0.665517 # object 178 class array type int rank 1 shape 2 items 7 data follows 157 288 182 315 315 87 87 316 316 155 155 179 179 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 177 class field component "positions" value 35 component "connections" value 178 attribute "char width" number 0.665517 # object 180 class array type int rank 1 shape 2 items 5 data follows 134 90 90 148 148 317 317 134 87 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 179 class field component "positions" value 35 component "connections" value 180 attribute "char width" number 0.665517 # object 182 class array type int rank 1 shape 2 items 8 data follows 4 103 103 28 28 318 318 4 171 319 319 320 320 293 293 121 attribute "element type" string "lines" attribute "ref" string "positions" # object 181 class field component "positions" value 35 component "connections" value 182 attribute "char width" number 0.665517 # object 184 class array type int rank 1 shape 2 items 3 data follows 157 288 196 321 202 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 183 class field component "positions" value 35 component "connections" value 184 attribute "char width" number 0.665517 # object 186 class array type int rank 1 shape 2 items 1 data follows 4 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 185 class field component "positions" value 35 component "connections" value 186 attribute "char width" number 0.665517 # object 188 class array type int rank 1 shape 2 items 13 data follows 322 323 324 325 325 326 326 327 327 328 328 220 220 8 220 329 329 330 330 331 331 74 74 332 332 333 attribute "element type" string "lines" attribute "ref" string "positions" # object 187 class field component "positions" value 35 component "connections" value 188 attribute "char width" number 0.665517 # object 190 class array type int rank 1 shape 2 items 7 data follows 50 288 182 315 315 87 87 316 316 155 155 179 179 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 189 class field component "positions" value 35 component "connections" value 190 attribute "char width" number 0.665517 # object 192 class array type int rank 1 shape 2 items 16 data follows 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 162 21 21 161 161 75 75 172 172 305 305 306 attribute "element type" string "lines" attribute "ref" string "positions" # object 191 class field component "positions" value 35 component "connections" value 192 attribute "char width" number 0.665517 # object 194 class array type int rank 1 shape 2 items 14 data follows 33 15 204 94 94 170 170 171 171 160 160 199 199 38 38 309 309 263 263 208 208 141 141 42 42 139 139 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 193 class field component "positions" value 35 component "connections" value 194 attribute "char width" number 0.665517 # object 196 class array type int rank 1 shape 2 items 14 data follows 198 334 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 195 class field component "positions" value 35 component "connections" value 196 attribute "char width" number 0.665517 # object 198 class array type int rank 1 shape 2 items 5 data follows 229 184 335 336 336 159 159 305 305 196 attribute "element type" string "lines" attribute "ref" string "positions" # object 197 class field component "positions" value 35 component "connections" value 198 attribute "char width" number 0.665517 # object 200 class array type int rank 1 shape 2 items 16 data follows 75 155 155 305 305 306 306 94 94 223 223 203 203 337 337 119 119 250 250 143 143 162 162 40 40 41 41 140 140 139 139 177 attribute "element type" string "lines" attribute "ref" string "positions" # object 199 class field component "positions" value 35 component "connections" value 200 attribute "char width" number 0.665517 # object 202 class array type int rank 1 shape 2 items 5 data follows 4 338 338 9 9 168 168 289 229 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 201 class field component "positions" value 35 component "connections" value 202 attribute "char width" number 0.665517 # object 204 class array type int rank 1 shape 2 items 7 data follows 50 321 321 139 139 42 42 141 141 208 208 143 198 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 203 class field component "positions" value 35 component "connections" value 204 attribute "char width" number 0.665517 # object 206 class array type int rank 1 shape 2 items 2 data follows 33 8 198 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 205 class field component "positions" value 35 component "connections" value 206 attribute "char width" number 0.665517 # object 208 class array type int rank 1 shape 2 items 4 data follows 339 340 87 340 87 64 73 64 attribute "element type" string "lines" attribute "ref" string "positions" # object 207 class field component "positions" value 35 component "connections" value 208 attribute "char width" number 0.665517 # object 210 class array type int rank 1 shape 2 items 2 data follows 50 65 198 288 attribute "element type" string "lines" attribute "ref" string "positions" # object 209 class field component "positions" value 35 component "connections" value 210 attribute "char width" number 0.665517 # object 212 class array type int rank 1 shape 2 items 6 data follows 33 8 198 8 8 23 23 341 341 15 15 342 attribute "element type" string "lines" attribute "ref" string "positions" # object 211 class field component "positions" value 35 component "connections" value 212 attribute "char width" number 0.665517 # object 214 class array type int rank 1 shape 2 items 3 data follows 198 288 50 198 288 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 213 class field component "positions" value 35 component "connections" value 214 attribute "char width" number 0.665517 # object 216 class array type int rank 1 shape 2 items 34 data follows 24 343 343 344 344 29 29 47 47 345 345 104 104 171 171 188 188 346 343 347 347 102 102 126 126 348 348 299 299 349 349 350 350 351 351 352 352 353 353 77 77 9 9 8 8 354 354 131 131 320 202 355 355 284 284 6 6 7 7 356 356 357 357 358 358 320 320 295 attribute "element type" string "lines" attribute "ref" string "positions" # object 215 class field component "positions" value 35 component "connections" value 216 attribute "char width" number 0.665517 # object 218 class array type int rank 1 shape 2 items 1 data follows 359 17 attribute "element type" string "lines" attribute "ref" string "positions" # object 217 class field component "positions" value 35 component "connections" value 218 attribute "char width" number 0.665517 # object 220 class array type int rank 1 shape 2 items 34 data follows 22 343 343 360 360 28 28 361 361 348 348 104 104 306 306 195 195 362 343 318 318 103 103 126 126 345 345 298 298 315 315 363 363 200 200 364 364 226 226 365 365 7 7 8 8 366 366 367 367 320 368 369 369 370 370 6 6 9 9 371 371 372 372 373 373 320 320 293 attribute "element type" string "lines" attribute "ref" string "positions" # object 219 class field component "positions" value 35 component "connections" value 220 attribute "char width" number 0.665517 # object 222 class array type int rank 1 shape 2 items 20 data follows 215 84 84 374 374 18 18 375 375 336 336 376 376 377 377 378 378 264 264 379 84 380 380 204 204 194 194 95 95 381 381 76 76 309 309 167 167 379 379 214 attribute "element type" string "lines" attribute "ref" string "positions" # object 221 class field component "positions" value 35 component "connections" value 222 attribute "char width" number 0.665517 # object 224 class array type int rank 1 shape 2 items 12 data follows 134 174 174 382 382 383 383 229 229 86 86 181 181 316 316 384 384 385 385 206 206 148 148 134 attribute "element type" string "lines" attribute "ref" string "positions" # object 223 class field component "positions" value 35 component "connections" value 224 attribute "char width" number 0.665517 # object 225 class field attribute "char width" number 0.665517 # object 226 class field attribute "char width" number 0.665517 # object 227 class field attribute "char width" number 0.665517 # object 228 class field attribute "char width" number 0.665517 # object 229 class field attribute "char width" number 0.665517 # object 230 class field attribute "char width" number 0.665517 # object 231 class field attribute "char width" number 0.665517 # object 232 class field attribute "char width" number 0.665517 # object 233 class field attribute "char width" number 0.665517 # object 234 class field attribute "char width" number 0.665517 # object 235 class field attribute "char width" number 0.665517 # object 236 class field attribute "char width" number 0.665517 # object 237 class field attribute "char width" number 0.665517 # object 238 class field attribute "char width" number 0.665517 # object 239 class field attribute "char width" number 0.665517 # object 240 class field attribute "char width" number 0.665517 # object 241 class field attribute "char width" number 0.665517 # object 242 class field attribute "char width" number 0.665517 # object 243 class field attribute "char width" number 0.665517 # object 244 class field attribute "char width" number 0.665517 # object 245 class field attribute "char width" number 0.665517 # object 246 class field attribute "char width" number 0.665517 # object 247 class field attribute "char width" number 0.665517 # object 248 class field attribute "char width" number 0.665517 # object 249 class field attribute "char width" number 0.665517 # object 250 class field attribute "char width" number 0.665517 # object 251 class field attribute "char width" number 0.665517 # object 252 class field attribute "char width" number 0.665517 # object 253 class field attribute "char width" number 0.665517 # object 254 class field attribute "char width" number 0.665517 # object 255 class field attribute "char width" number 0.665517 # object 256 class field attribute "char width" number 0.665517 # object 257 class field attribute "char width" number 0.665517 # object 258 class field attribute "char width" number 0.665517 # object 259 class field attribute "char width" number 0.665517 # object 260 class field attribute "char width" number 0.665517 # object 261 class field attribute "char width" number 0.665517 # object 262 class field attribute "char width" number 0.665517 # object 263 class field attribute "char width" number 0.665517 # object 264 class field attribute "char width" number 0.665517 # object 265 class field attribute "char width" number 0.665517 # object 266 class field attribute "char width" number 0.665517 # object 267 class field attribute "char width" number 0.665517 # object 268 class field attribute "char width" number 0.665517 # object 269 class field attribute "char width" number 0.665517 # object 270 class field attribute "char width" number 0.665517 # object 271 class field attribute "char width" number 0.665517 # object 272 class field attribute "char width" number 0.665517 # object 273 class field attribute "char width" number 0.665517 # object 274 class field attribute "char width" number 0.665517 # object 275 class field attribute "char width" number 0.665517 # object 276 class field attribute "char width" number 0.665517 # object 277 class field attribute "char width" number 0.665517 # object 278 class field attribute "char width" number 0.665517 # object 279 class field attribute "char width" number 0.665517 # object 280 class field attribute "char width" number 0.665517 # object 281 class field attribute "char width" number 0.665517 # object 282 class field attribute "char width" number 0.665517 # object 283 class field attribute "char width" number 0.665517 # object 284 class field attribute "char width" number 0.665517 # object 285 class field attribute "char width" number 0.665517 # object 286 class field attribute "char width" number 0.665517 # object 287 class field attribute "char width" number 0.665517 # object 288 class field attribute "char width" number 0.665517 # object 289 class field attribute "char width" number 0.665517 # object 290 class field attribute "char width" number 0.665517 # object 291 class field attribute "char width" number 0.665517 # object 292 class field attribute "char width" number 0.665517 # object 293 class field attribute "char width" number 0.665517 # object 294 class field attribute "char width" number 0.665517 # object 295 class field attribute "char width" number 0.665517 # object 296 class field attribute "char width" number 0.665517 # object 297 class field attribute "char width" number 0.665517 # object 298 class field attribute "char width" number 0.665517 # object 299 class field attribute "char width" number 0.665517 # object 300 class field attribute "char width" number 0.665517 # object 301 class field attribute "char width" number 0.665517 # object 302 class field attribute "char width" number 0.665517 # object 303 class field attribute "char width" number 0.665517 # object 304 class field attribute "char width" number 0.665517 # object 305 class field attribute "char width" number 0.665517 # object 306 class field attribute "char width" number 0.665517 # object 307 class field attribute "char width" number 0.665517 # object 308 class field attribute "char width" number 0.665517 # object 309 class field attribute "char width" number 0.665517 # object 310 class field attribute "char width" number 0.665517 # object 311 class field attribute "char width" number 0.665517 # object 312 class field attribute "char width" number 0.665517 # object 313 class field attribute "char width" number 0.665517 # object 314 class field attribute "char width" number 0.665517 # object 315 class field attribute "char width" number 0.665517 # object 316 class field attribute "char width" number 0.665517 # object 317 class field attribute "char width" number 0.665517 # object 318 class field attribute "char width" number 0.665517 # object 319 class field attribute "char width" number 0.665517 # object 320 class field attribute "char width" number 0.665517 # object 321 class field attribute "char width" number 0.665517 # object 322 class field attribute "char width" number 0.665517 # object 323 class field attribute "char width" number 0.665517 # object 324 class field attribute "char width" number 0.665517 # object 325 class field attribute "char width" number 0.665517 # object 326 class field attribute "char width" number 0.665517 # object 327 class field attribute "char width" number 0.665517 # object 328 class field attribute "char width" number 0.665517 # object 329 class field attribute "char width" number 0.665517 # object 330 class field attribute "char width" number 0.665517 # object 331 class field attribute "char width" number 0.665517 # object 332 class field attribute "char width" number 0.665517 # object 333 class field attribute "char width" number 0.665517 # object 334 class field attribute "char width" number 0.665517 # object 335 class field attribute "char width" number 0.665517 # object 336 class field attribute "char width" number 0.665517 # object 337 class field attribute "char width" number 0.665517 # object 338 class field attribute "char width" number 0.665517 # object 339 class field attribute "char width" number 0.665517 # object 340 class field attribute "char width" number 0.665517 # object 341 class field attribute "char width" number 0.665517 # object 342 class field attribute "char width" number 0.665517 # object 343 class field attribute "char width" number 0.665517 # object 344 class field attribute "char width" number 0.665517 # object 345 class field attribute "char width" number 0.665517 # object 346 class field attribute "char width" number 0.665517 # object 347 class field attribute "char width" number 0.665517 # object 348 class field attribute "char width" number 0.665517 # object 349 class field attribute "char width" number 0.665517 # object 350 class field attribute "char width" number 0.665517 # object 351 class field attribute "char width" number 0.665517 # object 352 class field attribute "char width" number 0.665517 # object "default" class group member 0 value 1 member 1 value 2 member 2 value 3 member 3 value 4 member 4 value 5 member 5 value 6 member 6 value 7 member 7 value 8 member 8 value 9 member 9 value 10 member 10 value 11 member 11 value 12 member 12 value 13 member 13 value 14 member 14 value 15 member 15 value 16 member 16 value 17 member 17 value 18 member 18 value 19 member 19 value 20 member 20 value 21 member 21 value 22 member 22 value 23 member 23 value 24 member 24 value 25 member 25 value 26 member 26 value 27 member 27 value 28 member 28 value 29 member 29 value 30 member 30 value 31 member 31 value 32 member 32 value 33 member 33 value 34 member 34 value 37 member 35 value 39 member 36 value 41 member 37 value 43 member 38 value 45 member 39 value 47 member 40 value 49 member 41 value 51 member 42 value 53 member 43 value 55 member 44 value 57 member 45 value 59 member 46 value 61 member 47 value 63 member 48 value 65 member 49 value 67 member 50 value 69 member 51 value 71 member 52 value 73 member 53 value 75 member 54 value 77 member 55 value 79 member 56 value 81 member 57 value 83 member 58 value 85 member 59 value 87 member 60 value 89 member 61 value 91 member 62 value 93 member 63 value 95 member 64 value 97 member 65 value 99 member 66 value 101 member 67 value 103 member 68 value 105 member 69 value 107 member 70 value 109 member 71 value 111 member 72 value 113 member 73 value 115 member 74 value 117 member 75 value 119 member 76 value 121 member 77 value 123 member 78 value 125 member 79 value 127 member 80 value 129 member 81 value 131 member 82 value 133 member 83 value 135 member 84 value 137 member 85 value 139 member 86 value 141 member 87 value 143 member 88 value 145 member 89 value 147 member 90 value 149 member 91 value 151 member 92 value 153 member 93 value 155 member 94 value 157 member 95 value 159 member 96 value 161 member 97 value 163 member 98 value 165 member 99 value 167 member 100 value 169 member 101 value 171 member 102 value 173 member 103 value 175 member 104 value 177 member 105 value 179 member 106 value 181 member 107 value 183 member 108 value 185 member 109 value 187 member 110 value 189 member 111 value 191 member 112 value 193 member 113 value 195 member 114 value 197 member 115 value 199 member 116 value 201 member 117 value 203 member 118 value 205 member 119 value 207 member 120 value 209 member 121 value 211 member 122 value 213 member 123 value 215 member 124 value 217 member 125 value 219 member 126 value 221 member 127 value 223 member 128 value 225 member 129 value 226 member 130 value 227 member 131 value 228 member 132 value 229 member 133 value 230 member 134 value 231 member 135 value 232 member 136 value 233 member 137 value 234 member 138 value 235 member 139 value 236 member 140 value 237 member 141 value 238 member 142 value 239 member 143 value 240 member 144 value 241 member 145 value 242 member 146 value 243 member 147 value 244 member 148 value 245 member 149 value 246 member 150 value 247 member 151 value 248 member 152 value 249 member 153 value 250 member 154 value 251 member 155 value 252 member 156 value 253 member 157 value 254 member 158 value 255 member 159 value 256 member 160 value 257 member 161 value 258 member 162 value 259 member 163 value 260 member 164 value 261 member 165 value 262 member 166 value 263 member 167 value 264 member 168 value 265 member 169 value 266 member 170 value 267 member 171 value 268 member 172 value 269 member 173 value 270 member 174 value 271 member 175 value 272 member 176 value 273 member 177 value 274 member 178 value 275 member 179 value 276 member 180 value 277 member 181 value 278 member 182 value 279 member 183 value 280 member 184 value 281 member 185 value 282 member 186 value 283 member 187 value 284 member 188 value 285 member 189 value 286 member 190 value 287 member 191 value 288 member 192 value 289 member 193 value 290 member 194 value 291 member 195 value 292 member 196 value 293 member 197 value 294 member 198 value 295 member 199 value 296 member 200 value 297 member 201 value 298 member 202 value 299 member 203 value 300 member 204 value 301 member 205 value 302 member 206 value 303 member 207 value 304 member 208 value 305 member 209 value 306 member 210 value 307 member 211 value 308 member 212 value 309 member 213 value 310 member 214 value 311 member 215 value 312 member 216 value 313 member 217 value 314 member 218 value 315 member 219 value 316 member 220 value 317 member 221 value 318 member 222 value 319 member 223 value 320 member 224 value 321 member 225 value 322 member 226 value 323 member 227 value 324 member 228 value 325 member 229 value 326 member 230 value 327 member 231 value 328 member 232 value 329 member 233 value 330 member 234 value 331 member 235 value 332 member 236 value 333 member 237 value 334 member 238 value 335 member 239 value 336 member 240 value 337 member 241 value 338 member 242 value 339 member 243 value 340 member 244 value 341 member 245 value 342 member 246 value 343 member 247 value 344 member 248 value 345 member 249 value 346 member 250 value 347 member 251 value 348 member 252 value 349 member 253 value 350 member 254 value 351 member 255 value 352 attribute "name" string "default" attribute "font ascent" number 0.758621 attribute "font descent" number 0.241379 # end dx-4.4.4/fonts/gothiceng_t.dx0000644000076500000240000031765507120226266013061 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 19 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 20 msb ieee data 152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.375600 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 312 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 472 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 49 msb ieee data 568 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 46 msb ieee data 960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1328 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 45 msb ieee data 1744 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 38 msb ieee data 2104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 10 msb ieee data 2408 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 10 msb ieee data 2488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.375600 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 22 msb ieee data 2568 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 21 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 22 msb ieee data 2912 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 21 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3256 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3568 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 3632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 10 msb ieee data 3696 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 10 msb ieee data 3776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.375600 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 3856 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 3888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 7 msb ieee data 3920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 7 msb ieee data 3976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.375600 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4032 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 26 msb ieee data 4096 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 26 msb ieee data 4304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 19 msb ieee data 4512 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 19 msb ieee data 4664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 32 msb ieee data 4816 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 30 msb ieee data 5072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 35 msb ieee data 5312 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 33 msb ieee data 5592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 28 msb ieee data 5856 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 25 msb ieee data 6080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 32 msb ieee data 6280 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 31 msb ieee data 6536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 37 msb ieee data 6784 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 37 msb ieee data 7080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 28 msb ieee data 7376 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 26 msb ieee data 7600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 38 msb ieee data 7808 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 39 msb ieee data 8112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 38 msb ieee data 8424 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 38 msb ieee data 8728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 14 msb ieee data 9032 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 14 msb ieee data 9144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.375600 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 17 msb ieee data 9256 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 17 msb ieee data 9392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.375600 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 9528 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 9552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 9568 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 9632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 9696 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 35 msb ieee data 9736 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 35 msb ieee data 10016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 10296 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 10680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 43 msb ieee data 11064 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 38 msb ieee data 11408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.688600 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 74 msb ieee data 11712 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 66 msb ieee data 12304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.751200 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 51 msb ieee data 12832 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 49 msb ieee data 13240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.751200 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 52 msb ieee data 13632 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 46 msb ieee data 14048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.719900 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 66 msb ieee data 14416 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 60 msb ieee data 14944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.688600 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 65 msb ieee data 15424 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 57 msb ieee data 15944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.719900 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 61 msb ieee data 16400 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 59 msb ieee data 16888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.782500 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 74 msb ieee data 17360 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 68 msb ieee data 17952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.751200 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 49 msb ieee data 18496 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 45 msb ieee data 18888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.594700 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 46 msb ieee data 19248 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 43 msb ieee data 19616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.626000 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 74 msb ieee data 19960 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 69 msb ieee data 20552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.751200 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 55 msb ieee data 21104 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 51 msb ieee data 21544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.688600 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 75 msb ieee data 21952 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 69 msb ieee data 22552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.876400 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 61 msb ieee data 23104 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 54 msb ieee data 23592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.782500 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 59 msb ieee data 24024 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 57 msb ieee data 24496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.813800 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 51 msb ieee data 24952 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 44 msb ieee data 25360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.688600 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 72 msb ieee data 25712 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 71 msb ieee data 26288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.813800 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 74 msb ieee data 26856 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 70 msb ieee data 27448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.751200 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 70 msb ieee data 28008 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 66 msb ieee data 28568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.719900 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 53 msb ieee data 29096 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 51 msb ieee data 29520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.751200 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 63 msb ieee data 29928 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 59 msb ieee data 30432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.751200 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 51 msb ieee data 30904 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 48 msb ieee data 31312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.719900 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 62 msb ieee data 31696 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 57 msb ieee data 32192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.845100 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 46 msb ieee data 32648 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 39 msb ieee data 33016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.688600 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 62 msb ieee data 33328 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 58 msb ieee data 33824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.719900 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 40 msb ieee data 34288 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 35 msb ieee data 34608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 34888 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 34936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 34968 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 34984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 34992 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 35040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 35072 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 35128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 35168 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 35184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 10 msb ieee data 35192 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 10 msb ieee data 35272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.375600 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 40 msb ieee data 35352 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 37 msb ieee data 35672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.532100 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 30 msb ieee data 35968 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 30 msb ieee data 36208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.563400 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 23 msb ieee data 36448 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 23 msb ieee data 36632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.438200 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 27 msb ieee data 36816 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 27 msb ieee data 37032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.532100 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 20 msb ieee data 37248 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 20 msb ieee data 37408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.438200 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 27 msb ieee data 37568 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 25 msb ieee data 37784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.406900 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 40 msb ieee data 37984 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 40 msb ieee data 38304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.563400 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 34 msb ieee data 38624 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 35 msb ieee data 38896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.563400 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 25 msb ieee data 39176 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 25 msb ieee data 39376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.313000 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 27 msb ieee data 39576 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 29 msb ieee data 39792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.313000 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 36 msb ieee data 40024 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 32 msb ieee data 40312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.532100 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 16 msb ieee data 40568 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 16 msb ieee data 40696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.313000 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 50 msb ieee data 40824 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 49 msb ieee data 41224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.813800 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 34 msb ieee data 41616 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 33 msb ieee data 41888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.563400 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 26 msb ieee data 42152 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 26 msb ieee data 42360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.563400 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 37 msb ieee data 42568 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 36 msb ieee data 42864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.563400 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 30 msb ieee data 43152 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 30 msb ieee data 43392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.563400 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 27 msb ieee data 43632 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 26 msb ieee data 43848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.438200 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 37 msb ieee data 44056 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 35 msb ieee data 44352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.500800 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 20 msb ieee data 44632 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 18 msb ieee data 44792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.313000 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 34 msb ieee data 44936 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 33 msb ieee data 45208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.563400 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 25 msb ieee data 45472 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 24 msb ieee data 45672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 40 msb ieee data 45864 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 39 msb ieee data 46184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.813800 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 44 msb ieee data 46496 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 37 msb ieee data 46848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.594700 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 43 msb ieee data 47144 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 42 msb ieee data 47488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.563400 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 24 msb ieee data 47824 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 22 msb ieee data 48016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.563400 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 48192 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 48472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 48744 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 48760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 48768 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 49048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 49320 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 49480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 49640 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 49736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =ÀN¥?í>4n=K(R> A‰=K(R> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>s¹>@N¥?ê:>@N¥?$ðÇ>@N¥?,ô>`[À=K(R>`[À?ê:>`[À?í>`[À?$ðÇ>€4n=K(R>:û?í      =à[Î>éº==à[Î?$ðÇ>:û?$ðÇ>:û?,ô>0H?$ðÇ>ÈQï>éº=>ÈQï?$ðÇ>ØX}?$ðÇ>ØX}?,ô>è_ ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥>ñg=ÀN¥>ùÀÊ=ÀN¥?ê:>4n=¥®_>4n>ñg>4n>Ù³¯>4n>ùÀÊ>4n?ã¬>4n?ê:> A=K(R> A=¥®_> A=åÈ—> A>2þ‚> A>Ù³¯> A>éº=> A?$ðÇ>@N¥=K(R>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>™™x>ÐU2>© >ÐU2>¹¦“>à[Ã?$ðÇ>ðbN=K(R>ðbN>‰’ê>ðbN>™™x>ðbN?ã¬>ðbN?ê:>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?4o? æó?4o?í?7¶>ñg?7¶>s¹?7¶? æó$$##00--&&!!))(( ,% ""* ++//..''   =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>2þ‚>4n>2þ‚>4n>S ž> A>ùÀÊ>@N¥>ùÀÊ>@N¥?ã¬>`[À<•çÉ>`[À=K(R>€4q=K(R>:û>¹¦“>:û?$ðÇ> A‰>É­!> A‰?$ðÇ> A‰?,ô>°H>™™x>°H>© >ÀN¥>© >ÐU2>S ž>ÐU2>ùÀÊ>ÐU2?ã¬>à[À>s¹>à[À?ã¬>ðbN=åÈ—>ðbN>ñg?4n>ñg?7µ=K(R?7µ=¥®_?7µ=åÈ—?>D<•çÉ?>D=K(R?>D=¥®_?>D>¹¦“?>D>É­!? A‹>© ? A‹>¹¦“? A‹>Ù³¯?(DÒ<•çÉ?(DÒ>© ?(DÒ>É­!?0H=K(R?0H=¥®_?0H>¹¦“?0H>É­!?8K_=åÈ—?8K_>Ù³¯#&&**, "")!!%%)),#  $$''+ ' ((+>:û>éº=>:û?í>0H?í>PU2>ùÀÊ>PU2? æó>PU2?ê:>PU2?$ðÇ>PU2?,ô>pbN? æó>pbN?í =à[À>s¹=à[À>¹¦“>:û=¥®_>:û>S ž>:û>É­!>:û?ã¬>0H=¥®_>0H>S ž>0H>É­!>0H?ã¬>PU9½5tý>PU9¼U;>PU9<•çÉ>PU9?ê:>PU9?í>PU9?$ðÇ>pbN½šÔµ>pbN?,ô>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*     =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>PU2½šÔµ>PU2?,ô>pbN½5tý>pbN¼U;>pbN<•çÉ>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>S ž>ˆ7µ>É­!>ˆ7µ?ã¬>˜>B=¥®_>˜>B>S ž>˜>B>É­!>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“     =ÀN²>É­!=ÀN²>Ù³¯=ÀN²? æó=ÀN²?ê:>4n>É­!>4n?ê:>`[Ç>© >`[Ç?$ðÇ>€4q>™™x>€4q?,ô>:û>© >:û?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÐU2>É­!>ÐU2>Ù³¯>ÐU2? æó>ÐU2?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© >:û½Úîé>:û=K(R>0H=K(R>PU2½šÔµ>PU2¼U;>PU2<•çÉ>PU2=¥®_>PU2=åÈ—>pbN¼U;>pbN=K(R >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4n=K(R> A‰=K(R>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>`[À=K(R>€4n=K(R=€4l¾MžÇ=ÀN³¾MžÇ? A‰?M*?(DÒ?M*=€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥?í>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2?,ô>à[Ã=¥®_>à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í     >PU2=¥®_>PU2?í>pbN=¥®_>pbN?ê:>pbN?í>ˆ7µ=åÈ—>ˆ7µ?ã¬>ˆ7µ?ê:>ˆ7µ?$ðÇ>˜>B=K(R>˜>B=¥®_>˜>B?ê:>˜>B?,ô>¨DÐ<•çÉ>¨DÐ=åÈ—>¨DÐ?í>¸K^=K(R>ÈQì=¥®_>ØXy=¥®_   = Aˆ<•çÉ= Aˆ>2þ‚=à[À>‰’ê=à[À?í>0H=K(R>0H>© >0H?ê:>0H?í>PU2=¥®_>pbN=K(R>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>¹¦“>ˆ7µ?,ô>˜>B?í>˜>B?$ðÇ>¨DÐ=åÈ—>¨DÐ?$ðÇ>ÈQì=K(R>ØXy=¥®_>ØXy=åÈ—>ØXy>¹¦“>ØXy?í>è_>É­!>è_?ê:>øe˜<•çÉ>øe˜>¹¦“>øe˜?í?6=K(R? 9Z=¥®_     =à[À=¥®_>:û?í>0H=¥®_>0H=åÈ—>0H?í>PU2?ê:>pbN=K(R>pbN=¥®_>pbN=åÈ—>pbN?í>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ?ê:>ˆ7µ?,ô>˜>B=K(R>˜>B=¥®_>˜>B>© >˜>B>¹¦“>˜>B?$ðÇ>¨DÓ=K(R>¨DÓ?$ðÇ>¸K^>© >¸K^>¹¦“>è_=¥®_>è_>™™x>è_>É­!>è_?í>øe•=åÈ—>øe•>‰’ê>øe•>Ù³¯>øe•?ê:?6=¥®_?6>™™x?6>É­!?6?í "  "!!  =€4p>S ž=€4p>¹¦“=ÀN§>s¹=ÀN§>¹¦“>4t>S ž>4t>Ù³¯>:ÿ=¥®_> A=¥®_>°H=åÈ—>°H>S ž>°H?$ðÇ>ÀN¨=K(R>ÀN¨=¥®_>ÀN¨? æó>ÀN¨?$ðÇ>ÀN¨?,ô>ÐU2<•çÉ>ÐU2=åÈ—>ÐU2>S ž>ÐU2? æó>ÐU2?í>à[Ã=K(R>à[Ã?í>ðbQ=¥®_?4o=¥®_?7¶>S ž?:û>2þ‚?:û>s¹     = Aˆ=¥®_=à[À>É­!=à[À?í=à[À?,ô>;=¥®_>;=åÈ—>;?$ðÇ>PU2=K(R>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN<•çÉ>ˆ7µ=K(R>ˆ7µ=¥®_>˜>B=K(R>¨DÐ>Ù³¯>¸K^>Ù³¯>ÈQì>éº=>ÈQì?í>ØXy=¥®_>ØXy>É­!>ØXy>ùÀÊ>ØXy?$ðÇ>è_=åÈ—>è_>Ù³¯>è_>éº=>è_?$ðÇ>øe˜=¥®_>øe˜>É­!>øe˜?,ô?6>Ù³¯? 9Z>Ù³¯    =€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>@N¥?í>`[À<•çÉ>`[À>¹¦“>€4n=K(R>€4n=¥®_>:û=K(R> A‰?$ðÇ>°H>É­!>°H?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÀN¥?,ô>ÐU2>Ù³¯>ÐU2?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>éº=>à[Ã?ê:>ðbN=åÈ—>ðbN>¹¦“>ðbN>Ù³¯>ðbN?í?4o=¥®_?4o>¹¦“?4o?í?7¶>É­!?:ý>É­!   "" ##$$!!   = Aˆ?í=à[À?$ðÇ>;?,ô>PU2?ê:>PU2?í>pbN=åÈ—>pbN>S ž>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ>ñg>ˆ7µ>s¹>ˆ7µ>™™x>˜>B=K(R>˜>B>2þ‚>˜>B>‰’ê>˜>B>© >˜>B?ê:>¨DÐ=¥®_>¨DÐ>¹¦“>¨DÐ>É­!>¸K^?í>ÈQì>éº=>ÈQì?$ðÇ>ØXy?í>è_?ã¬>è_?$ðÇ?6?í? 9Z?,ô   =€4}=¥®_>4n=¥®_>4n=åÈ—>4n>™™x>4n>É­!>4n?ê:> A=åÈ—> A>‰’ê> A>Ù³¯> A? æó>@N¥=K(R>@N¥=åÈ—>@N¥>™™x>@N¥>É­!>@N¥?ê:>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?í>ÀN¥?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>™™x>à[Ã>É­!>à[Ã?ê:>à[Ã?,ô>ðbN=åÈ—>ðbN>‰’ê>ðbN>Ù³¯>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o>É­!?4o?ê:?7¶?í?:ý?í  $$%%##" !"  !   =€4}>™™x=ÀN¥=¥®_=ÀN¥>™™x>4n>© >4n?í> A=¥®_> A=åÈ—> A>‰’ê> A>™™x> A?ê:>@N¥>s¹>@N¥>© >@N¥?í>`[À=K(R>`[À=¥®_>`[À=åÈ—>`[À>‰’ê>€4n<•çÉ>€4n>™™x>:û=K(R>:û=¥®_>:û>™™x> A‰=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2>© >ÐU2?,ô>à[Ã=¥®_>à[Ã>© >à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í   !! $$%%##"  ">4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À=K(R>`[À>É­!>€4n=K(R>€4n>É­!     >4n½Úîé>4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥½šÔµ>@N¥¼U;>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À¼U;>`[À=K(R>`[À>É­!>€4n>É­!      >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§? æó>4t? æó>4t?í> A‰?ã¬> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥?$ðÇ>`[À=K(R>€4q=K(R>€4q>© >€4q?,ô>:ÿ<•çÉ>:ÿ=¥®_>:ÿ=åÈ—>:ÿ>s¹>:ÿ>© > A=K(R> A>© > A?,ô>°H=K(R>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨?$ðÇ>ÐU2>Ù³¯>ÐU2>éº=>ÐU2?ê:>ÐU2?í>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã>éº=>à[Ã?ê:>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó  ""!!     =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %<•çÉ=€4l=¥®_=ÀN³=K(R=ÀN³=¥®_>4n=åÈ—> A‰=åÈ—> A‰>éº=> A‰?ê:>@N«=K(R>@N«>ùÀÊ>`[À<•çÉ>`[À=¥®_>`[À=åÈ—>`[À>‰’ê>`[À?$ðÇ>€4n=K(R>€4n>ùÀÊ>€4n?ã¬>:û=¥®_>:û>Ù³¯>:û>éº=>:û>ùÀÊ>:û?ã¬>:û?$ðÇ>:û?,ô> A>ùÀÊ> A?í> A?$ðÇ>°H? æó>°H?í>°H?,ô>ÀN¥?$ðÇ>ðbQ>‰’ê?7¶=åÈ—?:ý=K(R?:ý=åÈ—?>D<•çÉ?>D=K(R?>D>ñg? A‰<•çÉ? A‰=¥®_? A‰=åÈ—?0H=åÈ—&&))*##%%((#!!""$$''*      = AŒ>™™x= AŒ>¹¦“= AŒ?í=à[À>© =à[À>¹¦“=à[À>É­!>;<•çÉ>;?$ðÇ>;?,ô>0H>ñg>0H>© >0H>É­!>0H>Ù³¯>0H?$ðÇ>PU2=K(R>PU2>2þ‚>PU2>S ž>PU2>¹¦“>PU2>éº=>PU2>ùÀÊ>PU2?í>pbU=¥®_>pbU>s¹>pbU?ã¬>pbU?,ô>ˆ7µ=K(R>ˆ7µ?$ðÇ>˜>B=¥®_>˜>B?í>˜>B?$ðÇ>¨DÐ=åÈ—>¨DÐ>S ž>¨DÐ>ùÀÊ>¸Ka>s¹>¸Ka>‰’ê>¸Ka?ã¬>¸Ka? æó>¸Ka?,ô>ÈQï>™™x>ÈQï?ê:>ØX}=K(R>è_ =¥®_>è_ =åÈ—>øe˜<•çÉ>øe˜=åÈ—>øe˜>S ž>øe˜>™™x>øe˜>É­!?6=K(R?6?$ðÇ? 9Z=¥®_? 9Z>Ù³¯?<¡>É­!?<¡?í?<¡?$ðÇ?<¡?,ô??ç=åÈ—??ç>S ž??ç>™™x??ç>© ??ç>¹¦“??ç>éº=??ç>ùÀÊ??ç?ê:?$C.>ñg?$C.>™™x?$C.>¹¦“?$C.?ã¬?$C.?ê:?$C.?$ðÇ?,Ft=åÈ—?,Ft>™™x?,Ft?ã¬?,Ft?ê:% %   '$$ #"'&&!!'77EEIIHH==/6DDC155??>>33BBGGF<AA@344;;8**2))0((++2288F/,.:-9= AŒ>‰’ê= AŒ>É­!=à[À>2þ‚=à[À>‰’ê=à[À>Ù³¯=à[À>ùÀÊ>;=åÈ—>;>™™x>;>Ù³¯>;?ã¬>;? æó>0H>ñg>0H>S ž>0H?ã¬>PU2?ê:>PU2?í>pbU=K(R>ˆ7µ=¥®_>ˆ7µ=åÈ—>ˆ7µ?$ðÇ>¨DÐ<•çÉ>¨DÐ>2þ‚>¨DÐ? æó>¸Ka=K(R>¸Ka=¥®_>¸Ka>S ž>¸Ka>s¹>¸Ka? æó>ÈQï>‰’ê>ÈQï?ê:>ØX}<•çÉ>ØX}?í>è_ =K(R>è_ =¥®_>è_ ?$ðÇ>øe˜?ê:>øe˜?,ô?6=K(R?6?í? 9Z=¥®_? 9Z=åÈ—? 9Z?ê:? 9Z?$ðÇ?<¡=¥®_?<¡?í??ç>ñg??ç?í??ç?$ðÇ?$C.>ñg?$C.?,ô?,Ft>S ž %%++002   '  !!((--2$$**//1"&&,##))..1)(=ÀN¥<•çÉ=ÀN¥?,ô>4t>™™x>4t>¹¦“>4t?$ðÇ> A‰=K(R> A‰>© > A‰>¹¦“> A‰>É­!> A‰?$ðÇ>@N¥=¥®_>@N¥?í>`[Ç=K(R>`[Ç>2þ‚>`[Ç>© >`[Ç>É­!>`[Ç>Ù³¯>€4n=¥®_>€4n>S ž>€4n>s¹>€4n>¹¦“>€4n>éº=>€4n>ùÀÊ>:û=åÈ—>:û>‰’ê>:û?ã¬>ÀN¥=K(R>ÀN¥=åÈ—>ÀN¥>‰’ê>ÀN¥>éº=>ÀN¥?í>ÐU2=¥®_>ÐU2=åÈ—>à[Ã<•çÉ>à[Ã>™™x>à[Ã>Ù³¯>ðbQ=K(R?4o=¥®_?4o>™™x?4o>Ù³¯?7¶?í?7¶?$ðÇ?7¶?,ô?:ý=åÈ—?:ý>‰’ê?:ý>éº=?:ý?ê:?>D>ñg?>D?ê:?>D?$ðÇ? A‹=åÈ—? A‹?ê:**11332 ))00/ ((..+   %$ !!%%++2##''-""&&,=€4l>™™x=€4l>¹¦“=€4l?í=ÀN³>© =ÀN³>¹¦“=ÀN³>É­!>4n<•çÉ>4n?$ðÇ>4n?,ô> A‰>ñg> A‰>© > A‰>É­!> A‰>Ù³¯> A‰?$ðÇ>@N«=K(R>@N«>2þ‚>@N«>S ž>@N«>¹¦“>@N«>éº=>@N«>ùÀÊ>@N«?í>@N«?,ô>`[À=¥®_>`[À>s¹>`[À?ã¬>`[À?$ðÇ>€4n=K(R>€4n?í>€4n?$ðÇ>:û=¥®_> A=åÈ—> A>S ž> A>éº=> A?,ô>°H=åÈ—>°H>™™x>°H? æó>ÀN¥>© >ÀN¥>¹¦“>ÀN¥?ê:>ÀN¥?í>ÐU2>¹¦“>ÐU2>É­!>ÐU2?í>ÐU2?$ðÇ>à[Ã>© >à[Ã?í>ðbQ=K(R>ðbQ>™™x>ðbQ>¹¦“>ðbQ>É­!>ðbQ?$ðÇ>ðbQ?,ô?4o=¥®_?4o=åÈ—?4o>© ?4o?í?7¶>¹¦“?7¶?$ðÇ?7¶?,ô?:ý<•çÉ?:ý?ê:?>D=K(R?>D?í? A‰=¥®_? A‰?$ðÇ! !   $$((,,44;;A+33::?$''..88==A##&&**229)117#%%--009""66@55>//<<@ <€4n<•çÉ= Aˆ=¥®_=à[Î=K(R=à[Î=¥®_=à[Î?í>:û=åÈ—>:û>™™x>:û>¹¦“>0H=K(R>0H>© >0H>¹¦“>0H>É­!>0H?$ðÇ>0H?,ô>PU9=¥®_>PU9=åÈ—>PU9?$ðÇ>pbN<•çÉ>pbN>2þ‚>pbN>© >pbN>É­!>pbN>Ù³¯>pbN?í>ˆ7µ=K(R>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>éº=>ˆ7µ>ùÀÊ>ˆ7µ?,ô>˜>B<•çÉ>˜>B=K(R>˜>B>‰’ê>˜>B?ã¬>˜>B?$ðÇ>¨DÓ=K(R>¨DÓ?í>¨DÓ?$ðÇ>¸Ka=K(R>ÈQì=¥®_>ÈQì? æó>ÈQì?,ô>ØX}=¥®_>ØX}=åÈ—>ØX}>¹¦“>ØX}? æó>è_ >ñg>è_ >© >è_ >É­!>è_ ?ê:>øe•?í?6?$ðÇ? 9Z>ñg? 9Z>© ? 9Z>¹¦“? 9Z>É­!? 9Z?ê:? 9Z?,ô?<¡?í??ç?ê:??ç?$ðÇ?$C-?í?,Fu?í?,Fu?$ðÇ?4I¼?,ô %%)" $$)!   ! (''&&##-+,610075//..**(1199<<??@3::=288;;>>@84=ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?ê:>`[À?í>:û=K(R>:û?$ðÇ>°H>ñg>°H? æó>ÀN¥<•çÉ>ÀN¥>2þ‚>ÀN¥>S ž>ÀN¥? æó>ÐU2>s¹>ÐU2?ê:>à[À?í>ðbN?$ðÇ?4n<•çÉ?4n>2þ‚?4n>‰’ê?4n>É­!?4n?ê:?4n?,ô?7µ?í?:û=K(R?:û>¹¦“?:û>É­!?:û?ê:?:û?$ðÇ?>D=K(R?>D=¥®_?>D>© ?>D?í? A‹=åÈ—? A‹>ñg? A‹>2þ‚? A‹>‰’ê? A‹>© ? A‹>¹¦“? A‹?í? A‹?$ðÇ?(DÒ=åÈ—?(DÒ>ñg?(DÒ>‰’ê?(DÒ>© ?(DÒ?,ô?0H>2þ‚?0H>‰’ê **66;;<<9933''!   .77882%%++//11,,&&!##))55:$$-""((44:4!! 10= AŒ>™™x= AŒ>¹¦“= AŒ?í=à[À>© =à[À>¹¦“=à[À>É­!>;<•çÉ>;?$ðÇ>;?,ô>0H>ñg>0H>© >0H>É­!>0H>Ù³¯>0H?$ðÇ>PU2=K(R>PU2>2þ‚>PU2>S ž>PU2>¹¦“>PU2>éº=>PU2>ùÀÊ>PU2?í>pbU=¥®_>pbU>s¹>pbU?ã¬>pbU?,ô>ˆ7µ=K(R>ˆ7µ?$ðÇ>˜>B=¥®_>˜>B?í>˜>B?$ðÇ>¨DÐ=åÈ—>¨DÐ>S ž>¨DÐ>ùÀÊ>¸Ka=K(R>¸Ka>s¹>¸Ka>‰’ê>¸Ka?ã¬>¸Ka? æó>¸Ka?,ô>ÈQï=¥®_>ÈQï>™™x>ÈQï?ê:>ØX}<•çÉ>ØX}=åÈ—>è_ =K(R>è_ ?$ðÇ>øe˜=¥®_>øe˜>S ž>øe˜>™™x>øe˜>É­!?6?$ðÇ?6?,ô? 9Z>Ù³¯? 9Z?$ðÇ?<¡<•çÉ?<¡>Ù³¯?<¡>éº=?<¡?ê:?<¡?$ðÇ?<¡?,ô??ç=åÈ—??ç>S ž??ç>™™x??ç>¹¦“??ç>Ù³¯??ç>ùÀÊ??ç?í?$C.=åÈ—?$C.>S ž?$C.>¹¦“?$C.>éº=?$C.?$ðÇ?,Ft>s¹?,Ft>¹¦“& &   ++.'',!!**.)%% $#)(("")--33;;G5::B-2299G144AAFFIIHHCC68@@EEDD<477??==61.0>/==@NŸ<•çÉ=à[À=K(R=à[À=¥®_>:û=¥®_>:û?í>0H=åÈ—>PU2=K(R>PU2>™™x>PU2>¹¦“>PU2?$ðÇ>PU2?,ô>pbN=¥®_>pbN=åÈ—>pbN>© >pbN>¹¦“>pbN>É­!>pbN?$ðÇ>ˆ7µ<•çÉ>˜>B=K(R>˜>B>2þ‚>˜>B>© >˜>B>É­!>˜>B>Ù³¯>˜>B?í>˜>B?,ô>¨DÓ=K(R>¨DÓ>S ž>¨DÓ>s¹>¨DÓ>¹¦“>¨DÓ>éº=>¨DÓ>ùÀÊ>¸K^<•çÉ>¸K^=K(R>¸K^>‰’ê>¸K^?ã¬>¸K^?$ðÇ>ÈQì?í>ÈQì?$ðÇ>ØX}=K(R>è_=åÈ—>è_>éº=>è_?,ô>øe•=åÈ—>øe•>ñg>øe•?ã¬>øe•? æó?6>2þ‚?6? æó? 9Z?í %%)# $$)" "!!0--((''&& ,+ 0//..**&&= A˜=åÈ—= A˜>2þ‚=à[À>ñg=à[À>S ž>:û=K(R>:û>ñg>:û>S ž>:û?í>0H>2þ‚>PU2>™™x>PU2>¹¦“>PU2?$ðÇ>PU2?,ô>pbN<•çÉ>pbN>© >pbN>¹¦“>pbN>É­!>pbN?$ðÇ>˜>B>2þ‚>˜>B>© >˜>B>É­!>˜>B>Ù³¯>˜>B?í>˜>B?,ô>¨DÓ<•çÉ>¨DÓ>S ž>¨DÓ>s¹>¨DÓ>¹¦“>¨DÓ>éº=>¨DÓ>ùÀÊ>¸K^>‰’ê>¸K^?ã¬>¸K^?$ðÇ>ÈQì?í>ÈQì?$ðÇ>ØX}=K(R>è_=åÈ—>è_>éº=>è_?,ô>øe•=åÈ—>øe•>ñg>øe•?ã¬>øe•? æó?6>2þ‚?6? æó? 9Z?í ""&  !!& -**%%$$#)(-,,++''## =€4p>™™x=€4p>¹¦“=€4p?í=ÀN¥>© =ÀN¥>¹¦“=ÀN¥>É­!>4t<•çÉ>4t?$ðÇ>4t?,ô> A‰>ñg> A‰>© > A‰>É­!> A‰>Ù³¯> A‰?$ðÇ>@N¥=K(R>@N¥>2þ‚>@N¥>S ž>@N¥>¹¦“>@N¥>éº=>@N¥>ùÀÊ>@N¥?í>`[Ç=¥®_>`[Ç>s¹>`[Ç?ã¬>`[Ç?,ô>€4n=K(R>€4n=¥®_>€4n?$ðÇ>:û?í>:û?$ðÇ> A‰=åÈ—> A‰>S ž> A‰>ùÀÊ>°H=K(R>°H>s¹>°H>‰’ê>°H?ã¬>°H? æó>°H?,ô>ÀN¥=¥®_>ÀN¥>™™x>ÀN¥?ê:>ÐU2<•çÉ>ÐU2=åÈ—>à[Ã=K(R>à[Ã?$ðÇ>ðbQ=¥®_>ðbQ>S ž>ðbQ>É­!?4o?$ðÇ?4o?,ô?7¶>‰’ê?7¶>éº=?7¶?$ðÇ?:ý>s¹?:ý>ùÀÊ?:ý?ê:?:ý?$ðÇ?:ý?,ô?>D=K(R?>D>2þ‚?>D>s¹?>D>© ?>D>Ù³¯?>D>éº=?>D?í? A‹<•çÉ? A‹=K(R? A‹=åÈ—? A‹?$ðÇ?(DÐ<•çÉ?(DÐ=K(R?(DÐ>Ù³¯?0H=K(R& &   ++.'',!!**.)%% $#)(("")--22::E599A-1188E077@@H4??HH>>33/3==DDGGI<C366;;BBFFI0.=€4l>™™x=€4l>¹¦“=€4l?í=ÀN³>© =ÀN³>¹¦“=ÀN³>É­!>4n<•çÉ>4n?$ðÇ>4n?,ô> A‰>ñg> A‰>© > A‰>É­!> A‰>Ù³¯> A‰?$ðÇ>@N«=K(R>@N«>2þ‚>@N«>S ž>@N«>¹¦“>@N«>éº=>@N«>ùÀÊ>@N«?í>`[À=¥®_>`[À>s¹>`[À?ã¬>`[À?,ô>€4n=K(R>€4n?$ðÇ>:û=¥®_>:û?í>:û?$ðÇ> A>S ž> A>ùÀÊ>°H=åÈ—>°H>s¹>°H>‰’ê>°H?ã¬>°H? æó>°H?,ô>ÀN¥>™™x>ÀN¥?ê:>à[Ã?$ðÇ>ðbQ=K(R?4o=¥®_?4o=åÈ—?4o?$ðÇ?4o?,ô?7¶?$ðÇ?:ý<•çÉ?:ý?ê:?:ý?$ðÇ?:ý?,ô?>D=K(R?>D?í? A‰=¥®_? A‰?$ðÇ% %    ++5**3))//5'$$#"'&&!!'((--226.114(,,006,+=@N¯<•çÉ=à[À=K(R=à[À=¥®_=à[À>™™x=à[À>¹¦“>:û=¥®_>:û>© >:û>¹¦“>:û>É­!>0H=åÈ—>PU9=K(R>PU9>S ž>PU9>© >PU9>É­!>PU9>éº=>pbN=¥®_>pbN=åÈ—>pbN>s¹>pbN>‰’ê>pbN>¹¦“>pbN>ùÀÊ>pbN?ã¬>ˆ7µ<•çÉ>ˆ7µ>™™x>ˆ7µ? æó>˜>F<•çÉ>˜>F=K(R>˜>F=¥®_>¨DÐ=K(R>¨DÐ=¥®_>¨DÐ?í>¸K^=åÈ—>¸K^>© >¸K^>É­!>¸K^?í>ÈQì>¹¦“>ÈQì?$ðÇ>ÈQì?,ô>ØX}=¥®_>è_ =¥®_>è_ =åÈ—>è_ >© >è_ >É­!>è_ ?ã¬>øe˜<•çÉ>øe˜=K(R>øe˜=åÈ—>øe˜>¹¦“>øe˜? æó?6=¥®_?6>ñg?6? æó? 9Z=¥®_?<¡=¥®_?<¡?í??ç=åÈ—??ç>© ??ç>É­!??ç?í?$C.>¹¦“?$C.?$ðÇ?$C.?,ô?4I¼=¥®_?4I¼>© ?4I¼>É­!?4I¼?ã¬?¹¦“?ñg?DPJ? æó?LS‘=K(R?LS‘=¥®_?TVÖ=¥®_     %%3322445$00..''--11.#/""++**! ))((&&,,5573==GGFFIIJ<DDBBH;C6::AA@@98??>>EEJ":7=@N§<•çÉ=@N§?ê:= AŒ>™™x= AŒ>¹¦“=à[À=¥®_=à[À>© =à[À>¹¦“=à[À>É­!=à[À?$ðÇ>;=K(R>;=¥®_>0H=åÈ—>0H>s¹>0H>© >0H>¹¦“>0H>É­!>0H?$ðÇ>0H?,ô>pbU=K(R>pbU=¥®_>pbU>‰’ê>pbU?í>pbU?$ðÇ>pbU?,ô>ˆ7µ<•çÉ>ˆ7µ=åÈ—>˜>B=K(R>˜>B?ã¬>˜>B?ê:>˜>B?$ðÇ>¨DÐ=¥®_>¨DÐ?ã¬>¸Ka>‰’ê>¸Ka? æó>ÈQï>ùÀÊ>ØX}>s¹>ØX}>éº=>è_ >2þ‚>øe˜>Ù³¯?6=¥®_?6>ñg?6>S ž?6?í? 9Z=K(R? 9Z>Ù³¯? 9Z?$ðÇ?<¡=åÈ—?<¡?ê:?<¡?,ô??ç<•çÉ??ç=K(R??ç=¥®_??ç>éº=??ç?ê:??ç?í?$C.?ê:?$C.?$ðÇ?,Ft?í?4I¼?í?4I¼?$ðÇ?™™x=ÀN¥>Ù³¯>4n>S ž>4n>‰’ê>4n>éº=>4n?ã¬> A>ñg> A>2þ‚> A>‰’ê> A>éº=> A? æó> A?ê:>@N¥>2þ‚>@N¥? æó>`[À=¥®_>`[À=åÈ—>`[À?í>`[À?$ðÇ>:û=K(R>:û?,ô> A‰>ñg> A‰? æó>°H>2þ‚>°H>S ž>°H? æó>ÀN¥<•çÉ>ÀN¥>s¹>ÀN¥? æó>ÐU2?ê:>à[À<•çÉ?4n=K(R?4n>‰’ê?4n>éº=?4n?$ðÇ?7µ=K(R?7µ?,ô?:û>™™x?:û>Ù³¯?:û?í?>D=¥®_?>D=åÈ—?>D>™™x?>D>Ù³¯?>D?í?>D?$ðÇ? A‹>2þ‚? A‹?ã¬? A‹?ê:?(DÒ>ñg?(DÒ>2þ‚?(DÒ>‰’ê?(DÒ>éº=?(DÒ?ê:?0H>S ž?0H>‰’ê?0H>éº=?0H?ã¬?8K_>™™x?8K_>Ù³¯ ""''005599::8844,,##!!   16677//+"((--2233..&&!! %%**3$$))2=ÀN³<•çÉ=ÀN³>™™x=ÀN³>¹¦“>4n>© >4n>¹¦“>4n>É­!>4n?,ô> A‰?$ðÇ>@N«¾MžÇ>@N«=K(R>@N«=¥®_>@N«>© >@N«>É­!>@N«?ê:>@N«?í>@N«?$ðÇ>`[À¾ „>`[À>¹¦“>`[À? æó>`[À?í>€4n¾ „>€4n?ã¬>€4n? æó>°H½Úîé>°H=K(R>°H=åÈ—>°H>‰’ê>°H>éº=>°H?ê:>ÀN¥=¥®_>ÐU2=K(R>ÐU2>™™x>ÐU2>Ù³¯>ÐU2?í>à[Ã=¥®_>à[Ã=åÈ—>à[Ã?í>ðbQ<•çÉ>ðbQ>™™x>ðbQ>Ù³¯>ðbQ?$ðÇ>ðbQ?,ô?4o=K(R?7¶=¥®_?7¶>‰’ê?7¶>éº=?7¶?ã¬?:ý=åÈ—?:ý? æó?>D=åÈ—?>D? æó  ))221(00/!$$..+##+""*%%++1 ''-&&,=ÀN¥>™™x=ÀN¥>Ù³¯>4n>S ž>4n>‰’ê>4n>éº=>4n?ã¬> A>ñg> A>2þ‚> A>‰’ê> A>éº=> A? æó> A?ê:>@N¥>2þ‚>@N¥? æó>`[À=¥®_>`[À=åÈ—>`[À?í>`[À?$ðÇ>:û=K(R>:û?,ô> A‰>ñg> A‰? æó>°H<•çÉ>°H>2þ‚>°H>S ž>°H? æó>ÀN¥=K(R>ÀN¥>s¹>ÀN¥? æó>ÐU2=K(R>ÐU2?ê:>à[À<•çÉ>ðbN¼U;>ðbN<•çÉ?4n=K(R?4n>‰’ê?4n>éº=?4n?$ðÇ?7µ¾-‘¬?7µ½Úîé?7µ=K(R?7µ?,ô?:û>™™x?:û>Ù³¯?:û?í?>D¾MžÇ?>D¾-‘¬?>D¾ „?>D=¥®_?>D=åÈ—?>D>™™x?>D>Ù³¯?>D?í?>D?$ðÇ? A‹¾-‘¬? A‹>2þ‚? A‹?ã¬? A‹?ê:?(DÒ¾MžÇ?(DÒ¾-‘¬?(DÒ>ñg?(DÒ>2þ‚?(DÒ>‰’ê?(DÒ>éº=?(DÒ?ê:?0H¾-‘¬?0H>S ž?0H>‰’ê?0H>éº=?0H?ã¬?8K_>™™x?8K_>Ù³¯ !!((00<<BBFFGGEE@@55))%%   =CCDD994(1177>>??88,,%%"$++33?#**22>!!//;;A ''..6&&--::A=€4p>™™x=€4p>¹¦“=€4p?í=ÀN¥>© =ÀN¥>¹¦“=ÀN¥>É­!>4t<•çÉ>4t?$ðÇ>4t?,ô> A‰>ñg> A‰>© > A‰>É­!> A‰>Ù³¯> A‰?$ðÇ>@N¥=K(R>@N¥>2þ‚>@N¥>S ž>@N¥>¹¦“>@N¥>éº=>@N¥>ùÀÊ>@N¥?í>`[Ç=¥®_>`[Ç>s¹>`[Ç?ã¬>`[Ç?,ô>€4n=K(R>€4n=¥®_>€4n?$ðÇ>:û?í>:û?$ðÇ> A‰=åÈ—> A‰>S ž> A‰>ùÀÊ>°H=K(R>°H>s¹>°H>‰’ê>°H?ã¬>°H? æó>°H?,ô>ÀN¥=¥®_>ÀN¥=åÈ—>ÀN¥>™™x>ÀN¥?ê:>ÐU2<•çÉ>à[Ã=K(R>à[Ã>© >ðbQ=¥®_>ðbQ?$ðÇ?4o>‰’ê?4o>™™x?7¶>s¹?7¶>‰’ê?7¶>É­!?7¶?í?7¶?$ðÇ?7¶?,ô?:ý=¥®_?:ý>É­!?:ý>Ù³¯?:ý>éº=?:ý? æó?:ý?$ðÇ?>D=åÈ—?>D>Ù³¯?>D>éº=?>D?ê:?>D?$ðÇ? A‹<•çÉ? A‹=åÈ—? A‹>ùÀÊ? A‹?ê:?(DÐ=K(R?(DÐ=¥®_?0H=¥®_& &   ((.'',!!++.*%% $#*))""*//77BBFFEE??99--)6==AA@@:/55<<;;44--1133DDHHI2>>G-0088CCI=€4l<•çÉ=€4l>¹¦“=€4l>É­!=ÀN³>2þ‚=ÀN³>S ž=ÀN³>™™x=ÀN³>© =ÀN³>¹¦“=ÀN³? æó>4n=K(R>4n>2þ‚>4n>ùÀÊ>4n?ã¬>4n? æó>4n?í> A‰=¥®_> A‰>‰’ê> A‰>™™x> A‰>© > A‰>éº=> A‰>ùÀÊ> A‰?ã¬> A‰?$ðÇ>@N«=K(R>@N«>S ž>`[À=¥®_>€4n>‰’ê>€4n>Ù³¯>€4n>éº=>€4n>ùÀÊ>€4n?,ô>:û=åÈ—>:û>© >°H=K(R>°H=¥®_>°H>Ù³¯>°H?$ðÇ>ÀN¥=åÈ—>ÀN¥>‰’ê>ÀN¥>ùÀÊ>ÀN¥?,ô>ÐU2>™™x>ÐU2?í>ÐU2?$ðÇ>à[Ã<•çÉ>à[Ã=K(R>à[Ã>S ž>à[Ã>s¹>à[Ã>‰’ê>à[Ã>© >à[Ã?ê:>ðbQ=¥®_>ðbQ>‰’ê>ðbQ>™™x>ðbQ?í?4o>Ù³¯?4o?$ðÇ?7¶>éº=?:ý>S ž?:ý>É­!?:ý>ùÀÊ?>D>‰’ê?>D>™™x?>D>¹¦“?>D>Ù³¯? A‰>© ? A‰>É­!? A‰>éº=?(DÒ>© ?(DÒ>É­!2**$$6+8(( 77;;??>>: 99@@BBAA= <<CCEEDD::,115544.))0&&//.%%3 ""-!!,822'#   = AŒ>‰’ê= AŒ>É­!= AŒ?ê:=à[À>2þ‚=à[À>‰’ê=à[À>© =à[À>éº==à[À>ùÀÊ=à[À?í=à[À?$ðÇ>;>2þ‚>;>s¹>;? æó>0H=¥®_>0H?$ðÇ>0H?,ô>PU2=åÈ—>PU2>ñg>pbU=K(R>ˆ7µ=¥®_>ˆ7µ=åÈ—>ˆ7µ?$ðÇ>˜>B?,ô>¨DÐ<•çÉ>¨DÐ>2þ‚>¨DÐ?ã¬>¨DÐ?$ðÇ>¸Ka=K(R>¸Ka=¥®_>¸Ka>S ž>¸Ka>s¹>¸Ka?ã¬>ÈQï>‰’ê>ÈQï? æó>ØX}<•çÉ>ØX}?ê:>è_ =K(R>è_ =¥®_>è_ ?ê:>è_ ?í>øe˜?$ðÇ?6=K(R? 9Z=¥®_? 9Z=åÈ—? 9Z?ê:?<¡=¥®_?<¡?í??ç>ñg??ç?í??ç?$ðÇ?$C.>ñg?,Ft>S ž?,Ft?,ô  ""))--223 $$*  %%++//3 ((114''.&&,,004#!!! ,+=€4p?í=ÀN¥>‰’ê=ÀN¥>É­!>4t>2þ‚>4t>‰’ê>4t>© >4t>Ù³¯>4t>ùÀÊ>4t?$ðÇ>4t?,ô> A‰=åÈ—> A‰>2þ‚> A‰>s¹> A‰? æó> A‰?$ðÇ>@N¥>2þ‚>@N¥?,ô>`[Ç=K(R>`[Ç?í>€4n=¥®_>€4n=åÈ—>€4n?$ðÇ>:û?í>:û?$ðÇ> A‰<•çÉ> A‰>2þ‚> A‰>ùÀÊ>°H=K(R>°H=¥®_>°H>S ž>°H>s¹>°H?ã¬>°H? æó>°H?,ô>ÀN¥>‰’ê>ÀN¥? æó>ÐU2<•çÉ>à[Ã=K(R>ðbQ=¥®_>ðbQ>™™x>ðbQ>Ù³¯>ðbQ?ê:?4o=K(R?7¶?í?:ý=¥®_?:ý=åÈ—?:ý>™™x?:ý>Ù³¯?:ý?ê:?:ý?í?>D=åÈ—?>D?ê:?>D?$ðÇ?>D?,ô? A‹<•çÉ? A‹>ñg? A‹?ê:? A‹?í? A‹?$ðÇ?(DÐ=K(R?(DÐ=¥®_?0H=¥®_?0H?í !!  $$**,,66= %  &&-) #"")++55::>>8877<<=39944113322;+00-)&(/'.=€4l>™™x=€4l>¹¦“=ÀN³=¥®_=ÀN³>© =ÀN³>¹¦“=ÀN³>É­!=ÀN³?,ô>4n?$ðÇ> A‰=åÈ—> A‰>© > A‰>É­!> A‰?ê:> A‰?í> A‰?$ðÇ>@N«=¥®_>@N«=åÈ—>@N«>¹¦“>@N«? æó>@N«?í>`[À=¥®_>`[À=åÈ—>`[À? æó>:û=K(R> A=¥®_>°H<•çÉ>°H=åÈ—>°H>‰’ê>°H>éº=>°H? æó>ÀN¥=K(R>ÐU2>™™x>ÐU2>Ù³¯>à[Ã=¥®_>à[Ã?ê:>ðbQ>™™x>ðbQ>Ù³¯?4o?í?7¶=åÈ—?7¶>‰’ê?7¶>éº=?7¶?ê:?7¶?í?:ý>ñg?:ý?ê:?:ý?$ðÇ?:ý?,ô?>D=åÈ—?>D?ê:?>D?í?>D?$ðÇ?(DÒ?í      %%.!!$$--1122//.+00,,))++*$((%##'""&=ÀN¥>™™x=ÀN¥>¹¦“>4n=¥®_>4n>© >4n>¹¦“>4n>É­!>4n?,ô> A‰?$ðÇ>@N«=åÈ—>@N«>© >@N«>É­!>@N«?ê:>@N«?í>@N«?$ðÇ>`[À=¥®_>`[À=åÈ—>`[À>¹¦“>`[À? æó>`[À?í>€4n=¥®_>€4n=åÈ—>€4n? æó> A‰=K(R> A‰=¥®_>°H<•çÉ>°H=åÈ—>°H>™™x>°H>Ù³¯>°H?í>ÀN¥=K(R>ÐU2=¥®_>ÐU2?í>à[Ã=åÈ—>à[Ã>™™x>à[Ã>Ù³¯>à[Ã?ê:>à[Ã?$ðÇ>à[Ã?,ô>ðbN=åÈ—>ðbN?í?4o=åÈ—?4o?í?:û=¥®_?>B<•çÉ?>B=¥®_?>B=åÈ—?>B>™™x?>B>Ù³¯?>B?í? A‹=K(R?(DÒ=¥®_?(DÒ?í?0H=åÈ—?0H>™™x?0H>Ù³¯?0H?ê:?0H?$ðÇ?0H?,ô?8K^=åÈ—?8K^?í?@N¦=åÈ—?@N¦?í    ((**++22<%%))((--2$''&## ,1099==<8;;:033774420-"!/6.5=4p<•çÉ=4p?ê:=€4l=K(R=€4l=¥®_=ÀN³=¥®_=ÀN³?$ðÇ>4n=K(R>4n=åÈ—> A‰=¥®_> A‰>¹¦“> A‰?$ðÇ> A‰?,ô>@N«<•çÉ>@N«=K(R>@N«=åÈ—>@N«?í>@N«?$ðÇ>`[À=¥®_>`[À?í>`[À?,ô>€4n?$ðÇ>:û>¹¦“> A>™™x>ÀN¥>¹¦“>ÀN¥>É­!>à[Ã=K(R>ðbQ<•çÉ>ðbQ=¥®_>ðbQ?í?4o=K(R?4o=¥®_?4o?ê:?4o?$ðÇ?4o?,ô?7¶<•çÉ?7¶=K(R?7¶>¹¦“?7¶?í?:ý?ê:?:ý?$ðÇ?>D=K(R?>D?í? A‰?í? A‰?$ðÇ?(DÒ=åÈ—?(DÒ?,ô ##( ""((,!''++- %%)&&**-  ! $=€4l>™™x=€4l>¹¦“=ÀN³=¥®_=ÀN³>© =ÀN³>¹¦“=ÀN³>É­!=ÀN³?,ô>4n?$ðÇ> A‰¾ „> A‰=åÈ—> A‰>© > A‰>É­!> A‰?ê:> A‰?í> A‰?$ðÇ>@N«=¥®_>@N«=åÈ—>@N«>¹¦“>@N«? æó>@N«?í>`[À=¥®_>`[À=åÈ—>`[À? æó>:û½Úîé>:û=K(R> A¾ „> A=¥®_>°H<•çÉ>°H=åÈ—>°H>‰’ê>°H>éº=>°H? æó>ÀN¥¾ „>ÀN¥=K(R>ÐU2>™™x>ÐU2>Ù³¯>à[þ-‘¬>à[Ã=¥®_>à[Ã?ê:>ðbQ¾ „>ðbQ½Úîé>ðbQ>™™x>ðbQ>Ù³¯?4o¾MžÇ?4o?í?7¶¾-‘¬?7¶=åÈ—?7¶>‰’ê?7¶>éº=?7¶?ê:?7¶?í?:ý¾ „?:ý=¥®_?:ý?ê:?:ý?$ðÇ?:ý?,ô?>D½šÔµ?>D<•çÉ?>D?ê:?>D?í?>D?$ðÇ?(DÒ?í   !%%%.&&,,77<<==::8833++$$5;;6622554,11..9-'' 3((##**0""))/=€4}<•çÉ=€4}?í=ÀN¥?$ðÇ>4n=K(R>4n?,ô> A=K(R> A=åÈ—> A>ñg> A>¹¦“>@N¥=¥®_>@N¥>2þ‚>@N¥?ê:>`[À=K(R>`[À>‰’ê>`[À?í>`[À?$ðÇ>:û=¥®_>:û>¹¦“> A‰=åÈ—> A‰>™™x> A‰>É­!> A‰?ê:>°H?í>ÀN¥>¹¦“>ÐU2=K(R>ÐU2=¥®_>ÐU2>Ù³¯>ÐU2?$ðÇ>à[Ã=åÈ—>à[Ã?ã¬>à[Ã?í>ðbN? æó>ðbN?ê:>ðbN?$ðÇ?4o<•çÉ?4o>¹¦“?4o?$ðÇ?7¶=K(R?:ý=¥®_?:ý?,ô$   ''! $ &% ""&#=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>;?ã¬>;?ê:>0H>éº=>0H>ùÀÊ>0H? æó>0H?ê:>0H?$ðÇ>PU9?ã¬>pbN?ã¬>pbN?,ô = A—=åÈ—= A—>2þ‚= A—>É­!=à[À=K(R=à[À=åÈ—=à[À>2þ‚=à[À>s¹=à[À>¹¦“=à[À>É­!>:û=¥®_>:û=åÈ—>:û>Ù³¯>:û>éº=>0H<•çÉ>0H>™™x>0H>¹¦“>0H>Ù³¯>PU9=K(R>PU9=¥®_>PU9>É­!>pbN=¥®_>pbN>s¹>pbN>É­!>ˆ7µ>É­!>˜>B>É­!>¨DÓ=¥®_>¨DÓ=åÈ—>¨DÓ>¹¦“>¨DÓ>Ù³¯>¸Ka=¥®_>¸Ka>Ù³¯>¸Ka>éº=>ÈQì<•çÉ>ÈQì=K(R>ÈQì=åÈ—>ÈQì>¹¦“>ÈQì>É­!>ØX}=¥®_>ØX}>É­!>è_ =¥®_   &&##""%%' $$!  '=€4p=¥®_=ÀN§?í>4t=¥®_>4t=åÈ—>4t? æó>4t?í> A‰=åÈ—> A‰? æó> A‰?$ðÇ>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>@N¥?,ô>`[À<•çÉ>€4q=K(R>€4q=¥®_>:ÿ=K(R>:ÿ>É­!> A>É­!>°H>Ù³¯>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2=åÈ—>ÐU2>É­!>ÐU2>Ù³¯>à[Ã=¥®_>à[Ã>¹¦“>ðbQ>É­!?4o>É­!   =4p=¥®_=€4z=¥®_=ÀN¥=åÈ—=ÀN¥>É­!>4n=K(R>4n=¥®_>4n>É­!> A‰<•çÉ> A‰=åÈ—> A‰>É­!>@N¥=K(R>`[À=¥®_>`[À>Ù³¯>€4n=¥®_>€4n>Ù³¯>:û>¹¦“>:û>É­!>:û>éº=> A>Ù³¯>°H>¹¦“>°H>É­!>ÀN¥>É­!>ÐU6>É­!    = Aˆ=¥®_>;=¥®_>;=åÈ—>;>É­!>;?í>0H=åÈ—>0H>É­!>0H?í>PU2=K(R>PU2=åÈ—>PU2>É­!>PU2?$ðÇ>pbN<•çÉ>pbN>Ù³¯>pbN?ê:>pbN?,ô>ˆ7µ=K(R>ˆ7µ=¥®_>ˆ7µ?ê:>˜>B=K(R>˜>B>éº=>ÈQì=¥®_>ÈQì>¹¦“>ØXy=åÈ—>ØXy>É­!>è_=¥®_>è_>É­!    =@N§=¥®_= A—=¥®_=à[À=åÈ—=à[À>É­!>:û=K(R>:û=¥®_>:û>É­!>0H<•çÉ>0H=åÈ—>0H>S ž>0H>É­!>PU9=K(R>pbN=¥®_>pbN>Ù³¯>ˆ7µ=¥®_>ˆ7µ>Ù³¯>˜>B>éº=>¨DÓ>™™x>¸Ka>© >ÈQì>©       <€4n>éº==@N§=¥®_= A—=¥®_=à[À=åÈ—=à[À>éº==à[À?í>:û=K(R>:û=¥®_>:û?í>0H<•çÉ>0H=åÈ—>0H>éº=>0H?í>PU9=K(R>PU9?$ðÇ>pbN=¥®_>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ?ê:>ˆ7µ?í>ˆ7µ?,ô>˜>B>éº=>˜>B?$ðÇ>¨DÓ?ê:>¨DÓ?í>¸Ka?í>ÈQì?í     =€4p=¥®_=ÀN§=¥®_>4t¾ „>4t=åÈ—>4t>É­!> A‰=K(R> A‰=¥®_> A‰>¹¦“>@N¥¾ „>@N¥½Úîé>@N¥<•çÉ>@N¥=åÈ—>@N¥>É­!>`[À¾ „>`[À=K(R>€4q¾-‘¬>€4q¾ „>€4q½Úîé>€4q=¥®_>:ÿ¾MžÇ>:ÿ=¥®_>:ÿ>Ù³¯> A¾-‘¬> A¾ „> A>É­!> A>Ù³¯>°H¾-‘¬>°H>éº=>ÀN¨=K(R>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>Ù³¯>ÐU2½Úîé>ÐU2½5tý>ÐU2¼U;>ÐU2>¹¦“>à[üU;>à[Ã>¹¦“>à[Ã>É­!?4o>É­!   &&''%%$$ ##" !!  =€4p=¥®_=ÀN§=¥®_=ÀN§?í>4t=åÈ—>4t? æó>4t?í> A‰=K(R> A‰=¥®_> A‰? æó> A‰?$ðÇ>@N¥<•çÉ>@N¥=åÈ—>@N¥>¹¦“>@N¥?,ô>`[À=K(R>€4q=¥®_>:ÿ>É­!> A>É­!>°H¾ „>°H½5tý>°H>Ù³¯>ÀN¨¾MžÇ>ÀN¨<•çÉ>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2¾MžÇ>ÐU2=¥®_>ÐU2>É­!>ÐU2>Ù³¯>à[Ã=¥®_>à[Ã>¹¦“>ðbQ>É­!?4o>É­!     !!=€4n>É­!=ÀN¥?í>4n=¥®_>4n>¹¦“>4n>É­!>4n>Ù³¯>4n?í> A‰=¥®_> A‰>¹¦“> A‰>Ù³¯> A‰>éº=> A‰?ê:> A‰?$ðÇ> A‰?,ô>@N¥<•çÉ>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥?í>`[À=¥®_>`[À?í>€4n=¥®_>€4n>É­!      =€4n>É­!=ÀN¥¾MžÇ=ÀN¥¾-‘¬=ÀN¥?í>4n=¥®_>4n>¹¦“>4n>É­!>4n>Ù³¯>4n?í> A‰¾MžÇ> A‰=¥®_> A‰>¹¦“> A‰>Ù³¯> A‰>éº=> A‰?ê:> A‰?$ðÇ> A‰?,ô>@N¥<•çÉ>@N¥=¥®_>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥?í>`[À¾ „>`[À½5tý>`[À?í>€4n>É­!       =€4p=¥®_=ÀN§=¥®_=ÀN§?í>4t=åÈ—>4t? æó>4t?í> A‰=K(R> A‰=¥®_> A‰? æó> A‰?$ðÇ>@N¥<•çÉ>@N¥=åÈ—>@N¥>S ž>@N¥>¹¦“>@N¥?,ô>`[À=K(R>€4q=¥®_>:ÿ>‰’ê>:ÿ>Ù³¯> A>s¹> A>‰’ê> A>™™x> A>Ù³¯>°H=¥®_>°H>s¹>°H>‰’ê>°H>© >°H>éº=>ÀN¨=¥®_>ÀN¨>¹¦“>ÐU2<•çÉ>ÐU2=K(R>ÐU2=åÈ—>ÐU2>¹¦“>à[Ã=¥®_>ðbQ=¥®_    !!  ""##=@N§=¥®_= A‹=¥®_= A‹?í=à[Î=åÈ—=à[Î? æó=à[Î?í>;=K(R>;=¥®_>;? æó>;?$ðÇ>0H<•çÉ>0H=åÈ—>0H?,ô>PU9=K(R>pbU=¥®_>ˆ7µ=¥®_     =€4l=¥®_=€4l>É­!=ÀN¥=¥®_=ÀN¥>É­!>4n=åÈ—>4n>¹¦“>4n>Ù³¯>4n>éº=> A=K(R> A=¥®_> A>É­!>@N¥<•çÉ>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>`[À=K(R>€4q=¥®_>:û>É­!> A‰>É­!>°H=¥®_>°H>Ù³¯>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>éº=>ÐU2=K(R>ÐU2=¥®_>ÐU2>É­!>à[À<•çÉ>à[À=åÈ—>à[À>¹¦“>à[À>É­!>ðbN=K(R?4n=¥®_?7µ>É­!?:û>É­!?>D>Ù³¯? A‹=¥®_? A‹>¹¦“? A‹>éº=?(DÒ=¥®_?(DÒ>É­!?(DÒ>Ù³¯?0H<•çÉ?0H=K(R?0H=åÈ—?0H>¹¦“?8K_=¥®_?8K_>É­!?@N¦=¥®_?@N¦>É­!     !!##&&))//11--,,..0#((''+!""%%$$**0=€4p=¥®_=€4p>É­!=ÀN§=¥®_=ÀN§>É­!>4t=åÈ—>4t>¹¦“>4t>Ù³¯>4t>éº=> A‰=K(R> A‰=¥®_> A‰>É­!>@N¥<•çÉ>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>`[À=K(R>€4q=¥®_>:ÿ>É­!> A>É­!>°H>Ù³¯>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2=¥®_>ÐU2>É­!>ÐU2>Ù³¯>à[Ã<•çÉ>à[Ã=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbQ=¥®_>ðbQ>É­!?4o=¥®_?4o>É­!    !!  =€4p=¥®_>4t=¥®_>4t=åÈ—>4t>É­!> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=åÈ—>@N¥>É­!>`[À<•çÉ>€4q=K(R>€4q=¥®_>:ÿ=K(R>:ÿ>Ù³¯> A>É­!> A>Ù³¯>°H>éº=>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>Ù³¯>ÐU2=åÈ—>ÐU2>¹¦“>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>É­!?4o>É­!     =€4p=¥®_=ÀN§>éº=>4t¾MžÇ>4t=¥®_>4t=åÈ—>4t>É­!>4t>Ù³¯> A‰¾-‘¬> A‰½šÔµ> A‰=¥®_> A‰>É­!> A‰>Ù³¯>@N¥¾ „>@N¥½šÔµ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>`[À¾ „>`[À<•çÉ>€4q=K(R>€4q=¥®_>:ÿ=K(R>:ÿ>É­!> A>É­!>°H>Ù³¯>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2=åÈ—>ÐU2>É­!>ÐU2>Ù³¯>à[Ã=¥®_>à[Ã>¹¦“>ðbQ>É­!?4o>É­!    !  ##$$""!=€4p=¥®_=ÀN§=¥®_>4t=åÈ—>4t>É­!> A‰=K(R> A‰=¥®_> A‰>¹¦“>@N¥<•çÉ>@N¥=åÈ—>@N¥>É­!>`[À=K(R>€4q=¥®_>:ÿ=¥®_>:ÿ>Ù³¯> A>É­!> A>Ù³¯>°H¾ „>°H>éº=>ÀN¨¾ „>ÀN¨½šÔµ>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>Ù³¯>ÐU2¾-‘¬>ÐU2½šÔµ>ÐU2>¹¦“>à[þMžÇ>à[Ã>¹¦“>à[Ã>É­!?4o>É­!     =4p=¥®_=4p>É­!=€4z=¥®_=€4z>É­!=€4z>Ù³¯=ÀN¥=åÈ—=ÀN¥>¹¦“=ÀN¥>éº=>4n=K(R>4n=¥®_>4n>É­!> A‰<•çÉ> A‰=åÈ—> A‰>É­!>@N¥=K(R>`[À=¥®_>`[À>Ù³¯>€4n=¥®_>€4n>Ù³¯>:û>¹¦“>:û>É­!>:û>éº=> A>Ù³¯>°H>¹¦“>°H>É­!>ÀN¥>É­!>ÐU6>É­!    = AŒ<•çÉ=à[Î>‰’ê=à[Î>É­!>:û=K(R>:û>‰’ê>:û>É­!>0H=¥®_>0H>ñg>0H>s¹>0H>‰’ê>0H>É­!>PU2=K(R>PU2>Ù³¯>pbU=K(R>pbU>s¹>pbU>Ù³¯>ˆ7µ<•çÉ>ˆ7µ=¥®_>ˆ7µ>É­!>ˆ7µ>éº=>˜>B=K(R>˜>B>s¹>˜>B>Ù³¯>¨DÓ=K(R>¨DÓ>™™x>¨DÓ>É­!>¨DÓ>Ù³¯>¸Ka=¥®_>¸Ka>S ž>¸Ka>s¹>ÈQï=¥®_>ÈQï>S ž>ÈQï>É­!>ÈQï>Ù³¯>ØX}=¥®_>ØX}>S ž>ØX}>éº=##"  !!$ !"  $ =4k>éº==€4n=¥®_=ÀN¥=¥®_=ÀN¥?í>4n=åÈ—>4n>éº=>4n? æó>4n?í> A‰=K(R> A‰=¥®_> A‰? æó> A‰?$ðÇ>@N¥<•çÉ>@N¥=åÈ—>@N¥>éº=>@N¥?,ô>`[À=K(R>€4n=¥®_>:û=¥®_>:û>éº=    =€4p=¥®_=€4p>É­!=ÀN§=¥®_=ÀN§>É­!=ÀN§>Ù³¯>4t=åÈ—>4t>¹¦“>4t>éº=> A‰=K(R> A‰=¥®_> A‰>É­!>@N¥<•çÉ>@N¥=åÈ—>@N¥>É­!>`[À=K(R>€4q=¥®_>:ÿ=¥®_> A>É­!>°H>Ù³¯>ÀN¨=¥®_>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2=¥®_>ÐU2>É­!>ÐU2>Ù³¯>à[Ã<•çÉ>à[Ã=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbQ=¥®_>ðbQ>É­!?4o=¥®_?4o>É­!   !!  = AŒ>éº==à[Î=åÈ—=à[Î>É­!=à[Î>Ù³¯>:û=åÈ—>:û>É­!>:û>Ù³¯>0H>ñg>0H>É­!>PU2<•çÉ>PU2=åÈ—>pbU=K(R>ˆ7µ=¥®_>˜>B>É­!>¨DÓ>Ù³¯>¸Ka=åÈ—>¸Ka>¹¦“>¸Ka>éº=>ÈQï>ñg>ÈQï>É­!>ÈQï>Ù³¯>ØX}=åÈ—>ØX}>¹¦“>è_ >É­!>øe˜>É­!    = AŒ>éº==à[À=åÈ—=à[À>É­!=à[À>Ù³¯>;=åÈ—>;>É­!>;>Ù³¯>0H>ñg>0H>É­!>PU2<•çÉ>PU2=åÈ—>pbU=K(R>ˆ7µ=¥®_>˜>B>É­!>¨DÐ>Ù³¯>¸Ka=åÈ—>¸Ka>¹¦“>¸Ka>éº=>ÈQï=åÈ—>ÈQï>É­!>ÈQï>Ù³¯>ØX}>ñg>ØX}>¹¦“>è_ <•çÉ>è_ =åÈ—>è_ >É­!>øe˜=K(R?6=¥®_? 9Z>É­!?<¡>Ù³¯??ç=åÈ—??ç>¹¦“??ç>éº=?$C.>ñg?$C.>É­!?$C.>Ù³¯?,Ft=åÈ—?,Ft>¹¦“?4I¼>É­!?É­!    $ ##&&''%%$""! =€4}<•çÉ=ÀN¥=K(R=ÀN¥=¥®_=ÀN¥>É­!>4n=¥®_>4n>É­!> A=K(R> A=¥®_> A=åÈ—> A>s¹> A>Ù³¯> A>éº=>@N¥<•çÉ>@N¥=K(R>@N¥>¹¦“>`[À=¥®_>`[À>© >`[À>É­!>`[À>Ù³¯>€4n>s¹>€4n>É­!>:û>S ž> A‰>‰’ê>°H=¥®_>°H>s¹>ÀN¥=K(R>ÀN¥=¥®_>ÀN¥>ñg>ÀN¥>É­!>ÐU2=åÈ—>ÐU2>Ù³¯>ÐU2>éº=>à[Ã<•çÉ>à[Ã=K(R>à[Ã>s¹>à[Ã>¹¦“>à[Ã>É­!>à[Ã>Ù³¯>ðbN=¥®_>ðbN>É­!?4o=¥®_?4o>É­!?4o>Ù³¯?7¶>éº= ( ! &&(%%**+$$'##))+   "=€4p=¥®_=€4p>É­!=ÀN§=¥®_=ÀN§>É­!=ÀN§>Ù³¯>4t¾ „>4t=åÈ—>4t>¹¦“>4t>éº=> A‰=K(R> A‰=¥®_> A‰>É­!>@N¥¾ „>@N¥½Úîé>@N¥<•çÉ>@N¥=åÈ—>@N¥>É­!>`[À¾ „>`[À=K(R>€4q¾-‘¬>€4q¾ „>€4q½Úîé>€4q=¥®_>:ÿ¾MžÇ>:ÿ=¥®_> A¾-‘¬> A¾ „> A>É­!>°H¾-‘¬>°H>Ù³¯>ÀN¨=K(R>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>éº=>ÐU2½Úîé>ÐU2½5tý>ÐU2¼U;>ÐU2>É­!>ÐU2>Ù³¯>à[üU;>à[Ã>¹¦“>ðbQ>É­!?4o>É­!  !&&))**((''"" %%$! ##" =ÀN§<•çÉ=ÀN§>É­!>4t>Ù³¯> A‰>s¹> A‰>¹¦“> A‰>éº=>@N¥>É­!>`[À=K(R>`[À=¥®_>`[À>Ù³¯>€4q=¥®_>€4q>¹¦“> A=åÈ—> A>É­!>°H=K(R>°H>É­!>°H>Ù³¯>ÀN¨=¥®_>ÐU2<•çÉ>ÐU2=åÈ—>ÐU2>s¹>à[Ã=K(R>ðbQ=¥®_>ðbQ>éº=     >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê:   dx-4.4.4/fonts/gothicger_t.dx0000644000076500000240000033070007120226410013036 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 19 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 20 msb ieee data 152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.375600 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 312 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 472 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 49 msb ieee data 568 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 46 msb ieee data 960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1328 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 45 msb ieee data 1744 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 38 msb ieee data 2104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 10 msb ieee data 2408 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 10 msb ieee data 2488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.375600 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 22 msb ieee data 2568 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 21 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 22 msb ieee data 2912 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 21 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3256 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3568 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 3632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 10 msb ieee data 3696 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 10 msb ieee data 3776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.375600 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 3856 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 3888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 7 msb ieee data 3920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 7 msb ieee data 3976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.375600 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4032 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 26 msb ieee data 4096 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 26 msb ieee data 4304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 19 msb ieee data 4512 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 19 msb ieee data 4664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 32 msb ieee data 4816 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 30 msb ieee data 5072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 35 msb ieee data 5312 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 33 msb ieee data 5592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 28 msb ieee data 5856 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 25 msb ieee data 6080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 32 msb ieee data 6280 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 31 msb ieee data 6536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 37 msb ieee data 6784 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 37 msb ieee data 7080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 28 msb ieee data 7376 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 26 msb ieee data 7600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 38 msb ieee data 7808 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 39 msb ieee data 8112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 38 msb ieee data 8424 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 38 msb ieee data 8728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 14 msb ieee data 9032 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 14 msb ieee data 9144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.375600 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 17 msb ieee data 9256 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 17 msb ieee data 9392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.375600 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 9528 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 9552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 9568 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 9632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 9696 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 35 msb ieee data 9736 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 35 msb ieee data 10016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 10296 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 10680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 48 msb ieee data 11064 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 44 msb ieee data 11448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.751200 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 79 msb ieee data 11800 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 73 msb ieee data 12432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.813800 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 63 msb ieee data 13016 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 61 msb ieee data 13520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.751200 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 66 msb ieee data 14008 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 63 msb ieee data 14536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.813800 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 72 msb ieee data 15040 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 69 msb ieee data 15616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.751200 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 75 msb ieee data 16168 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 70 msb ieee data 16768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.751200 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 74 msb ieee data 17328 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 75 msb ieee data 17920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.813800 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 69 msb ieee data 18520 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 66 msb ieee data 19072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.782500 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 71 msb ieee data 19600 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 67 msb ieee data 20168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.782500 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 71 msb ieee data 20704 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 67 msb ieee data 21272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.782500 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 59 msb ieee data 21808 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 55 msb ieee data 22280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.813800 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 60 msb ieee data 22720 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 57 msb ieee data 23200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.719900 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 103 msb ieee data 23656 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 96 msb ieee data 24480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 1.001600 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 76 msb ieee data 25248 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 72 msb ieee data 25856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.876400 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 58 msb ieee data 26432 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 56 msb ieee data 26896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.876400 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 72 msb ieee data 27344 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 68 msb ieee data 27920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.845100 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 69 msb ieee data 28464 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 64 msb ieee data 29016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.876400 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 68 msb ieee data 29528 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 66 msb ieee data 30072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.876400 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 70 msb ieee data 30600 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 69 msb ieee data 31160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.845100 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 66 msb ieee data 31712 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 63 msb ieee data 32240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.782500 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 36 msb ieee data 32744 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 31 msb ieee data 33032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.688600 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 79 msb ieee data 33280 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 74 msb ieee data 33912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.876400 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 108 msb ieee data 34504 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 105 msb ieee data 35368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 1.032900 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 60 msb ieee data 36208 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 54 msb ieee data 36688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.751200 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 60 msb ieee data 37120 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 56 msb ieee data 37600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.813800 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 59 msb ieee data 38048 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 56 msb ieee data 38520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.751200 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 38968 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 39016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 39048 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 39064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 39072 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 39120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 39152 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 39208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 39248 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 39264 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 10 msb ieee data 39272 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 10 msb ieee data 39352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.375600 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 34 msb ieee data 39432 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 30 msb ieee data 39704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.532100 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 37 msb ieee data 39944 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 34 msb ieee data 40240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.532100 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 22 msb ieee data 40512 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 19 msb ieee data 40688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.406900 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 37 msb ieee data 40840 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 33 msb ieee data 41136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.532100 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 23 msb ieee data 41400 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 19 msb ieee data 41584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.406900 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 34 msb ieee data 41736 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 31 msb ieee data 42008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.406900 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 39 msb ieee data 42256 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 37 msb ieee data 42568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.532100 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 38 msb ieee data 42864 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 34 msb ieee data 43168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.532100 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 24 msb ieee data 43440 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 23 msb ieee data 43632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.313000 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 27 msb ieee data 43816 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 27 msb ieee data 44032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.313000 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 40 msb ieee data 44248 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 37 msb ieee data 44568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.438200 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 21 msb ieee data 44864 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 19 msb ieee data 45032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.313000 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 54 msb ieee data 45184 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 52 msb ieee data 45616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.813800 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 36 msb ieee data 46032 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 33 msb ieee data 46320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.563400 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 29 msb ieee data 46584 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 27 msb ieee data 46816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.532100 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 39 msb ieee data 47032 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 35 msb ieee data 47344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.532100 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 29 msb ieee data 47624 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 27 msb ieee data 47856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.532100 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 24 msb ieee data 48072 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 20 msb ieee data 48264 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.438200 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 29 msb ieee data 48424 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 26 msb ieee data 48656 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.344300 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 23 msb ieee data 48864 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 21 msb ieee data 49048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.375600 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 36 msb ieee data 49216 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 33 msb ieee data 49504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.563400 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 37 msb ieee data 49768 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 33 msb ieee data 50064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.532100 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 55 msb ieee data 50328 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 52 msb ieee data 50768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.782500 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 36 msb ieee data 51184 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 32 msb ieee data 51472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.469500 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 38 msb ieee data 51728 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 33 msb ieee data 52032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.532100 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 34 msb ieee data 52296 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 31 msb ieee data 52568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.438200 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 52816 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 53096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 53368 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 53384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 53392 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 53672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 53944 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 54104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 54264 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 54360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =ÀN¥?í>4n=K(R> A‰=K(R> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>s¹>@N¥?ê:>@N¥?$ðÇ>@N¥?,ô>`[À=K(R>`[À?ê:>`[À?í>`[À?$ðÇ>€4n=K(R>:û?í      =à[Î>éº==à[Î?$ðÇ>:û?$ðÇ>:û?,ô>0H?$ðÇ>ÈQï>éº=>ÈQï?$ðÇ>ØX}?$ðÇ>ØX}?,ô>è_ ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥>ñg=ÀN¥>ùÀÊ=ÀN¥?ê:>4n=¥®_>4n>ñg>4n>Ù³¯>4n>ùÀÊ>4n?ã¬>4n?ê:> A=K(R> A=¥®_> A=åÈ—> A>2þ‚> A>Ù³¯> A>éº=> A?$ðÇ>@N¥=K(R>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>™™x>ÐU2>© >ÐU2>¹¦“>à[Ã?$ðÇ>ðbN=K(R>ðbN>‰’ê>ðbN>™™x>ðbN?ã¬>ðbN?ê:>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?4o? æó?4o?í?7¶>ñg?7¶>s¹?7¶? æó$$##00--&&!!))(( ,% ""* ++//..''   =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>2þ‚>4n>2þ‚>4n>S ž> A>ùÀÊ>@N¥>ùÀÊ>@N¥?ã¬>`[À<•çÉ>`[À=K(R>€4q=K(R>:û>¹¦“>:û?$ðÇ> A‰>É­!> A‰?$ðÇ> A‰?,ô>°H>™™x>°H>© >ÀN¥>© >ÐU2>S ž>ÐU2>ùÀÊ>ÐU2?ã¬>à[À>s¹>à[À?ã¬>ðbN=åÈ—>ðbN>ñg?4n>ñg?7µ=K(R?7µ=¥®_?7µ=åÈ—?>D<•çÉ?>D=K(R?>D=¥®_?>D>¹¦“?>D>É­!? A‹>© ? A‹>¹¦“? A‹>Ù³¯?(DÒ<•çÉ?(DÒ>© ?(DÒ>É­!?0H=K(R?0H=¥®_?0H>¹¦“?0H>É­!?8K_=åÈ—?8K_>Ù³¯#&&**, "")!!%%)),#  $$''+ ' ((+>:û>éº=>:û?í>0H?í>PU2>ùÀÊ>PU2? æó>PU2?ê:>PU2?$ðÇ>PU2?,ô>pbN? æó>pbN?í =à[À>s¹=à[À>¹¦“>:û=¥®_>:û>S ž>:û>É­!>:û?ã¬>0H=¥®_>0H>S ž>0H>É­!>0H?ã¬>PU9½5tý>PU9¼U;>PU9<•çÉ>PU9?ê:>PU9?í>PU9?$ðÇ>pbN½šÔµ>pbN?,ô>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*     =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>PU2½šÔµ>PU2?,ô>pbN½5tý>pbN¼U;>pbN<•çÉ>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>S ž>ˆ7µ>É­!>ˆ7µ?ã¬>˜>B=¥®_>˜>B>S ž>˜>B>É­!>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“     =ÀN²>É­!=ÀN²>Ù³¯=ÀN²? æó=ÀN²?ê:>4n>É­!>4n?ê:>`[Ç>© >`[Ç?$ðÇ>€4q>™™x>€4q?,ô>:û>© >:û?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÐU2>É­!>ÐU2>Ù³¯>ÐU2? æó>ÐU2?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© >:û½Úîé>:û=K(R>0H=K(R>PU2½šÔµ>PU2¼U;>PU2<•çÉ>PU2=¥®_>PU2=åÈ—>pbN¼U;>pbN=K(R >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4n=K(R> A‰=K(R>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>`[À=K(R>€4n=K(R=€4l¾MžÇ=ÀN³¾MžÇ? A‰?M*?(DÒ?M*=€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥?í>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2?,ô>à[Ã=¥®_>à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í     >PU2=¥®_>PU2?í>pbN=¥®_>pbN?ê:>pbN?í>ˆ7µ=åÈ—>ˆ7µ?ã¬>ˆ7µ?ê:>ˆ7µ?$ðÇ>˜>B=K(R>˜>B=¥®_>˜>B?ê:>˜>B?,ô>¨DÐ<•çÉ>¨DÐ=åÈ—>¨DÐ?í>¸K^=K(R>ÈQì=¥®_>ØXy=¥®_   = Aˆ<•çÉ= Aˆ>2þ‚=à[À>‰’ê=à[À?í>0H=K(R>0H>© >0H?ê:>0H?í>PU2=¥®_>pbN=K(R>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>¹¦“>ˆ7µ?,ô>˜>B?í>˜>B?$ðÇ>¨DÐ=åÈ—>¨DÐ?$ðÇ>ÈQì=K(R>ØXy=¥®_>ØXy=åÈ—>ØXy>¹¦“>ØXy?í>è_>É­!>è_?ê:>øe˜<•çÉ>øe˜>¹¦“>øe˜?í?6=K(R? 9Z=¥®_     =à[À=¥®_>:û?í>0H=¥®_>0H=åÈ—>0H?í>PU2?ê:>pbN=K(R>pbN=¥®_>pbN=åÈ—>pbN?í>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ?ê:>ˆ7µ?,ô>˜>B=K(R>˜>B=¥®_>˜>B>© >˜>B>¹¦“>˜>B?$ðÇ>¨DÓ=K(R>¨DÓ?$ðÇ>¸K^>© >¸K^>¹¦“>è_=¥®_>è_>™™x>è_>É­!>è_?í>øe•=åÈ—>øe•>‰’ê>øe•>Ù³¯>øe•?ê:?6=¥®_?6>™™x?6>É­!?6?í "  "!!  =€4p>S ž=€4p>¹¦“=ÀN§>s¹=ÀN§>¹¦“>4t>S ž>4t>Ù³¯>:ÿ=¥®_> A=¥®_>°H=åÈ—>°H>S ž>°H?$ðÇ>ÀN¨=K(R>ÀN¨=¥®_>ÀN¨? æó>ÀN¨?$ðÇ>ÀN¨?,ô>ÐU2<•çÉ>ÐU2=åÈ—>ÐU2>S ž>ÐU2? æó>ÐU2?í>à[Ã=K(R>à[Ã?í>ðbQ=¥®_?4o=¥®_?7¶>S ž?:û>2þ‚?:û>s¹     = Aˆ=¥®_=à[À>É­!=à[À?í=à[À?,ô>;=¥®_>;=åÈ—>;?$ðÇ>PU2=K(R>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN<•çÉ>ˆ7µ=K(R>ˆ7µ=¥®_>˜>B=K(R>¨DÐ>Ù³¯>¸K^>Ù³¯>ÈQì>éº=>ÈQì?í>ØXy=¥®_>ØXy>É­!>ØXy>ùÀÊ>ØXy?$ðÇ>è_=åÈ—>è_>Ù³¯>è_>éº=>è_?$ðÇ>øe˜=¥®_>øe˜>É­!>øe˜?,ô?6>Ù³¯? 9Z>Ù³¯    =€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>@N¥?í>`[À<•çÉ>`[À>¹¦“>€4n=K(R>€4n=¥®_>:û=K(R> A‰?$ðÇ>°H>É­!>°H?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÀN¥?,ô>ÐU2>Ù³¯>ÐU2?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>éº=>à[Ã?ê:>ðbN=åÈ—>ðbN>¹¦“>ðbN>Ù³¯>ðbN?í?4o=¥®_?4o>¹¦“?4o?í?7¶>É­!?:ý>É­!   "" ##$$!!   = Aˆ?í=à[À?$ðÇ>;?,ô>PU2?ê:>PU2?í>pbN=åÈ—>pbN>S ž>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ>ñg>ˆ7µ>s¹>ˆ7µ>™™x>˜>B=K(R>˜>B>2þ‚>˜>B>‰’ê>˜>B>© >˜>B?ê:>¨DÐ=¥®_>¨DÐ>¹¦“>¨DÐ>É­!>¸K^?í>ÈQì>éº=>ÈQì?$ðÇ>ØXy?í>è_?ã¬>è_?$ðÇ?6?í? 9Z?,ô   =€4}=¥®_>4n=¥®_>4n=åÈ—>4n>™™x>4n>É­!>4n?ê:> A=åÈ—> A>‰’ê> A>Ù³¯> A? æó>@N¥=K(R>@N¥=åÈ—>@N¥>™™x>@N¥>É­!>@N¥?ê:>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?í>ÀN¥?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>™™x>à[Ã>É­!>à[Ã?ê:>à[Ã?,ô>ðbN=åÈ—>ðbN>‰’ê>ðbN>Ù³¯>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o>É­!?4o?ê:?7¶?í?:ý?í  $$%%##" !"  !   =€4}>™™x=ÀN¥=¥®_=ÀN¥>™™x>4n>© >4n?í> A=¥®_> A=åÈ—> A>‰’ê> A>™™x> A?ê:>@N¥>s¹>@N¥>© >@N¥?í>`[À=K(R>`[À=¥®_>`[À=åÈ—>`[À>‰’ê>€4n<•çÉ>€4n>™™x>:û=K(R>:û=¥®_>:û>™™x> A‰=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2>© >ÐU2?,ô>à[Ã=¥®_>à[Ã>© >à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í   !! $$%%##"  ">4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À=K(R>`[À>É­!>€4n=K(R>€4n>É­!     >4n½Úîé>4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥½šÔµ>@N¥¼U;>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À¼U;>`[À=K(R>`[À>É­!>€4n>É­!      >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§? æó>4t? æó>4t?í> A‰?ã¬> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥?$ðÇ>`[À=K(R>€4q=K(R>€4q>© >€4q?,ô>:ÿ<•çÉ>:ÿ=¥®_>:ÿ=åÈ—>:ÿ>s¹>:ÿ>© > A=K(R> A>© > A?,ô>°H=K(R>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨?$ðÇ>ÐU2>Ù³¯>ÐU2>éº=>ÐU2?ê:>ÐU2?í>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã>éº=>à[Ã?ê:>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó  ""!!     =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=€4p?ê:=ÀN¥>2þ‚=ÀN¥? æó=ÀN¥?í=ÀN¥?$ðÇ>4t?ê:> A‰>2þ‚> A‰?,ô>@N¥>2þ‚>@N¥>S ž>`[Ç?,ô>€4n<•çÉ>€4n>s¹>€4n>‰’ê>€4n?$ðÇ>:û=K(R>:û=¥®_>:û>™™x>:û>¹¦“>:û? æó>:û?í>:û?$ðÇ> A‰>™™x> A‰>¹¦“> A‰?ã¬> A‰?í>°H>É­!>°H?ã¬>ðbQ=¥®_>ðbQ>2þ‚>ðbQ? æó?4o=åÈ—?4o? æó?4o?í?7¶<•çÉ?7¶>ñg?7¶? æó?7¶?í?7¶?$ðÇ?:ý=K(R?:ý?$ðÇ?>D=¥®_?>D?,ô?(DÐ>ñg?(DÐ?í?(DÐ?,ô?0H?í?0H?$ðÇ     /,,..//--**&&!!""+% '*(($$##)= Aˆ>™™x= Aˆ>© =à[À=K(R=à[À=åÈ—=à[À>‰’ê=à[À?ã¬=à[À?ê:>:û<•çÉ>:û=¥®_>:û>ñg>:û>2þ‚>:û>éº=>:û?ã¬>:û? æó>:û?í>:û?$ðÇ>0H=K(R>0H>ñg>0H>‰’ê>PU2>ñg>PU2>2þ‚>PU2>™™x>PU2>¹¦“>PU2>É­!>PU2>éº=>PU2?,ô>pbN>ñg>pbN>™™x>pbN>É­!>˜>B>ñg>˜>B?,ô>¨DÐ>ñg>¨DÐ?$ðÇ>¸K^=K(R>¸K^>S ž>¸K^? æó>¸K^?í>¸K^?$ðÇ>ÈQì>S ž>ÈQì>s¹>ÈQì? æó>ÈQì?í>ØXy=K(R>ØXy=¥®_>ØXy>™™x>ØXy>¹¦“>ØXy? æó>ØXy?ê:>è_<•çÉ>è_?$ðÇ>øe•=K(R?6=K(R?6?,ô? 9Z<•çÉ? 9Z>Ù³¯?<¡?,ô??ç=K(R??ç>Ù³¯??ç?$ðÇ?$C.=K(R?$C.>É­!?$C.>Ù³¯?$C.>éº=?$C.? æó?$C.?í?$C.?$ðÇ?,Fu=¥®_?,Fu?ã¬?,Fu? æó?,Fu?í?4Iº=åÈ—?4Iº>© ?4Iº>¹¦“?4Iº>É­!?4Iº? æó?S ž?‰’ê?™™x?IIMMKKFF;;5500!! 9==H6<<GGL2**B8833++ =ÀN¥>™™x=ÀN¥>Ù³¯>4t>2þ‚>4t>™™x>4t>éº=>4t? æó> A‰>2þ‚> A‰>© > A‰>éº=> A‰? æó>@N¥=¥®_>@N¥>S ž>@N¥?ê:>@N¥?í>@N¥?$ðÇ>`[Ç=¥®_>`[Ç>ñg>`[Ç?$ðÇ>€4n=K(R>€4n?,ô>:û=¥®_>:û>™™x> A‰=K(R> A‰>s¹> A‰>ùÀÊ> A‰?ã¬> A‰?,ô>°H<•çÉ>°H>Ù³¯>°H>ùÀÊ>°H?ã¬>°H? æó>°H?ê:>ÀN¥=K(R>ÀN¥>S ž>ÀN¥>ùÀÊ>ÀN¥?í>ÐU2>S ž>à[Ã<•çÉ>à[Ã>¹¦“>à[Ã?$ðÇ>ðbQ=K(R>ðbQ>s¹>ðbQ>™™x>ðbQ>© >ðbQ>¹¦“>ðbQ>Ù³¯>ðbQ?$ðÇ>ðbQ?,ô?4o>™™x?4o>¹¦“?4o?ê:?4o?í?4o?$ðÇ?7¶=K(R?7¶?í?:ý=¥®_?:ý?ê:?:ý?í?>D=¥®_? A‹?í?(DÐ>ñg?(DÐ?$ðÇ$ &&66;;=   !!))88=0$$ ''++*--, ##..2211**%%""055::</447(3399<<>=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>ùÀÊ=ÀN¥?ã¬>4n<•çÉ>4n=¥®_>4n>ñg>4n>2þ‚>4n?ê:> A=K(R> A>ñg> A>S ž> A>s¹> A?ê:>@N¥>ñg>@N¥>2þ‚>@N¥?í>@N¥?$ðÇ>`[À>ñg>`[À>É­!>`[À>éº=>€4q>2þ‚>€4q>É­!>€4q>Ù³¯>€4q>éº=>€4q?ã¬>€4q?í>€4q?$ðÇ>:û>ñg>:û>S ž>:û>‰’ê>:û>™™x>:û>© >:û?,ô> A‰>‰’ê> A‰>© >°H=K(R>°H?í>ÐU2=K(R>ÐU2=¥®_>ÐU2?í>ÐU2?$ðÇ>ÐU2?,ô>à[À<•çÉ>ðbN=K(R?4n=K(R?4n?ê:?4n?í?4n?$ðÇ?7µ<•çÉ?:û? æó?:û?ê:?:û?í?>D=K(R? A‹=K(R? A‹>ùÀÊ? A‹?ã¬? A‹? æó?(DÒ=¥®_?0H=åÈ—?0H>É­!?0H>Ù³¯?0H>éº=?8K_>S ž?8K_>™™x?8K_>© !!**004499>>AA??;;6611++$$ ))//3388=,&& ((..2277<<@:55--'' % ##"" = Aˆ>™™x= Aˆ>Ù³¯=à[Î>2þ‚=à[Î>™™x=à[Î>éº==à[Î? æó>:û>2þ‚>:û>© >:û>éº=>:û? æó>0H=¥®_>0H>S ž>0H?ê:>0H?í>0H?$ðÇ>PU9=¥®_>PU9>ñg>PU9?$ðÇ>pbN=K(R>pbN?,ô>ˆ7µ=¥®_>ˆ7µ>™™x>˜>B=K(R>˜>B>s¹>˜>B>ùÀÊ>˜>B?ã¬>˜>B?,ô>¨DÓ<•çÉ>¨DÓ>Ù³¯>¨DÓ>ùÀÊ>¨DÓ?ã¬>¨DÓ? æó>¨DÓ?ê:>¸Ka=K(R>¸Ka>S ž>¸Ka>ùÀÊ>¸Ka?í>ÈQì>S ž>ØX}<•çÉ>ØX}>¹¦“>ØX}?$ðÇ>è_ =K(R>è_ >s¹>è_ >™™x>è_ >© >è_ >¹¦“>è_ >Ù³¯>è_ ?$ðÇ>è_ ?,ô>øe•>™™x>øe•>¹¦“>øe•?ê:>øe•?í>øe•?$ðÇ?6=K(R?6>éº=?6?í? 9Z=¥®_? 9Z>Ù³¯? 9Z>ùÀÊ? 9Z?ê:? 9Z?í?<¡=¥®_?<¡>éº=?<¡?ã¬??ç>Ù³¯??ç>éº=??ç>ùÀÊ??ç?í?$C->ñg?$C-?$ðÇ?,Fu>ùÀÊ$ &&66>>E   !!))99E0$$ ''++*--, ##..2211**%%""055==D/448(33<<DDF.@@CCG;??B7::AAG= Aˆ>‰’ê= Aˆ>™™x=à[Î=K(R=à[Î>ñg=à[Î>© =à[Î?ã¬=à[Î?ê:>:û¼U;>:û<•çÉ>:û>ñg>:û>© >:û>éº=>:û?ê:>:û?í>:û?$ðÇ>0H½5tý>0H¼U;>0H<•çÉ>0H>ñg>0H>S ž>0H>s¹>0H>™™x>0H>© >PU9½5tý>PU9>s¹>PU9>™™x>PU9>Ù³¯>PU9?í>PU9?$ðÇ>pbN?,ô>ˆ7µ½šÔµ>¨DÓ>éº=>¨DÓ?ã¬>¨DÓ?,ô>¸Ka>É­!>¸Ka?ê:>¸Ka?í>¸Ka?$ðÇ>ÈQ콚Ե>ÈQì>É­!>ÈQì?í>ØX}>¹¦“>ØX}?$ðÇ>è_ ½5tý>è_ >¹¦“>è_ ?í>øe•½5tý>øe•¼U;>øe•>‰’ê>øe•>© ?6<•çÉ?6=¥®_?6>2þ‚?6>‰’ê?6>Ù³¯? 9Z<•çÉ? 9Z=¥®_? 9Z>2þ‚? 9Z>‰’ê? 9Z>É­!? 9Z>éº=? 9Z?ê:?<¡=¥®_?<¡>2þ‚?<¡>Ù³¯?<¡>ùÀÊ?<¡?,ô??ç>É­!??ç>Ù³¯??ç>éº=??ç?ê:??ç?,ô?$C-?í?$C-?$ðÇ?,Fu>éº= !!**= %%- $$==FFHHIIGGB(## ""004433//++&)5599882''11::??>>77..&&  ,AAEEJ<@@D6;;CCJ= AŒ>™™x= AŒ>Ù³¯=à[À>S ž=à[À>™™x=à[À>éº==à[À? æó>;>ñg>;>S ž>;>™™x>;>éº=>;? æó>0H>ñg>0H>2þ‚>0H?ê:>0H?í>0H?$ðÇ>PU2=¥®_>PU2=åÈ—>PU2?$ðÇ>ˆ7µ=K(R>ˆ7µ>‰’ê>ˆ7µ?,ô>˜>B>S ž>˜>B>éº=>˜>B>ùÀÊ>¨DÐ>É­!>¨DÐ>éº=>¨DÐ>ùÀÊ>¨DÐ?ã¬>¨DÐ? æó>¸Ka<•çÉ>¸Ka>2þ‚>¸Ka>éº=>¸Ka?,ô>ÈQï>2þ‚>ÈQï?í>ØX}>© >ØX}?$ðÇ>è_ <•çÉ>è_ >S ž>è_ >‰’ê>è_ >™™x>è_ >© >è_ >É­!>è_ ?í>øe˜>‰’ê>øe˜>© >øe˜? æó>øe˜?,ô? 9Z=K(R? 9Z>éº=??ç=¥®_??ç=åÈ—??ç>É­!??ç>éº=??ç>ùÀÊ??ç?$ðÇ?$C.>ñg?$C.>S ž?$C.>© ?$C.>Ù³¯?$C.? æó?$C.?í?,Ft>ñg?,Ft>S ž?,Ft>© ?,Ft>Ù³¯?,Ft?ê:?,Ft?$ðÇ?4I¼>s¹?4I¼>© ?4I¼?í?4I¼?,ô?>==CCIIGGH= AŒ>‰’ê= AŒ>© =à[À>S ž=à[À>™™x=à[À>¹¦“>;>2þ‚>;>© >PU2>ñg>pbU¼U;>pbU>éº=>pbU?ã¬>ˆ7µ½šÔµ>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ>ùÀÊ>ˆ7µ?ã¬>ˆ7µ?ê:>˜>B>éº=>¨DнÚîé>¨DÐ=K(R>¨DÐ=¥®_>¨DÐ>2þ‚>¨DÐ>© >¨DÐ?$ðÇ>¸Ka=K(R>¸Ka>S ž>¸Ka>‰’ê>¸Ka>™™x>¸Ka>© >¸Ka>É­!>¸Ka?í>¸Ka?$ðÇ>ÈQï½Úîé>ÈQï<•çÉ>ÈQï=¥®_>ÈQï>‰’ê>ÈQï>© >ÈQï>¹¦“>ÈQï?,ô>ØX}=K(R>ØX}?ê:>ØX}?í>è_ ½šÔµ>è_ =K(R>è_ ?í>øe˜?ê:?6=K(R?6>éº=?6?í? 9Z>éº=?<¡=¥®_?<¡>ùÀÊ?<¡?$ðÇ??ç=¥®_??ç=åÈ—??ç>É­!??ç?ã¬?$C.>ñg?$C.>2þ‚?$C.>™™x?$C.>Ù³¯?,Ft>ñg?,Ft>S ž?,Ft>© ?,Ft>Ù³¯?4I¼>s¹?4I¼>© ( &&%% (..226!+ **//6'::BBDDCC??7700#5>>AA@@;13399==<<884400--$$  "",)# =ÀN¥=¥®_=ÀN¥>ñg>4t=K(R>4t=åÈ—>4t>2þ‚>4t>ùÀÊ>4t? æó> A‰=¥®_> A‰>Ù³¯> A‰?ê:> A‰?í>@N¥>2þ‚>@N¥>É­!>@N¥?í>@N¥?$ðÇ>`[Ç>ñg>`[Ç?í>€4n=¥®_>€4n=åÈ—>€4n>ñg>€4n>¹¦“>€4n?$ðÇ>:û=¥®_>:û?,ô> A‰¼U;> A‰=¥®_> A‰>¹¦“>°H½5tý>°H¼U;>°H?í>°H?,ô>ÀN¥½5tý>ÀN¥¼U;>ÀN¥?$ðÇ>ÐU2½šÔµ>à[ýšÔµ>à[Ã?ê:>à[Ã?í>à[Ã?$ðÇ>ðbQ>™™x>ðbQ>¹¦“>ðbQ?ê:?4o½šÔµ?4o>s¹?4o>™™x?4o>© ?4o>¹¦“?4o>É­!?4o? æó?7¶>™™x?7¶>Ù³¯?7¶? æó?:ý½5tý?:ý>ñg?>D¼U;?>D<•çÉ?>D=¥®_?>D=åÈ—?>D>ñg?>D>S ž?>D>Ù³¯?>D?ã¬?>D?$ðÇ? A‹=K(R? A‹>ñg? A‹>¹¦“? A‹>É­!?(DÐ?ã¬?(DÐ?$ðÇ?0H? æó?0H?í  &&33= !!%%) $$00==CCEEFFDD>  # ""**4466??@@;;11../9::,,-4778855++''((22<<BBA=ÀN¥=¥®_=ÀN¥>ñg>4t=K(R>4t=åÈ—>4t>2þ‚>4t>ùÀÊ>4t? æó> A‰=¥®_> A‰>Ù³¯> A‰?ê:> A‰?í>@N¥>2þ‚>@N¥>É­!>@N¥?í>@N¥?$ðÇ>`[Ç>ñg>`[Ç?í>€4n=¥®_>€4n=åÈ—>€4n>ñg>€4n>¹¦“>€4n?$ðÇ>:û=¥®_>:û?,ô> A‰¼U;> A‰=¥®_> A‰>¹¦“>°H½5tý>°H¼U;>°H?í>°H?,ô>ÀN¥½5tý>ÀN¥¼U;>ÀN¥?$ðÇ>ÐU2½šÔµ>à[ýšÔµ>à[Ã?ê:>à[Ã?í>à[Ã?$ðÇ>ðbQ>™™x>ðbQ>¹¦“>ðbQ?ê:?4o½šÔµ?4o>s¹?4o>™™x?4o>© ?4o>¹¦“?4o>É­!?4o? æó?7¶>™™x?7¶>Ù³¯?7¶? æó?:ý½5tý?:ý>ñg?>D¼U;?>D<•çÉ?>D=¥®_?>D=åÈ—?>D>ñg?>D>S ž?>D>Ù³¯?>D?ã¬?>D?$ðÇ? A‹=K(R? A‹>ñg? A‹>¹¦“? A‹>É­!?(DÐ?ã¬?(DÐ?$ðÇ?0H? æó?0H?í  &&33= !!%%) $$00==CCEEFFDD>  # ""**4466??@@;;11../9::,,-4778855++''((22<<BBA= Aˆ=¥®_=à[À=åÈ—=à[À>2þ‚>:û=¥®_>:û>ñg>0H=K(R>0H=åÈ—>PU2>ñg>pbN<•çÉ>pbN>Ù³¯>pbN?ã¬>ˆ7¸>© >ˆ7¸>É­!>ˆ7¸>Ù³¯>ˆ7¸>éº=>ˆ7¸? æó>ˆ7¸?ê:>˜>B<•çÉ>˜>B>É­!>˜>B>éº=>˜>B?í>¨DÐ?ã¬>¨DÐ?$ðÇ>¸K^=K(R>¸K^=¥®_>¸K^>ñg>¸K^>2þ‚>¸K^>S ž>¸K^>‰’ê>¸K^>© >ÈQì=åÈ—>ÈQì>2þ‚>ÈQì? æó>ØXy? æó>ØXy?,ô>è_>¹¦“>øe•>¹¦“>øe•?ã¬>øe•? æó?6>É­!?6>ùÀÊ?6?ã¬?6?,ô? 9Z>Ù³¯? 9Z?ã¬?<¡=¥®_?<¡>éº=??ç=åÈ—??ç>éº=??ç?$ðÇ?$C.<•çÉ?$C.=åÈ—?$C.>éº=?,Fu=K(R?,Fu=¥®_?,Fu?ê:?4Iº=¥®_?4Iº?ã¬?4n>ùÀÊ>4n? æó> A‰=åÈ—> A‰>Ù³¯> A‰>ùÀÊ> A‰?ã¬> A‰? æó> A‰?í>@N«=åÈ—>@N«>ñg>@N«>ùÀÊ>@N«?$ðÇ>`[À=åÈ—>`[À>2þ‚>`[À>© >€4n=åÈ—>€4n>ñg>€4n>S ž>€4n>s¹>€4n>‰’ê>€4n>™™x>€4n>© >€4n>É­!>:û>‰’ê>:û>© >:û?,ô> A=K(R>°H=¥®_>ÀN¥=K(R>ÐU2<•çÉ>ÐU2=K(R>à[Ã=K(R>à[Ã>‰’ê>à[Ã>© >à[Ã?,ô>ðbQ<•çÉ>ðbQ>s¹>ðbQ>‰’ê>ðbQ>™™x>ðbQ>© >ðbQ>¹¦“>ðbQ>É­!?4o>s¹?4o>¹¦“?7¶=K(R?7¶>ùÀÊ?7¶?$ðÇ?:ý=K(R?:ý>s¹?:ý>Ù³¯?:ý>ùÀÊ?:ý?ã¬?:ý? æó?:ý?í?>D=¥®_?>D>‰’ê?>D>ùÀÊ?>D? æó? A‰>ñg811%%!!""**..556())334+&&'',,2299::66//##    --7  $$0077;= Aˆ>™™x= Aˆ>© =à[À<•çÉ=à[À>‰’ê=à[À?ã¬=à[À?ê:>:û=K(R>:û>éº=>:û?ã¬>:û? æó>:û?í>:û?$ðÇ>0H=K(R>0H=¥®_>0H>‰’ê>PU2<•çÉ>PU2=¥®_>PU2=åÈ—>PU2>™™x>PU2>¹¦“>PU2>É­!>PU2>éº=>PU2?,ô>pbU=K(R>pbU=åÈ—>pbU>™™x>pbU>É­!>ˆ7µ=¥®_>ˆ7µ?,ô>˜>B=¥®_>˜>B=åÈ—>¨DÓ>ñg>¨DÓ>2þ‚>¨DÓ?í>¨DÓ?$ðÇ>¸K^<•çÉ>¸K^>ñg>¸K^>S ž>¸K^>™™x>¸K^?ã¬>¸K^?ê:>¸K^?$ðÇ>ÈQì=K(R>ÈQì>S ž>ÈQì>™™x>ÈQì>ùÀÊ>ÈQì?ê:>ØXy=K(R>ØXy=¥®_>ØXy>™™x>ØXy>ùÀÊ>ØXy?,ô>è_<•çÉ>è_=¥®_>è_=åÈ—>øe•=K(R>øe•=åÈ—>øe•?,ô?6=¥®_? 9Z>ñg? 9Z?í? 9Z?$ðÇ?<Ÿ>ñg?<Ÿ>2þ‚?<Ÿ>‰’ê?<Ÿ?ã¬?<Ÿ?ê:?<Ÿ?í??æ>S ž??æ>™™x??æ>ùÀÊ??æ?ê:??æ?$ðÇ?$C->™™x?$C->ùÀÊ?,Fu?,ô?s¹?© ?s¹?DPH>¹¦“?DPH>Ù³¯?DPH?$ðÇ?LS‘>ñg?LS‘>‰’ê?LS‘>É­!?LS‘>Ù³¯?LS‘>éº=?LS‘? æó?LS‘?í?LS‘?$ðÇ?TV×<•çÉ?TV×>ñg?TV×>éº=?TV×?ã¬?TV×? æó?TV×?í?\Z=K(R?\Z? æó?d]e=¥®_?d]e?ã¬?l`¬=åÈ—  ""..2211++$$ (--,,%% !!''&& )3399==GGJJIIDD>>::44//*BFFEE?75509<<AA@@;;::8866#CHHKKNN[[aacceZ`NSSYY__eeXXRRMMLLOO\\fWQQPPTTbe^^VVUU]]d=ÀN¥<•çÉ=ÀN¥>™™x=ÀN¥>© >4n>‰’ê>4n?ã¬>4n?ê:> A‰=K(R> A‰=¥®_> A‰>éº=> A‰?ã¬> A‰? æó> A‰?í> A‰?$ðÇ>@N«=åÈ—>@N«>‰’ê>`[À=K(R>`[À=¥®_>`[À>™™x>`[À>¹¦“>`[À>É­!>`[À>éº=>`[À?,ô>€4n<•çÉ>€4n=åÈ—>€4n>™™x>€4n>É­!>:ÿ=K(R> A‰=¥®_> A‰?,ô>°H=¥®_>°H=åÈ—>ÀN¥>ñg>ÀN¥>2þ‚>ÀN¥?í>ÀN¥?$ðÇ>ÐU2>ñg>ÐU2>S ž>ÐU2>™™x>ÐU2?ã¬>ÐU2?ê:>à[Ã>S ž>à[Ã>™™x>à[Ã?ã¬>à[Ã?ê:>à[Ã?í>ðbN>™™x>ðbN>ùÀÊ>ðbN?$ðÇ?7µ?,ô?>B>s¹?>B>© ?>B?,ô? A‹=åÈ—? A‹>s¹? A‹>¹¦“? A‹>Ù³¯? A‹?$ðÇ?(DÒ>ñg?(DÒ>‰’ê?(DÒ>É­!?(DÒ>Ù³¯?(DÒ>éº=?(DÒ? æó?(DÒ?í?(DÒ?$ðÇ?0H<•çÉ?0H>ñg?0H>éº=?0H?ã¬?0H? æó?0H?í?8K^=K(R?8K^? æó?@N¦=¥®_?@N¦?ã¬?HQí=åÈ—   ""++..--((##'**))$$!!&&%%  ,//0033@@FFHHJ?E388>>DDJJ==77221144AAK<665599GJCC;;::BBI=à[À=K(R=à[À=åÈ—>:û<•çÉ>:û=¥®_>:û>ñg>:û>2þ‚>0H=K(R>0H>ñg>0H>‰’ê>0H>™™x>PU9>ñg>PU9>2þ‚>PU9>s¹>pbN>ñg>pbN>éº=>pbN?ã¬>ˆ7µ>s¹>ˆ7µ>éº=>ˆ7µ>ùÀÊ>ˆ7µ?ã¬>ˆ7µ?ê:>˜>F>ñg>˜>F>‰’ê>˜>F>© >˜>F>¹¦“>˜>F>É­!>¨DÐ>© >¨DÐ>É­!>¨DÐ?$ðÇ>¸K^=K(R>ÈQì?í>ÈQì?$ðÇ>ÈQì?,ô>ØX}=K(R>ØX}=¥®_>ØX}?ê:>ØX}?í>ØX}?$ðÇ>è_ <•çÉ>øe˜=K(R?6=K(R? 9Z<•çÉ??ç=K(R??ç?ã¬??ç? æó??ç?ê:?$C.=K(R?,Fu=¥®_?,Fu>ùÀÊ?,Fu?ã¬?4I¼=åÈ—?4I¼>ùÀÊ?4I¼?ã¬?2þ‚?Ù³¯?éº=?DPJ>‰’ê?DPJ>¹¦“   %%--447799885522..))&&$$,,113 ##++00669'!! /**(("" =à[À>™™x=à[À>© >:û>‰’ê>:û?ã¬>:û?ê:>0H>éº=>0H?ã¬>0H? æó>0H?í>0H?$ðÇ>PU2>‰’ê>pbN½šÔµ>pbN¼U;>pbN>™™x>pbN>¹¦“>pbN>É­!>pbN>éº=>pbN?,ô>ˆ7¸½Úîé>ˆ7¸½5tý>ˆ7¸<•çÉ>ˆ7¸=åÈ—>ˆ7¸>™™x>ˆ7¸>É­!>˜>B¼U;>¨DнÚîé>¨DÐ>ñg>¨DÐ>2þ‚>¨DÐ?,ô>¸K^½Úîé>¸K^½šÔµ>¸K^>2þ‚>¸K^?$ðÇ>ÈQ콚Ե>ÈQì¼U;>ÈQì>ñg>ÈQì>S ž>ÈQì? æó>ÈQì?í>ÈQì?$ðÇ>ØXy½šÔµ>ØXy¼U;>ØXy? æó>ØXy?í>è_¼U;>è_>ñg>è_>2þ‚>è_>S ž>è_? æó>øe•=åÈ—?6>ñg?6>2þ‚? 9Z<•çÉ? 9Z?í?<¡=K(R?<¡=¥®_?<¡?$ðÇ??ç? æó??ç?,ô?$C.=åÈ—?,Fu>2þ‚?,Fu>éº=?,Fu?ã¬?,Fu?ê:?4Iº>S ž?4Iº>‰’ê?4Iº>¹¦“?4Iº>É­!?4Iº>Ù³¯?4Iº?ã¬?™™x?É­!   ''++00/-,,(( &**))! %%$#""0::??EEGGFF@@;;48>>DDC599==BBAA<<;733/$622..411-#= Aˆ=K(R= Aˆ=åÈ—=à[À<•çÉ=à[À=¥®_=à[À>ñg=à[À>2þ‚>:û=K(R>:û>ñg>:û>‰’ê>:û>™™x>0H>ñg>0H>2þ‚>0H>s¹>PU2>ñg>PU2>éº=>PU2?ã¬>pbN>s¹>pbN>éº=>pbN>ùÀÊ>pbN?ã¬>pbN?ê:>ˆ7¸>ñg>ˆ7¸>‰’ê>ˆ7¸>© >ˆ7¸>¹¦“>ˆ7¸>É­!>˜>B>© >˜>B>É­!>˜>B?$ðÇ>¨DÐ=K(R>¸K^?í>¸K^?$ðÇ>¸K^?,ô>ÈQì=K(R>ÈQì=¥®_>ÈQì?ê:>ÈQì?í>ÈQì?$ðÇ>ØXy<•çÉ>è_=K(R>øe•=K(R>øe•=åÈ—?6<•çÉ?6>ñg? 9Z>ñg? 9Z>2þ‚?<¡>ñg?<¡?ã¬?<¡? æó?<¡?ê:??ç=K(R??ç>ñg??ç>2þ‚?$C.>ùÀÊ?$C.?ã¬?,Fu<•çÉ?,Fu=åÈ—?,Fu>ùÀÊ?,Fu?ã¬?4Iº=K(R?4Iº>2þ‚?4Iº>Ù³¯?4Iº>éº=?‰’ê?¹¦“?DPJ=K(R?LS=¥®_   %%11::>>BBAA<<82**&&$$00669 ##//55==B'!! 2(("" )--44@@C.33;+,,77??D= AŒ=¥®_=à[À=åÈ—=à[À>2þ‚=à[À>™™x=à[À>© >:û=¥®_>:û>ñg>:û>‰’ê>:û?ã¬>:û?ê:>0H=K(R>0H=åÈ—>0H>éº=>0H?ã¬>0H? æó>0H?í>0H?$ðÇ>PU9>ñg>PU9>‰’ê>pbN<•çÉ>pbN>™™x>pbN>¹¦“>pbN>É­!>pbN>éº=>pbN?,ô>ˆ7µ>™™x>ˆ7µ>É­!>˜>F<•çÉ>¨DÐ?,ô>¸K^=K(R>¸K^=¥®_>¸K^?$ðÇ>ÈQì=åÈ—>ÈQì>2þ‚>ÈQì? æó>ÈQì?í>ÈQì?$ðÇ>ØX}=åÈ—>ØX}>2þ‚>ØX}? æó>ØX}?í>è_ >2þ‚>è_ >¹¦“>è_ ? æó>è_ ?ê:>øe˜?$ðÇ?6>É­!? 9Z>É­!? 9Z?,ô?<¡>Ù³¯??ç?,ô?$C.=¥®_?$C.?$ðÇ?,Fu=åÈ—?,Fu? æó?,Fu?í?,Fu?$ðÇ?4I¼<•çÉ?4I¼=åÈ—?4I¼?ã¬?4I¼? æó?4I¼?í?1::??A=ÀN¥>™™x=ÀN¥>Ù³¯>4n>S ž>4n?ã¬> A>ñg> A?ê:>@N¥>ñg>@N¥?ê:>`[À=¥®_>`[À=åÈ—>`[À?í>`[À?$ðÇ>€4q=åÈ—>:û=K(R>:û=¥®_>:û>© >:û>É­!> A‰>‰’ê> A‰>éº=> A‰?í> A‰?$ðÇ> A‰?,ô>°H=¥®_>ÀN¥<•çÉ>ÀN¥=K(R>ÀN¥>s¹>ÀN¥>‰’ê>ÀN¥>ùÀÊ>ÐU2>‰’ê>à[À>s¹>à[À>‰’ê>à[À>™™x>à[À?í>à[À?$ðÇ>à[À?,ô?4n<•çÉ?4n=K(R?4n=¥®_?4n>‰’ê?4n>É­!?7µ?ê:?7µ?í?7µ?$ðÇ?:û>¹¦“?:û>É­!?:û>Ù³¯?>D=K(R?>D>É­!? A‹=¥®_? A‹=åÈ—? A‹>É­!? A‹? æó?(DÒ=¥®_?(DÒ>Ù³¯?(DÒ?ã¬?(DÒ? æó?0H>ñg?0H>É­!?0H?$ðÇ?8K_>ñg?8K_>2þ‚?8K_>É­!?8K_?ã¬?8K_? æó?8K_?í?8K_?,ô?@N¦>s¹?@N¦>© ?@N¦?ê:?@N¦?$ðÇ@::AAEEDD>>66(( 3))!! D??77**""  ##..44;;BBCC==55--'' $$0 %%1188<<B/,,C9922++&&=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4t<•çÉ>4t=¥®_>4t>ñg>4t>2þ‚>4t>éº=>4t?ê:>4t?í>4t?$ðÇ> A‰=K(R> A‰>ñg>@N¥>ñg>@N¥>2þ‚>@N¥>Ù³¯>@N¥?í>@N¥?$ðÇ>`[Ç=åÈ—>`[Ç>ñg>`[Ç?,ô>:û>ñg>:û>2þ‚>:û>s¹> A‰>ñg>°H=K(R>°H>¹¦“>°H>Ù³¯>ÀN¥>ñg>ÀN¥>¹¦“>ÀN¥>É­!>ÀN¥>Ù³¯>ÀN¥>ùÀÊ>ÀN¥?í>ÀN¥?$ðÇ>ÀN¥?,ô>ÐU2=K(R>ÐU2=¥®_>ÐU2>2þ‚>ÐU2>s¹>ÐU2>‰’ê>ÐU2>™™x>à[Ã<•çÉ>à[Ã>s¹>à[Ã>™™x>ðbQ=K(R>ðbQ?ê:>ðbQ?í>ðbQ?$ðÇ?4o=K(R?7¶<•çÉ?:ý? æó?>D=K(R?>D?ã¬?>D? æó? A‹=K(R? A‹?$ðÇ?(DÐ=¥®_?(DÐ?ã¬?(DÐ? æó?(DÐ?í?(DÐ?,ô?0H=åÈ—?0H?ê:?0H?$ðÇ $$1177<<@ ##004 ""//66;;@@AA>>99=/!!(('**)! --,,'' &&2255:%%. ++3388?=€4l?ê:=ÀN³=åÈ—=ÀN³?í>4n=åÈ—>4n?í>4n?$ðÇ> A‰>ñg> A‰?ê:> A‰?,ô>@N«=¥®_>@N«=åÈ—>@N«?í>`[À>ñg>`[À?í>€4n<•çÉ>:û=K(R>:û=¥®_>°H=¥®_>ÀN¥?ê:>ÐU2?í>à[Ã?í>à[Ã?$ðÇ>ðbQ=¥®_>ðbQ>2þ‚>ðbQ?ê:>ðbQ?,ô?4o=¥®_?4o?í?7¶<•çÉ?7¶=åÈ—?7¶?ê:?:ý=K(R?:ý=¥®_?:ý?í?>D=¥®_? A‰=åÈ—   #!! "=à[À>™™x=à[À>© >:û=K(R>:û=åÈ—>:û>‰’ê>:û?ã¬>:û?ê:>0H<•çÉ>0H=¥®_>0H>ñg>0H>2þ‚>0H>éº=>0H?ã¬>0H? æó>0H?í>0H?$ðÇ>PU9=K(R>PU9>ñg>PU9>‰’ê>pbN>ñg>pbN>2þ‚>pbN>™™x>pbN>¹¦“>pbN>É­!>pbN>éº=>pbN?,ô>ˆ7µ>ñg>ˆ7µ>™™x>ˆ7µ>É­!>¨DÐ>ñg>¨DÐ?,ô>¸K^>ñg>¸K^?$ðÇ>ÈQì=K(R>ÈQì>S ž>ÈQì? æó>ÈQì?í>ÈQì?$ðÇ>ØX}>S ž>ØX}>s¹>ØX}? æó>ØX}?í>è_ =K(R>è_ =¥®_>è_ >™™x>è_ ? æó>è_ ?ê:>øe˜<•çÉ>øe˜?$ðÇ?6=K(R? 9Z=K(R? 9Z?,ô??ç<•çÉ??ç>Ù³¯??ç>éº=??ç>ùÀÊ??ç?,ô?$C.=K(R?$C.>¹¦“?$C.>É­!?$C.>Ù³¯?$C.?ã¬?$C.?$ðÇ?,Fu=K(R?,Fu? æó?,Fu?í?,Fu?$ðÇ?4I¼=¥®_?4I¼?ã¬?4I¼? æó?™™x?© ?¹¦“?2þ‚?DPJ>s¹?DPJ>™™x?DPJ?㬠  %%))--,,&&$((' ##"".003388BBJJNAE8>>@@DDND==7755::GGL;H6<<IIMMKKFF??44//!! 1**C9922++ =à[À>™™x=à[À>© >:û=K(R>:û=åÈ—>:û>‰’ê>:û?ã¬>:û?ê:>0H<•çÉ>0H=¥®_>0H>ñg>0H>2þ‚>0H>éº=>0H?ã¬>0H? æó>0H?í>0H?$ðÇ>PU2=K(R>PU2>‰’ê>pbN>ñg>pbN>™™x>pbN>¹¦“>pbN>É­!>pbN>éº=>pbN?,ô>ˆ7¸>ñg>ˆ7¸>2þ‚>ˆ7¸>™™x>ˆ7¸>É­!>˜>B=åÈ—>˜>B>ñg>˜>B>2þ‚>¨DÐ>ñg>¨DÐ?,ô>¸Ka=K(R>¸Ka>s¹>¸Ka>‰’ê>¸Ka?$ðÇ>ÈQì=K(R>ÈQì>™™x>ÈQì>É­!>ÈQì? æó>ÈQì?í>ÈQì?$ðÇ>ØXy<•çÉ>ØXy=K(R>ØXy>© >ØXy>É­!>ØXy? æó>ØXy?í>è_>Ù³¯>è_? æó>è_?,ô>øe•<•çÉ? 9Z<•çÉ? 9Z>éº=? 9Z?ê:? 9Z?,ô?<¡>¹¦“?<¡>Ù³¯?<¡>éº=?<¡>ùÀÊ?<¡?ê:?<¡?$ðÇ??æ=K(R??æ>Ù³¯??æ?$ðÇ?$C-=¥®_?$C->‰’ê?,Ft=åÈ—?,Ft>ñg?,Ft>S ž?,Ft>s¹?,Ft>‰’ê?,Ft>© ?,Ft?,ô?4I¼<•çÉ?4I¼=K(R?4I¼=¥®_?4I¼>2þ‚?4I¼>s¹?Ù³¯?DPJ>éº=?DPJ>ùÀÊ?DPJ?,ô?LS<•çÉ?LS>¹¦“?LS>É­!?LS>Ù³¯?LS?ã¬?LS?$ðÇ?TV×=K(R?TV×? æó?TV×?í?TV×?$ðÇ?\Z=K(R?\Z?ã¬?\Z? æó?d]d=¥®_?d]d>™™x?d]d>© ?d]d>¹¦“?d]d? æó?l`¬>ñg?l`¬>s¹?l`¬>™™x?l`¬?㬠   **002211--"")//..& $$((''##*3388AJ>>776699CCFFEEB;::HHGJAA==<<@@IIOONNDD??55++!! %4,, JUU__ggk^bU[[]]aakaZZTTRRWWddiXeSYYffjjhhcc``VVKK?PLLBc\\QQMMD=ÀN¥<•çÉ=ÀN¥?ê:> A‰=K(R> A‰=¥®_> A‰>‰’ê> A‰?í>@N¥=¥®_>@N¥=åÈ—>`[Ç<•çÉ>`[Ç>© >`[Ç>¹¦“>`[Ç>É­!>`[Ç?í>`[Ç?$ðÇ>€4n=K(R>€4n=¥®_>€4n?,ô>:û=¥®_>:û?ê:> A‰=åÈ—> A‰? æó> A‰?í> A‰?$ðÇ>°H>S ž>°H>© >°H>É­!>°H>éº=>°H?ê:>ÀN¥=åÈ—>ÀN¥>S ž>ÀN¥>ùÀÊ>ÀN¥?ê:>ÐU2>ñg>ÐU2>s¹>ÐU2>© >ÐU2>É­!>ÐU2>ùÀÊ>à[Ã=K(R>à[Ã>ñg>à[Ã?ê:>ðbQ=¥®_>ðbQ=åÈ—>ðbQ?í?4o<•çÉ?4o?í?4o?$ðÇ?7¶=K(R?7¶=¥®_?7¶>© ?7¶>¹¦“?7¶>É­!?7¶?,ô?:ý?ê:?:ý?í?>D=¥®_?>D>éº=?>D?í?>D?$ðÇ?(DÐ=åÈ—?(DÐ?,ô   ((.$$#"!!&&))//6%%++:$''3399;-558*,,44; #227 1 "007=à[À>™™x=à[À>© >:û>‰’ê>:û?ã¬>:û?ê:>0H=K(R>0H>éº=>0H?ã¬>0H? æó>0H?í>0H?$ðÇ>PU2¼U;>PU2<•çÉ>PU2=¥®_>PU2>‰’ê>pbN=K(R>pbN>™™x>pbN>¹¦“>pbN>É­!>pbN>éº=>pbN?,ô>ˆ7¸½šÔµ>ˆ7¸>™™x>ˆ7¸>É­!>¨DÐ>2þ‚>¨DÐ?,ô>¸K^½Úîé>¸K^>S ž>¸K^>s¹>¸K^?$ðÇ>ÈQì>S ž>ÈQì>s¹>ÈQì>‰’ê>ÈQì>¹¦“>ÈQì? æó>ÈQì?í>ÈQì?$ðÇ>ØXy=¥®_>ØXy>™™x>ØXy>¹¦“>ØXy? æó>ØXy?í>è_=åÈ—>è_>ñg>è_>É­!>è_? æó>øe•½Úîé>øe•>ñg?6>2þ‚?<¡½šÔµ??ç½5tý?$C.¼U;?$C.<•çÉ?$C.=K(R?$C.?$ðÇ?,Fu=K(R?,Fu=åÈ—?,Fu?$ðÇ?4Iº>2þ‚?4Iº?,ô  $$))--,,&&++/#(('' *""!!%%0-;65529884;::773311..   =ÀN¥¼U;=ÀN¥=K(R>4n½5tý>4n=¥®_> A½5tý> A=¥®_>@N¥=K(R>@N¥=¥®_>`[À=K(R>`[À=¥®_>€4q=K(R>€4q>S ž>:û½šÔµ>:û½5tý>:û>‰’ê>:û>Ù³¯>:û?ê:> A‰½šÔµ> A‰½5tý> A‰>™™x> A‰>¹¦“> A‰?$ðÇ>°H½Úîé>°H½šÔµ>ÀN¥>© >ÀN¥?,ô>ÐU2½Úîé>ðbN½Úîé>ðbN>© >ðbN?,ô?4n>¹¦“?4n?$ðÇ?7µ½šÔµ?7µ>¹¦“?7µ>É­!?7µ>Ù³¯?7µ?ê:?7µ?í?7µ?$ðÇ?:û½šÔµ?:û½5tý?:û>‰’ê?:û>™™x?:û>É­!?:û>Ù³¯?:û?ê:?:û?í?>D¼U;?>D<•çÉ?>D>S ž?>D>s¹?>D>éº=?>D? æó? A‹¼U;? A‹=K(R? A‹>2þ‚? A‹>s¹?(DÒ=K(R?(DÒ>2þ‚&&..4433++!!%--,,"$$## **88::9955'' 27766/))1100((   =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>;?ã¬>;?ê:>0H>éº=>0H>ùÀÊ>0H? æó>0H?ê:>0H?$ðÇ>PU9?ã¬>pbN?ã¬>pbN?,ô =€4z>2þ‚=€4z>‰’ê=ÀN¥=¥®_=ÀN¥>2þ‚=ÀN¥>S ž=ÀN¥>‰’ê=ÀN¥>¹¦“>4n<•çÉ>4n=¥®_>4n=åÈ—>4n>¹¦“>4n>É­!> A‰=K(R>@N¥=K(R>@N¥>Ù³¯>`[À>Ù³¯>€4n>É­!>€4n>Ù³¯>:û>éº=> A=¥®_> A=åÈ—> A>¹¦“> A>Ù³¯>°H=åÈ—>°H>¹¦“>ÀN¥<•çÉ>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>É­!>ÐU6=K(R>ÐU6=¥®_>ÐU6>É­!>à[Ã=¥®_>ðbQ=åÈ—    ! = AŒ?í=à[Î=¥®_=à[Î?ê:>:û=¥®_>:û=åÈ—>:û?ã¬>0H=åÈ—>0H?ã¬>0H?ê:>PU2=K(R>PU2=åÈ—>PU2>¹¦“>PU2?ã¬>PU2?ê:>pbU<•çÉ>pbU?í>pbU?$ðÇ>ˆ7µ=K(R>ˆ7µ=¥®_>ˆ7µ?$ðÇ>˜>B=K(R>¨DÓ=K(R>¨DÓ>Ù³¯>¨DÓ?,ô>¸Ka>Ù³¯>ÈQï=¥®_>ÈQï=åÈ—>ÈQï>¹¦“>ÈQï>É­!>ÈQï>éº=>ØX}=åÈ—>ØX}>S ž>ØX}>‰’ê>ØX}>© >ØX}>É­!>è_ >S ž>è_ >™™x    ""$$##! = Aˆ>ñg= Aˆ>™™x=à[À=¥®_=à[À>ñg=à[À>™™x=à[À>¹¦“>:û=¥®_>:û>2þ‚>:û>© >:û>¹¦“>0H<•çÉ>0H=K(R>0H=åÈ—>0H>É­!>PU2>Ù³¯>pbN=K(R>pbN>Ù³¯>ˆ7µ>¹¦“>ˆ7µ>éº=>˜>B=¥®_>˜>B>É­!>¨DÓ>É­!    =ÀN²=¥®_>4n=¥®_>4n=åÈ—>4n>¹¦“>4n?ã¬>4n?ê:> A‰=åÈ—> A‰>¹¦“> A‰>ùÀÊ> A‰?ã¬> A‰? æó> A‰?ê:> A‰?í>@N¥=K(R>@N¥=åÈ—>@N¥>É­!>@N¥? æó>`[Ç<•çÉ>`[Ç?,ô>€4q=K(R>€4q=¥®_>€4q>Ù³¯>:û=K(R>:û>Ù³¯>:û>éº=> A=K(R>°H>éº=>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>É­!>ÐU2=åÈ—>ÐU2>S ž>ÐU2>™™x>ÐU2>¹¦“>ÐU2>É­!>à[Ã>S ž>à[Ã>™™x  ! ""$$## = Aˆ>ñg= Aˆ>™™x=à[À=¥®_=à[À>ñg=à[À>™™x=à[À>¹¦“>:û=¥®_>:û>2þ‚>:û>S ž>:û>© >:û>¹¦“>0H<•çÉ>0H=K(R>0H=åÈ—>0H>É­!>PU2>É­!>PU2>Ù³¯>pbN=K(R>pbN>éº=>ˆ7µ>™™x>˜>B=¥®_>˜>B>© >¨DÓ>©      =@N¥>¹¦“= A‹>É­!=à[À>s¹=à[À>¹¦“=à[À>É­!=à[À>éº==à[À?ã¬=à[À?ê:=à[À?í>;¾ „>;<•çÉ>;>Ù³¯>;>éº=>;?í>;?$ðÇ>;?,ô>0H>s¹>0H>¹¦“>0H>Ù³¯>0H?í>0H?$ðÇ>PU9>É­!>PU9?,ô>pbN>É­!>pbN?ê:>pbN?í>ˆ7µ?$ðÇ>˜>B>¹¦“>˜>B>É­!>˜>B?ê:>˜>B?í>¨DÓ?í>¨DÓ?$ðÇ>¸Ka?,ô! !     =ÀN²½šÔµ=ÀN²½5tý=ÀN²>2þ‚=ÀN²>‰’ê>4n½Úîé>4n½šÔµ>4n½5tý>4n=¥®_>4n>ñg>4n>S ž>4n>‰’ê>4n>¹¦“> A‰<•çÉ> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!>@N¥¾ „>@N¥=K(R>`[Ç=K(R>`[Ç>Ù³¯>€4q>Ù³¯>:û¾ „>:û>É­!>:û>Ù³¯> A>éº=>°H½Úîé>°H=åÈ—>°H>¹¦“>°H>Ù³¯>ÀN¥½šÔµ>ÀN¥½5tý>ÀN¥<•çÉ>ÀN¥=K(R>ÀN¥>¹¦“>ÐU2¼U;>ÐU2>¹¦“>ÐU2>É­!>à[Ã>É­!     ""!%%&$&$##= AŒ?í=à[Î=¥®_=à[Î?ê:>:û=åÈ—>:û?ã¬>0H=K(R>0H=¥®_>0H?ã¬>0H?ê:>PU2<•çÉ>PU2=K(R>PU2=åÈ—>PU2>¹¦“>PU2?ã¬>PU2?ê:>pbU¾ „>pbU=¥®_>pbU?í>pbU?$ðÇ>ˆ7µ=¥®_>ˆ7µ?$ðÇ>˜>B=åÈ—>¨DÓ½šÔµ>¨DÓ>Ù³¯>¨DÓ?,ô>¸Ka>Ù³¯>ÈQï¼U;>ÈQï<•çÉ>ÈQï>© >ÈQï>É­!>ÈQï>éº=>ØX}=K(R>ØX}>ñg>ØX}>s¹>ØX}>™™x>ØX}>É­!>è_ >ñg>è_ >‰’ê    ##%%$$"!! =4k>¹¦“=€4n>É­!=ÀN¥>É­!=ÀN¥>Ù³¯>4n=¥®_>4n>¹¦“>4n>éº=>4n?í>4n?$ðÇ> A‰=åÈ—> A‰>É­!> A‰>Ù³¯> A‰?ê:> A‰?,ô>@N¥<•çÉ>@N¥=åÈ—>@N¥>¹¦“>@N¥?í>@N¥?$ðÇ>`[À=K(R>`[À=¥®_>`[À>É­!>€4n=¥®_>:û=åÈ—     =4ƒ¾ „=€4l>¹¦“=ÀN¥½Úîé=ÀN¥>É­!>4n½Úîé>4n½šÔµ>4n>É­!>4n>Ù³¯> A‰½5tý> A‰<•çÉ> A‰>¹¦“> A‰>éº=> A‰?í> A‰?$ðÇ>@N¥½5tý>@N¥<•çÉ>@N¥>É­!>@N¥>Ù³¯>@N¥?ê:>@N¥?,ô>`[À<•çÉ>`[À>¹¦“>`[À?í>`[À?$ðÇ>€4n½5tý>€4n>É­!>:û½šÔµ     = Aˆ>¹¦“= Aˆ?í=à[À=¥®_=à[À>É­!=à[À?ê:>:û=åÈ—>:û>¹¦“>:û>É­!>:û>éº=>:û?ã¬>0H=K(R>0H=åÈ—>0H>É­!>0H>éº=>0H?ã¬>0H?ê:>PU2<•çÉ>PU2=åÈ—>PU2>¹¦“>PU2>É­!>PU2>ùÀÊ>PU2?ã¬>PU2?ê:>pbN=K(R>pbN=¥®_>pbN>É­!>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>˜>B=åÈ—>˜>B>Ù³¯>˜>B? æó>˜>B?,ô>¨DÓ>ùÀÊ>¨DÓ?ã¬>¨DÓ?ê:>¸K^>¹¦“>¸K^>É­!>¸K^>ùÀÊ>¸K^? æó      ##''&&""!!%%$$=4p?í=€4n=¥®_=€4n?ê:=ÀN«=åÈ—=ÀN«?ã¬>4n=K(R>4n=¥®_>4n?ã¬>4n?ê:> A<•çÉ> A=åÈ—> A?ã¬> A?ê:>@N¥=K(R>@N¥=¥®_>@N¥?í>@N¥?$ðÇ>`[Ç=¥®_>`[Ç?$ðÇ>€4q=åÈ—>:û?,ô    =4h>¹¦“=€4l>É­!=ÀN¥=¥®_=ÀN¥>É­!=ÀN¥>Ù³¯>4n=¥®_>4n=åÈ—>4n>¹¦“>4n>éº=> A<•çÉ> A=K(R> A=åÈ—> A>¹¦“>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>`[À=¥®_>:û>Ù³¯>°H=¥®_>°H>É­!>°H>Ù³¯>°H>éº=>ÀN¥=¥®_>ÀN¥=åÈ—>ÀN¥>© >ÀN¥>É­!>ÐU2<•çÉ>ÐU2=K(R>ÐU2=åÈ—>ÐU2>© >ÐU2>Ù³¯>à[À=¥®_>à[À=åÈ—>à[À>¹¦“>ðbN=¥®_?7µ>Ù³¯?:û>É­!?:û>Ù³¯?>D>éº=? A‹=¥®_? A‹>¹¦“? A‹>Ù³¯?(DÒ=åÈ—?(DÒ>¹¦“?0H<•çÉ?0H=åÈ—?0H>¹¦“?0H>É­!?8K_=K(R?8K_=¥®_?8K_>É­!?@N¦=¥®_?HQì=åÈ—     ""!!##$%%))((--5&,,++1"$$''**003/3/..224=4‘>¹¦“=€4p>É­!=ÀN§=¥®_=ÀN§>É­!=ÀN§>Ù³¯>4t=¥®_>4t=åÈ—>4t>¹¦“>4t>éº=> A‰<•çÉ> A‰=K(R> A‰=åÈ—> A‰>¹¦“>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>`[À=¥®_>:ÿ>Ù³¯> A>É­!> A>Ù³¯>°H>éº=>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>Ù³¯>ÐU2=åÈ—>ÐU2>¹¦“>à[Ã<•çÉ>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>ðbQ=K(R>ðbQ=¥®_>ðbQ>É­!?4o=¥®_?7¶=åÈ—    #!! "=ÀN²=¥®_>4n=¥®_>4n=åÈ—>4n>¹¦“> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>`[Ç<•çÉ>`[Ç>É­!>€4q=K(R>€4q=¥®_>:û=K(R> A=K(R> A>Ù³¯>°H>Ù³¯>ÀN¥=¥®_>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>É­!>ÀN¥>éº=>ÐU2=åÈ—>ÐU2>S ž>ÐU2>‰’ê>ÐU2>© >ÐU2>É­!>à[Ã>S ž>à[Ã>™™x    = AŒ=K(R=à[Î>Ù³¯=à[Î>ùÀÊ>:û=¥®_>:û=åÈ—>:û>© >:û>Ù³¯>:û>éº=>:û>ùÀÊ>:û?ã¬>0H¾ „>0H<•çÉ>0H>© >0H>Ù³¯>0H? æó>PU2=¥®_>PU2=åÈ—>PU2>© >PU2>¹¦“>pbU=¥®_>pbU=åÈ—>ˆ7µ<•çÉ>˜>B=K(R>˜>B=¥®_>¨DÓ=K(R>¨DÓ>Ù³¯>¸Ka>Ù³¯>ÈQï=¥®_>ÈQï=åÈ—>ÈQï>¹¦“>ÈQï>É­!>ÈQï>éº=>ØX}=åÈ—>ØX}>S ž>ØX}>‰’ê>ØX}>© >ØX}>É­!>è_ >S ž>è_ >™™x    $$&&%% #""!!=ÀN²>2þ‚=ÀN²>‰’ê>4n=¥®_>4n>ñg>4n>S ž>4n>‰’ê>4n>¹¦“> A‰<•çÉ> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!>@N¥=K(R>`[Ç=K(R>`[Ç>Ù³¯>€4q>Ù³¯>:û>É­!>:û>Ù³¯> A>éº=>°H=åÈ—>°H>¹¦“>°H>Ù³¯>ÀN¥¾ „>ÀN¥<•çÉ>ÀN¥>¹¦“>ÐU2=åÈ—>ÐU2>¹¦“>ÐU2>É­!>à[Ã>É­!    =€4z>¹¦“=ÀN¥>É­!>4n=¥®_>4n>É­!>4n>Ù³¯> A‰=åÈ—> A‰>¹¦“> A‰>éº=>@N¥=K(R>@N¥=¥®_>@N¥>¹¦“>`[À<•çÉ>`[À=åÈ—>`[À>É­!>€4n=K(R>€4n=¥®_>:û=¥®_>:û>Ù³¯> A=åÈ—> A>¹¦“> A>Ù³¯>°H>É­!>°H>éº=>ÀN¥>É­!    <€4n>¹¦“=@N§>É­!= A‹>s¹= A‹>¹¦“= A‹>É­!= A‹>éº== A‹?ã¬= A‹?ê:= A‹?í=à[ξ „=à[Î<•çÉ=à[Î>É­!=à[Î>Ù³¯=à[Î?í=à[Î?$ðÇ=à[Î?,ô>;>s¹>;>¹¦“>;?í>;?$ðÇ>0H?,ô>PU9?ê:>PU9?í>pbU?$ðÇ>ˆ7µ?ê:>ˆ7µ?í>˜>B?í>˜>B?$ðÇ>¨DÓ?,ô    =€4l>¹¦“>4n=¥®_>4n>É­!> A‰=åÈ—> A‰>¹¦“> A‰>É­!> A‰>Ù³¯>@N¥=K(R>@N¥=åÈ—>@N¥>É­!>@N¥>éº=>@N¥>ùÀÊ>`[À<•çÉ>`[À=åÈ—>`[À>¹¦“>`[À>É­!>`[À?ê:>€4n=K(R>€4n=¥®_>:û=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!     =4‘>¹¦“=€4p>É­!=ÀN§=¥®_=ÀN§>É­!=ÀN§>Ù³¯>4t=¥®_>4t=åÈ—>4t>¹¦“>4t>éº=> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=åÈ—>@N¥>É­!>`[À<•çÉ>`[À=K(R>€4q=¥®_>:ÿ=K(R>°H>É­!>ÀN¨=¥®_>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>É­!>ÐU2=åÈ—>ÐU2>¹¦“>ÐU2>Ù³¯>ÐU2>éº=>à[Ã<•çÉ>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>ðbQ=K(R>ðbQ=¥®_>ðbQ>É­!?4o=¥®_?7¶=åÈ—   #!! "=ÀN²=¥®_=ÀN²>É­!=ÀN²>éº=>4n=¥®_>4n=åÈ—>4n>™™x>4n>É­!>4n>Ù³¯>4n>éº=>4n>ùÀÊ> A‰=åÈ—> A‰>™™x> A‰>É­!> A‰?ã¬>@N¥=K(R>@N¥=åÈ—>@N¥>™™x>@N¥>¹¦“>`[Ç<•çÉ>€4q=K(R>€4q=¥®_>:û=K(R> A=K(R> A>Ù³¯>°H>Ù³¯>ÀN¥=¥®_>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>É­!>ÀN¥>éº=>ÐU2=åÈ—>ÐU2>S ž>ÐU2>‰’ê>ÐU2>© >ÐU2>É­!>à[Ã>S ž>à[Ã>™™x    ""$$##! =ÀN¥=¥®_=ÀN¥>É­!=ÀN¥>éº=>4t=¥®_>4t=åÈ—>4t>™™x>4t>É­!>4t>Ù³¯>4t>éº=>4t>ùÀÊ> A‰<•çÉ> A‰=K(R> A‰=åÈ—> A‰>™™x> A‰>É­!> A‰?ã¬>@N¥=¥®_>@N¥=åÈ—>@N¥>™™x>@N¥>¹¦“>`[Ç=¥®_>:û>Ù³¯>°H=¥®_>°H>É­!>°H>Ù³¯>°H>éº=>ÀN¥=¥®_>ÀN¥=åÈ—>ÀN¥>© >ÀN¥>É­!>ÐU2=åÈ—>ÐU2>© >ÐU2>Ù³¯>à[Ã=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbQ<•çÉ?4o=K(R?4o=¥®_?7¶=K(R?:ý=K(R?:ý>Ù³¯?>D>Ù³¯? A‹=¥®_? A‹=åÈ—? A‹>¹¦“? A‹>É­!? A‹>éº=?(DÐ=åÈ—?(DÐ>S ž?(DÐ>‰’ê?(DÐ>© ?(DÐ>É­!?0H>s¹?0H>™™x     % ##""&&'!!$$(#//44665500++(*..3)--2211,,(=€4z½5tý=€4z<•çÉ=ÀN¥½Úîé=ÀN¥=¥®_=ÀN¥>¹¦“>4n=¥®_>4n>É­!> A‰¾ „> A‰=åÈ—> A‰>É­!> A‰>Ù³¯>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>éº=>`[À=åÈ—>`[À>¹¦“>€4n¾ „>€4n=K(R>€4n=åÈ—>€4n>É­!>:û<•çÉ> A½Úîé> A½šÔµ> A=K(R> A=¥®_> A>Ù³¯>°H½Úîé>°H½šÔµ>°H=K(R>°H>¹¦“>°H>Ù³¯>ÀN¥>É­!>ÀN¥>éº=>ÐU6=¥®_>ÐU6>É­!  " ##!! =ÀN²=¥®_=ÀN²>É­!=ÀN²>éº=>4n=åÈ—>4n>™™x>4n>É­!>4n>Ù³¯>4n>éº=>4n>ùÀÊ> A‰=K(R> A‰=¥®_> A‰>™™x> A‰>É­!> A‰?ã¬>@N¥<•çÉ>@N¥=åÈ—>@N¥>™™x>@N¥>¹¦“>`[Ǿ „>`[Ç=K(R>`[Ç=¥®_>€4q=¥®_>:û=åÈ—> A½šÔµ> A>Ù³¯>°H>Ù³¯>ÀN¥¼U;>ÀN¥<•çÉ>ÀN¥>© >ÀN¥>É­!>ÀN¥>éº=>ÐU2=K(R>ÐU2>ñg>ÐU2>s¹>ÐU2>™™x>ÐU2>É­!>à[Ã>ñg>à[Ã>‰’ê    ##%%$$"!! = Aˆ½5tý= Aˆ<•çÉ= Aˆ>¹¦“=à[À½Úîé=à[À=¥®_>0H¾ „>0H=åÈ—>0H>2þ‚>PU2>2þ‚>PU2>Ù³¯>pbN¾ „>pbN>S ž>pbN>Ù³¯>pbN>éº=>ˆ7µ½Úîé>ˆ7µ=åÈ—>ˆ7µ>ñg>ˆ7µ>s¹>ˆ7µ>É­!>˜>B½Úîé>˜>B½5tý>˜>B=K(R>˜>B=¥®_>˜>B>ñg>˜>B>s¹>˜>B>™™x>˜>B>© >˜>B>É­!>˜>B>Ù³¯>¨DÓ½5tý>¨DÓ=¥®_>¨DÓ>™™x>¨DÓ>¹¦“>¸K^>2þ‚      ! >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê:   dx-4.4.4/fonts/gothicit_t.dx0000644000076500000240000030035507120226535012710 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 19 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 20 msb ieee data 152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.375600 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 312 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 472 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 49 msb ieee data 568 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 46 msb ieee data 960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1328 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 45 msb ieee data 1744 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 38 msb ieee data 2104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 10 msb ieee data 2408 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 10 msb ieee data 2488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.375600 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 22 msb ieee data 2568 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 21 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 22 msb ieee data 2912 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 21 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3256 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3568 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 3632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 10 msb ieee data 3696 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 10 msb ieee data 3776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.375600 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 3856 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 3888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 7 msb ieee data 3920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 7 msb ieee data 3976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.375600 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4032 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 26 msb ieee data 4096 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 26 msb ieee data 4304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 19 msb ieee data 4512 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 19 msb ieee data 4664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 32 msb ieee data 4816 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 30 msb ieee data 5072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 35 msb ieee data 5312 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 33 msb ieee data 5592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 28 msb ieee data 5856 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 25 msb ieee data 6080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 32 msb ieee data 6280 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 31 msb ieee data 6536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 37 msb ieee data 6784 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 37 msb ieee data 7080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 28 msb ieee data 7376 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 26 msb ieee data 7600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 38 msb ieee data 7808 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 39 msb ieee data 8112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 38 msb ieee data 8424 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 38 msb ieee data 8728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 14 msb ieee data 9032 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 14 msb ieee data 9144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.375600 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 17 msb ieee data 9256 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 17 msb ieee data 9392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.375600 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 9528 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 9552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 9568 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 9632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 9696 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 35 msb ieee data 9736 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 35 msb ieee data 10016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 10296 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 10680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 36 msb ieee data 11064 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 34 msb ieee data 11352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.813800 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 48 msb ieee data 11624 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 47 msb ieee data 12008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.813800 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 46 msb ieee data 12384 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 44 msb ieee data 12752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.813800 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 34 msb ieee data 13104 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 34 msb ieee data 13376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.813800 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 65 msb ieee data 13648 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 62 msb ieee data 14168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.813800 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 48 msb ieee data 14664 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 47 msb ieee data 15048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.813800 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 70 msb ieee data 15424 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 66 msb ieee data 15984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.813800 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 36 msb ieee data 16512 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 34 msb ieee data 16800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.813800 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 18 msb ieee data 17072 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 13 msb ieee data 17216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.813800 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 30 msb ieee data 17320 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 28 msb ieee data 17560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.813800 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 50 msb ieee data 17784 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 48 msb ieee data 18184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.813800 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 30 msb ieee data 18568 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 29 msb ieee data 18808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.813800 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 54 msb ieee data 19040 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 48 msb ieee data 19472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.813800 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 35 msb ieee data 19856 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 34 msb ieee data 20136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.813800 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 44 msb ieee data 20408 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 44 msb ieee data 20760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.813800 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 38 msb ieee data 21112 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 37 msb ieee data 21416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.813800 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 58 msb ieee data 21712 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 58 msb ieee data 22176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.813800 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 52 msb ieee data 22640 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 49 msb ieee data 23056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.813800 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 79 msb ieee data 23448 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 78 msb ieee data 24080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.813800 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 54 msb ieee data 24704 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 52 msb ieee data 25136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.813800 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 39 msb ieee data 25552 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 37 msb ieee data 25864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.813800 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 20 msb ieee data 26160 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 17 msb ieee data 26320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.813800 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 50 msb ieee data 26456 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 49 msb ieee data 26856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.813800 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 25 msb ieee data 27248 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 23 msb ieee data 27448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.813800 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 35 msb ieee data 27632 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 31 msb ieee data 27912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.813800 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 56 msb ieee data 28160 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 57 msb ieee data 28608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.813800 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 29064 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 29112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 29144 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 29160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 29168 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 29216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 29248 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 29304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 29344 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 29360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 10 msb ieee data 29368 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 10 msb ieee data 29448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.375600 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 30 msb ieee data 29528 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 28 msb ieee data 29768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.532100 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 21 msb ieee data 29992 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 19 msb ieee data 30160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.532100 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 16 msb ieee data 30312 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 13 msb ieee data 30440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.375600 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 21 msb ieee data 30544 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 20 msb ieee data 30712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.500800 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 17 msb ieee data 30872 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 13 msb ieee data 31008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.406900 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 22 msb ieee data 31112 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 18 msb ieee data 31288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.375600 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 30 msb ieee data 31432 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 27 msb ieee data 31672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.532100 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 29 msb ieee data 31888 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 30 msb ieee data 32120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.563400 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 26 msb ieee data 32360 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 27 msb ieee data 32568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.313000 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 26 msb ieee data 32784 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 27 msb ieee data 32992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.313000 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 35 msb ieee data 33208 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 33 msb ieee data 33488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.532100 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 14 msb ieee data 33752 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 15 msb ieee data 33864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.313000 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 46 msb ieee data 33984 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 48 msb ieee data 34352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.813800 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 31 msb ieee data 34736 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 32 msb ieee data 34984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.563400 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 18 msb ieee data 35240 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 16 msb ieee data 35384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.500800 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 30 msb ieee data 35512 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 29 msb ieee data 35752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.532100 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 21 msb ieee data 35984 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 19 msb ieee data 36152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.532100 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 22 msb ieee data 36304 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 21 msb ieee data 36480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.406900 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 30 msb ieee data 36648 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 23 msb ieee data 36888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.500800 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 18 msb ieee data 37072 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 17 msb ieee data 37216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.313000 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 29 msb ieee data 37352 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 28 msb ieee data 37584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.563400 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 25 msb ieee data 37808 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 24 msb ieee data 38008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 41 msb ieee data 38200 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 41 msb ieee data 38528 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.813800 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 26 msb ieee data 38856 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 25 msb ieee data 39064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.563400 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 37 msb ieee data 39264 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 35 msb ieee data 39560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.563400 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 31 msb ieee data 39840 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 29 msb ieee data 40088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.469500 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 40320 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 40600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 40872 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 40888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 40896 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 41176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 41448 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 41608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 41768 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 41864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =ÀN¥?í>4n=K(R> A‰=K(R> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>s¹>@N¥?ê:>@N¥?$ðÇ>@N¥?,ô>`[À=K(R>`[À?ê:>`[À?í>`[À?$ðÇ>€4n=K(R>:û?í      =à[Î>éº==à[Î?$ðÇ>:û?$ðÇ>:û?,ô>0H?$ðÇ>ÈQï>éº=>ÈQï?$ðÇ>ØX}?$ðÇ>ØX}?,ô>è_ ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥>ñg=ÀN¥>ùÀÊ=ÀN¥?ê:>4n=¥®_>4n>ñg>4n>Ù³¯>4n>ùÀÊ>4n?ã¬>4n?ê:> A=K(R> A=¥®_> A=åÈ—> A>2þ‚> A>Ù³¯> A>éº=> A?$ðÇ>@N¥=K(R>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>™™x>ÐU2>© >ÐU2>¹¦“>à[Ã?$ðÇ>ðbN=K(R>ðbN>‰’ê>ðbN>™™x>ðbN?ã¬>ðbN?ê:>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?4o? æó?4o?í?7¶>ñg?7¶>s¹?7¶? æó$$##00--&&!!))(( ,% ""* ++//..''   =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>2þ‚>4n>2þ‚>4n>S ž> A>ùÀÊ>@N¥>ùÀÊ>@N¥?ã¬>`[À<•çÉ>`[À=K(R>€4q=K(R>:û>¹¦“>:û?$ðÇ> A‰>É­!> A‰?$ðÇ> A‰?,ô>°H>™™x>°H>© >ÀN¥>© >ÐU2>S ž>ÐU2>ùÀÊ>ÐU2?ã¬>à[À>s¹>à[À?ã¬>ðbN=åÈ—>ðbN>ñg?4n>ñg?7µ=K(R?7µ=¥®_?7µ=åÈ—?>D<•çÉ?>D=K(R?>D=¥®_?>D>¹¦“?>D>É­!? A‹>© ? A‹>¹¦“? A‹>Ù³¯?(DÒ<•çÉ?(DÒ>© ?(DÒ>É­!?0H=K(R?0H=¥®_?0H>¹¦“?0H>É­!?8K_=åÈ—?8K_>Ù³¯#&&**, "")!!%%)),#  $$''+ ' ((+>:û>éº=>:û?í>0H?í>PU2>ùÀÊ>PU2? æó>PU2?ê:>PU2?$ðÇ>PU2?,ô>pbN? æó>pbN?í =à[À>s¹=à[À>¹¦“>:û=¥®_>:û>S ž>:û>É­!>:û?ã¬>0H=¥®_>0H>S ž>0H>É­!>0H?ã¬>PU9½5tý>PU9¼U;>PU9<•çÉ>PU9?ê:>PU9?í>PU9?$ðÇ>pbN½šÔµ>pbN?,ô>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*     =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>PU2½šÔµ>PU2?,ô>pbN½5tý>pbN¼U;>pbN<•çÉ>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>S ž>ˆ7µ>É­!>ˆ7µ?ã¬>˜>B=¥®_>˜>B>S ž>˜>B>É­!>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“     =ÀN²>É­!=ÀN²>Ù³¯=ÀN²? æó=ÀN²?ê:>4n>É­!>4n?ê:>`[Ç>© >`[Ç?$ðÇ>€4q>™™x>€4q?,ô>:û>© >:û?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÐU2>É­!>ÐU2>Ù³¯>ÐU2? æó>ÐU2?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© >:û½Úîé>:û=K(R>0H=K(R>PU2½šÔµ>PU2¼U;>PU2<•çÉ>PU2=¥®_>PU2=åÈ—>pbN¼U;>pbN=K(R >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4n=K(R> A‰=K(R>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>`[À=K(R>€4n=K(R=€4l¾MžÇ=ÀN³¾MžÇ? A‰?M*?(DÒ?M*=€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥?í>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2?,ô>à[Ã=¥®_>à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í     >PU2=¥®_>PU2?í>pbN=¥®_>pbN?ê:>pbN?í>ˆ7µ=åÈ—>ˆ7µ?ã¬>ˆ7µ?ê:>ˆ7µ?$ðÇ>˜>B=K(R>˜>B=¥®_>˜>B?ê:>˜>B?,ô>¨DÐ<•çÉ>¨DÐ=åÈ—>¨DÐ?í>¸K^=K(R>ÈQì=¥®_>ØXy=¥®_   = Aˆ<•çÉ= Aˆ>2þ‚=à[À>‰’ê=à[À?í>0H=K(R>0H>© >0H?ê:>0H?í>PU2=¥®_>pbN=K(R>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>¹¦“>ˆ7µ?,ô>˜>B?í>˜>B?$ðÇ>¨DÐ=åÈ—>¨DÐ?$ðÇ>ÈQì=K(R>ØXy=¥®_>ØXy=åÈ—>ØXy>¹¦“>ØXy?í>è_>É­!>è_?ê:>øe˜<•çÉ>øe˜>¹¦“>øe˜?í?6=K(R? 9Z=¥®_     =à[À=¥®_>:û?í>0H=¥®_>0H=åÈ—>0H?í>PU2?ê:>pbN=K(R>pbN=¥®_>pbN=åÈ—>pbN?í>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ?ê:>ˆ7µ?,ô>˜>B=K(R>˜>B=¥®_>˜>B>© >˜>B>¹¦“>˜>B?$ðÇ>¨DÓ=K(R>¨DÓ?$ðÇ>¸K^>© >¸K^>¹¦“>è_=¥®_>è_>™™x>è_>É­!>è_?í>øe•=åÈ—>øe•>‰’ê>øe•>Ù³¯>øe•?ê:?6=¥®_?6>™™x?6>É­!?6?í "  "!!  =€4p>S ž=€4p>¹¦“=ÀN§>s¹=ÀN§>¹¦“>4t>S ž>4t>Ù³¯>:ÿ=¥®_> A=¥®_>°H=åÈ—>°H>S ž>°H?$ðÇ>ÀN¨=K(R>ÀN¨=¥®_>ÀN¨? æó>ÀN¨?$ðÇ>ÀN¨?,ô>ÐU2<•çÉ>ÐU2=åÈ—>ÐU2>S ž>ÐU2? æó>ÐU2?í>à[Ã=K(R>à[Ã?í>ðbQ=¥®_?4o=¥®_?7¶>S ž?:û>2þ‚?:û>s¹     = Aˆ=¥®_=à[À>É­!=à[À?í=à[À?,ô>;=¥®_>;=åÈ—>;?$ðÇ>PU2=K(R>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN<•çÉ>ˆ7µ=K(R>ˆ7µ=¥®_>˜>B=K(R>¨DÐ>Ù³¯>¸K^>Ù³¯>ÈQì>éº=>ÈQì?í>ØXy=¥®_>ØXy>É­!>ØXy>ùÀÊ>ØXy?$ðÇ>è_=åÈ—>è_>Ù³¯>è_>éº=>è_?$ðÇ>øe˜=¥®_>øe˜>É­!>øe˜?,ô?6>Ù³¯? 9Z>Ù³¯    =€4}=¥®_>4n=¥®_>4n=åÈ—>4n?í> A=åÈ—> A?ê:>@N¥=K(R>@N¥=åÈ—>@N¥>¹¦“>@N¥?í>`[À<•çÉ>`[À>¹¦“>€4n=K(R>€4n=¥®_>:û=K(R> A‰?$ðÇ>°H>É­!>°H?$ðÇ>ÀN¥>É­!>ÀN¥?ê:>ÀN¥?,ô>ÐU2>Ù³¯>ÐU2?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>éº=>à[Ã?ê:>ðbN=åÈ—>ðbN>¹¦“>ðbN>Ù³¯>ðbN?í?4o=¥®_?4o>¹¦“?4o?í?7¶>É­!?:ý>É­!   "" ##$$!!   = Aˆ?í=à[À?$ðÇ>;?,ô>PU2?ê:>PU2?í>pbN=åÈ—>pbN>S ž>pbN?$ðÇ>ˆ7µ<•çÉ>ˆ7µ>ñg>ˆ7µ>s¹>ˆ7µ>™™x>˜>B=K(R>˜>B>2þ‚>˜>B>‰’ê>˜>B>© >˜>B?ê:>¨DÐ=¥®_>¨DÐ>¹¦“>¨DÐ>É­!>¸K^?í>ÈQì>éº=>ÈQì?$ðÇ>ØXy?í>è_?ã¬>è_?$ðÇ?6?í? 9Z?,ô   =€4}=¥®_>4n=¥®_>4n=åÈ—>4n>™™x>4n>É­!>4n?ê:> A=åÈ—> A>‰’ê> A>Ù³¯> A? æó>@N¥=K(R>@N¥=åÈ—>@N¥>™™x>@N¥>É­!>@N¥?ê:>`[À<•çÉ>€4n=K(R>€4n=¥®_>:û=K(R>°H?í>ÀN¥?í>ÐU2?$ðÇ>à[Ã=¥®_>à[Ã>™™x>à[Ã>É­!>à[Ã?ê:>à[Ã?,ô>ðbN=åÈ—>ðbN>‰’ê>ðbN>Ù³¯>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o>É­!?4o?ê:?7¶?í?:ý?í  $$%%##" !"  !   =€4}>™™x=ÀN¥=¥®_=ÀN¥>™™x>4n>© >4n?í> A=¥®_> A=åÈ—> A>‰’ê> A>™™x> A?ê:>@N¥>s¹>@N¥>© >@N¥?í>`[À=K(R>`[À=¥®_>`[À=åÈ—>`[À>‰’ê>€4n<•çÉ>€4n>™™x>:û=K(R>:û=¥®_>:û>™™x> A‰=K(R>°H?$ðÇ>ÀN¥?í>ÀN¥?$ðÇ>ÐU2>© >ÐU2?,ô>à[Ã=¥®_>à[Ã>© >à[Ã?ê:>à[Ã?$ðÇ>ðbN=åÈ—>ðbN?ê:?4o=¥®_?4o?ê:?4o?í?:ý?í   !! $$%%##"  ">4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À=K(R>`[À>É­!>€4n=K(R>€4n>É­!     >4n½Úîé>4n=K(R>4n>É­!> A‰=K(R> A‰>É­!>@N¥½šÔµ>@N¥¼U;>@N¥<•çÉ>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>`[À¼U;>`[À=K(R>`[À>É­!>€4n>É­!      >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§? æó>4t? æó>4t?í> A‰?ã¬> A‰?ê:> A‰?í> A‰?$ðÇ>@N¥?$ðÇ>`[À=K(R>€4q=K(R>€4q>© >€4q?,ô>:ÿ<•çÉ>:ÿ=¥®_>:ÿ=åÈ—>:ÿ>s¹>:ÿ>© > A=K(R> A>© > A?,ô>°H=K(R>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨?$ðÇ>ÐU2>Ù³¯>ÐU2>éº=>ÐU2?ê:>ÐU2?í>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã>éº=>à[Ã?ê:>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó  ""!!     =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=ÀN¥<•çÉ=ÀN¥>‰’ê=ÀN¥>¹¦“=ÀN¥?,ô>4n>S ž>4n>‰’ê>4n>É­!>4n>éº=> A=K(R> A>S ž> A>™™x> A>¹¦“> A>É­!> A>ùÀÊ> A?ã¬>@N¥=K(R>@N¥=åÈ—>@N¥>2þ‚>@N¥>ùÀÊ>@N¥?$ðÇ>`[À? æó>`[À?ê:>:û?í>ÀN¥=¥®_>ÀN¥?í?7µ=¥®_?7µ?í?>D=¥®_?>D>¹¦“?>D?í? A‹=¥®_? A‹?í?(DÒ=K(R?(DÒ?$ðÇ?8K_<•çÉ?8K_?,ô   ! !!#  "=ÀN¥>ñg=ÀN¥? æó> A=¥®_> A?í>`[À=K(R>`[À?$ðÇ>€4q=K(R>€4q?$ðÇ>:û=K(R>:û>™™x>:û>¹¦“>:û?$ðÇ> A‰>s¹> A‰>Ù³¯>°H<•çÉ>°H>éº=>°H?,ô>ÀN¥>S ž>à[À>ùÀÊ>ðbN<•çÉ?4n?,ô?7µ>ùÀÊ?:û=K(R?:û>ùÀÊ?:û?$ðÇ?>D>éº=?>D?ã¬?>D?ê:?>D?í?>D?$ðÇ? A‹=¥®_? A‹=åÈ—? A‹>Ù³¯? A‹>éº=? A‹?ã¬? A‹?ê:?(DÒ>ñg?(DÒ>S ž?(DÒ>© ?(DÒ>É­!?(DÒ?ã¬?(DÒ?ê:?0H>ñg?0H>S ž?0H>© ?0H>É­!?8K_>s¹?8K_>©  ))((!##"" !!--//..**',,++$ &&%%=ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?ê:>`[À?í>:û=K(R>:û?$ðÇ>ÀN¥<•çÉ>ÀN¥?,ô>à[À<•çÉ>à[À?,ô?7µ=K(R?7µ?$ðÇ?>D=¥®_?>D=åÈ—?>D?ê:?>D?í? A‹>ñg? A‹>2þ‚? A‹?ã¬? A‹? æó?(DÒ>ñg?(DÒ>2þ‚?(DÒ>s¹?(DÒ>‰’ê?(DÒ>Ù³¯?(DÒ>éº=?(DÒ?ã¬?(DÒ? æó?0H=¥®_?0H?í?8K_<•çÉ?8K_?,ô-++)) ""**,+''$$*(!&    #%=ÀN¥>2þ‚=ÀN¥?ã¬>4n=åÈ—>4n?ê:>@N¥=K(R>@N¥?$ðÇ>`[À=K(R>`[À?$ðÇ>€4q=K(R>€4q?$ðÇ>:û<•çÉ>:û?,ô>à[À<•çÉ>à[À?,ô?7µ=K(R?7µ?$ðÇ?>D=¥®_?>D=åÈ—?>D?ê:?>D?í? A‹>2þ‚? A‹?ã¬?(DÒ>ñg?(DÒ>2þ‚?(DÒ>‰’ê?(DÒ>Ù³¯?(DÒ?ã¬?(DÒ? æó?0H>S ž?0H>‰’ê?0H>Ù³¯?0H>ùÀÊ?8K_>™™x?8K_>É­!   !!  =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>¹¦“> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥>É­!>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?ê:>`[À?í>€4q>É­!>:û=K(R>:û>É­!>:û?$ðÇ>°H>¹¦“>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>™™x>ÐU2>© >à[À<•çÉ>à[À?,ô?4n>‰’ê?4n>™™x?4n>© ?7µ=K(R?7µ?$ðÇ?:û>‰’ê?:û>™™x?:û>éº=?>D=¥®_?>D=åÈ—?>D>© ?>D>Ù³¯?>D>ùÀÊ?>D?ê:?>D?í? A‹>ñg? A‹>2þ‚? A‹>™™x? A‹>© ? A‹>éº=? A‹>ùÀÊ? A‹? æó?(DÒ>ñg?(DÒ>2þ‚?(DÒ>s¹?(DÒ>‰’ê?(DÒ>¹¦“?(DÒ>éº=?(DÒ?ã¬?(DÒ? æó?0H=¥®_?0H?í?8K_<•çÉ?8K_?,ô@>><<--## ""''55==?>::77=;4:,,#   .6"((//8 !!))9 %%1$$009:33++&&**2=ÀN¥<•çÉ=ÀN¥? æó> A=K(R> A?í>@N¥=¥®_>@N¥?í>`[À=¥®_>`[À>¹¦“>`[À?ê:>`[À?$ðÇ>€4q>É­!>€4q?$ðÇ>:û=¥®_>:û>É­!> A‰>É­!> A‰?,ô>ÀN¥>¹¦“>à[À=¥®_>à[À?,ô>ðbN>™™x>ðbN>© >ðbN>¹¦“?7µ>™™x?7µ>© ?7µ>ùÀÊ?7µ?$ðÇ?:û>¹¦“?:û>éº=?:û?ã¬?>D>© ?>D>¹¦“?>D>ùÀÊ?>D?ã¬?>D?ê:?>D?í? A‹=K(R? A‹>É­!? A‹>ùÀÊ? A‹?ã¬? A‹?ê:?(DÒ>É­!?(DÒ>ùÀÊ?(DÒ?ê:?0H>‰’ê?0H?í?8K_<•çÉ?8K_>S ž?8K_?,ô    ""''//,,))((++.*&!!%%( $ $$%%  ##-=ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>¹¦“> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥>s¹>@N¥>‰’ê>@N¥>É­!>@N¥>Ù³¯>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À>s¹>`[À>™™x>`[À>É­!>`[À?ê:>`[À?í>€4q>‰’ê>€4q>Ù³¯>€4q>éº=>:û=K(R>:û?$ðÇ> A‰>É­!> A‰>Ù³¯> A‰>éº=>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>É­!>ÐU2>Ù³¯>à[À?,ô>ðbN<•çÉ>ðbN>¹¦“?4n>© ?4n>¹¦“?7µ=K(R?7µ?$ðÇ?:û=¥®_?:û>© ?>D=¥®_?>D=åÈ—?>D>2þ‚?>D>© ?>D?ê:?>D?í? A‹=åÈ—? A‹>2þ‚? A‹>™™x? A‹>© ? A‹?ã¬? A‹? æó?(DÒ>2þ‚?(DÒ>s¹?(DÒ>¹¦“?(DÒ>Ù³¯?(DÒ>éº=?(DÒ?ã¬?(DÒ? æó?0H=¥®_?0H?í?8K_<•çÉ?8K_?,ôECCAA44,,&&## ""''++//55;;BBDC??<<B@:>9933,   0667+--112 !!%%**. $$( ))88==ÀN¥<•çÉ=ÀN¥?,ô> A=K(R> A?$ðÇ>@N¥=K(R>@N¥?í>`[À=K(R>`[À>¹¦“>`[À?í>€4q>Ù³¯>:û?í> A‰>ùÀÊ>°H=K(R>ÐU2?ã¬>à[À?í?4n<•çÉ?7µ?ã¬?>D>ùÀÊ? A‹=åÈ—? A‹>2þ‚? A‹>éº=? A‹>ùÀÊ? A‹?$ðÇ?(DÒ=K(R?(DÒ>S ž?(DÒ>‰’ê?(DÒ>É­!?(DÒ>Ù³¯?0H>S ž?0H>‰’ê?0H>¹¦“?0H>Ù³¯?8K_<•çÉ?8K_>s¹?8K_>© ?8K_?,ô  # ""!!  =ÀN¥<•çÉ=ÀN¥?,ô>@N¥=K(R>`[À?í> A‰=¥®_>°H?ê:>ÀN¥=¥®_>ÀN¥?ê:>ÐU2=åÈ—>ÐU2? æó>à[À=¥®_>à[À?ê:>ðbN?ê:?4n=¥®_?>D?í? A‹=K(R?8K_<•çÉ?8K_?,ô    =ÀN¥>S ž=ÀN¥>‰’ê=ÀN¥>© =ÀN¥?,ô>4n=åÈ—>4n>S ž>4n>É­!> A=åÈ—> A>S ž>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[À=K(R>`[À?í>:û<•çÉ>°H?ê:>à[À<•çÉ>ðbN?ê:?4n=K(R?7µ=K(R?7µ=¥®_?7µ=åÈ—?7µ?ê:?:û=åÈ—?:û?ê:?>D=¥®_?>D?í?(DÒ>ñg?8K_>s¹?8K_?,ô    =ÀN¥<•çÉ=ÀN¥?,ô> A=K(R> A?$ðÇ>@N¥=K(R>@N¥?í>`[À=K(R>`[À>¹¦“>`[À?í>€4q>Ù³¯>:û?í> A‰>ùÀÊ>°H=K(R>°H>S ž>°H>s¹>ÀN¥>2þ‚>ÀN¥>s¹>ÀN¥>‰’ê>ÐU2>S ž>ÐU2?ã¬>à[À>™™x>à[À?í?4n<•çÉ?4n?ã¬?7µ>‰’ê?7µ>™™x?7µ>¹¦“?:û>‰’ê?:û>¹¦“?:û>É­!?:û>éº=?:û>ùÀÊ?>D>S ž?>D>¹¦“?>D>É­!?>D>éº=?>D>ùÀÊ? A‹=åÈ—? A‹>ñg? A‹>S ž? A‹>‰’ê? A‹>É­!? A‹>éº=? A‹?$ðÇ?(DÒ=K(R?(DÒ>ñg?(DÒ>S ž?0H<•çÉ?8K_<•çÉ?8K_?,ô  ++1 $$**))!! ##""((..--%''& %%,,//0 =ÀN¥<•çÉ=ÀN¥?,ô> A=K(R> A?$ðÇ>@N¥=¥®_>@N¥?í>`[À=¥®_>`[À?í>:û=¥®_>:û?í>à[À=¥®_>à[À?í?>D>S ž?>D>‰’ê? A‹=K(R? A‹>ñg? A‹>S ž? A‹>™™x? A‹>¹¦“? A‹?$ðÇ?(DÒ>ñg?(DÒ>s¹?(DÒ>© ?(DÒ>É­!?(DÒ>Ù³¯?0H=åÈ—?0H>éº=?8K_<•çÉ?8K_?ã¬?8K_?,ô    =ÀN¥<•çÉ=ÀN¥>™™x=ÀN¥>éº==ÀN¥?,ô>4n>S ž>4n>™™x>4n>éº=>4n? æó> A>2þ‚> A>S ž> A>™™x> A>ùÀÊ> A? æó>@N¥=K(R>@N¥>S ž>@N¥?ê:>@N¥?í>`[À>ñg>`[À?í>€4q?$ðÇ>:û=¥®_> A‰=¥®_>°H?ê:>°H?,ô>ÀN¥=¥®_>ÀN¥?ê:>ÐU2=åÈ—>ÐU2? æó>à[À=¥®_>à[À?ê:>ðbN?ê:>ðbN?,ô?4n=¥®_?7µ=¥®_?:û?$ðÇ?>D>ñg?>D?í? A‹=K(R? A‹>S ž? A‹?ê:? A‹?í?(DÒ>2þ‚?(DÒ>S ž?(DÒ>™™x?(DÒ>ùÀÊ?(DÒ? æó?0H>S ž?0H>™™x?0H>éº=?0H? æó?8K_<•çÉ?8K_>™™x?8K_>éº=?8K_?,ô""((114433..))##!   -00//*"'',,++&&#$$5  %%2=ÀN¥<•çÉ=ÀN¥? æó> A=K(R> A?í>@N¥=K(R>@N¥?ê:>`[À=K(R>`[À?ê:>`[À?í>`[À?$ðÇ>€4q?$ðÇ> A‰?,ô>°H=K(R>à[À?,ô?4n<•çÉ?7µ?$ðÇ?>D?ê:?>D?í? A‹=åÈ—? A‹>2þ‚? A‹?ã¬?(DÒ=K(R?(DÒ>S ž?(DÒ>™™x?(DÒ>Ù³¯?(DÒ?ã¬?(DÒ? æó?0H<•çÉ?0H>S ž?0H>™™x?0H>Ù³¯?0H>ùÀÊ?8K_<•çÉ?8K_>‰’ê?8K_>É­!  ""!!  =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?ê:>`[À?í>:û=K(R>:û?$ðÇ>ÀN¥<•çÉ>ÀN¥?,ô>à[À<•çÉ>à[À?,ô?7µ=K(R?7µ?$ðÇ?>D=¥®_?>D=åÈ—?>D?ê:?>D?í? A‹>2þ‚? A‹?ã¬?(DÒ>ñg?(DÒ>2þ‚?(DÒ>‰’ê?(DÒ>Ù³¯?(DÒ?ã¬?(DÒ? æó?0H>S ž?0H>‰’ê?0H>Ù³¯?0H>ùÀÊ?8K_>™™x?8K_>É­!  &&**++))%%   !''(($""##=ÀN¥<•çÉ=ÀN¥?ã¬> A=K(R> A?ê:>@N¥=¥®_>@N¥? æó>`[À=¥®_>`[À>É­!>`[À?ã¬>€4q>™™x>€4q?ê:>€4q?í>:û=¥®_>:û?$ðÇ> A‰>s¹> A‰?$ðÇ>ÀN¥?,ô>ÐU2>S ž>à[À=¥®_>ðbN?,ô?7µ>S ž?:û?$ðÇ? A‹=K(R? A‹>s¹? A‹>‰’ê? A‹?ê:? A‹?í?(DÒ>™™x?(DÒ>¹¦“?(DÒ>ùÀÊ?(DÒ? æó?0H>™™x?0H>¹¦“?0H>ùÀÊ?0H? æó?8K_<•çÉ?8K_>É­!?8K_>éº=    ""%%$$ !!  #=ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>‰’ê>4n>Ù³¯>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>Ù³¯> A?ã¬> A? æó>@N¥>2þ‚>@N¥>S ž>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?ê:>`[À?í>:û=K(R>:û>ñg>:û>2þ‚>:û?$ðÇ>°H>ñg>ÀN¥<•çÉ>ÀN¥=åÈ—>ÀN¥?,ô>ÐU2>ñg>à[À<•çÉ>à[À=åÈ—>à[À?,ô>ðbN>ñg?7µ=K(R?7µ?$ðÇ?>D=¥®_?>D=åÈ—?>D?ê:?>D?í? A‹>2þ‚? A‹?ã¬?(DÒ>ñg?(DÒ>2þ‚?(DÒ>‰’ê?(DÒ>Ù³¯?(DÒ?ã¬?(DÒ? æó?0H<•çÉ?0H=K(R?0H>ñg?0H>S ž?0H>‰’ê?0H>Ù³¯?0H>ùÀÊ?8K_=K(R?8K_=¥®_?8K_=åÈ—?8K_>™™x?8K_>É­!  ""((11889944--%%!!   )2233, ##&&**++''$$! 007755..//6 =ÀN¥<•çÉ=ÀN¥?ã¬> A=K(R> A?ê:>@N¥=K(R>@N¥?ê:>`[À=K(R>`[À?í>:û?$ðÇ>°H=K(R>°H>™™x>°H>¹¦“>ÀN¥?,ô>ÐU2>‰’ê>ÐU2>É­!>ðbN>É­!?4n<•çÉ?4n>‰’ê?4n>É­!?4n?,ô?7µ>¹¦“?:û?$ðÇ?>D>™™x?>D>© ?>D>¹¦“? A‹>s¹? A‹>™™x? A‹>© ? A‹?ê:? A‹?í? A‹?$ðÇ?(DÒ=åÈ—?(DÒ>s¹?(DÒ>™™x?(DÒ>© ?(DÒ>¹¦“?(DÒ>É­!?(DÒ?ã¬?(DÒ?ê:?0H=K(R?0H=åÈ—?0H>ñg?0H>2þ‚?0H>¹¦“?0H>Ù³¯?0H?ã¬?0H?ê:?8K_<•çÉ?8K_>ñg?8K_>S ž?8K_>Ù³¯?8K_?㬠..3322++"&&--,,#%%$$ !!1100((**)) ''/ =ÀN¥<•çÉ>4n=K(R>4n=¥®_>4n>ñg>4n>É­!>4n>éº=> A=K(R> A=¥®_> A>™™x> A>¹¦“> A>Ù³¯> A?ã¬> A? æó>@N¥=¥®_>@N¥>™™x>@N¥>¹¦“>@N¥?ê:>`[À>s¹>`[À>‰’ê>`[À>© >€4q=K(R>€4q>™™x>€4q>© >€4q?$ðÇ>:û>¹¦“>:û>É­!> A‰>S ž> A‰>s¹> A‰>éº=>°H<•çÉ>°H>‰’ê>°H>Ù³¯>°H>éº=>°H>ùÀÊ>°H?,ô>ÐU2>S ž>ÐU2>s¹>ÐU2>‰’ê>ÐU2>éº=>ÐU2>ùÀÊ>ÐU2?ã¬>ðbN<•çÉ>ðbN>s¹>ðbN>‰’ê>ðbN>™™x>ðbN?,ô?4n>‰’ê?4n>éº=?4n>ùÀÊ?4n?ã¬?7µ>© ?7µ>¹¦“?:û=K(R?:û>É­!?:û>Ù³¯?:û?$ðÇ?>D>É­!?>D>éº=?>D>ùÀÊ? A‹=¥®_? A‹=åÈ—? A‹>¹¦“? A‹?í?(DÒ>ñg?(DÒ>S ž?(DÒ>™™x?(DÒ>É­!?(DÒ?í?(DÒ?$ðÇ?0H>ñg?0H>S ž?0H>™™x?0H>É­!?0H? æó?0H?í?0H?$ðÇ?8K_>s¹?8K_>™™x?8K_?,ô-DDNNJJII>>77--"" ##**..223KCCI $$+ %%,,33558&&//66==AA@@<<4 ''0099BBGGFF?!!((11::HHMMLLEE;;44)) =ÀN¥>‰’ê=ÀN¥>É­!=ÀN¥?,ô>4n>2þ‚>4n>‰’ê>4n>© >4n>Ù³¯>4n>ùÀÊ>4n?$ðÇ> A=åÈ—> A>2þ‚> A>s¹> A? æó> A?$ðÇ>@N¥=¥®_>@N¥?ê:>@N¥?í>@N¥?,ô>`[À=åÈ—>`[À>ñg>`[À?$ðÇ>€4q=K(R>€4q?í>€4q?$ðÇ>:û=¥®_>:û=åÈ—>°H<•çÉ>ÀN¥=K(R>ÀN¥=¥®_>ÀN¥?í>à[À<•çÉ>ðbN=K(R>ðbN=¥®_>ðbN?ã¬>ðbN?ê:?4n>ùÀÊ?4n? æó?4n?í?7µ=K(R?7µ?ã¬?:û=¥®_?:û=åÈ—?:û?í?>D=¥®_? A‹>ñg? A‹?ê:?(DÒ>ñg?(DÒ?$ðÇ?0H>S ž?0H>s¹?0H?ã¬?8K_>™™x?8K_>Ù³¯?8K_?,ô  &&++..00334422--*%""!!##''$ (   )),,113 **//5=ÀN¥>™™x=ÀN¥>É­!=ÀN¥?,ô>4n>S ž>4n>‰’ê>4n>É­!>4n>ùÀÊ> A>ñg> A>2þ‚> A>‰’ê> A>¹¦“> A>ùÀÊ> A? æó>@N¥>2þ‚>@N¥>éº=>@N¥? æó>@N¥?ê:>@N¥?$ðÇ>`[À=¥®_>`[À=åÈ—>`[À?ã¬>`[À? æó>`[À?í>:û=K(R>ÀN¥<•çÉ>ÀN¥?í?4n<•çÉ?7µ?í?:û=K(R?>D=K(R?>D=¥®_?>D=åÈ—?>D?í? A‹=åÈ—? A‹?í?(DÒ=¥®_?(DÒ?$ðÇ?8K_<•çÉ?8K_?,ô #   "!!$##%$$&=ÀN¥?,ô>4n?$ðÇ> A?í> A?$ðÇ>@N¥?í> A‰?í>ÀN¥>ñg>ÐU2<•çÉ>ÐU2=¥®_>ÐU2>ñg>à[À=åÈ—>ðbN>2þ‚>ðbN>s¹?4n>‰’ê?4n>© ?4n?í?:û>Ù³¯? A‹>ùÀÊ?(DÒ?$ðÇ?8K_?,ô   =ÀN¥>™™x=ÀN¥>É­!=ÀN¥?,ô>4n>S ž>4n>™™x>4n>É­!>4n>ùÀÊ> A>ñg> A>S ž> A>™™x> A>É­!> A>ùÀÊ> A? æó>@N¥>ñg>@N¥>2þ‚>@N¥>ùÀÊ>@N¥?ã¬>`[À=¥®_>`[À=åÈ—>`[À?í>:û=K(R>°H?ê:>ÀN¥<•çÉ>ÀN¥?ê:>ÐU2=K(R>ÐU2? æó>à[À<•çÉ>à[À?ê:>ðbN?ê:?7µ=K(R?>D=¥®_?>D=åÈ—?>D?í? A‹>ñg? A‹>2þ‚? A‹>ùÀÊ? A‹?ã¬?(DÒ>ñg?(DÒ>S ž?(DÒ>™™x?(DÒ>É­!?(DÒ>ùÀÊ?(DÒ? æó?0H>S ž?0H>™™x?0H>É­!?0H>ùÀÊ?8K_>™™x?8K_>É­!?8K_?,ô %%++//00..**   !&&,,--)""''((##$$* 1=ÀN¥<•çÉ=ÀN¥?,ô>4n?$ðÇ> A=K(R>@N¥=¥®_>@N¥>ñg>@N¥?í>`[À>ñg>`[À>S ž>`[À?í>€4q>S ž>€4q>s¹>:û=¥®_>°H>‰’ê>°H?ê:>ÀN¥>™™x>à[À=¥®_>à[À>¹¦“>ðbN?ê:?>D=¥®_?>D?í? A‹=K(R?(DÒ=K(R?8K_<•çÉ?8K_?,ô     =ÀN¥>ñg=ÀN¥>¹¦“=ÀN¥>éº==ÀN¥?,ô>4n>‰’ê>4n>™™x>4n? æó> A=¥®_>@N¥>S ž>@N¥>s¹>@N¥?í>`[À=K(R>`[À>S ž>`[À?í>€4q>2þ‚>:û>S ž> A‰>2þ‚>°H<•çÉ>°H>ñg>°H?ê:>à[À>ñg>ðbN<•çÉ>ðbN>S ž>ðbN?ê:?4n>2þ‚?7µ>2þ‚?>D=K(R?>D>S ž?>D?í? A‹=¥®_? A‹?í?(DÒ=¥®_?(DÒ?$ðÇ?8K_=åÈ—?8K_?,ô     " !=ÀN¥>s¹=ÀN¥>™™x=ÀN¥?,ô>4n>ñg>4n>É­!>4n?$ðÇ> A>Ù³¯>@N¥=¥®_>@N¥?í>`[À>éº=>€4q=K(R>:û>¹¦“>:û>éº=>:û?í> A‰>© > A‰>É­!>°H<•çÉ>°H>¹¦“>°H>Ù³¯>°H>ùÀÊ>ÐU2>É­!>ÐU2?ã¬>à[À?,ô>ðbN<•çÉ>ðbN>É­!>ðbN?ã¬?7µ>Ù³¯?7µ>ùÀÊ?7µ?,ô?:û=K(R?:û>éº=?:û?$ðÇ?>D>Ù³¯?>D>éº=?>D>ùÀÊ?>D?ê:?>D?$ðÇ? A‹=¥®_? A‹=åÈ—? A‹>É­!? A‹>éº=? A‹?ã¬? A‹?ê:? A‹?$ðÇ?(DÒ>ñg?(DÒ>S ž?(DÒ>© ?(DÒ>É­!?(DÒ?ã¬?(DÒ?ê:?0H>ñg?0H>S ž?0H>© ?0H>É­!?8K_>s¹?8K_>™™x ++1100($**))!##" "(55776622%%   !//4433, ''..--&&=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>;?ã¬>;?ê:>0H>éº=>0H>ùÀÊ>0H? æó>0H?ê:>0H?$ðÇ>PU9?ã¬>pbN?ã¬>pbN?,ô =ÀN²=åÈ—=ÀN²>s¹=ÀN²>Ù³¯>4n=åÈ—>4n>s¹>4n>É­!>4n>éº=> A‰>ñg> A‰>™™x> A‰>Ù³¯>@N¥<•çÉ>@N¥=K(R>@N¥>© >€4q=K(R>€4q>‰’ê>:û>Ù³¯> A=¥®_>°H=¥®_>°H=åÈ—>°H>¹¦“>°H>Ù³¯>°H>éº=>ÀN¥<•çÉ>ÀN¥=K(R>ÀN¥=åÈ—>ÀN¥>É­!>ÐU2=¥®_>ÐU2=åÈ—>ÐU2>É­!>à[Ã=¥®_      =ÀN§?,ô>4t=åÈ—>4t? æó> A‰=åÈ—> A‰?í>@N¥>ñg>@N¥>É­!>@N¥? æó>`[À<•çÉ>`[À=K(R>`[À?,ô>:ÿ=K(R>:ÿ>Ù³¯>°H>Ù³¯>°H>éº=>ÀN¨=¥®_>ÀN¨>© >ÐU2=åÈ—>ÐU2>¹¦“>à[Ã=åÈ—>à[Ã>¹¦“     =€4l=¥®_=€4l>¹¦“=ÀN¥=¥®_=ÀN¥>¹¦“>4n<•çÉ>4n=K(R>4n=åÈ—>4n>É­!> A‰=¥®_>@N¥=¥®_>@N¥>Ù³¯>`[À>Ù³¯>€4n>¹¦“>€4n>éº=>:û>É­!> A‰>É­!    =ÀN²=åÈ—=ÀN²>¹¦“=ÀN²?ê:>4n=åÈ—>4n>¹¦“> A‰>ñg> A‰>É­!>@N¥<•çÉ>@N¥=K(R>@N¥? æó>@N¥?ê:>@N¥?,ô>`[Ç?ê:>€4q=K(R>€4q>éº=>°H=¥®_>°H>¹¦“>ÀN¥=åÈ—>ÀN¥>¹¦“>ÐU2=¥®_>ÐU2>¹¦“     =€4l=¥®_=€4l>¹¦“=ÀN¥=¥®_=ÀN¥>¹¦“>4n<•çÉ>4n=K(R>4n=åÈ—>4n>S ž>4n>É­!> A‰=¥®_>@N¥=¥®_>@N¥>Ù³¯>`[À>Ù³¯>€4n>éº=>:û>™™x> A‰>© >°H>©      <€4n>éº== Aˆ=¥®_=à[À=¥®_=à[À=åÈ—=à[À>éº==à[À?ê:>:û<•çÉ>:û=K(R>:û=åÈ—>:û?ê:>0H=¥®_>0H=åÈ—>0H>éº=>0H?í>PU2=¥®_>pbN?$ðÇ>ˆ7µ?$ðÇ>˜>B>éº=>˜>B?ê:>˜>B?,ô>¨DÓ?í>¸K^?í    =à[ξ-‘¬=à[Î=åÈ—=à[Î>¹¦“>:û¾-‘¬>:û=åÈ—>:û>¹¦“>0H¾MžÇ>0H¾ „>0H>ñg>0H>É­!>PU2¾-‘¬>PU2<•çÉ>PU2=K(R>pbU¾-‘¬>ˆ7µ=K(R>ˆ7µ>Ù³¯>˜>B¾-‘¬>¨DÓ¾ „>¨DÓ>Ù³¯>¨DÓ>éº=>¸Ka¾ „>¸Ka½Úîé>¸Ka½šÔµ>¸Ka=¥®_>¸Ka>© >ÈQï½Úîé>ÈQï½5tý>ÈQï>¹¦“>ØX}½5tý>ØX}>¹¦“      =à[À=¥®_=à[À?,ô>;=¥®_>;=åÈ—>;? æó>0H<•çÉ>0H=K(R>0H=åÈ—>0H?í>PU2=¥®_>PU2=åÈ—>PU2>É­!>PU2? æó>pbN=¥®_>pbN?,ô>˜>B>Ù³¯>¸K^¾ „>¸K^½5tý>¸K^>Ù³¯>¸K^>éº=>ÈQì¾MžÇ>ÈQì<•çÉ>ÈQì=K(R>ÈQì>© >ØXy¾MžÇ>ØXy=¥®_>ØXy>¹¦“>è_=¥®_>è_>¹¦“   =ÀN¥=¥®_=ÀN¥>É­!=ÀN¥?í>4n=¥®_>4n=åÈ—>4n>¹¦“>4n>É­!>4n?í> A‰<•çÉ> A‰=K(R> A‰=åÈ—> A‰>¹¦“> A‰>Ù³¯> A‰>éº=> A‰? æó> A‰?ê:> A‰?$ðÇ> A‰?,ô>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥?í>`[À=¥®_>`[À>É­!>`[À?í      =ÀN¥¾MžÇ=ÀN¥¾-‘¬=ÀN¥>É­!=ÀN¥?í>4n=¥®_>4n>¹¦“>4n>É­!>4n?í> A‰¾MžÇ> A‰=¥®_> A‰>¹¦“> A‰>Ù³¯> A‰>éº=> A‰? æó> A‰?ê:> A‰?$ðÇ> A‰?,ô>@N¥<•çÉ>@N¥=K(R>@N¥>¹¦“>@N¥>É­!>@N¥?í>`[À¾ „>`[À½5tý>`[À>É­!>`[À?í      = AŒ=¥®_= AŒ?,ô=à[Î=¥®_=à[Î=åÈ—=à[Î? æó>:û<•çÉ>:û=K(R>:û=åÈ—>:û?í>0H=¥®_>0H=åÈ—>0H>S ž>0H>¹¦“>0H? æó>PU2=¥®_>PU2?,ô>ˆ7µ>‰’ê>ˆ7µ>Ù³¯>˜>B>s¹>˜>B>‰’ê>˜>B>™™x>˜>B>Ù³¯>¨DÓ=¥®_>¨DÓ>S ž>¨DÓ>‰’ê>¨DÓ>© >¨DÓ>éº=>¸Ka=¥®_>¸Ka>¹¦“>ÈQï<•çÉ>ÈQï=K(R>ÈQï=åÈ—>ÈQï>¹¦“>ØX}=¥®_>è_ =¥®_     "!!"=ÀN¥=¥®_=ÀN¥?,ô>4n=¥®_>4n=åÈ—>4n? æó> A‰<•çÉ> A‰=K(R> A‰=åÈ—> A‰?í>@N¥=¥®_>@N¥=åÈ—>@N¥? æó>`[À=¥®_>`[À?,ô  = Aˆ>É­!=à[À=¥®_=à[À>É­!>:û=¥®_>:û=åÈ—>:û>¹¦“>:û>Ù³¯>:û>éº=>0H<•çÉ>0H=K(R>0H=åÈ—>0H>É­!>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN=¥®_>˜>B>Ù³¯>¸K^=¥®_>¸K^>Ù³¯>¸K^>éº=>ÈQì=¥®_>ÈQì=åÈ—>ÈQì>¹¦“>ØXy<•çÉ>ØXy=K(R>ØXy=åÈ—>ØXy>É­!>è_=¥®_>è_=åÈ—>è_>É­!>øe•=¥®_? 9Z>Ù³¯??ç=¥®_??ç>Ù³¯??ç>éº=?$C.=¥®_?$C.=åÈ—?$C.>¹¦“?,Fu<•çÉ?,Fu=K(R?,Fu=åÈ—?,Fu>É­!?4Iº=¥®_?4Iº=åÈ—?4Iº>É­!?É­!=à[À=¥®_=à[À>É­!>;=¥®_>;=åÈ—>;>¹¦“>;>Ù³¯>;>éº=>0H<•çÉ>0H=K(R>0H=åÈ—>0H>É­!>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN=¥®_>˜>B>Ù³¯>¸K^=¥®_>¸K^>Ù³¯>¸K^>éº=>ÈQì=¥®_>ÈQì=åÈ—>ÈQì>¹¦“>ØXy<•çÉ>ØXy=K(R>ØXy=åÈ—>ØXy>É­!>è_=¥®_>è_=åÈ—>è_>É­!>øe˜=¥®_   =ÀN²=åÈ—=ÀN²>¹¦“>4n=åÈ—>4n>¹¦“> A‰>ñg> A‰>É­!>@N¥<•çÉ>@N¥=K(R>€4q=K(R>€4q>Ù³¯> A>Ù³¯> A>éº=>°H=¥®_>°H>© >ÀN¥=åÈ—>ÀN¥>¹¦“>ÐU2=åÈ—>ÐU2>¹¦“    = Aˆ=¥®_=à[À¾MžÇ=à[À>éº=>;½Úîé>;=¥®_>;=åÈ—>;>É­!>0H¾ „>0H=¥®_>0H>É­!>0H>Ù³¯>PU2½Úîé>PU2=K(R>PU2=¥®_>PU2=åÈ—>PU2>É­!>pbN¾MžÇ>pbN<•çÉ>ˆ7µ=K(R>ˆ7µ=¥®_>˜>B=K(R>˜>B>Ù³¯>¸K^>Ù³¯>¸K^>éº=>ÈQì=¥®_>ÈQì>© >ØXy=åÈ—>ØXy>¹¦“>è_=åÈ—>è_>¹¦“     =ÀN²=åÈ—=ÀN²>¹¦“>4n=åÈ—>4n>¹¦“> A‰>ñg> A‰>É­!>@N¥<•çÉ>@N¥=K(R>€4q=K(R>€4q>Ù³¯> A¾MžÇ> A>Ù³¯> A>éº=>°H½Úîé>°H=¥®_>°H>© >ÀN¥¾ „>ÀN¥>¹¦“>ÐU2½Úîé>ÐU2>¹¦“>à[þMžÇ    =@N½>É­!= Aˆ=¥®_= Aˆ>É­!=à[À=¥®_=à[À=åÈ—=à[À>¹¦“=à[À>Ù³¯=à[À>éº=>:û<•çÉ>:û=K(R>:û=åÈ—>:û>É­!>0H=¥®_>0H=åÈ—>0H>É­!>PU2=¥®_>pbN>Ù³¯>ˆ7µ>Ù³¯>˜>B>¹¦“>˜>B>éº=>¨DÓ>É­!>¸K^>É­!   =ÀN²=¥®_=ÀN²>‰’ê=ÀN²>¹¦“>4n>‰’ê>4n>¹¦“> A‰=¥®_> A‰=åÈ—> A‰>S ž> A‰>s¹> A‰>‰’ê> A‰>É­!>@N¥>s¹>`[Ç<•çÉ>`[Ç=K(R>`[Ç>Ù³¯>€4q>Ù³¯>:û=K(R>:û>éº=> A>‰’ê> A>É­!>°H=¥®_>°H>s¹>°H>‰’ê>°H>™™x>°H>Ù³¯>ÀN¥=åÈ—>ÀN¥>s¹>ÀN¥>Ù³¯>ÐU2=åÈ—>ÐU2>s¹   =4k>éº==ÀN¥=¥®_=ÀN¥?,ô>4n=¥®_>4n=åÈ—>4n>éº=>4n? æó> A‰<•çÉ> A‰=K(R> A‰=åÈ—> A‰?í>@N¥=¥®_>@N¥=åÈ—>@N¥>éº=>@N¥? æó>`[À=¥®_>`[À?,ô>:û>éº=     =€4p>É­!=ÀN§>É­!>4t=¥®_>4t>¹¦“>4t>Ù³¯>4t>éº=> A‰=¥®_> A‰>É­!>@N¥=åÈ—>@N¥>É­!>`[À<•çÉ>`[À=K(R>:ÿ=K(R>°H>É­!>ÀN¨=¥®_>ÀN¨>¹¦“>ÀN¨>É­!>ÐU2=¥®_>ÐU2>¹¦“>ÐU2>Ù³¯>ÐU2>éº=>à[Ã<•çÉ>à[Ã=K(R>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>ðbQ=¥®_>ðbQ>É­!?4o=¥®_     =ÀN§>éº=>4t=åÈ—>4t>É­!>4t>Ù³¯> A‰=åÈ—> A‰>É­!> A‰>Ù³¯>@N¥>ñg>@N¥>É­!>€4q<•çÉ>€4q=K(R>:ÿ=¥®_> A=¥®_>°H>É­!>ÀN¨=åÈ—>ÀN¨>¹¦“>ÀN¨>É­!>ÐU2>ñg>ÐU2>¹¦“>ÐU2>Ù³¯>ÐU2>éº=>à[Ã>ñg>à[Ã>¹¦“>à[Ã>É­!>ðbQ>É­!    =ÀN¥>éº=>4n=åÈ—>4n>É­!>4n>Ù³¯> A=åÈ—> A>É­!> A>Ù³¯>@N¥>ñg>@N¥>É­!>€4q<•çÉ>€4q=K(R>:û=¥®_> A‰=¥®_>°H>É­!>ÀN¥=åÈ—>ÀN¥>¹¦“>ÀN¥>É­!>ÐU2=åÈ—>ÐU2>¹¦“>ÐU2>Ù³¯>ÐU2>éº=>à[À>ñg>à[À>¹¦“>à[À>É­!>ðbN>É­!?4n<•çÉ?4n=K(R?7µ=¥®_?:û=¥®_?>D>É­!? A‹=åÈ—? A‹>¹¦“? A‹>É­!?(DÒ>ñg?(DÒ>¹¦“?(DÒ>Ù³¯?(DÒ>éº=?0H>ñg?0H>¹¦“?0H>É­!?8K_>É­!    %$((&&%"''## ""!$=ÀN§<•çÉ=ÀN§=¥®_=ÀN§>É­!>4t>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰>¹¦“> A‰>éº=>@N¥>É­!>@N¥>Ù³¯>€4q>S ž>€4q>s¹> A>s¹> A>‰’ê>ÀN¨=K(R>ÀN¨=¥®_>ÐU2<•çÉ>ÐU2=åÈ—>ÐU2>s¹>ÐU2>É­!>ÐU2>éº=>à[Ã=K(R>ðbQ=¥®_>ðbQ>É­!>ðbQ>éº=    = Aˆ>É­!=à[À>É­!>;¾-‘¬>;=¥®_>;>¹¦“>;>Ù³¯>;>éº=>0H¾-‘¬>0H=¥®_>0H>É­!>PU2¾MžÇ>PU2¾ „>PU2=åÈ—>PU2>É­!>pbN¾-‘¬>pbN<•çÉ>pbN=K(R>ˆ7µ¾-‘¬>˜>B=K(R>¨Dо-‘¬>¸K^¾ „>¸K^>É­!>ÈQì¾ „>ÈQì½Úîé>ÈQ콚Ե>ÈQì=¥®_>ÈQì>¹¦“>ÈQì>É­!>ØXy½Úîé>ØXy½šÔµ>ØXy>¹¦“>ØXy>Ù³¯>ØXy>éº=>è_½5tý>è_>¹¦“>è_>É­!>øe˜>É­!   $$""!!  ## = A—¾-‘¬=à[À¾-‘¬>:û¾MžÇ>:û¾ „>:û>¹¦“>:û>É­!>0H¾-‘¬>PU9¾-‘¬>pbN>S ž>pbN>Ù³¯>ˆ7µ¾-‘¬>˜>B¾ „>˜>B>2þ‚>˜>B>s¹>˜>B>Ù³¯>˜>B>éº=>¨DÓ¾ „>¨DÓ½Úîé>¨DÓ½šÔµ>¨DÓ>ñg>¨DÓ>‰’ê>¨DÓ>¹¦“>¸Ka½Úîé>¸Ka½šÔµ>¸Ka>ñg>¸Ka>‰’ê>¸Ka>É­!>ÈQì½5tý>ÈQì>ñg>ÈQì>‰’ê>ÈQì>É­!       >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê:   dx-4.4.4/fonts/greek_d.dx0000644000076500000240000024115207120226765012157 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 10 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 80 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 11 msb ieee data 152 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 320 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 36 msb ieee data 416 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 34 msb ieee data 704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 976 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 43 msb ieee data 1392 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 43 msb ieee data 1736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.782500 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2080 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2184 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2440 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2696 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2768 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2816 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2920 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2944 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 3008 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 32 msb ieee data 3032 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 34 msb ieee data 3288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 8 msb ieee data 3560 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 5 msb ieee data 3624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 37 msb ieee data 3664 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 37 msb ieee data 3960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 39 msb ieee data 4256 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 39 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 8 msb ieee data 4880 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 5 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 41 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 42 msb ieee data 5776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6112 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 21 msb ieee data 6288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6456 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 41 msb ieee data 7232 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 42 msb ieee data 7560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7896 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 7960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 8024 attribute "dep" string "positions" # object 81 class field component "positions" value 82 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 84 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 85 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 83 class field component "positions" value 84 component "connections" value 85 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 87 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 88 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 86 class field component "positions" value 87 component "connections" value 88 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 90 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 91 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 89 class field component "positions" value 90 component "connections" value 91 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 93 class array type float rank 1 shape 2 items 27 msb ieee data 8240 attribute "dep" string "positions" # object 94 class array type int rank 1 shape 2 items 26 msb ieee data 8456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 92 class field component "positions" value 93 component "connections" value 94 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 96 class array type float rank 1 shape 2 items 48 msb ieee data 8664 attribute "dep" string "positions" # object 97 class array type int rank 1 shape 2 items 48 msb ieee data 9048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 95 class field component "positions" value 96 component "connections" value 97 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 99 class array type float rank 1 shape 2 items 11 msb ieee data 9432 attribute "dep" string "positions" # object 100 class array type int rank 1 shape 2 items 6 msb ieee data 9520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 98 class field component "positions" value 99 component "connections" value 100 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 102 class array type float rank 1 shape 2 items 34 msb ieee data 9568 attribute "dep" string "positions" # object 103 class array type int rank 1 shape 2 items 33 msb ieee data 9840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 101 class field component "positions" value 102 component "connections" value 103 attribute "char width" number 0.688600 attribute "series position" number 66.000000 # object 105 class array type float rank 1 shape 2 items 10 msb ieee data 10104 attribute "dep" string "positions" # object 106 class array type int rank 1 shape 2 items 6 msb ieee data 10184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 104 class field component "positions" value 105 component "connections" value 106 attribute "char width" number 0.563400 attribute "series position" number 67.000000 # object 108 class array type float rank 1 shape 2 items 7 msb ieee data 10232 attribute "dep" string "positions" # object 109 class array type int rank 1 shape 2 items 5 msb ieee data 10288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 107 class field component "positions" value 108 component "connections" value 109 attribute "char width" number 0.626000 attribute "series position" number 68.000000 # object 111 class array type float rank 1 shape 2 items 16 msb ieee data 10328 attribute "dep" string "positions" # object 112 class array type int rank 1 shape 2 items 10 msb ieee data 10456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 110 class field component "positions" value 111 component "connections" value 112 attribute "char width" number 0.657300 attribute "series position" number 69.000000 # object 114 class array type float rank 1 shape 2 items 10 msb ieee data 10536 attribute "dep" string "positions" # object 115 class array type int rank 1 shape 2 items 8 msb ieee data 10616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 113 class field component "positions" value 114 component "connections" value 115 attribute "char width" number 0.626000 attribute "series position" number 70.000000 # object 117 class array type float rank 1 shape 2 items 18 msb ieee data 10680 attribute "dep" string "positions" # object 118 class array type int rank 1 shape 2 items 9 msb ieee data 10824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 116 class field component "positions" value 117 component "connections" value 118 attribute "char width" number 0.751200 attribute "series position" number 71.000000 # object 120 class array type float rank 1 shape 2 items 44 msb ieee data 10896 attribute "dep" string "positions" # object 121 class array type int rank 1 shape 2 items 42 msb ieee data 11248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 119 class field component "positions" value 120 component "connections" value 121 attribute "char width" number 0.688600 attribute "series position" number 72.000000 # object 123 class array type float rank 1 shape 2 items 8 msb ieee data 11584 attribute "dep" string "positions" # object 124 class array type int rank 1 shape 2 items 4 msb ieee data 11648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 122 class field component "positions" value 123 component "connections" value 124 attribute "char width" number 0.344300 attribute "series position" number 73.000000 # object 126 class array type float rank 1 shape 2 items 18 msb ieee data 11680 attribute "dep" string "positions" # object 127 class array type int rank 1 shape 2 items 9 msb ieee data 11824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 125 class field component "positions" value 126 component "connections" value 127 attribute "char width" number 0.688600 attribute "series position" number 74.000000 # object 129 class array type float rank 1 shape 2 items 9 msb ieee data 11896 attribute "dep" string "positions" # object 130 class array type int rank 1 shape 2 items 5 msb ieee data 11968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 128 class field component "positions" value 129 component "connections" value 130 attribute "char width" number 0.626000 attribute "series position" number 75.000000 # object 132 class array type float rank 1 shape 2 items 15 msb ieee data 12008 attribute "dep" string "positions" # object 133 class array type int rank 1 shape 2 items 10 msb ieee data 12128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 131 class field component "positions" value 132 component "connections" value 133 attribute "char width" number 0.782500 attribute "series position" number 76.000000 # object 135 class array type float rank 1 shape 2 items 12 msb ieee data 12208 attribute "dep" string "positions" # object 136 class array type int rank 1 shape 2 items 7 msb ieee data 12304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 134 class field component "positions" value 135 component "connections" value 136 attribute "char width" number 0.719900 attribute "series position" number 77.000000 # object 138 class array type float rank 1 shape 2 items 24 msb ieee data 12360 attribute "dep" string "positions" # object 139 class array type int rank 1 shape 2 items 12 msb ieee data 12552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 137 class field component "positions" value 138 component "connections" value 139 attribute "char width" number 0.688600 attribute "series position" number 78.000000 # object 141 class array type float rank 1 shape 2 items 36 msb ieee data 12648 attribute "dep" string "positions" # object 142 class array type int rank 1 shape 2 items 38 msb ieee data 12936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 140 class field component "positions" value 141 component "connections" value 142 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 144 class array type float rank 1 shape 2 items 14 msb ieee data 13240 attribute "dep" string "positions" # object 145 class array type int rank 1 shape 2 items 7 msb ieee data 13352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 143 class field component "positions" value 144 component "connections" value 145 attribute "char width" number 0.751200 attribute "series position" number 80.000000 # object 147 class array type float rank 1 shape 2 items 22 msb ieee data 13408 attribute "dep" string "positions" # object 148 class array type int rank 1 shape 2 items 19 msb ieee data 13584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 146 class field component "positions" value 147 component "connections" value 148 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 150 class array type float rank 1 shape 2 items 13 msb ieee data 13736 attribute "dep" string "positions" # object 151 class array type int rank 1 shape 2 items 10 msb ieee data 13840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 149 class field component "positions" value 150 component "connections" value 151 attribute "char width" number 0.657300 attribute "series position" number 82.000000 # object 153 class array type float rank 1 shape 2 items 12 msb ieee data 13920 attribute "dep" string "positions" # object 154 class array type int rank 1 shape 2 items 8 msb ieee data 14016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 152 class field component "positions" value 153 component "connections" value 154 attribute "char width" number 0.594700 attribute "series position" number 83.000000 # object 156 class array type float rank 1 shape 2 items 24 msb ieee data 14080 attribute "dep" string "positions" # object 157 class array type int rank 1 shape 2 items 23 msb ieee data 14272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 155 class field component "positions" value 156 component "connections" value 157 attribute "char width" number 0.594700 attribute "series position" number 84.000000 # object 159 class array type float rank 1 shape 2 items 36 msb ieee data 14456 attribute "dep" string "positions" # object 160 class array type int rank 1 shape 2 items 34 msb ieee data 14744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 158 class field component "positions" value 159 component "connections" value 160 attribute "char width" number 0.657300 attribute "series position" number 85.000000 # object 162 class array type float rank 1 shape 2 items 14 msb ieee data 15016 attribute "dep" string "positions" # object 163 class array type int rank 1 shape 2 items 7 msb ieee data 15128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 161 class field component "positions" value 162 component "connections" value 163 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 165 class array type float rank 1 shape 2 items 30 msb ieee data 15184 attribute "dep" string "positions" # object 166 class array type int rank 1 shape 2 items 27 msb ieee data 15424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 164 class field component "positions" value 165 component "connections" value 166 attribute "char width" number 0.719900 attribute "series position" number 87.000000 # object 168 class array type float rank 1 shape 2 items 34 msb ieee data 15640 attribute "dep" string "positions" # object 169 class array type int rank 1 shape 2 items 33 msb ieee data 15912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 167 class field component "positions" value 168 component "connections" value 169 attribute "char width" number 0.688600 attribute "series position" number 88.000000 # object 170 class field attribute "char width" number 0.500800 attribute "series position" number 89.000000 # object 171 class field attribute "char width" number 0.500800 attribute "series position" number 90.000000 # object 173 class array type float rank 1 shape 2 items 6 msb ieee data 16176 attribute "dep" string "positions" # object 174 class array type int rank 1 shape 2 items 4 msb ieee data 16224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 172 class field component "positions" value 173 component "connections" value 174 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 176 class array type float rank 1 shape 2 items 2 msb ieee data 16256 attribute "dep" string "positions" # object 177 class array type int rank 1 shape 2 items 1 msb ieee data 16272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 175 class field component "positions" value 176 component "connections" value 177 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 179 class array type float rank 1 shape 2 items 6 msb ieee data 16280 attribute "dep" string "positions" # object 180 class array type int rank 1 shape 2 items 4 msb ieee data 16328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 178 class field component "positions" value 179 component "connections" value 180 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 182 class array type float rank 1 shape 2 items 7 msb ieee data 16360 attribute "dep" string "positions" # object 183 class array type int rank 1 shape 2 items 5 msb ieee data 16416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 181 class field component "positions" value 182 component "connections" value 183 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 185 class array type float rank 1 shape 2 items 2 msb ieee data 16456 attribute "dep" string "positions" # object 186 class array type int rank 1 shape 2 items 1 msb ieee data 16472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 184 class field component "positions" value 185 component "connections" value 186 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 188 class array type float rank 1 shape 2 items 7 msb ieee data 16480 attribute "dep" string "positions" # object 189 class array type int rank 1 shape 2 items 6 msb ieee data 16536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 187 class field component "positions" value 188 component "connections" value 189 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 191 class array type float rank 1 shape 2 items 31 msb ieee data 16584 attribute "dep" string "positions" # object 192 class array type int rank 1 shape 2 items 32 msb ieee data 16832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 190 class field component "positions" value 191 component "connections" value 192 attribute "char width" number 0.719900 attribute "series position" number 97.000000 # object 194 class array type float rank 1 shape 2 items 44 msb ieee data 17088 attribute "dep" string "positions" # object 195 class array type int rank 1 shape 2 items 45 msb ieee data 17440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 193 class field component "positions" value 194 component "connections" value 195 attribute "char width" number 0.657300 attribute "series position" number 98.000000 # object 197 class array type float rank 1 shape 2 items 22 msb ieee data 17800 attribute "dep" string "positions" # object 198 class array type int rank 1 shape 2 items 20 msb ieee data 17976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 196 class field component "positions" value 197 component "connections" value 198 attribute "char width" number 0.626000 attribute "series position" number 99.000000 # object 200 class array type float rank 1 shape 2 items 36 msb ieee data 18136 attribute "dep" string "positions" # object 201 class array type int rank 1 shape 2 items 38 msb ieee data 18424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 199 class field component "positions" value 200 component "connections" value 201 attribute "char width" number 0.594700 attribute "series position" number 100.000000 # object 203 class array type float rank 1 shape 2 items 23 msb ieee data 18728 attribute "dep" string "positions" # object 204 class array type int rank 1 shape 2 items 24 msb ieee data 18912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 202 class field component "positions" value 203 component "connections" value 204 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 206 class array type float rank 1 shape 2 items 28 msb ieee data 19104 attribute "dep" string "positions" # object 207 class array type int rank 1 shape 2 items 27 msb ieee data 19328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 205 class field component "positions" value 206 component "connections" value 207 attribute "char width" number 0.563400 attribute "series position" number 102.000000 # object 209 class array type float rank 1 shape 2 items 26 msb ieee data 19544 attribute "dep" string "positions" # object 210 class array type int rank 1 shape 2 items 24 msb ieee data 19752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 208 class field component "positions" value 209 component "connections" value 210 attribute "char width" number 0.688600 attribute "series position" number 103.000000 # object 212 class array type float rank 1 shape 2 items 37 msb ieee data 19944 attribute "dep" string "positions" # object 213 class array type int rank 1 shape 2 items 38 msb ieee data 20240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 211 class field component "positions" value 212 component "connections" value 213 attribute "char width" number 0.719900 attribute "series position" number 104.000000 # object 215 class array type float rank 1 shape 2 items 13 msb ieee data 20544 attribute "dep" string "positions" # object 216 class array type int rank 1 shape 2 items 11 msb ieee data 20648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 214 class field component "positions" value 215 component "connections" value 216 attribute "char width" number 0.375600 attribute "series position" number 105.000000 # object 218 class array type float rank 1 shape 2 items 22 msb ieee data 20736 attribute "dep" string "positions" # object 219 class array type int rank 1 shape 2 items 19 msb ieee data 20912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 217 class field component "positions" value 218 component "connections" value 219 attribute "char width" number 0.626000 attribute "series position" number 106.000000 # object 221 class array type float rank 1 shape 2 items 16 msb ieee data 21064 attribute "dep" string "positions" # object 222 class array type int rank 1 shape 2 items 15 msb ieee data 21192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 220 class field component "positions" value 221 component "connections" value 222 attribute "char width" number 0.626000 attribute "series position" number 107.000000 # object 224 class array type float rank 1 shape 2 items 23 msb ieee data 21312 attribute "dep" string "positions" # object 225 class array type int rank 1 shape 2 items 18 msb ieee data 21496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 223 class field component "positions" value 224 component "connections" value 225 attribute "char width" number 0.719900 attribute "series position" number 108.000000 # object 227 class array type float rank 1 shape 2 items 15 msb ieee data 21640 attribute "dep" string "positions" # object 228 class array type int rank 1 shape 2 items 14 msb ieee data 21760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 226 class field component "positions" value 227 component "connections" value 228 attribute "char width" number 0.626000 attribute "series position" number 109.000000 # object 230 class array type float rank 1 shape 2 items 34 msb ieee data 21872 attribute "dep" string "positions" # object 231 class array type int rank 1 shape 2 items 35 msb ieee data 22144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 229 class field component "positions" value 230 component "connections" value 231 attribute "char width" number 0.532100 attribute "series position" number 110.000000 # object 233 class array type float rank 1 shape 2 items 24 msb ieee data 22424 attribute "dep" string "positions" # object 234 class array type int rank 1 shape 2 items 26 msb ieee data 22616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 232 class field component "positions" value 233 component "connections" value 234 attribute "char width" number 0.563400 attribute "series position" number 111.000000 # object 236 class array type float rank 1 shape 2 items 13 msb ieee data 22824 attribute "dep" string "positions" # object 237 class array type int rank 1 shape 2 items 10 msb ieee data 22928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 235 class field component "positions" value 236 component "connections" value 237 attribute "char width" number 0.688600 attribute "series position" number 112.000000 # object 239 class array type float rank 1 shape 2 items 25 msb ieee data 23008 attribute "dep" string "positions" # object 240 class array type int rank 1 shape 2 items 25 msb ieee data 23208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 238 class field component "positions" value 239 component "connections" value 240 attribute "char width" number 0.594700 attribute "series position" number 113.000000 # object 242 class array type float rank 1 shape 2 items 26 msb ieee data 23408 attribute "dep" string "positions" # object 243 class array type int rank 1 shape 2 items 27 msb ieee data 23616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 241 class field component "positions" value 242 component "connections" value 243 attribute "char width" number 0.657300 attribute "series position" number 114.000000 # object 245 class array type float rank 1 shape 2 items 10 msb ieee data 23832 attribute "dep" string "positions" # object 246 class array type int rank 1 shape 2 items 8 msb ieee data 23912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 244 class field component "positions" value 245 component "connections" value 246 attribute "char width" number 0.626000 attribute "series position" number 115.000000 # object 248 class array type float rank 1 shape 2 items 24 msb ieee data 23976 attribute "dep" string "positions" # object 249 class array type int rank 1 shape 2 items 25 msb ieee data 24168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 247 class field component "positions" value 248 component "connections" value 249 attribute "char width" number 0.626000 attribute "series position" number 116.000000 # object 251 class array type float rank 1 shape 2 items 30 msb ieee data 24368 attribute "dep" string "positions" # object 252 class array type int rank 1 shape 2 items 31 msb ieee data 24608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 250 class field component "positions" value 251 component "connections" value 252 attribute "char width" number 0.688600 attribute "series position" number 117.000000 # object 254 class array type float rank 1 shape 2 items 18 msb ieee data 24856 attribute "dep" string "positions" # object 255 class array type int rank 1 shape 2 items 17 msb ieee data 25000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 253 class field component "positions" value 254 component "connections" value 255 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 257 class array type float rank 1 shape 2 items 29 msb ieee data 25136 attribute "dep" string "positions" # object 258 class array type int rank 1 shape 2 items 26 msb ieee data 25368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 256 class field component "positions" value 257 component "connections" value 258 attribute "char width" number 0.719900 attribute "series position" number 119.000000 # object 260 class array type float rank 1 shape 2 items 33 msb ieee data 25576 attribute "dep" string "positions" # object 261 class array type int rank 1 shape 2 items 36 msb ieee data 25840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 259 class field component "positions" value 260 component "connections" value 261 attribute "char width" number 0.719900 attribute "series position" number 120.000000 # object 262 class field attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 263 class field attribute "char width" number 0.500800 attribute "series position" number 122.000000 # object 265 class array type float rank 1 shape 2 items 35 msb ieee data 26128 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 34 msb ieee data 26408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 268 class array type float rank 1 shape 2 items 2 msb ieee data 26680 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 1 msb ieee data 26696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 271 class array type float rank 1 shape 2 items 35 msb ieee data 26704 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 34 msb ieee data 26984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 274 class array type float rank 1 shape 2 items 20 msb ieee data 27256 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 20 msb ieee data 27416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 277 class array type float rank 1 shape 2 items 12 msb ieee data 27576 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 12 msb ieee data 27672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 83 member 61 position 61 value 86 member 62 position 62 value 89 member 63 position 63 value 92 member 64 position 64 value 95 member 65 position 65 value 98 member 66 position 66 value 101 member 67 position 67 value 104 member 68 position 68 value 107 member 69 position 69 value 110 member 70 position 70 value 113 member 71 position 71 value 116 member 72 position 72 value 119 member 73 position 73 value 122 member 74 position 74 value 125 member 75 position 75 value 128 member 76 position 76 value 131 member 77 position 77 value 134 member 78 position 78 value 137 member 79 position 79 value 140 member 80 position 80 value 143 member 81 position 81 value 146 member 82 position 82 value 149 member 83 position 83 value 152 member 84 position 84 value 155 member 85 position 85 value 158 member 86 position 86 value 161 member 87 position 87 value 164 member 88 position 88 value 167 member 89 position 89 value 170 member 90 position 90 value 171 member 91 position 91 value 172 member 92 position 92 value 175 member 93 position 93 value 178 member 94 position 94 value 181 member 95 position 95 value 184 member 96 position 96 value 187 member 97 position 97 value 190 member 98 position 98 value 193 member 99 position 99 value 196 member 100 position 100 value 199 member 101 position 101 value 202 member 102 position 102 value 205 member 103 position 103 value 208 member 104 position 104 value 211 member 105 position 105 value 214 member 106 position 106 value 217 member 107 position 107 value 220 member 108 position 108 value 223 member 109 position 109 value 226 member 110 position 110 value 229 member 111 position 111 value 232 member 112 position 112 value 235 member 113 position 113 value 238 member 114 position 114 value 241 member 115 position 115 value 244 member 116 position 116 value 247 member 117 position 117 value 250 member 118 position 118 value 253 member 119 position 119 value 256 member 120 position 120 value 259 member 121 position 121 value 262 member 122 position 122 value 263 member 123 position 123 value 264 member 124 position 124 value 267 member 125 position 125 value 270 member 126 position 126 value 273 member 127 position 127 value 276 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.900000 attribute "font descent" number 0.200000 # end >4n=K(R>4n?í> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰>Ù³¯> A‰?í> A‰?,ô>@N¥=K(R>@N¥?í >4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯  =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥=åÈ—=ÀN¥>ñg=ÀN¥?ã¬=ÀN¥?ê:>4n=åÈ—>4n>2þ‚>4n>éº=> A=K(R> A>ñg> A>Ù³¯> A>éº=> A?$ðÇ>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>© >ÐU2>¹¦“>ðbN=K(R>ðbN>™™x>ðbN>© >ðbN? æó>ðbN?$ðÇ?4o>™™x?4o?ã¬?4o?ê:?7¶=åÈ—?7¶>s¹?7¶? æó?7¶?ê:""##  ! !! =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥=åÈ—=ÀN¥>S ž>4t=K(R>4t=åÈ—>4t>S ž>4t>‰’ê> A‰=K(R> A‰>‰’ê>`[Ç<•çÉ>`[Ç>© >`[Ç?ã¬>`[Ç?ê:>€4n>Ù³¯>€4n>éº=>€4n?$ðÇ> A‰<•çÉ> A‰>© > A‰>É­!> A‰?,ô>ÀN¥=K(R>ÀN¥>éº=>ÀN¥?$ðÇ>ÐU2?ã¬>ÐU2?ê:>à[Ã=åÈ—>ðbQ=åÈ—?4o=åÈ—?4o>S ž?7¶=K(R?:ý=K(R?:ý>¹¦“?>D>Ù³¯? A‹<•çÉ? A‹>É­!? A‹>éº=?(DÐ<•çÉ?(DÐ>¹¦“?(DÐ>Ù³¯?(DÐ>éº=?0H=K(R?0H=¥®_?0H>É­!?0H>Ù³¯%!!$$))**&&""  ##''(  >4n>ùÀÊ>4n?$ðÇ> A‰?ã¬> A‰?í> A‰?,ô>@N¥?ê:>@N¥?$ðÇ=à[À>s¹=à[À>¹¦“>:û=¥®_>:û>s¹>:û>¹¦“>:û?ã¬>0H=¥®_>0H?ã¬>PU2½5tý>PU2¼U;>PU2?í>PU2?$ðÇ>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*    =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>pbN½5tý>pbN¼U;>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ?ã¬>˜>B=¥®_>˜>B>s¹>˜>B>¹¦“>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“   =ÀN²>É­!=ÀN²?ê:>€4q>™™x>€4q?,ô>ÐU2>É­!>ÐU2?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé>4n=K(R> A‰½šÔµ> A‰<•çÉ> A‰=¥®_>@N¥¼U;>@N¥=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R=€4l¾MžÇ? A‰?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n>™™x>4n>É­!>4n? æó> A>ñg> A? æó>@N¥=K(R>@N¥=¥®_>@N¥?í>@N¥?$ðÇ>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>°H<•çÉ>°H?,ô>ÐU2=K(R>ÐU2?$ðÇ>à[Ã=K(R>à[Ã=¥®_>à[Ã?í>à[Ã?$ðÇ>ðbN>ñg>ðbN? æó?4o>ñg?4o>™™x?4o>É­!?4o? æó?7¶>™™x?7¶>É­!   >0H<•çÉ>0H? æó>pbN?ê:>˜>B<•çÉ>˜>B?$ðÇ>¨DÐ<•çÉ>¨DÐ?,ô>è_<•çÉ=ÀN¥<•çÉ=ÀN¥=¥®_=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥? æó>4n=åÈ—>4n>S ž>4n>ùÀÊ>4n? æó>4n?í> A?ã¬> A?$ðÇ>@N¥=åÈ—>@N¥>‰’ê>€4n>™™x>€4n?,ô>°H<•çÉ>°H=K(R>ÀN¥>¹¦“>ÀN¥?,ô>ÐU2>¹¦“>à[Ã=K(R>à[Ã?$ðÇ>ðbN<•çÉ>ðbN>Ù³¯>ðbN?í>ðbN?$ðÇ?4o=K(R?4o=¥®_?4o>Ù³¯?4o>ùÀÊ?4o? æó?4o?í?7¶=åÈ—?7¶>2þ‚?7¶>ùÀÊ?7¶? æó   $$##  ! !!"=ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥?ã¬=ÀN¥? æó>4n=¥®_>4n>ñg>4n>S ž>4n>ùÀÊ>4n? æó>4n?í> A=K(R> A>2þ‚> A?ã¬> A?$ðÇ>€4n<•çÉ>€4n?,ô>:û>É­!>ÀN¥<•çÉ>ÀN¥>É­!>ÀN¥?,ô>à[Ã=K(R>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>© >ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>s¹?4o>™™x?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>s¹  $$##""&&%%  !! =€4}>S ž>:û<•çÉ>ÀN¥<•çÉ>ÀN¥?í>ÐU2<•çÉ>ÐU2?,ô?4o<•çÉ?:ý>S ž=ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥>¹¦“>4n=¥®_>4n>ñg>4n>S ž> A=K(R> A>2þ‚> A>Ù³¯> A?$ðÇ> A?,ô>€4n<•çÉ>€4n>éº=> A‰?$ðÇ>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>à[Ã=K(R>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>¹¦“>ðbN?,ô?4o=åÈ—?4o>S ž?4o>‰’ê?4o>¹¦“?7¶>S ž?7¶>‰’ê     =ÀN¥>S ž=ÀN¥>É­!>4n=åÈ—>4n>S ž>4n>s¹>4n>É­!>4n?ã¬> A=åÈ—> A>© > A?ã¬> A?ê:>@N¥=K(R>@N¥?ê:>`[À=K(R>`[À>É­!>`[À?$ðÇ>€4n?$ðÇ>:û<•çÉ> A‰>Ù³¯> A‰?,ô>°H<•çÉ>°H>Ù³¯>ÐU2=K(R>ÐU2>É­!>ÐU2?,ô>à[Ã=K(R>à[Ã>É­!>à[Ã? æó>ðbN=åÈ—>ðbN>© >ðbN?ã¬>ðbN?ê:>ðbN?$ðÇ?4o=åÈ—?4o>S ž?4o>s¹?4o>© ?4o? æó?4o?ê:?7¶>S ž?7¶>s¹%%&&   !!''(($$  ""##=ÀN¥>ùÀÊ=ÀN¥? æó=ÀN¥?,ô>4n?í>@N¥?$ðÇ>@N¥?,ô>€4n?$ðÇ>€4n?,ô>:û<•çÉ>:û>2þ‚> A‰<•çÉ> A‰>2þ‚> A‰>‰’ê>°H>‰’ê>°H>© >ÀN¥>© >ÐU2?ê:>ðbN?ê:?4o>ùÀÊ?4o?í?7¶?ê:?7¶?,ô  =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>© >4n>ùÀÊ>4n?ê:> A=K(R> A=¥®_> A>© > A>¹¦“> A>Ù³¯> A>ùÀÊ> A?ê:> A?$ðÇ>@N¥=K(R>@N¥>¹¦“>@N¥>Ù³¯>@N¥?$ðÇ>€4n<•çÉ>€4n>É­!>€4n?,ô>ÀN¥<•çÉ>ÀN¥>É­!>ÀN¥?,ô>à[Ã=K(R>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>© >ðbN>¹¦“>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>‰’ê?4o>© ?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>‰’ê ""**++%% ##$$ &&,,--))!!  ''(( =ÀN¥>éº==ÀN¥>ùÀÊ>4n=åÈ—>4n>ñg>4n>¹¦“>4n>éº=>4n>ùÀÊ>4n?ê:> A=K(R> A=åÈ—> A>2þ‚> A>¹¦“> A?ê:>@N¥>ñg>@N¥>™™x>@N¥?$ðÇ>`[À<•çÉ>`[À>™™x>`[À?$ðÇ>:û>‰’ê>:û?,ô> A‰<•çÉ> A‰>‰’ê>°H?,ô>ÀN¥=K(R>ÐU2=K(R>ÐU2>™™x>ÐU2?$ðÇ>à[Ã=åÈ—>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>2þ‚>ðbN>¹¦“>ðbN?ê:?4o>2þ‚?4o>™™x?4o>éº=?4o>ùÀÊ?4o?ê:?7¶>™™x?7¶>ùÀÊ$ &&((''""   !!%%##>4n=K(R>4n>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯>4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§?ã¬=ÀN§? æó>4t>ùÀÊ>4t? æó>4t?í> A‰?ã¬> A‰?$ðÇ>`[À?,ô>€4q=K(R>:ÿ<•çÉ>:ÿ=¥®_>:ÿ>s¹>:ÿ>© > A=K(R> A?,ô>°H>¹¦“>ÀN¨?$ðÇ>ÐU2>É­!>ÐU2>Ù³¯>ÐU2?í>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã>ùÀÊ>à[Ã? æó>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4h<•çÉ=ÀN¥<•çÉ> A>S ž>`[À<•çÉ> A‰?ê:> A‰?,ô>ÐU2<•çÉ>à[Ã>S ž?4o<•çÉ?7¶<•çÉ?>B<•çÉ  = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>¹¦“>PU9?,ô>è_ <•çÉ>è_ >¹¦“>è_ ?,ô?6=K(R?6>© ?6>É­!?6?$ðÇ? 9Z=K(R? 9Z=¥®_? 9Z>™™x? 9Z>© ? 9Z>É­!? 9Z>Ù³¯? 9Z?í? 9Z?$ðÇ?<¡=¥®_?<¡>ñg?<¡>s¹?<¡>™™x?<¡>Ù³¯?<¡>ùÀÊ?<¡? æó?<¡?í??ç>ñg??ç>s¹??ç>ùÀÊ??ç? æó !!     =@N§<•çÉ=@N§?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H?,ô>ˆ7µ<•çÉ>øe˜?,ô?6>ùÀÊ?6?,ô =€4}<•çÉ=ÀN¥=K(R> A‰?ê:> A‰?,ô?7¶<•çÉ?7¶=K(R?:ý<•çÉ= Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>¹¦“>PU9?,ô>ÈQì>s¹>ÈQì>¹¦“>ÈQì>ùÀÊ? 9Z<•çÉ? 9Z?,ô?<¡<•çÉ?<¡>S ž?<¡>ùÀÊ?<¡?,ô   =ÀN¥<•çÉ=ÀN¥>ùÀÊ=ÀN¥?,ô>4n<•çÉ>4n?,ô?4o<•çÉ?4o?,ô?7¶<•çÉ?7¶>S ž?7¶?,ô  =€4p<•çÉ=€4p?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥>¹¦“>@N¥?,ô>:û<•çÉ>:û?,ô>ðbQ<•çÉ>ðbQ?,ô?:ý<•çÉ?:ý>¹¦“?:ý?,ô?>D<•çÉ?>D?,ô?0H<•çÉ?0H?,ô    =ÀN³>™™x=ÀN³>É­!>4n>2þ‚>4n>™™x>4n>É­!>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n>s¹>€4n>© >€4n>¹¦“>€4n>éº=>€4n?$ðÇ> A<•çÉ> A?,ô>ÀN¥<•çÉ>ÀN¥?,ô>à[Ã=K(R>à[Ã>s¹>à[Ã>© >à[Ã>¹¦“>à[Ã>éº=>à[Ã?$ðÇ>ðbQ=K(R>ðbQ?$ðÇ?4o=åÈ—?4o?ê:?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>™™x?:ý>É­!?:ý?ã¬?>D>™™x?>D>É­!  ""&&**++))%%   ##''(($$!!=€4n<•çÉ=€4n?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥?,ô>:û<•çÉ>:û?,ô=@N§<•çÉ=@N§?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H>‰’ê>0H?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B>É­!>¨DÓ>É­!>è_ <•çÉ>è_ ?,ô? 9Z<•çÉ?<¡<•çÉ?<¡?,ô?$C-<•çÉ?$C-?,ô    =4h<•çÉ=ÀN¥<•çÉ>`[À<•çÉ> A‰?ê:> A‰?,ô>ÐU2<•çÉ?4o<•çÉ?7¶<•çÉ?>B<•çÉ=€4p<•çÉ=€4p?,ô> A‰<•çÉ> A‰?,ô>@N¥?,ô>€4n<•çÉ>ÀN¥<•çÉ>ÀN¥=åÈ—?4o<•çÉ?>D<•çÉ?>D?,ô? A‹<•çÉ? A‹?,ô?8K_<•çÉ?8K_?,ô    =€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«?í>@N«?,ô>€4n<•çÉ>ðbQ?,ô?:ý<•çÉ?:ý=¥®_?:ý?,ô?(DÒ?,ô   =ÀN³¼U;=ÀN³? æó>4n=K(R>4n=¥®_>4n>ñg>4n?í>4n?$ðÇ>4n?4÷U>`[À>‰’ê>€4n>© >€4n>¹¦“>€4n>Ù³¯>à[Ã>‰’ê>à[Ã>© >à[Ã>¹¦“>ðbQ>Ù³¯?:ý¼U;?:ý=K(R?:ý=¥®_?:ý? æó?:ý?í?:ý?$ðÇ?>D>ñg?>D?4÷U    =ÀN³>™™x=ÀN³>É­!>4n>2þ‚>4n>™™x>4n>É­!>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n?$ðÇ> A<•çÉ> A?,ô>ÀN¥<•çÉ>ÀN¥?,ô>à[Ã=K(R>à[Ã?$ðÇ>ðbQ=K(R>ðbQ?$ðÇ?4o=åÈ—?4o?ê:?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>™™x?:ý>É­!?:ý?ã¬?>D>™™x?>D>É­!  ""##!!   =€4p<•çÉ=€4p?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥?,ô>:û<•çÉ>ðbQ<•çÉ?:ý<•çÉ?:ý?,ô?>D<•çÉ?>D?,ô?0H<•çÉ?0H?,ô    = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>© >PU9?,ô>˜>B<•çÉ>è_ >© >è_ ?,ô?6>¹¦“?6?$ðÇ? 9Z>¹¦“? 9Z>É­!? 9Z?í? 9Z?$ðÇ?<¡>É­!?<¡>éº=?<¡? æó?<¡?í??ç>éº=??ç? æó    = A˜<•çÉ= A˜?,ô=à[À=K(R=à[À?,ô>˜>B>¹¦“>¨DÓ>¹¦“?6<•çÉ?6=K(R?6?,ô? 9Z<•çÉ? 9Z?,ô?<¡>S ž?<¡>ùÀÊ  =€4p>ùÀÊ=€4p?,ô=ÀN§?,ô>@N¥<•çÉ>:ÿ<•çÉ>:ÿ?,ô> A<•çÉ> A?,ô>ÐU2<•çÉ?4o?,ô?7¶>ùÀÊ?7¶?,ô =€4p?ã¬=€4p?ê:=ÀN§?$ðÇ>4t?$ðÇ>4t?,ô>@N¥<•çÉ>@N¥?$ðÇ>@N¥?,ô>`[À?$ðÇ>€4q?ê:>:ÿ<•çÉ>:ÿ>éº=> A<•çÉ> A>éº=>°H?ê:>ÀN¨?$ðÇ>ÐU2<•çÉ>ÐU2?$ðÇ>ÐU2?,ô>ðbQ?$ðÇ>ðbQ?,ô?4o?$ðÇ?7¶?ã¬?7¶?ê:   =ÀN¥>™™x=ÀN¥>É­!>4n>s¹>4n>™™x>4n>É­!>4n>éº=> A>S ž> A>s¹> A>éº=> A>ùÀÊ>@N¥>S ž>@N¥>ùÀÊ>`[À<•çÉ>`[À?,ô>€4n>2þ‚>€4n?ã¬> A‰<•çÉ> A‰?,ô>°H<•çÉ>°H?,ô>ÐU2>2þ‚>ÐU2?ã¬>à[Ã<•çÉ>à[Ã?,ô>ðbN>S ž>ðbN>ùÀÊ?4o>S ž?4o>s¹?4o>éº=?4o>ùÀÊ?7¶>s¹?7¶>™™x?7¶>É­!?7¶>éº=?:ý>™™x?:ý>É­! ""##!!     =4h<•çÉ=4h?,ô=ÀN¥<•çÉ=ÀN¥?,ô>4n?,ô>`[À<•çÉ>`[À?,ô>ÐU2<•çÉ>ÐU2?,ô?4o<•çÉ?7¶<•çÉ?7¶?,ô?>B<•çÉ?>B?,ô    =€4l>éº==ÀN³>ùÀÊ>4n>éº=> A‰>© > A‰>éº=>@N«>‰’ê>@N«>© >`[À>s¹>`[À>‰’ê>€4n<•çÉ>€4n>s¹>€4n?,ô> A>S ž>°H<•çÉ>°H?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>S ž>ðbQ<•çÉ>ðbQ>s¹>ðbQ?,ô?4o>s¹?4o>‰’ê?7¶>‰’ê?7¶>© ?:ý>© ?:ý>éº=?>D>éº=? A‰>ùÀÊ?(DÒ>éº=     =ÀN³=åÈ—=ÀN³>¹¦“=ÀN³>ùÀÊ>4n<•çÉ>4n=K(R>4n>‰’ê>4n>¹¦“>4n>ùÀÊ>4n?ê:> A‰>s¹> A‰?ê:>@N«>ñg>@N«?$ðÇ>`[À=K(R>`[À?$ðÇ>€4n<•çÉ>:û?,ô>ÐU2?,ô>à[Ã<•çÉ>ðbQ=K(R>ðbQ?$ðÇ?4o>ñg?4o?$ðÇ?7¶>s¹?7¶?ê:?:ý<•çÉ?:ý=K(R?:ý>‰’ê?:ý>¹¦“?:ý>ùÀÊ?:ý?ê:?>D=åÈ—?>D>¹¦“?>D>ùÀÊ  !!    =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n?ê:> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>@N¥?ã¬>@N¥?,ô=ÀN³=åÈ—=ÀN³>S ž>4n=K(R>4n=åÈ—>4n>S ž>4n>™™x> A‰=K(R> A‰>™™x> A‰>¹¦“>@N«>¹¦“>`[À<•çÉ>`[À>Ù³¯>€4n>Ù³¯>:û<•çÉ> A>éº=>°H=K(R>ÀN¥>éº=>ÐU2>Ù³¯>à[Ã>ñg>à[Ã>¹¦“>à[Ã>Ù³¯>ðbQ>¹¦“?4o=åÈ—?4o>s¹?7¶=K(R?7¶=åÈ—?:ý=K(R?:ý>¹¦“?>D<•çÉ?>D>éº=? A‰<•çÉ    = Aˆ¾MžÇ=à[ξMžÇ=à[Î=K(R>:û=K(R>:û>s¹>0H>2þ‚>0H>s¹>0H>¹¦“>PU9=¥®_>PU9>¹¦“>PU9>éº=>pbN=K(R>pbN>éº=>ˆ7µ?ê:>˜>B<•çÉ>˜>B>É­!>˜>B?ê:>¨DÓ?$ðÇ>¸Ka<•çÉ>¸Ka?$ðÇ>ÈQì>¹¦“>ØX}=K(R>ØX}>¹¦“>ØX}>É­!>ØX}?,ô>è_ =K(R>è_ =¥®_>è_ >™™x>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x>øe•>Ù³¯>øe•?,ô?6>ñg?6>s¹?6>Ù³¯?6>éº=? 9Z>éº=? 9Z?ã¬? 9Z?í? 9Z?$ðÇ?<¡?ã¬?<¡?í  !!))++**&&$$!((''%% ##"" =@NŸ>¹¦“= A˜>É­!=à[À>Ù³¯>:û>Ù³¯>0H>éº=>PU2¾MžÇ>pbN¾MžÇ>pbN>éº=>ˆ7µ½šÔµ>ˆ7µ>Ù³¯>˜>B>Ù³¯>¨DÓ=K(R>¨DÓ>É­!>¸K^=¥®_>¸K^>2þ‚>¸K^>™™x>øe•>™™x?6>™™x?6>¹¦“? 9Z>¹¦“? 9Z>éº=?<¡>éº=     =ÀN§>ñg=ÀN§>s¹>4t=¥®_>4t=åÈ—>4t>s¹>4t>© > A‰=K(R> A‰>© >@N¥>Ù³¯>`[À<•çÉ>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>:ÿ?í>:ÿ?,ô> A? æó> A?ê:> A?$ðÇ> A?4÷U>°H=K(R>°H>éº=>°H?ã¬>°H?,ô>ÀN¨=K(R>ÀN¨?4÷U>ÐU2>ñg>ÐU2>Ù³¯>ÐU2?,ô>à[Ã>ñg>à[Ã>s¹>à[Ã>¹¦“>à[Ã>É­!>à[Ã?,ô>ðbQ>s¹>ðbQ>© ?4o?í  !!""  #  #=ÀN§=åÈ—=ÀN§>2þ‚>4t=K(R>4t=åÈ—>4t>2þ‚> A‰=K(R> A‰>s¹> A‰>¹¦“> A‰>Ù³¯>@N¥>s¹>@N¥>¹¦“>@N¥>Ù³¯>`[À<•çÉ>`[À>™™x>`[À>éº=>€4q>™™x> A<•çÉ> A>‰’ê>°H>éº=>ÀN¨=K(R>ÐU2>Ù³¯>à[Ã=åÈ—>ðbQ>¹¦“     =€4p>ñg=€4p>S ž=ÀN²=¥®_=ÀN²>ñg=ÀN²>S ž=ÀN²>™™x>4n=¥®_>4n>™™x>@N¥¾-‘¬>@N¥<•çÉ>@N¥>É­!>`[ǾMžÇ>`[Ç>É­!>`[Ç?ê:>`[Ç?í>€4q? æó>€4q?$ðÇ>:û¾MžÇ>:û½5tý>:û>éº=> A¾-‘¬> A½Úîé> A?,ô>°H>ùÀÊ>°H?ã¬>ÐU2?ã¬?4o?ã¬?4o? æó      = AŒ>© =à[À>É­!>0H<•çÉ>0H>éº=>PU2<•çÉ>pbU>s¹>pbU>éº=>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>Ù³¯>ˆ7µ>éº=>˜>B>¹¦“>˜>B>Ù³¯>¨DÐ>¹¦“>ÈQï>Ù³¯>è_ ¾MžÇ>è_ >éº=>øe˜¾MžÇ?6>éº=? 9Z>ñg?<¡>ñg?<¡>™™x?<¡>É­!?<¡>Ù³¯??ç>™™x??ç>É­!   =€4l>© =ÀN¥>É­!> A>éº=>`[À=åÈ—>`[À>S ž>`[À>éº=>€4q=K(R>€4q=åÈ—>€4q>S ž>€4q>¹¦“>€4q>Ù³¯>€4q>éº=>:û=K(R>:û>¹¦“>:û>Ù³¯> A‰<•çÉ>ÀN¥<•çÉ>ÐU2? æó>ÐU2?í>à[À=K(R>à[À>éº=>ðbN?,ô?4n=åÈ—?4n>ñg?4n>¹¦“?7µ>S ž?7µ?,ô?:û>S ž?:û>™™x?:û?$ðÇ?>D>™™x?>D>éº=?>D?ê:?>D?$ðÇ? A‹>éº=? A‹?ê:?(DÒ>s¹    ""##!!$ = A‹=K(R= A‹=åÈ—=à[À<•çÉ=à[À=K(R=à[À=åÈ—=à[À>s¹>;<•çÉ>;>s¹>0H>éº=>PU9<•çÉ>PU9>éº=>ˆ7µ=¥®_>˜>B>ñg =€4}<•çÉ=ÀN¥<•çÉ> A>‰’ê>@N¥>éº=>`[À>‰’ê>`[À>éº=>€4n>s¹>:û>s¹>:û>™™x> A‰=K(R>°H<•çÉ>°H=K(R>ÀN¥<•çÉ>ÐU2<•çÉ>ÐU2>Ù³¯>ðbN=K(R>ðbN>éº=?4o>éº=?7¶>ñg?7¶>Ù³¯?7¶>éº=?:ý>Ù³¯  =€4}<•çÉ=ÀN¥<•çÉ=ÀN¥?,ô> A?,ô>`[À?í>`[À?$ðÇ>€4n? æó>€4n?í>:û? æó> A‰>éº=>à[Ã=åÈ—>ðbN=K(R>ðbN=åÈ—?4o=K(R?7¶<•çÉ?:ý<•çÉ   =4p¾MžÇ=€4p¾MžÇ>@N¥=¥®_>@N¥>2þ‚>`[Ç>¹¦“>`[Ç>éº=>€4n<•çÉ>€4n>éº=> A‰<•çÉ>ÀN¥=K(R>à[Ã=åÈ—>ðbQ=K(R>ðbQ=åÈ—?4o<•çÉ?4o=K(R?4o=åÈ—?4o>S ž?7¶<•çÉ?:ý>éº=?>D<•çÉ?>D>éº=?(DÐ=¥®_?0H>ñg  = Aˆ>éº==à[À<•çÉ>;=åÈ—>0H>‰’ê>0H>éº=>PU2=K(R>PU2>éº=>ˆ7µ=¥®_>¸K^>ñg>ØXy>S ž>øe˜>™™x>øe˜>© ?6>¹¦“?6>éº=? 9Z>éº=  = AŒ=K(R= AŒ=åÈ—=à[Î=K(R=à[Î=åÈ—=à[Î>2þ‚>:û¼U;>:û>2þ‚>:û>© >:û>É­!>0H¼U;>0H>S ž>0H>© >0H>É­!>0H>éº=>PU2¾MžÇ>PU2>S ž>PU2>‰’ê>PU2>éº=>pbU>‰’ê>pbU>ùÀÊ>pbU?ê:>pbU?í>ˆ7µ¾MžÇ>ˆ7µ>ùÀÊ>ˆ7µ? æó>ˆ7µ?$ðÇ>˜>B½šÔµ>˜>B>s¹>¨DÓ¾-‘¬>¨DÓ½Úîé>¨DÓ?,ô>¸Ka?ã¬>ÈQï>s¹>è_ ?ã¬!     =ÀN§>ñg=ÀN§>s¹>4t=¥®_>4t=åÈ—>4t>s¹>4t>© > A‰=K(R> A‰>© >@N¥>Ù³¯>`[À<•çÉ>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>°H=K(R>°H>éº=>ÀN¨=K(R>ÐU2>ñg>ÐU2>Ù³¯>à[Ã>ñg>à[Ã>s¹>à[Ã>¹¦“>à[Ã>É­!>ðbQ>s¹>ðbQ>©     =€4l>¹¦“>4n>É­!>4n>Ù³¯> A‰<•çÉ>@N«<•çÉ>`[À>Ù³¯>`[À>éº=>:û>Ù³¯>ðbQ<•çÉ>ðbQ>Ù³¯?4o<•çÉ? A‰>Ù³¯? A‰>éº=    =@N§¾MžÇ= Aˆ¾MžÇ>0H>2þ‚>0H>s¹>PU9=¥®_>PU9>s¹>PU9>© >pbN=K(R>pbN>© >ˆ7µ>Ù³¯>˜>B<•çÉ>˜>B>Ù³¯>¸Ka<•çÉ>¸Ka>éº=>ØX}=K(R>ØX}>éº=>è_ =K(R>øe•>ñg>øe•>Ù³¯?6>ñg?6>s¹?6>¹¦“?6>É­!? 9Z>s¹? 9Z>©     = Aˆ>ñg= Aˆ>s¹=à[À=¥®_=à[À=åÈ—=à[À>s¹=à[À>© >;=K(R>;>© >0H>Ù³¯>PU2<•çÉ>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¨DÐ=K(R>¨DÐ>éº=>¸K^=K(R>ÈQì>ñg>ÈQì>Ù³¯>ØXy>ñg>ØXy>s¹>ØXy>¹¦“>ØXy>É­!>è_>s¹>è_>© ?<Ÿ>Ù³¯?<Ÿ>éº=    =€4}>¹¦“>4n>É­!>4n>Ù³¯>`[À>Ù³¯>`[À>éº=>€4n<•çÉ>:û<•çÉ>°H>Ù³¯?:ý>Ù³¯?:ý>éº= =€4l>© =ÀN³>É­!> A‰>éº=>@N«=¥®_>@N«>2þ‚>`[À=K(R>`[À=¥®_>`[À>2þ‚>`[À>éº=>€4n>¹¦“>€4n>Ù³¯>€4n>éº=>:û<•çÉ>:û>¹¦“>:û>Ù³¯> A<•çÉ>ÐU2=K(R>ðbQ=åÈ—?4o>Ù³¯?7¶>S ž?7¶>É­!?7¶>éº=?:ý>™™x?:ý>É­!     =ÀN³>ñg=ÀN³>s¹>4n=¥®_>4n>© > A‰=K(R> A‰=¥®_>@N«¾MžÇ>@N«>É­!>`[À¾MžÇ>`[À<•çÉ>`[À=K(R>€4n>Ù³¯>:û=¥®_>:û=åÈ—> A<•çÉ> A=K(R>°H>‰’ê>ÐU2=K(R>ÐU2=¥®_>ÐU2>¹¦“>ÐU2>É­!>ðbQ>Ù³¯>ðbQ>éº=?4o=åÈ—?4o>ñg?7¶>Ù³¯?7¶>éº=?:ý>S ž?>D>™™x?>D>É­!     =4‘¾MžÇ=€4p¾ „=€4p>éº=>4t½5tý>4t>éº=> A‰>Ù³¯>@N¥>¹¦“>@N¥>Ù³¯>`[À>¹¦“>°H½Úîé>ÀN¨¾-‘¬>ÀN¨½Úîé>ÐU2¾-‘¬>à[þMžÇ>à[Ã>™™x?4o¾MžÇ?4o>É­!?7¶>éº=  =@N§>© = AŒ>É­!>;>éº=>PU2=åÈ—>PU2>S ž>PU2>éº=>pbU=K(R>pbU=åÈ—>pbU>S ž>pbU>¹¦“>pbU>Ù³¯>pbU>éº=>ˆ7µ¾MžÇ>ˆ7µ>¹¦“>ˆ7µ>Ù³¯>˜>B¾MžÇ>˜>B<•çÉ>˜>B=K(R>ÈQï<•çÉ>ÈQï=K(R>è_ =K(R>è_ =¥®_>øe˜?,ô?6=åÈ—?6?,ô? 9Z>2þ‚?<¡>S ž??ç>‰’ê?,Ft>éº=    =ÀN¥>ñg=ÀN¥>s¹>4t=K(R>4t=¥®_>4t>© > A‰<•çÉ> A‰=K(R>@N¥>É­!>@N¥>Ù³¯>`[Ç<•çÉ>`[Ç=K(R>€4n>éº=>:û=K(R>:û=¥®_>:û>Ù³¯>°H>ñg>°H>s¹>ÀN¥=K(R>ÀN¥=¥®_>ÀN¥>s¹>ÐU2<•çÉ>ÐU2=K(R>ðbQ<•çÉ>ðbQ=K(R?7¶=K(R?7¶=¥®_?7¶>Ù³¯?:ý>éº=?>D>ñg?>D>É­!?>D>Ù³¯? A‹>s¹? A‹>©      >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/fonts/greek_s.dx0000644000076500000240000021462607120230436012172 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 6 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 5 msb ieee data 48 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 4 msb ieee data 88 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 2 msb ieee data 120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.500800 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 136 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 24 msb ieee data 232 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 21 msb ieee data 424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 592 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 34 msb ieee data 1008 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 33 msb ieee data 1280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 1544 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 1600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 10 msb ieee data 1648 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 9 msb ieee data 1728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 10 msb ieee data 1800 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 9 msb ieee data 1880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 1952 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2024 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2072 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 7 msb ieee data 2128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2184 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2208 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2272 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 16 msb ieee data 2296 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 16 msb ieee data 2424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 4 msb ieee data 2552 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 3 msb ieee data 2584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 14 msb ieee data 2608 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 13 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 15 msb ieee data 2824 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 14 msb ieee data 2944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 4 msb ieee data 3056 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 3 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 17 msb ieee data 3112 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 16 msb ieee data 3248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 22 msb ieee data 3376 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 22 msb ieee data 3552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 3 msb ieee data 3728 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 2 msb ieee data 3752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 28 msb ieee data 3768 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 28 msb ieee data 3992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 22 msb ieee data 4216 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 22 msb ieee data 4392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 4568 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 4632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 4696 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 11 msb ieee data 4784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 4872 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 4896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 4912 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 4960 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 4984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 18 msb ieee data 5000 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 17 msb ieee data 5144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 5280 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 5664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 5 msb ieee data 6048 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 3 msb ieee data 6088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.563400 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 18 msb ieee data 6112 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 18 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.657300 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 3 msb ieee data 6400 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 2 msb ieee data 6424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.532100 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 3 msb ieee data 6440 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 3 msb ieee data 6464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.563400 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 6 msb ieee data 6488 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 4 msb ieee data 6536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.594700 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 4 msb ieee data 6568 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 3 msb ieee data 6600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.626000 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 6 msb ieee data 6624 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 3 msb ieee data 6672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.688600 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 22 msb ieee data 6696 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 21 msb ieee data 6872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.688600 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 2 msb ieee data 7040 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 1 msb ieee data 7056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.250400 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 6 msb ieee data 7064 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 3 msb ieee data 7112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.657300 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 3 msb ieee data 7136 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 2 msb ieee data 7160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.563400 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 5 msb ieee data 7176 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 4 msb ieee data 7216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.751200 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 4 msb ieee data 7248 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 3 msb ieee data 7280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.688600 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 6 msb ieee data 7304 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 3 msb ieee data 7352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.563400 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 20 msb ieee data 7376 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 20 msb ieee data 7536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 4 msb ieee data 7696 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 3 msb ieee data 7728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.688600 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 11 msb ieee data 7752 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 10 msb ieee data 7840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.657300 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 5 msb ieee data 7920 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 4 msb ieee data 7960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.563400 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 4 msb ieee data 7992 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 2 msb ieee data 8024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.500800 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 16 msb ieee data 8040 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 15 msb ieee data 8168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.563400 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 18 msb ieee data 8288 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 17 msb ieee data 8432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.626000 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 4 msb ieee data 8568 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 2 msb ieee data 8600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 16 msb ieee data 8616 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 14 msb ieee data 8744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.688600 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 16 msb ieee data 8856 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 15 msb ieee data 8984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 171 class field attribute "char width" number 0.500800 attribute "series position" number 89.000000 # object 172 class field attribute "char width" number 0.500800 attribute "series position" number 90.000000 # object 174 class array type float rank 1 shape 2 items 6 msb ieee data 9104 attribute "dep" string "positions" # object 175 class array type int rank 1 shape 2 items 4 msb ieee data 9152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 173 class field component "positions" value 174 component "connections" value 175 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 177 class array type float rank 1 shape 2 items 2 msb ieee data 9184 attribute "dep" string "positions" # object 178 class array type int rank 1 shape 2 items 1 msb ieee data 9200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 176 class field component "positions" value 177 component "connections" value 178 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 180 class array type float rank 1 shape 2 items 6 msb ieee data 9208 attribute "dep" string "positions" # object 181 class array type int rank 1 shape 2 items 4 msb ieee data 9256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 179 class field component "positions" value 180 component "connections" value 181 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 183 class array type float rank 1 shape 2 items 7 msb ieee data 9288 attribute "dep" string "positions" # object 184 class array type int rank 1 shape 2 items 5 msb ieee data 9344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 182 class field component "positions" value 183 component "connections" value 184 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 186 class array type float rank 1 shape 2 items 2 msb ieee data 9384 attribute "dep" string "positions" # object 187 class array type int rank 1 shape 2 items 1 msb ieee data 9400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 185 class field component "positions" value 186 component "connections" value 187 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 189 class array type float rank 1 shape 2 items 7 msb ieee data 9408 attribute "dep" string "positions" # object 190 class array type int rank 1 shape 2 items 6 msb ieee data 9464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 188 class field component "positions" value 189 component "connections" value 190 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 192 class array type float rank 1 shape 2 items 21 msb ieee data 9512 attribute "dep" string "positions" # object 193 class array type int rank 1 shape 2 items 20 msb ieee data 9680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 191 class field component "positions" value 192 component "connections" value 193 attribute "char width" number 0.657300 attribute "series position" number 97.000000 # object 195 class array type float rank 1 shape 2 items 26 msb ieee data 9840 attribute "dep" string "positions" # object 196 class array type int rank 1 shape 2 items 25 msb ieee data 10048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 194 class field component "positions" value 195 component "connections" value 196 attribute "char width" number 0.594700 attribute "series position" number 98.000000 # object 198 class array type float rank 1 shape 2 items 14 msb ieee data 10248 attribute "dep" string "positions" # object 199 class array type int rank 1 shape 2 items 13 msb ieee data 10360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 197 class field component "positions" value 198 component "connections" value 199 attribute "char width" number 0.594700 attribute "series position" number 99.000000 # object 201 class array type float rank 1 shape 2 items 22 msb ieee data 10464 attribute "dep" string "positions" # object 202 class array type int rank 1 shape 2 items 22 msb ieee data 10640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 200 class field component "positions" value 201 component "connections" value 202 attribute "char width" number 0.563400 attribute "series position" number 100.000000 # object 204 class array type float rank 1 shape 2 items 16 msb ieee data 10816 attribute "dep" string "positions" # object 205 class array type int rank 1 shape 2 items 15 msb ieee data 10944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 203 class field component "positions" value 204 component "connections" value 205 attribute "char width" number 0.500800 attribute "series position" number 101.000000 # object 207 class array type float rank 1 shape 2 items 20 msb ieee data 11064 attribute "dep" string "positions" # object 208 class array type int rank 1 shape 2 items 19 msb ieee data 11224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 206 class field component "positions" value 207 component "connections" value 208 attribute "char width" number 0.469500 attribute "series position" number 102.000000 # object 210 class array type float rank 1 shape 2 items 16 msb ieee data 11376 attribute "dep" string "positions" # object 211 class array type int rank 1 shape 2 items 15 msb ieee data 11504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 209 class field component "positions" value 210 component "connections" value 211 attribute "char width" number 0.626000 attribute "series position" number 103.000000 # object 213 class array type float rank 1 shape 2 items 25 msb ieee data 11624 attribute "dep" string "positions" # object 214 class array type int rank 1 shape 2 items 25 msb ieee data 11824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 212 class field component "positions" value 213 component "connections" value 214 attribute "char width" number 0.657300 attribute "series position" number 104.000000 # object 216 class array type float rank 1 shape 2 items 8 msb ieee data 12024 attribute "dep" string "positions" # object 217 class array type int rank 1 shape 2 items 7 msb ieee data 12088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 215 class field component "positions" value 216 component "connections" value 217 attribute "char width" number 0.344300 attribute "series position" number 105.000000 # object 219 class array type float rank 1 shape 2 items 15 msb ieee data 12144 attribute "dep" string "positions" # object 220 class array type int rank 1 shape 2 items 13 msb ieee data 12264 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 218 class field component "positions" value 219 component "connections" value 220 attribute "char width" number 0.563400 attribute "series position" number 106.000000 # object 222 class array type float rank 1 shape 2 items 7 msb ieee data 12368 attribute "dep" string "positions" # object 223 class array type int rank 1 shape 2 items 5 msb ieee data 12424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 221 class field component "positions" value 222 component "connections" value 223 attribute "char width" number 0.500800 attribute "series position" number 107.000000 # object 225 class array type float rank 1 shape 2 items 17 msb ieee data 12464 attribute "dep" string "positions" # object 226 class array type int rank 1 shape 2 items 15 msb ieee data 12600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 224 class field component "positions" value 225 component "connections" value 226 attribute "char width" number 0.657300 attribute "series position" number 108.000000 # object 228 class array type float rank 1 shape 2 items 11 msb ieee data 12720 attribute "dep" string "positions" # object 229 class array type int rank 1 shape 2 items 10 msb ieee data 12808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 227 class field component "positions" value 228 component "connections" value 229 attribute "char width" number 0.563400 attribute "series position" number 109.000000 # object 231 class array type float rank 1 shape 2 items 24 msb ieee data 12888 attribute "dep" string "positions" # object 232 class array type int rank 1 shape 2 items 23 msb ieee data 13080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 230 class field component "positions" value 231 component "connections" value 232 attribute "char width" number 0.500800 attribute "series position" number 110.000000 # object 234 class array type float rank 1 shape 2 items 16 msb ieee data 13264 attribute "dep" string "positions" # object 235 class array type int rank 1 shape 2 items 16 msb ieee data 13392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 233 class field component "positions" value 234 component "connections" value 235 attribute "char width" number 0.532100 attribute "series position" number 111.000000 # object 237 class array type float rank 1 shape 2 items 10 msb ieee data 13520 attribute "dep" string "positions" # object 238 class array type int rank 1 shape 2 items 7 msb ieee data 13600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 236 class field component "positions" value 237 component "connections" value 238 attribute "char width" number 0.688600 attribute "series position" number 112.000000 # object 240 class array type float rank 1 shape 2 items 17 msb ieee data 13656 attribute "dep" string "positions" # object 241 class array type int rank 1 shape 2 items 17 msb ieee data 13792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 239 class field component "positions" value 240 component "connections" value 241 attribute "char width" number 0.563400 attribute "series position" number 113.000000 # object 243 class array type float rank 1 shape 2 items 17 msb ieee data 13928 attribute "dep" string "positions" # object 244 class array type int rank 1 shape 2 items 16 msb ieee data 14064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 242 class field component "positions" value 243 component "connections" value 244 attribute "char width" number 0.626000 attribute "series position" number 114.000000 # object 246 class array type float rank 1 shape 2 items 6 msb ieee data 14192 attribute "dep" string "positions" # object 247 class array type int rank 1 shape 2 items 4 msb ieee data 14240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 245 class field component "positions" value 246 component "connections" value 247 attribute "char width" number 0.626000 attribute "series position" number 115.000000 # object 249 class array type float rank 1 shape 2 items 15 msb ieee data 14272 attribute "dep" string "positions" # object 250 class array type int rank 1 shape 2 items 14 msb ieee data 14392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 248 class field component "positions" value 249 component "connections" value 250 attribute "char width" number 0.626000 attribute "series position" number 116.000000 # object 252 class array type float rank 1 shape 2 items 20 msb ieee data 14504 attribute "dep" string "positions" # object 253 class array type int rank 1 shape 2 items 19 msb ieee data 14664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 251 class field component "positions" value 252 component "connections" value 253 attribute "char width" number 0.688600 attribute "series position" number 117.000000 # object 255 class array type float rank 1 shape 2 items 12 msb ieee data 14816 attribute "dep" string "positions" # object 256 class array type int rank 1 shape 2 items 10 msb ieee data 14912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 254 class field component "positions" value 255 component "connections" value 256 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 258 class array type float rank 1 shape 2 items 18 msb ieee data 14992 attribute "dep" string "positions" # object 259 class array type int rank 1 shape 2 items 16 msb ieee data 15136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 257 class field component "positions" value 258 component "connections" value 259 attribute "char width" number 0.719900 attribute "series position" number 119.000000 # object 261 class array type float rank 1 shape 2 items 20 msb ieee data 15264 attribute "dep" string "positions" # object 262 class array type int rank 1 shape 2 items 19 msb ieee data 15424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 260 class field component "positions" value 261 component "connections" value 262 attribute "char width" number 0.719900 attribute "series position" number 120.000000 # object 263 class field attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 264 class field attribute "char width" number 0.500800 attribute "series position" number 122.000000 # object 266 class array type float rank 1 shape 2 items 35 msb ieee data 15576 attribute "dep" string "positions" # object 267 class array type int rank 1 shape 2 items 34 msb ieee data 15856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 265 class field component "positions" value 266 component "connections" value 267 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 269 class array type float rank 1 shape 2 items 2 msb ieee data 16128 attribute "dep" string "positions" # object 270 class array type int rank 1 shape 2 items 1 msb ieee data 16144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 268 class field component "positions" value 269 component "connections" value 270 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 272 class array type float rank 1 shape 2 items 35 msb ieee data 16152 attribute "dep" string "positions" # object 273 class array type int rank 1 shape 2 items 34 msb ieee data 16432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 271 class field component "positions" value 272 component "connections" value 273 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 275 class array type float rank 1 shape 2 items 20 msb ieee data 16704 attribute "dep" string "positions" # object 276 class array type int rank 1 shape 2 items 20 msb ieee data 16864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 274 class field component "positions" value 275 component "connections" value 276 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 278 class array type float rank 1 shape 2 items 12 msb ieee data 17024 attribute "dep" string "positions" # object 279 class array type int rank 1 shape 2 items 12 msb ieee data 17120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 277 class field component "positions" value 278 component "connections" value 279 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 172 member 91 position 91 value 173 member 92 position 92 value 176 member 93 position 93 value 179 member 94 position 94 value 182 member 95 position 95 value 185 member 96 position 96 value 188 member 97 position 97 value 191 member 98 position 98 value 194 member 99 position 99 value 197 member 100 position 100 value 200 member 101 position 101 value 203 member 102 position 102 value 206 member 103 position 103 value 209 member 104 position 104 value 212 member 105 position 105 value 215 member 106 position 106 value 218 member 107 position 107 value 221 member 108 position 108 value 224 member 109 position 109 value 227 member 110 position 110 value 230 member 111 position 111 value 233 member 112 position 112 value 236 member 113 position 113 value 239 member 114 position 114 value 242 member 115 position 115 value 245 member 116 position 116 value 248 member 117 position 117 value 251 member 118 position 118 value 254 member 119 position 119 value 257 member 120 position 120 value 260 member 121 position 121 value 263 member 122 position 122 value 264 member 123 position 123 value 265 member 124 position 124 value 268 member 125 position 125 value 271 member 126 position 126 value 274 member 127 position 127 value 277 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4n=K(R> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰?,ô>@N¥=K(R>4n>éº=>4n?,ô>ÀN¥>éº=>ÀN¥?,ô=ÀN¥>S ž>4n¾MžÇ>4n>É­!> A‰¾MžÇ>°H?M*?7¶>S ž?7¶?M*?:ý>É­!=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=> A=K(R> A>Ù³¯> A?$ðÇ>`[À>É­!>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>© >ðbN=K(R>ðbN>™™x>ðbN?$ðÇ?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:    =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>ñg=ÀN¥>S ž>4n=¥®_>4n>‰’ê> A=K(R> A>™™x>`[À<•çÉ>€4q?ã¬>€4q?ê:>:û>Ù³¯>:û?$ðÇ>°H<•çÉ>°H>© >°H?,ô>ÀN¥>Ù³¯>ÐU2=K(R>ÐU2>éº=>ÐU2?$ðÇ>à[À?ã¬>à[À?ê:>ðbN=åÈ—?4n=åÈ—?7µ>S ž?:û=K(R?>D>¹¦“? A‹<•çÉ? A‹>Ù³¯?(DÒ>éº=?0H<•çÉ?0H>éº=?8K_=K(R?8K_=¥®_?8K_>É­!?8K_>Ù³¯ !!   >4n>ùÀÊ>4n?$ðÇ> A‰?ã¬> A‰?í> A‰?,ô>@N¥?ê:>@N¥?$ðÇ=à[À>s¹=à[À>¹¦“>:û=¥®_>:û?ã¬>PU2½5tý>PU2?$ðÇ>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M* =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>pbN½5tý>pbN?$ðÇ>˜>B=¥®_>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“ =ÀN²>É­!=ÀN²?ê:>€4q>™™x>€4q?,ô>ÐU2>É­!>ÐU2?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé>4n=K(R> A‰½šÔµ> A‰<•çÉ> A‰=¥®_>@N¥¼U;>@N¥=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R=€4l¾MžÇ? A‰?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n? æó>@N¥=K(R>@N¥?$ðÇ>:û<•çÉ>:û?,ô>°H<•çÉ>°H?,ô>à[Ã=K(R>à[Ã?$ðÇ?4o>ñg?4o? æó?7¶>™™x?7¶>É­!  >pbN? æó>˜>B?ê:>ÈQì<•çÉ>ÈQì?,ô=ÀN¥<•çÉ>4n?ã¬>4n? æó> A?í>@N¥?$ðÇ>€4n?,ô>ÀN¥?,ô>ÐU2>© >à[Ã?$ðÇ>ðbN>Ù³¯>ðbN?í?4o>ùÀÊ?4o? æó?7¶<•çÉ  =ÀN¥>ñg>4n=¥®_> A=K(R> A?,ô>€4n<•çÉ> A‰>Ù³¯>°H<•çÉ>ÐU2>Ù³¯>à[Ã=K(R>ðbN>É­!?4o=åÈ—?4o>¹¦“?4o?,ô?7¶>S ž?7¶>‰’ê   = Aˆ>s¹>ÈQì<•çÉ>ÈQì?,ô? 9Z>s¹=ÀN¥>ñg>4n=¥®_>4n>É­!> A=K(R> A>Ù³¯> A?,ô>€4n<•çÉ>€4n>éº=>°H<•çÉ>°H>éº=>à[Ã=K(R>à[Ã>Ù³¯>ðbN?,ô?4o=åÈ—?4o>¹¦“?7¶>S ž?7¶>‰’ê   =à[À>s¹=à[À>É­!>;=åÈ—>;>© >;? æó>PU2=K(R>PU2>É­!>PU2?$ðÇ>˜>B<•çÉ>˜>B>Ù³¯>˜>B?,ô>¨DÐ<•çÉ>¨DÐ>Ù³¯>¸K^?,ô>ØXy=K(R>ØXy>É­!>è_?$ðÇ>øe˜=åÈ—>øe˜>© >øe˜?ê:?6>S ž?6>s¹   =ÀN¥?,ô>`[À<•çÉ?7¶?,ô=ÀN¥>ñg=ÀN¥>s¹>4n=¥®_>4n>™™x>4n?ã¬>4n?ê:> A=K(R> A>éº=> A?$ðÇ>@N¥>¹¦“>`[À>Ù³¯>€4n<•çÉ>€4n?,ô>:û>É­!>°H>É­!>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>Ù³¯>à[Ã>¹¦“>ðbN=K(R>ðbN>éº=>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o?ã¬?4o?ê:?7¶>ñg?7¶>s¹     =à[À>éº==à[À>ùÀÊ>:û=åÈ—>:û>¹¦“>:û?ê:>0H=K(R>PU2>™™x>PU2?$ðÇ>ˆ7µ<•çÉ>˜>B>‰’ê>˜>B?,ô>¨DÓ<•çÉ>¨DÓ>‰’ê>¨DÓ?,ô>ØX}=K(R>ØX}>™™x>ØX}?$ðÇ>øe•>ñg>øe•>¹¦“>øe•?ê:?6>™™x?6>éº=   >4n=K(R>4n>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯   >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§?ã¬=ÀN§? æó>4t?í> A‰?$ðÇ>`[À?,ô>€4q=K(R>:ÿ<•çÉ>:ÿ=¥®_>:ÿ>s¹>:ÿ>© > A=K(R>°H?,ô>ÐU2>É­!>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4‘<•çÉ>4t>s¹>:ÿ?,ô>à[Ã>s¹?7¶<•çÉ=à[À<•çÉ=à[À>¹¦“=à[À?,ô>ÈQì<•çÉ>ÈQì>¹¦“>ÈQì?,ô>øe•=K(R>øe•>© >øe•>É­!>øe•?$ðÇ?6=¥®_?6>™™x?6>Ù³¯?6?í? 9Z>ñg? 9Z>s¹? 9Z>ùÀÊ? 9Z? æó    = AŒ<•çÉ= AŒ?,ô>è_ ?,ô=4‘<•çÉ>:ÿ?,ô?7¶<•çÉ=ÀN§<•çÉ=ÀN§>¹¦“=ÀN§?,ô>°H>¹¦“?4o<•çÉ?4o?,ô=ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô>4n<•çÉ>4n>¹¦“>4n?,ô?:ý<•çÉ?:ý>¹¦“?:ý?,ô=ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>€4n>¹¦“>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>à[Ã>¹¦“>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯    >4n<•çÉ>4n?,ô=à[À<•çÉ=à[À>s¹=à[À?,ô>ˆ7µ>É­!? 9Z<•çÉ? 9Z?,ô=4‘<•çÉ>:ÿ?,ô?7¶<•çÉ>4t<•çÉ>4t?,ô>ÀN¥<•çÉ? A‹<•çÉ? A‹?,ô>4n<•çÉ>4n?,ô?:ý<•çÉ?:ý?,ô=€4p<•çÉ=€4p?,ô>@N¥>¹¦“>ÀN¨>¹¦“?4o<•çÉ?4o?,ô=ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯   >4n<•çÉ>4n?,ô?:ý<•çÉ?:ý?,ô=à[À<•çÉ=à[À>© =à[À?,ô>ÈQì>© >ÈQì?,ô>øe•>¹¦“>øe•?$ðÇ?6>É­!?6?í? 9Z>éº=? 9Z? æó =€4p<•çÉ=€4p?,ô>:ÿ>¹¦“?4o<•çÉ?4o?,ô=4p?,ô>€4q<•çÉ>€4q?,ô>ðbQ?,ô=€4p?ã¬=€4p?ê:=ÀN§?$ðÇ>4t?,ô>@N¥?,ô>`[À?$ðÇ>€4q?ê:>:ÿ<•çÉ>:ÿ>éº=> A?ê:>°H?$ðÇ>ÀN¨?,ô>à[Ã?,ô>ðbQ?$ðÇ?4o?ã¬?4o?ê: =ÀN¥>™™x=ÀN¥>É­!>4n>s¹>4n>éº=> A>S ž> A>ùÀÊ>€4n>2þ‚>€4n?ã¬> A‰<•çÉ> A‰?,ô>ÀN¥>2þ‚>ÀN¥?ã¬>ðbN>S ž>ðbN>ùÀÊ?4o>s¹?4o>éº=?7¶>™™x?7¶>É­!   =ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô=€4l>ùÀÊ=ÀN³>ùÀÊ>4n>éº=> A‰>© >@N«>‰’ê>`[À>s¹> A>S ž>°H<•çÉ>°H?,ô>ÀN¥>S ž>ðbQ>s¹?4o>‰’ê?7¶>© ?:ý>éº=?>D>ùÀÊ? A‰>ùÀÊ =ÀN¥<•çÉ=ÀN¥>¹¦“=ÀN¥>ùÀÊ>4n>s¹>4n?ê:>@N¥?$ðÇ>`[À<•çÉ>:û?,ô>°H?,ô>ÐU2<•çÉ>à[Ã?$ðÇ?4o>s¹?4o?ê:?7¶<•çÉ?7¶>¹¦“?7¶>ùÀÊ  =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n?ê:> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>@N¥?ã¬>@N¥?,ô=ÀN¥=åÈ—=ÀN¥>S ž>4n=K(R>4n>™™x> A>¹¦“>@N¥<•çÉ>`[À>Ù³¯>€4n<•çÉ>:û>éº=> A‰=K(R>°H>éº=>ÀN¥>Ù³¯>ÐU2>ñg>ÐU2>¹¦“>ðbN=åÈ—>ðbN>s¹?4o=K(R?7¶<•çÉ?7¶>¹¦“?:ý<•çÉ?:ý>éº=  = Aˆ¾MžÇ=à[À=K(R>;>2þ‚>;>s¹>0H=¥®_>0H>¹¦“>PU2=K(R>PU2>éº=>ˆ7µ<•çÉ>ˆ7µ?ê:>˜>B>É­!>¨DÐ<•çÉ>¨DÐ?$ðÇ>¸K^>¹¦“>ÈQì=K(R>ÈQì>É­!>ÈQì?,ô>ØXy=¥®_>ØXy>™™x>è_>ñg>è_>s¹>è_>Ù³¯>è_?,ô>øe˜>éº=?6?ã¬?6?í   =@NÀ>¹¦“=à[À>Ù³¯>0H>éº=>PU2¾MžÇ>PU2>éº=>pbN½Úîé>ˆ7µ>Ù³¯>˜>B<•çÉ>˜>B>É­!>¨DÐ>2þ‚>¨DÐ>™™x>øe˜>™™x?6>¹¦“? 9Z>éº=  =ÀN§>2þ‚=ÀN§>‰’ê>4t=¥®_>4t>¹¦“> A‰=K(R>@N¥>Ù³¯>`[À<•çÉ>€4q>éº=>€4q?ê:>€4q?$ðÇ>:ÿ<•çÉ>:ÿ?ã¬>:ÿ?,ô>°H=K(R>°H>éº=>°H?,ô>ÐU2=åÈ—>ÐU2>É­!>ÐU2?$ðÇ>à[Ã>S ž>à[Ã>™™x>ðbQ?ê:   =ÀN²=åÈ—=ÀN²>2þ‚>4n=K(R> A‰>s¹> A‰>¹¦“> A‰>Ù³¯>@N¥<•çÉ>@N¥>™™x>`[Ç>éº=>:û<•çÉ>:û>‰’ê> A>éº=>°H=K(R>ÀN¥>Ù³¯>ÐU2=åÈ—>ÐU2>É­!   =€4z>ñg=€4z>S ž=ÀN¥=¥®_=ÀN¥>™™x> A‰¾ „> A‰<•çÉ>@N¥¾MžÇ>@N¥>É­!>@N¥?ê:>@N¥?í>`[À? æó>`[À?$ðÇ>€4n¾MžÇ>€4n½5tý>:û¾-‘¬>:û½Úîé>:û>éº=>:û?,ô> A?ã¬>ÐU6?㬠   = Aˆ>© =à[Î>É­!>0H<•çÉ>0H>éº=>pbN>s¹>pbN>éº=>ˆ7µ>¹¦“>ˆ7µ>Ù³¯>˜>B>¹¦“>¸Ka>Ù³¯>ØX}¾MžÇ>ØX}>éº=>øe•>éº=?6>ñg? 9Z>™™x? 9Z>É­!  =@N§>© = Aˆ>É­!>:û>éº=>PU9=åÈ—>PU9>S ž>PU9>éº=>pbN=K(R>pbN>¹¦“>pbN>Ù³¯>ˆ7µ<•çÉ>¨DÓ<•çÉ>¸Ka? æó>¸Ka?í>ÈQì=K(R>ÈQì>éº=>ÈQì?,ô>è_ >ñg>è_ >¹¦“>è_ ?,ô>øe•>S ž?6>™™x?6?$ðÇ? 9Z>éº=? 9Z? æó??ç>s¹  = A‹=K(R= A‹=åÈ—=à[À<•çÉ=à[À>s¹>0H<•çÉ>0H>éº=>pbN=¥®_>ˆ7µ>ñg=€4p<•çÉ> A‰>‰’ê>@N¥>‰’ê>@N¥>éº=>`[À>s¹>€4q>S ž>€4q>™™x> A=K(R>°H<•çÉ>ÀN¨<•çÉ>ÀN¨>Ù³¯>ÐU2=K(R>à[Ã>éº=>ðbQ>éº=?4o>Ù³¯  =@N§?,ô= AŒ<•çÉ=à[Î?,ô>0H?$ðÇ>PU2?í>ˆ7µ>éº=>è_ <•çÉ=4h¾MžÇ> A=¥®_> A>2þ‚>@N¥>© >`[À<•çÉ>`[À>éº=>:û<•çÉ>°H=K(R>ÐU2=åÈ—>à[Ã=K(R>à[Ã=åÈ—>ðbN<•çÉ>ðbN>s¹?7¶<•çÉ?7¶>éº=?>B=¥®_? A‹>ñg  = AŒ<•çÉ= AŒ>éº==à[Î=åÈ—>:û>‰’ê>0H=K(R>0H>éº=>ˆ7µ=åÈ—>¸Ka>S ž>ØX}>™™x>è_ >¹¦“>øe˜>éº= = A—=K(R= A—=åÈ—=à[À>2þ‚>:û¼U;>:û>© >:û>É­!>0H¾MžÇ>0H>S ž>0H>éº=>PU9>‰’ê>PU9?ê:>PU9?í>pbN¾MžÇ>pbN>ùÀÊ>pbN? æó>pbN?$ðÇ>ˆ7µ½šÔµ>˜>B¾-‘¬>˜>B½Úîé>˜>B>s¹>˜>B?,ô>¨DÓ?ã¬>¸Ka>s¹>ØX}?㬠   =ÀN²>2þ‚=ÀN²>‰’ê>4n=¥®_>4n>¹¦“> A‰=K(R>@N¥>Ù³¯>`[Ç<•çÉ>€4q>éº=>:û<•çÉ> A>éº=>°H=K(R>ÀN¥>Ù³¯>ÐU2=åÈ—>ÐU2>É­!>à[Ã>S ž>à[Ã>™™x  =€4l>¹¦“>4n>Ù³¯> A‰<•çÉ>`[À>éº=>:û>éº=>à[Ã>éº=>ðbQ>‰’ê?4o=åÈ—?7¶<•çÉ? A‰>éº= =@NŸ¾MžÇ>0H>2þ‚>0H>‰’ê>PU2=¥®_>PU2>¹¦“>pbN=K(R>ˆ7µ>Ù³¯>˜>B<•çÉ>¨DÓ>éº=>¸K^<•çÉ>ÈQì>éº=>ØX}=K(R>è_>Ù³¯>øe•=åÈ—>øe•>É­!?6>S ž?6>™™x  = AŒ>2þ‚= AŒ>‰’ê=à[Î=¥®_=à[Î>¹¦“>:û=K(R>0H>Ù³¯>PU2<•çÉ>pbU>éº=>ˆ7µ<•çÉ>˜>B>éº=>¨DÓ=K(R>¸Ka>Ù³¯>ÈQï=åÈ—>ÈQï>É­!>ØX}>S ž>ØX}>™™x? 9X>éº=  =€4}>¹¦“>4n>Ù³¯>`[À>éº=>€4n<•çÉ>°H>éº=?:ý>éº==€4l>© =ÀN³>É­!> A‰>éº=>@N«=¥®_>@N«>2þ‚>`[À>éº=>€4n<•çÉ>€4n>¹¦“>€4n>Ù³¯> A<•çÉ>ÐU2=K(R>ðbQ=åÈ—?7¶>s¹?:ý>¹¦“?:ý>éº= =ÀN³>ñg=ÀN³>s¹>4n=¥®_>4n>© > A‰=K(R>@N«¾MžÇ>@N«>É­!>`[À<•çÉ>€4n>Ù³¯>:û=åÈ—> A<•çÉ>°H>‰’ê>ÐU2=K(R>ÐU2>É­!>ðbQ>éº=?4o=åÈ—?7¶>éº=?:ý>S ž?>D>™™x?>D>É­!  =4‘¾MžÇ=€4p¾ „=€4p>éº=>4t½5tý>4t>éº=>@N¥>É­!>ÀN¨¾ „>à[þMžÇ>à[Ã>™™x?4o¾MžÇ?4o>É­!?7¶>éº= =@N§>© = AŒ>É­!>;>éº=>PU2=åÈ—>PU2>S ž>PU2>éº=>pbU=K(R>pbU>¹¦“>pbU>Ù³¯>ˆ7µ¾MžÇ>˜>B<•çÉ>¸Ka<•çÉ>è_ =K(R?6=åÈ—?6?,ô?<¡>S ž?$C.>¹¦“?,Ft>éº=  =ÀN¥>ñg=ÀN¥>s¹>4t=K(R>4t>© > A‰<•çÉ>@N¥>Ù³¯>`[Ç<•çÉ>€4n>éº=>:û=K(R>°H>ñg>ÀN¥=K(R>ÀN¥>‰’ê>ÐU2<•çÉ>ðbQ<•çÉ?7¶=K(R?:ý>éº=?>D>ñg?>D>Ù³¯? A‹>s¹? A‹>©  >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/fonts/italic_d.dx0000644000076500000240000025066307120230667012332 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 9 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 72 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 6 msb ieee data 144 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 4 msb ieee data 192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 224 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 35 msb ieee data 320 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 33 msb ieee data 600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.657300 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 864 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 48 msb ieee data 1280 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 49 msb ieee data 1664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2056 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2160 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.469500 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2416 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.469500 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2672 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.532100 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2744 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2792 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2896 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.344300 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2984 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 34 msb ieee data 3008 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 36 msb ieee data 3280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.657300 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 9 msb ieee data 3568 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 7 msb ieee data 3640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.657300 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 34 msb ieee data 3696 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 34 msb ieee data 3968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.657300 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 41 msb ieee data 4240 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 42 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.657300 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 6 msb ieee data 4904 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 4 msb ieee data 4952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.657300 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.657300 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 39 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 40 msb ieee data 5760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.657300 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6080 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 20 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.657300 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6416 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.657300 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 39 msb ieee data 7192 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 40 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.657300 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7824 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 7 msb ieee data 7888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 7944 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 10 msb ieee data 8032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 29 msb ieee data 8240 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 28 msb ieee data 8472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.657300 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 8696 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 9080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 11 msb ieee data 9464 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 6 msb ieee data 9552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 30 msb ieee data 9600 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 29 msb ieee data 9840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.751200 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 29 msb ieee data 10072 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 30 msb ieee data 10304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 24 msb ieee data 10544 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 22 msb ieee data 10736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.719900 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 16 msb ieee data 10912 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 10 msb ieee data 11040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.719900 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 14 msb ieee data 11120 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 8 msb ieee data 11232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.688600 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 34 msb ieee data 11296 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 34 msb ieee data 11568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.688600 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 18 msb ieee data 11840 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 9 msb ieee data 11984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.813800 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 8 msb ieee data 12056 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 4 msb ieee data 12120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.406900 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 17 msb ieee data 12152 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 15 msb ieee data 12288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.563400 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 18 msb ieee data 12408 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 9 msb ieee data 12552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.719900 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 10 msb ieee data 12624 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 6 msb ieee data 12704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.626000 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 15 msb ieee data 12752 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 10 msb ieee data 12872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.845100 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 11 msb ieee data 12952 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 7 msb ieee data 13040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.782500 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 34 msb ieee data 13096 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 36 msb ieee data 13368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 20 msb ieee data 13656 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 17 msb ieee data 13816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.719900 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 48 msb ieee data 13952 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 51 msb ieee data 14336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 31 msb ieee data 14744 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 28 msb ieee data 14992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.751200 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 29 msb ieee data 15216 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 31 msb ieee data 15448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.719900 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 12 msb ieee data 15696 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 8 msb ieee data 15792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.657300 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 20 msb ieee data 15856 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 17 msb ieee data 16016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.782500 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 9 msb ieee data 16152 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 5 msb ieee data 16224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 13 msb ieee data 16264 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 8 msb ieee data 16368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.813800 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 14 msb ieee data 16432 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 7 msb ieee data 16544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.688600 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 13 msb ieee data 16600 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 8 msb ieee data 16704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.657300 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 10 msb ieee data 16768 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 8 msb ieee data 16848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.688600 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 16912 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 16960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 16992 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 17008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 17016 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 17064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 17096 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 17152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 17192 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 17208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 17216 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 17272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 31 msb ieee data 17320 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 31 msb ieee data 17568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.657300 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 25 msb ieee data 17816 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 26 msb ieee data 18016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.594700 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 21 msb ieee data 18224 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 21 msb ieee data 18392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.563400 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 32 msb ieee data 18560 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 32 msb ieee data 18816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.657300 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 22 msb ieee data 19072 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 22 msb ieee data 19248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 30 msb ieee data 19424 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 29 msb ieee data 19664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.469500 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 35 msb ieee data 19896 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 35 msb ieee data 20176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.626000 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 24 msb ieee data 20456 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 21 msb ieee data 20648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.657300 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 22 msb ieee data 20816 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 20 msb ieee data 20992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.406900 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 27 msb ieee data 21152 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 26 msb ieee data 21368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.406900 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 25 msb ieee data 21576 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 22 msb ieee data 21776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.626000 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 14 msb ieee data 21952 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 12 msb ieee data 22064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.375600 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 43 msb ieee data 22160 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 40 msb ieee data 22504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 1.032900 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 31 msb ieee data 22824 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 29 msb ieee data 23072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.719900 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 24 msb ieee data 23304 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 26 msb ieee data 23496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.563400 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 33 msb ieee data 23704 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 32 msb ieee data 23968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.657300 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 25 msb ieee data 24224 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 23 msb ieee data 24424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.626000 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 22 msb ieee data 24608 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 20 msb ieee data 24784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.532100 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 26 msb ieee data 24944 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 24 msb ieee data 25152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 15 msb ieee data 25344 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 12 msb ieee data 25464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.438200 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 31 msb ieee data 25560 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 29 msb ieee data 25808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.719900 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 23 msb ieee data 26040 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 22 msb ieee data 26224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.626000 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 34 msb ieee data 26400 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 33 msb ieee data 26672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.907700 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 36 msb ieee data 26936 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 34 msb ieee data 27224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.626000 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 35 msb ieee data 27496 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 33 msb ieee data 27776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.657300 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 20 msb ieee data 28040 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 21 msb ieee data 28200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.626000 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 28368 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 28648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 28920 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 28936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 28944 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 29224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 29496 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 29656 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 29816 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 29912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.469500 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =€4n=K(R=ÀN¥<•çÉ=ÀN¥=¥®_>4n=K(R> A‰>‰’ê>`[À?$ðÇ>€4n?$ðÇ>€4n?,ô>:û?$ðÇ=ÀN¥>éº=> A‰?,ô>@N¥?,ô>ÀN¥>éº=>à[Ã?,ô>ðbQ?,ô=ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n½Úîé>4n=K(R>4n>2þ‚> A?ã¬> A?ê:>@N¥>éº=>`[À<•çÉ>`[À>Ù³¯>`[À>éº=>`[À?$ðÇ>:û½Úîé> A‰?,ô>°H<•çÉ>ÀN¥?M*>à[Ã=K(R>à[Ã>™™x>à[Ã>© >à[Ã?,ô>ðbN=¥®_>ðbN>™™x?4o>ñg?4o>s¹?7¶?ã¬?7¶?$ðÇ?7¶?M*?:ý>ùÀÊ?:ý? æó?:ý?í?>B?ã¬?>B? æó!!""     =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =€4l=åÈ—=€4l>2þ‚=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>2þ‚=ÀN¥>s¹>4n=K(R>4n>s¹>4n>‰’ê> A>‰’ê>@N¥<•çÉ>@N¥>™™x>:û<•çÉ> A‰>ùÀÊ> A‰?ê:>°H=K(R>°H>™™x>°H>© >°H>¹¦“>°H?$ðÇ>ÀN¥>S ž>ÀN¥>s¹>ÐU2=åÈ—>ÐU2>É­!>ÐU2?,ô>à[À=åÈ—>à[À>ñg>ðbN>éº=>ðbN?$ðÇ?4n=K(R?4n=¥®_?4n?ã¬?4n?ê:?:û<•çÉ?:û=K(R?:û>¹¦“? A‹<•çÉ? A‹=K(R? A‹>Ù³¯?(DÒ=¥®_?(DÒ=åÈ—?0H>É­!?0H>éº=?8K_>¹¦“?8K_>Ù³¯?8K_>éº=?@N¦>É­!?@N¦>Ù³¯,))++..//--**&&##    !!$$''(   ""%%'>4n>ùÀÊ> A‰?$ðÇ>@N¥? æó>@N¥?í>@N¥?,ô>`[À?í>`[À?$ðÇ=@N¥=åÈ—=@N¥>s¹= A‹½5tý= A‹=K(R= A‹>S ž= A‹>É­!=à[À¾ „=à[À½Úîé=à[À>¹¦“>;¾MžÇ>;>éº=>;?ã¬>PU9?ê:>PU9?í>˜>B?4÷U>ØX}?M*    =@NÀ¾MžÇ>0H½Úîé>ˆ7µ¼U;>ˆ7µ<•çÉ>¨DÐ=¥®_>¨DÐ>ñg>¨DÐ?M*>¸K^>s¹>¸K^?4÷U>¸K^?<úœ>ÈQì>S ž>ÈQì>É­!>ÈQì? æó>ÈQì?$ðÇ>ØXy>¹¦“>ØXy>ùÀÊ   =à[À>É­!=à[À?ê:>ˆ7µ>™™x>ˆ7µ?,ô>ØX}>É­!>ØX}?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé> A‰=K(R>@N¥½5tý>@N¥<•çÉ>@N¥=¥®_>`[Ç<•çÉ>`[Ç=K(R>4n>™™x?0H>™™x>:û=K(R>0H<•çÉ>0H=¥®_>PU9=K(R½€4l¾MžÇ?@N¦?M*=ÀN¥>2þ‚=ÀN¥>‰’ê>4n=¥®_>4n>2þ‚>4n>‰’ê>4n>É­!> A=K(R> A=¥®_> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À?ê:>€4n?ê:>:û<•çÉ>:û?$ðÇ> A‰?$ðÇ>°H=K(R>ÀN¥=K(R>ÀN¥?,ô>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o?í?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶?ã¬?7¶?í?:ý>Ù³¯?:ý?㬠  !!  >PU2>ùÀÊ>pbN<•çÉ>ˆ7µ<•çÉ>ˆ7µ?ã¬>˜>B?ã¬>¸K^?ê:>ÈQì? æó>ØX}?ê:>è_?,ô=€4l<•çÉ=ÀN³=¥®_>4n=åÈ—>4n>ñg>@N«=åÈ—>@N«>S ž>`[À?ã¬>`[À? æó>€4n>ùÀÊ>€4n? æó>€4n?í>:û>‰’ê>:û?ã¬>:û?$ðÇ>°H<•çÉ>°H=K(R>ÀN¥?,ô>ÐU2>© >à[Ã<•çÉ>à[Ã=K(R>ðbQ>É­!>ðbQ?,ô?4o=K(R?4o=¥®_?4o>É­!?7¶>ñg?7¶>éº=?7¶?$ðÇ?:ý>éº=?:ý?ã¬?:ý?ê:?:ý?$ðÇ?>D?ã¬?>D?ê:  !!   = A˜>ñg= A˜>2þ‚=à[À=¥®_=à[À>ñg=à[À>S ž>:û=K(R>:û>2þ‚>PU2?ã¬>PU2? æó>pbN<•çÉ>pbN>ùÀÊ>pbN? æó>pbN?í>ˆ7µ?ã¬>ˆ7µ?$ðÇ>˜>B>¹¦“>¸K^<•çÉ>¸K^>¹¦“>¸K^?,ô>ØX}=K(R>ØX}>© >è_=K(R>è_=¥®_>è_>™™x>è_>© >è_>É­!>è_?,ô>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x?6>ñg?6>s¹?6>éº=?6?$ðÇ? 9Z>éº=? 9Z?ã¬? 9Z?ê:? 9Z?$ðÇ?<¡?ã¬?<¡?ê:  &&((''##""%%$$!!  = A˜>S ž>¨DÓ<•çÉ>¸K^<•çÉ?6?$ðÇ? 9Z?,ô?<¡>S ž=€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n=K(R>4n>2þ‚>4n>¹¦“> A>É­!>`[À<•çÉ>€4n>Ù³¯>:û?$ðÇ>:û?,ô> A‰<•çÉ>°H>Ù³¯>ÀN¥=K(R>ÐU2=K(R>ÐU2>É­!>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>S ž>ðbN>™™x>ðbN>¹¦“?4o>S ž?4o>™™x?>B?,ô      =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n=åÈ—>4n>s¹>4n>‰’ê>4n>É­!> A=K(R> A>™™x> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À>¹¦“>`[À?ê:>€4n?ê:>:û>É­!>:û?$ðÇ> A‰<•çÉ> A‰?$ðÇ>ÀN¥=K(R>ÀN¥>É­!>ÀN¥?,ô>ÐU2=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbN=åÈ—>ðbN>2þ‚>ðbN>™™x>ðbN>© >ðbN?,ô?4o>2þ‚?4o>‰’ê?4o? æó?7¶?ã¬?7¶?ê:?7¶?$ðÇ?:ý? æó?:ý?ê:#!!""%%&&$$     =ÀN§>ùÀÊ>4t?ê:> A‰<•çÉ> A‰?í> A‰?,ô>@N¥<•çÉ>@N¥>ñg>`[À>ñg>`[À>S ž>`[À?$ðÇ>`[À?,ô>€4q>S ž>:ÿ>™™x>:ÿ?$ðÇ>:ÿ?,ô> A>™™x>à[Ã?ê:>ðbQ>ùÀÊ?4o?ê:?7¶?ê:?7¶?í?:û?,ô    = A˜=åÈ—= A˜>S ž=à[À=K(R=à[À=åÈ—=à[À>S ž=à[À>‰’ê>:û=K(R>:û>‰’ê>0H>© >PU2<•çÉ>PU2>© >PU2>éº=>PU2? æó>pbN>É­!>pbN>éº=>pbN? æó>pbN?í>ˆ7µ>É­!>ˆ7µ?í>ˆ7µ?$ðÇ>˜>B>¹¦“>˜>B?$ðÇ>¨DÓ<•çÉ>¸K^?,ô>ÈQì>¹¦“>ØX}=K(R>è_=K(R>è_=¥®_>è_>© >è_?,ô>øe•=¥®_>øe•>ñg>øe•>‰’ê>øe•>™™x>øe•>É­!?6>ñg?6>s¹?6>É­!?6>Ù³¯?6?$ðÇ? 9Z>Ù³¯? 9Z>ùÀÊ? 9Z?ê:? 9Z?$ðÇ?<¡>ùÀÊ?<¡?ê: %%((,,--++""&&))**'' ##$$!!   =ÀN¥=åÈ—=ÀN¥>ñg>4n=K(R>4n=åÈ—>4n>2þ‚> A>ñg> A>Ù³¯> A?ã¬>@N¥<•çÉ>@N¥>¹¦“>@N¥>É­!>@N¥?ã¬>@N¥?ê:>`[À>© >`[À?ê:>€4n?$ðÇ>:û<•çÉ>:û>™™x>:û?$ðÇ>°H=K(R>°H?,ô>ÀN¥=K(R>ÀN¥>™™x>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã>© >à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o>É­!?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶>éº=?7¶?ê:?7¶?í?:ý>Ù³¯?:ý? æó"  $$&&%%  ##!!=ÀN¥=K(R>4n<•çÉ>4n=¥®_> A‰=K(R>@N¥>Ù³¯>`[À>É­!>`[À>éº=>€4n>Ù³¯= Aˆ½Úîé=à[À=K(R>:û½5tý>:û<•çÉ>:û=¥®_>0H<•çÉ>0H=K(R>PU2>Ù³¯>pbN>É­!>pbN>éº=>ˆ7µ>Ù³¯  >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x>4n?ã¬>4n? æó> A‰=K(R> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥<•çÉ>@N¥=¥®_>@N¥?ã¬>@N¥?$ðÇ>`[Ç=K(R>`[Ç>‰’ê>`[Ç>© >€4q>s¹>:û>¹¦“>:û?,ô> A>s¹>ÀN¥>É­!>ÐU2?,ô>à[Ã>Ù³¯>ðbQ>Ù³¯>ðbQ>éº=>ðbQ?$ðÇ?4o>éº=?4o?ã¬?4o?ê:?4o?$ðÇ?7µ?ã¬?7µ?ê:   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4h<•çÉ=ÀN¥<•çÉ>`[À<•çÉ>`[À>S ž>ÐU2<•çÉ>ðbN?í?4n<•çÉ?4n>S ž?4n?,ô?7µ<•çÉ?>D<•çÉ  =@NŸ<•çÉ>:û<•çÉ>0H<•çÉ>pbN?,ô>ˆ7¸>¹¦“>¨DÐ?,ô>¸K^?,ô>ØXy<•çÉ?6=K(R? 9Z=K(R? 9Z>¹¦“?<¡=åÈ—?<¡>© ?<¡?,ô??ç=åÈ—??ç>S ž??ç>‰’ê??ç>© ??ç>É­!?$C.>S ž?$C.>‰’ê?$C.>É­!?$C.>Ù³¯?$C.?$ðÇ?,Fu>Ù³¯?,Fu?ã¬?,Fu?ê:?,Fu?$ðÇ?4Iº?ã¬?4Iº?ê:       =€4p>2þ‚=€4p>‰’ê=ÀN§=¥®_=ÀN§>2þ‚=ÀN§>‰’ê=ÀN§>É­!>4t=K(R>4t=¥®_>4t>É­!>4t>ùÀÊ> A‰=K(R> A‰>ùÀÊ>@N¥?ê:>`[À<•çÉ>`[À?ê:>€4q?$ðÇ>:ÿ?$ðÇ> A<•çÉ>°H?,ô>ÀN¨=K(R>à[Ã=åÈ—>à[Ã?,ô>ðbQ>2þ‚?4o?$ðÇ?7¶?í?:û>ùÀÊ?:û? æó?:û?í?>D?,ô    =@NŸ<•çÉ>:û<•çÉ>0H<•çÉ>pbN?,ô>¨DÐ<•çÉ>¨DÐ?,ô>¸K^?,ô>ØXy=K(R>è_=K(R>øe•=¥®_?6=¥®_?6?,ô? 9Z>ñg?<¡>ñg?<¡?$ðÇ??ç>‰’ê??ç?í??ç?$ðÇ?$C.>‰’ê?$C.>É­!?$C.?ã¬?$C.?í?,Fu>É­!?,Fu?㬠   =4h<•çÉ>4n<•çÉ> A<•çÉ>`[À?,ô>€4q>¹¦“> A‰?,ô>°H?,ô>ÐU2>s¹>à[À>¹¦“>ðbN<•çÉ>ðbN>ùÀÊ?4n<•çÉ?:û>2þ‚?(DÒ>ùÀÊ?(DÒ?,ô?0H?,ô   <€4n<•çÉ=à[À<•çÉ>;<•çÉ>PU2?,ô>pbU<•çÉ>pbU>¹¦“>˜>B?,ô>¨DÐ?,ô>ÈQï>s¹>ØX}>¹¦“>è_ >ùÀÊ?$C.>ùÀÊ?$C.?,ô?,Ft?,ô   = Aˆ>2þ‚= Aˆ>‰’ê=à[À=¥®_=à[À>2þ‚=à[À>‰’ê=à[À>É­!>;=K(R>;=¥®_>;>É­!>;>ùÀÊ>0H=K(R>0H>ùÀÊ>PU2?ê:>pbN<•çÉ>pbN?ê:>ˆ7µ?$ðÇ>˜>B<•çÉ>˜>B?$ðÇ>¸K^=K(R>¸K^?,ô>ÈQì=K(R>ÈQì>s¹>ØXy=åÈ—>è_=åÈ—>è_?,ô>øe˜>s¹?6>s¹?6?$ðÇ? 9Z?í?<Ÿ>ùÀÊ?<Ÿ? æó?<Ÿ?í??ç>s¹??ç?,ô!!     <•çÉ=ÀN¥<•çÉ>4n<•çÉ>@N¥?,ô>`[À<•çÉ>`[À>¹¦“>:û?,ô> A‰?,ô>ÐU2<•çÉ>ÐU2?,ô?4n<•çÉ?7µ<•çÉ?>D>¹¦“?>D?,ô? A‹<•çÉ?0H?,ô?8K_?,ô?PU4?,ô    <•çÉ=ÀN¥<•çÉ>4n<•çÉ>@N¥?,ô>`[À<•çÉ>:û?,ô> A‰?,ô>ÐU6?,ô<€4®=åÈ—<€4®>2þ‚=@N§=K(R=@N§>ñg=@N§>S ž= AŒ>2þ‚=à[Î<•çÉ>0H<•çÉ>pbU=K(R>pbU=¥®_>ˆ7µ=¥®_>ˆ7µ>ñg>˜>B>ñg>¨DÓ?,ô>ØX}?,ô>è_ ?,ô? 9X?,ô   ½4p<•çÉ=€4l<•çÉ=ÀN³<•çÉ> A‰>‰’ê> A‰?,ô>@N«<•çÉ>€4n?,ô>:û?,ô>°H>É­!>ÀN¥<•çÉ>ÀN¥>É­!>ÀN¥?,ô>ðbQ<•çÉ?4o<•çÉ?:ý<•çÉ?:ý?,ô?0H?,ô?@N¦?,ô    =@N§<•çÉ>:û<•çÉ>0H<•çÉ>pbN?,ô>¨DÓ?,ô>¸Ka?,ô>è_ ?,ô>øe•<•çÉ?6<•çÉ?<¡>S ž <•çÉ=ÀN¥<•çÉ>@N¥<•çÉ>@N¥?,ô>:û?,ô> A‰<•çÉ> A‰?,ô>°H=¥®_>à[À<•çÉ?7µ<•çÉ?:û<•çÉ?(DÒ<•çÉ?8K_?,ô?@N¦?,ô?XXy?,ô    <•çÉ=ÀN¥<•çÉ>@N¥<•çÉ>@N¥?,ô>:û?ê:>:û?,ô?4o<•çÉ?4o=åÈ—?>D?,ô?0H?,ô?HQí?,ô  =ÀN³>2þ‚=ÀN³>‰’ê>4n=¥®_>4n>2þ‚>4n>‰’ê>4n>É­!> A‰=K(R> A‰=¥®_> A‰>É­!> A‰>ùÀÊ>@N«>ùÀÊ>`[À<•çÉ>`[À?ê:>€4n?ê:>:û?$ðÇ> A<•çÉ> A?$ðÇ>ÀN¥=K(R>ÀN¥?,ô>ÐU2=K(R>à[Ã=åÈ—>ðbQ=åÈ—>ðbQ?,ô?4o>S ž?7¶>S ž?7¶>™™x?7¶?í?7¶?$ðÇ?:ý>™™x?:ý>Ù³¯?:ý?ã¬?:ý?í?>D>Ù³¯?>D?㬠  !!  <€4n<•çÉ=à[À<•çÉ>;<•çÉ>PU2?,ô>pbU<•çÉ>pbU>© >˜>B?,ô>¨DÐ?,ô>øe˜>© ?<¡>¹¦“?<¡?,ô??ç>¹¦“?$C.>Ù³¯?$C.?$ðÇ?,Ft>Ù³¯?,Ft?ã¬?,Ft?ê:?,Ft?$ðÇ?4I¼?ã¬?4I¼?ê:    =ÀN³>2þ‚=ÀN³>‰’ê>4n=¥®_>4n>2þ‚>4n>‰’ê>4n>É­!> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>É­!> A‰>ùÀÊ>@N«>2þ‚>@N«>ùÀÊ>`[À<•çÉ>`[À?ê:>€4n>S ž>€4n?ê:>:û>S ž>:û?$ðÇ> A<•çÉ> A?$ðÇ>°H>2þ‚>ÀN¥½Úîé>ÀN¥=K(R>ÀN¥=åÈ—>ÀN¥?,ô>ÐU2¾ „>ÐU2½šÔµ>ÐU2=K(R>à[ýÚîé>à[Ã=åÈ—>ðbQ¾ „>ðbQ½Úîé>ðbQ=åÈ—>ðbQ?,ô?4o½šÔµ?4o½5tý?4o>S ž?7¶>S ž?7¶>™™x?7¶?í?7¶?$ðÇ?:ý>™™x?:ý>Ù³¯?:ý?ã¬?:ý?í?>D>Ù³¯?>D?㬠 !!&&**..//--))""  %%''++,,((" ##$ #=@NŸ<•çÉ>:û<•çÉ>0H<•çÉ>pbN?,ô>ˆ7¸<•çÉ>ˆ7¸>¹¦“>¨DÐ?,ô>¸K^?,ô>ØXy>¹¦“>øe•>© ?6>™™x? 9Z=K(R? 9Z>¹¦“?<¡<•çÉ?<¡=¥®_?<¡?,ô??ç=K(R??ç>É­!?$C.<•çÉ?$C.=K(R?$C.>É­!?$C.>Ù³¯?$C.?$ðÇ?,Fu=¥®_?,Fu=åÈ—?,Fu>Ù³¯?,Fu?ã¬?,Fu?ê:?,Fu?$ðÇ?4Iº?ã¬?4Iº?ê:    =€4l<•çÉ=ÀN³=¥®_=ÀN³>ñg=ÀN³>S ž>4n=¥®_> A‰=K(R>@N«?ã¬>@N«?ê:>`[À>éº=>€4n<•çÉ>€4n>Ù³¯>€4n>éº=>€4n?$ðÇ>°H?,ô>ÀN¥<•çÉ>ðbQ=K(R>ðbQ>™™x>ðbQ>© >ðbQ?,ô?4o=¥®_?4o>™™x?7¶>ñg?7¶>s¹?:ý?$ðÇ?>D?í? A‰>ùÀÊ? A‰? æó? A‰?í?(DÒ?,ô    =€4p<•çÉ=€4p>ùÀÊ>4n?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>:û<•çÉ>°H?,ô>ÀN¥?,ô?:ý>ùÀÊ?:ý?,ô?>D?,ô =€4}=åÈ—=€4}>S ž=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>S ž=ÀN¥>© =ÀN¥?,ô>4n=K(R>4n>© >@N¥<•çÉ>@N¥?,ô>`[À?,ô> A‰<•çÉ> A‰?,ô>ÐU2=K(R>ðbN=åÈ—?4o>S ž?7¶?,ô? A‹?,ô?8K_?,ô     =4p?,ô=ÀN¥?,ô>4n<•çÉ>4n?,ô> A‰=¥®_>`[À?,ô>ÐU6?,ô?7¶?,ô?>B?,ô=€4}?,ô=ÀN¥<•çÉ>4n=¥®_> A?,ô>@N¥?,ô>:û?,ô>°H<•çÉ>ÀN¥=¥®_>ÐU2?,ô>à[Ã?,ô?:ý?,ô?(DÒ?,ô?@N¦?,ô   ½4p<•çÉ=4p<•çÉ> A‰<•çÉ> A‰?,ô>`[À?,ô>€4n?,ô>°H<•çÉ>°H?,ô>à[Ã<•çÉ>ðbQ<•çÉ?7¶<•çÉ?7¶?,ô?(DÒ?,ô?8K^?,ô   =4p<•çÉ=4p?,ô=ÀN¥?,ô>4n<•çÉ>4n?,ô> A‰<•çÉ>`[À>¹¦“>`[À?,ô>€4n<•çÉ>€4n>¹¦“>à[Ã?,ô?:ý?,ô? A‹?,ô   =4p<•çÉ=€4l<•çÉ> A‰>ùÀÊ>`[À?,ô>€4n?,ô>à[Ã<•çÉ>ðbQ<•çÉ?7¶>S ž? A‰?,ô?(DÒ?,ô  =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n? æó> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥?ã¬>`[À?,ô=€4p>ñg=€4p>s¹=ÀN§=¥®_=ÀN§=åÈ—=ÀN§>s¹=ÀN§>© >4t=K(R>4t>© > A‰>Ù³¯>@N¥<•çÉ>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=> A=K(R> A>éº=>ÀN¨=K(R>ÀN¨=åÈ—>ÀN¨>ñg>ÀN¨>Ù³¯>ÐU2<•çÉ>ÐU2=K(R>ÐU2=åÈ—>ÐU2>s¹>ÐU2>© >à[Ã<•çÉ>à[Ã>s¹>ðbQ>éº=?4o<•çÉ?4o>éº=?:û=¥®_?>D>ñg   =à[À>2þ‚=à[À>‰’ê>;=¥®_>;>ñg>;>‰’ê>;?,ô>0H=K(R>0H>¹¦“>pbN<•çÉ>pbN>Ù³¯>pbN?,ô>ˆ7µ?,ô>˜>B<•çÉ>˜>B>éº=>¸K^=K(R>¸K^>éº=>ÈQì=K(R>ØXy>ñg>ØXy>Ù³¯>è_>ñg>è_>s¹>è_>¹¦“>è_>É­!>øe˜>s¹>øe˜>©       =ÀN§>ñg=ÀN§>s¹>4t=¥®_>4t=åÈ—>4t>s¹>4t>© > A‰=K(R> A‰>© >@N¥>Ù³¯>`[À<•çÉ>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>ÀN¨=K(R>ÀN¨>éº=>à[Ã>ñg>à[Ã>© >à[Ã>¹¦“>à[Ã>Ù³¯>ðbQ>© >ðbQ>¹¦“   =€4p>ñg=€4p>s¹=ÀN§=¥®_=ÀN§=åÈ—=ÀN§>s¹=ÀN§>© >4t=K(R>4t>© > A‰>Ù³¯>@N¥<•çÉ>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=> A=K(R> A>éº=>ÀN¨=K(R>ÀN¨=åÈ—>ÀN¨>ñg>ÀN¨>Ù³¯>ÐU2<•çÉ>ÐU2=K(R>ÐU2=åÈ—>ÐU2>s¹>ÐU2>© >à[Ã<•çÉ>à[Ã>s¹>à[Ã?,ô?4o<•çÉ?7¶?,ô?:û=¥®_?:û?,ô?>D>ñg   =ÀN§>ñg=ÀN§>s¹>4t=¥®_>4t=åÈ—>4t>2þ‚>4t>s¹>4t>© > A‰=K(R> A‰>© >@N¥>Ù³¯>`[À<•çÉ>`[À>Ù³¯>€4q>S ž>:ÿ<•çÉ>:ÿ>éº=>°H>s¹>ÀN¨=K(R>ÀN¨>éº=>à[Ã=åÈ—>à[Ã>™™x>à[Ã>Ù³¯>ðbQ>¹¦“    ½@N§¾-‘¬½@N§¾ „¼€4-¾MžÇ¼€4-¾-‘¬¼€4-½Úîé<€4n¾ „=@N§¾MžÇ=à[À¾-‘¬>:û¾ „>:û½Úîé>:û>éº=>0H½šÔµ>0H<•çÉ>PU9<•çÉ>pbN>ñg>ˆ7µ>éº=>˜>B>Ù³¯>˜>B? æó>¨DÓ? æó>¨DÓ?í>¸Ka?í>¸Ka?$ðÇ>ØX}?,ô>è_ >éº=>è_ ?í>øe˜?ê:>øe˜?$ðÇ>øe˜?,ô?6?í?6?$ðÇ   =€4l¾ „=€4l½Úîé=ÀN³¾-‘¬=ÀN³¾ „=ÀN³½šÔµ>4n½Úîé>4n>ñg>4n>s¹> A‰¾MžÇ> A‰=¥®_> A‰=åÈ—> A‰>s¹> A‰>© >@N«=K(R>@N«>© >`[À>Ù³¯>€4n¾MžÇ>€4n<•çÉ>€4n>Ù³¯> A¾-‘¬> A<•çÉ> A>éº=>°H¾-‘¬>ÀN¥½šÔµ>ÀN¥=K(R>ÀN¥>éº=>ÐU2½šÔµ>ÐU2<•çÉ>à[Ã<•çÉ>à[Ã>ñg>à[Ã>Ù³¯>ðbQ>s¹>ðbQ>© ?7¶>éº=?:ý>éº="!    =@NÀ<•çÉ= Aˆ<•çÉ>;>s¹>;?,ô>PU2>¹¦“>pbN?,ô>ˆ7µ>Ù³¯>ˆ7µ?,ô>¨DÐ>éº=>ÈQì=K(R>ÈQì>ñg>ÈQì>éº=>ØXy<•çÉ>ØXy=K(R>ØXy>ñg>è_<•çÉ>è_>© >è_>É­!>è_>Ù³¯>øe˜>© >øe˜>É­!?6<•çÉ?<Ÿ=¥®_??ç>ñg    =4ƒ>© =€4l>É­!>4n>éº=> A‰=K(R> A‰>ñg>@N¥<•çÉ>@N¥=K(R>@N¥>ñg>@N¥>éº=>`[À<•çÉ>`[À>© >`[À>Ù³¯>`[À>éº=>€4n>© >€4n>Ù³¯>€4n?$ðÇ>:û<•çÉ>:û?í>:û?,ô> A‰?$ðÇ>°H=¥®_>ÀN¨>ñg    4¾-‘¬4¾ „=4p¾MžÇ=4p¾-‘¬=4p½Úîé=€4p¾ „=ÀN²¾MžÇ>4n>© > A‰¾-‘¬> A‰¾ „> A‰>É­!>@N¥¾ „>@N¥½šÔµ>`[ǽšÔµ>`[Ç<•çÉ>`[Ç>éº=>€4q<•çÉ>:û>éº=> A>© > A>Ù³¯> A>éº=>°H>© >°H>Ù³¯>°H?$ðÇ>ÀN¥?í>ÀN¥?,ô>ÐU2?$ðÇ   = A˜<•çÉ=à[À<•çÉ>0H>‰’ê>0H?,ô>pbN>‰’ê>ˆ7µ>s¹>ˆ7µ?,ô>˜>B>s¹>˜>B>™™x>˜>B?,ô>¨DÓ=K(R>¸K^<•çÉ>¸K^=K(R>ÈQì<•çÉ>ØX}<•çÉ>ØX}>Ù³¯>øe•=K(R>øe•>É­!>øe•>éº=?6>¹¦“?6>Ù³¯?6>éº=? 9Z>ñg? 9Z>É­!? 9Z>Ù³¯    = A‹=K(R= A‹=åÈ—=à[Î<•çÉ=à[Î=K(R=à[Î=åÈ—=à[Î>s¹>;<•çÉ>;>s¹>;?,ô>PU9<•çÉ>pbU?,ô>ˆ7µ=¥®_>ˆ7µ?,ô>˜>B>ñg   =4p>© =€4>É­!>4n<•çÉ>4n>éº=> A‰<•çÉ>@N¥>s¹>@N¥>éº=>`[À>s¹>`[À>¹¦“>`[À>Ù³¯>`[À>éº=>€4n>¹¦“>€4n>Ù³¯>:ÿ>¹¦“>°H>Ù³¯>ÐU2>éº=>à[À<•çÉ>ðbN<•çÉ>ðbN>éº=?7¶>s¹?7¶>© ?7¶>É­!?7¶>Ù³¯?:ý>© ?:ý>É­!?>D>¹¦“?(DÒ>Ù³¯?8K_>éº=?HQí=K(R?HQí>ñg?HQí>éº=?PU2<•çÉ?PU2=K(R?PU2>ñg?XX{<•çÉ?XX{>© ?XX{>É­!?XX{>Ù³¯?`[Â>© ?`[Â>É­!?h_ <•çÉ?xe–=¥®_?€4n>ñg   %%''&&!! "$$##(())*=4p>© =€4p>É­!>4t<•çÉ>4t>éº=> A‰<•çÉ>@N¥>s¹>@N¥>éº=>`[Ç>s¹>`[Ç>¹¦“>`[Ç>Ù³¯>`[Ç>éº=>€4n>¹¦“>€4n>Ù³¯>:û>¹¦“>°H>Ù³¯>ÐU2>éº=>ðbQ=K(R>ðbQ>ñg>ðbQ>éº=?4o<•çÉ?4o=K(R?4o>ñg?7¶<•çÉ?7¶>© ?7¶>É­!?7¶>Ù³¯?:ý>© ?:ý>É­!?>D<•çÉ?(DÐ=¥®_?0H>ñg   =ÀN§>ñg=ÀN§>s¹>4t=¥®_>4t=åÈ—>4t>s¹>4t>© > A‰=K(R> A‰>© >@N¥>Ù³¯>`[À<•çÉ>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>°H=K(R>°H>éº=>ÀN¨=K(R>ÐU2>ñg>ÐU2>Ù³¯>à[Ã>ñg>à[Ã>s¹>à[Ã>¹¦“>à[Ã>É­!>ðbQ>s¹>ðbQ>©     =4h¾MžÇ=ÀN¥>© >4n¾MžÇ>4n>É­!> A¾MžÇ>@N¥>éº=>€4q¾MžÇ>€4q>s¹>€4q>éº=>:û>ñg>:û>s¹>:û>¹¦“>:û>Ù³¯>:û>éº=> A‰=K(R> A‰>© > A‰>¹¦“> A‰>Ù³¯>ÀN¥<•çÉ>ÀN¥>Ù³¯>à[À<•çÉ>à[À>éº=?4n=K(R?4n>éº=?7µ=K(R?:û>ñg?:û>Ù³¯?>D>ñg?>D>s¹?>D>¹¦“?>D>É­!? A‹>s¹? A‹>©       =ÀN¥>ñg=ÀN¥>s¹>4n=¥®_>4n=åÈ—>4n>s¹>4n>© > A=K(R> A>© >@N¥>Ù³¯>`[À¾MžÇ>`[À<•çÉ>`[À>Ù³¯>:û<•çÉ>:û>éº=> A‰¾MžÇ>°H¾MžÇ>°H=K(R>°H>éº=>ÐU2>ñg>ÐU2>Ù³¯>à[þMžÇ>à[Ã>s¹>à[Ã>© ?4o>éº=?7¶>éº=    =4‘>© =€4p>É­!>4t<•çÉ>4t>éº=> A‰<•çÉ>@N¥>s¹>@N¥>éº=>`[À>s¹>`[À>¹¦“>`[À>Ù³¯>`[À>éº=>€4q>¹¦“>€4q>Ù³¯>:ÿ>¹¦“>°H>Ù³¯>ÐU2>éº=>à[Ã>É­!>ðbQ>¹¦“>ðbQ>Ù³¯>ðbQ>éº=?4o>É­!?4o>Ù³¯   =€4p=¥®_=€4p=åÈ—=ÀN²=K(R=ÀN²=¥®_=ÀN²=åÈ—>4n>© >4n>¹¦“>4n>É­!> A‰>™™x> A‰>© > A‰>Ù³¯>@N¥<•çÉ>€4q>éº=>:û<•çÉ>°H>éº=>ÀN¥=K(R>ÀN¥>2þ‚>ÀN¥>S ž>ÐU2=¥®_>ÐU2>ñg>ÐU2>2þ‚>à[Ã>¹¦“>à[Ã>É­!>à[Ã>Ù³¯>ðbQ>¹¦“>ðbQ>É­!   = Aˆ>éº==à[À=K(R=à[À=åÈ—>:û<•çÉ>:û=K(R>:û=åÈ—>:û>s¹>0H<•çÉ>0H>s¹>pbN<•çÉ>ˆ7µ?,ô>˜>B=¥®_>˜>B?,ô>¨DÓ>ñg>¸K^>éº=  =4p>© =€4p>É­!>4t>éº=> A‰=¥®_> A‰>ñg>@N¥=K(R>@N¥=¥®_>@N¥>ñg>@N¥>éº=>`[Ç>© >`[Ç>Ù³¯>`[Ç>éº=>€4n<•çÉ>€4n>© >€4n>Ù³¯> A‰<•çÉ>ÀN¥=K(R>à[Ã=åÈ—>ðbQ=K(R>ðbQ=åÈ—?4o<•çÉ?4o=K(R?4o=åÈ—?4o>s¹?7¶<•çÉ?7¶>s¹?:ý>éº=?>D<•çÉ?>D>éº=?(DÐ=¥®_?0H>ñg     =€4l>© =ÀN³>É­!> A‰>éº=>@N«=¥®_>@N«>ñg>`[À=K(R>`[À=¥®_>`[À>ñg>`[À>éº=>€4n>© >€4n>Ù³¯>€4n>éº=>:û<•çÉ>:û>© >:û>Ù³¯> A<•çÉ>ÐU2=K(R>ðbQ=åÈ—?7¶>S ž?7¶>éº=?:ý>© ?:ý>É­!?:ý>éº=     =€4>© =ÀN§>É­!> A‰>éº=>@N¥=¥®_>@N¥>ñg>`[À=K(R>`[À=¥®_>`[À>ñg>`[À>éº=>€4q>© >€4q>Ù³¯>€4q>éº=>:û<•çÉ>:û>© >:û>Ù³¯>°H<•çÉ>ÐU2=K(R>ðbQ=åÈ—?4o=¥®_?4o>2þ‚?7¶=K(R?7¶=¥®_?7¶>2þ‚?:ý>éº=?>B<•çÉ?>B>éº=?(DÒ<•çÉ?8K_=K(R?HQì=åÈ—?PU4>2þ‚?PU4>éº=?XX{>™™x?XX{>É­!?XX{>éº=     !! =€4}=K(R=€4}=¥®_=ÀN¥<•çÉ=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>© >4n<•çÉ>4n=¥®_> A>Ù³¯>@N¥=K(R>`[À>éº=>€4n=åÈ—>:û=¥®_>:û>2þ‚>:û>éº=> A‰<•çÉ> A‰=¥®_> A‰>2þ‚> A‰>™™x> A‰>É­!> A‰>éº=>°H<•çÉ>°H>™™x>°H>É­!>ÀN¥>¹¦“>ÐU2<•çÉ>à[Ã>Ù³¯>ðbN=K(R?4o>É­!?4o>éº=?7¶>ñg?7¶>¹¦“?7¶>Ù³¯?7¶>éº=?:ý>É­!?:ý>Ù³¯    ""##!!=@N§>© = Aˆ>É­!=à[ξ „=à[νÚîé>:û¾-‘¬>:û¾ „>:û½šÔµ>:û>éº=>0H½Úîé>0H=¥®_>0H>ñg>PU9¾MžÇ>PU9=K(R>PU9=¥®_>PU9>ñg>PU9>éº=>pbN>© >pbN>Ù³¯>pbN>éº=>ˆ7µ<•çÉ>ˆ7µ>© >ˆ7µ>Ù³¯>˜>B¾MžÇ>¨DÓ<•çÉ>¸Ka¾-‘¬>ÈQì¾-‘¬>ÈQì=K(R>ØX}½šÔµ>è_ ½šÔµ>è_ <•çÉ>è_ =åÈ—>øe•<•çÉ?6>s¹?<¡>éº=??ç>éº=   " !=ÀN¥<•çÉ>4n=¥®_>4n>© > A>É­!>@N¥=¥®_>@N¥>ñg>`[À>Ù³¯>`[À>éº=> A‰<•çÉ> A‰=K(R> A‰>Ù³¯> A‰>éº=>ÐU2<•çÉ>ÐU2=K(R>à[Ã>© >à[Ã>É­!>ðbN=¥®_?4o>ñg?4o>É­!?7¶>éº=    >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =à[À?ã¬=à[À?ê:>;>éº=>;?$ðÇ>PU9>Ù³¯>PU9?,ô>ˆ7µ>Ù³¯>ˆ7µ?,ô>¨DÓ>éº=>¨DÓ?$ðÇ>¸Ka?ã¬>¸Ka?ê: dx-4.4.4/fonts/italic_t.dx0000644000076500000240000030253207120231004012325 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 21 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 22 msb ieee data 168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 344 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.626000 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 504 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 45 msb ieee data 600 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 42 msb ieee data 960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.657300 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1296 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 60 msb ieee data 1712 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 60 msb ieee data 2192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 16 msb ieee data 2672 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 16 msb ieee data 2800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 23 msb ieee data 2928 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 24 msb ieee data 3112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.500800 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 23 msb ieee data 3304 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 24 msb ieee data 3488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.500800 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3680 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.532100 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3992 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 4056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 16 msb ieee data 4120 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 16 msb ieee data 4248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 4376 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 4408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 12 msb ieee data 4440 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 12 msb ieee data 4536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.344300 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4632 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 48 msb ieee data 4696 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 48 msb ieee data 5080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.657300 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 10 msb ieee data 5464 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 10 msb ieee data 5544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.657300 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 40 msb ieee data 5624 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 40 msb ieee data 5944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.657300 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 53 msb ieee data 6264 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 52 msb ieee data 6688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.657300 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 8 msb ieee data 7104 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 7 msb ieee data 7168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.657300 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 36 msb ieee data 7224 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 35 msb ieee data 7512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.657300 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 51 msb ieee data 7792 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 51 msb ieee data 8200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.657300 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 26 msb ieee data 8608 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 25 msb ieee data 8816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.657300 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 65 msb ieee data 9016 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 70 msb ieee data 9536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.657300 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 51 msb ieee data 10096 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 51 msb ieee data 10504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.657300 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 24 msb ieee data 10912 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 24 msb ieee data 11104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 28 msb ieee data 11296 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 28 msb ieee data 11520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 11744 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 11768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 11784 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 11848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 11912 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 11936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 47 msb ieee data 11952 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 47 msb ieee data 12328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.657300 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 12704 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 13088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 22 msb ieee data 13472 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 14 msb ieee data 13648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 54 msb ieee data 13760 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 44 msb ieee data 14192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.751200 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 35 msb ieee data 14544 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 35 msb ieee data 14824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 45 msb ieee data 15104 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 35 msb ieee data 15464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.719900 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 48 msb ieee data 15744 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 30 msb ieee data 16128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.719900 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 43 msb ieee data 16368 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 26 msb ieee data 16712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.688600 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 50 msb ieee data 16920 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 45 msb ieee data 17320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.688600 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 50 msb ieee data 17680 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 27 msb ieee data 18080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.813800 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 24 msb ieee data 18296 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 13 msb ieee data 18488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.438200 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 35 msb ieee data 18592 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 29 msb ieee data 18872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.594700 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 44 msb ieee data 19104 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 24 msb ieee data 19456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.719900 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 30 msb ieee data 19648 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 17 msb ieee data 19888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.626000 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 37 msb ieee data 20024 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 24 msb ieee data 20320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.876400 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 21 msb ieee data 20512 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 15 msb ieee data 20680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.782500 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 46 msb ieee data 20800 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 46 msb ieee data 21168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 41 msb ieee data 21536 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 30 msb ieee data 21864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.719900 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 62 msb ieee data 22104 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 62 msb ieee data 22600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 54 msb ieee data 23096 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 42 msb ieee data 23528 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.751200 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 37 msb ieee data 23864 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 38 msb ieee data 24160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.719900 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 31 msb ieee data 24464 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 18 msb ieee data 24712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.688600 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 33 msb ieee data 24856 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 26 msb ieee data 25120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.782500 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 19 msb ieee data 25328 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 13 msb ieee data 25480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 28 msb ieee data 25584 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 23 msb ieee data 25808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.813800 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 32 msb ieee data 25992 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 18 msb ieee data 26248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.688600 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 30 msb ieee data 26392 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 19 msb ieee data 26632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.688600 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 20 msb ieee data 26784 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 13 msb ieee data 26944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.688600 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 27048 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 27096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 27128 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 27144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 27152 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 27200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 27232 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 27288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 27328 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 27344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 16 msb ieee data 27352 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 16 msb ieee data 27480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 38 msb ieee data 27608 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 38 msb ieee data 27912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.688600 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 41 msb ieee data 28216 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 38 msb ieee data 28544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.594700 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 29 msb ieee data 28848 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 28 msb ieee data 29080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.563400 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 46 msb ieee data 29304 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 42 msb ieee data 29672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.688600 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 28 msb ieee data 30008 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 27 msb ieee data 30232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 39 msb ieee data 30448 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 37 msb ieee data 30760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.500800 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 46 msb ieee data 31056 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 45 msb ieee data 31424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.657300 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 30 msb ieee data 31784 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 25 msb ieee data 32024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.688600 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 26 msb ieee data 32224 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 23 msb ieee data 32432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.406900 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 36 msb ieee data 32616 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 33 msb ieee data 32904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.406900 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 36 msb ieee data 33168 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 31 msb ieee data 33456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.688600 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 20 msb ieee data 33704 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 16 msb ieee data 33864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.375600 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 44 msb ieee data 33992 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 43 msb ieee data 34344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 1.095500 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 31 msb ieee data 34688 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 30 msb ieee data 34936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.751200 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 36 msb ieee data 35176 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 36 msb ieee data 35464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.626000 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 50 msb ieee data 35752 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 44 msb ieee data 36152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.688600 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 41 msb ieee data 36504 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 35 msb ieee data 36832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.657300 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 23 msb ieee data 37112 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 22 msb ieee data 37296 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.563400 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 36 msb ieee data 37472 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 37 msb ieee data 37760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 17 msb ieee data 38056 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 15 msb ieee data 38192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.438200 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 31 msb ieee data 38312 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 30 msb ieee data 38560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.751200 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 24 msb ieee data 38800 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 23 msb ieee data 38992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.626000 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 37 msb ieee data 39176 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 36 msb ieee data 39472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.939000 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 42 msb ieee data 39760 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 41 msb ieee data 40096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.688600 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 39 msb ieee data 40424 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 37 msb ieee data 40736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.688600 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 26 msb ieee data 41032 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 25 msb ieee data 41240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.626000 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 41440 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 41720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 41992 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 42008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 42016 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 42296 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 42568 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 42728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 42888 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 42984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.469500 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =@N§=K(R=@N§=¥®_= A‹<•çÉ= A‹=K(R= A‹=¥®_= A‹=åÈ—=à[Î<•çÉ=à[Î=K(R=à[Î=¥®_=à[Î=åÈ—>;=K(R>;=¥®_>;>s¹>PU9?$ðÇ>pbU?$ðÇ>pbU?,ô>ˆ7µ?í>ˆ7µ?$ðÇ>ˆ7µ?,ô>˜>B?í>˜>B?$ðÇ     =ÀN²>éº=> A‰?$ðÇ>@N¥?$ðÇ>@N¥?,ô>`[Ç?$ðÇ>ÐU2>éº=>ðbQ?$ðÇ?4o?$ðÇ?4o?,ô?7µ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =€4}>ñg=€4}>S ž=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>2þ‚>4n½Úîé>4n=K(R>4n>ñg>4n>S ž> A>ùÀÊ> A?ê:>@N¥>Ù³¯>@N¥>ùÀÊ>@N¥?ã¬>@N¥?ê:>`[À<•çÉ>`[À>Ù³¯>`[À>éº=>`[À?$ðÇ>€4n>¹¦“>:û½Úîé> A‰?,ô>°H<•çÉ>ÀN¥?M*>ÐU2>¹¦“>à[Ã=K(R>à[Ã>‰’ê>à[Ã>™™x>à[Ã?,ô>ðbN=¥®_>ðbN=åÈ—>ðbN>S ž>ðbN>s¹>ðbN>™™x?4o>ñg?4o>s¹?7¶>ùÀÊ?7¶? æó?7¶?$ðÇ?7¶?M*?:ý?ã¬?:ý? æó?:ý?í?>B>ùÀÊ?>B? æó'())%%$$++,,**&&    !!##""=ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =€4l=åÈ—=€4l>2þ‚=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>2þ‚=ÀN¥>s¹>4n=K(R>4n=åÈ—>4n>2þ‚>4n>s¹>4n>‰’ê> A=K(R> A>s¹> A>‰’ê>@N¥<•çÉ>@N¥>‰’ê>@N¥>™™x>`[À<•çÉ>`[À>™™x>€4q>™™x>:û<•çÉ> A‰>ùÀÊ> A‰?ê:>°H=K(R>°H>™™x>°H>¹¦“>°H>É­!>°H?$ðÇ>ÀN¥>S ž>ÀN¥>‰’ê>ÀN¥>™™x>ÐU2=åÈ—>ÐU2>ñg>ÐU2>É­!>ÐU2?,ô>à[À>2þ‚>ðbN=K(R>ðbN=¥®_>ðbN>éº=>ðbN?$ðÇ?4n=¥®_?4n?ã¬?4n?ê:?7µ<•çÉ?7µ=K(R?:û=K(R?:û>¹¦“?>D<•çÉ?>D=K(R? A‹=¥®_? A‹=åÈ—? A‹>Ù³¯?0H>¹¦“?0H>Ù³¯?0H>éº=?8K_>É­!?8K_>Ù³¯?8K_>éº=?@N¦>¹¦“?@N¦>Ù³¯7885544::;;996633.. !!&&))**''"" $$++//112 %%,  !##((--001=à[Î>éº=>;?í>;?$ðÇ>0H>ùÀÊ>0H?ê:>0H?í>0H?$ðÇ>0H?,ô>PU9?ã¬>PU9? æó>PU9?ê:>PU9?í>PU9?$ðÇ>PU9?,ô>pbU?ê:>pbU?$ðÇ    =@N½=åÈ—=@N½>‰’ê= Aˆ¼U;= Aˆ>s¹= Aˆ>É­!=à[À½Úîé=à[À½5tý=à[À>‰’ê=à[À>É­!>:û¾ „>:û>É­!>:û?ã¬>0H¾MžÇ>0H>ùÀÊ>0H?ã¬>PU2? æó>PU2?í>pbN?í>ˆ7µ?$ðÇ>˜>B?4÷U>¸K^?<úœ>ÈQï?Dýã>è_ ?M*    =@NÀ¾MžÇ=à[À¾-‘¬>;¾ „>PU2½Úîé>pbN½5tý>ˆ7µ¼U;>˜>B¼U;>˜>B=K(R>¨DÐ=¥®_>¨DÐ=åÈ—>¨DÐ?M*>¸K^=¥®_>¸K^>S ž>¸K^?<úœ>ÈQì>S ž>ÈQì>© >ÈQì?$ðÇ>ÈQì?4÷U>ØXy>S ž>ØXy>¹¦“>ØXy?í>è_>© >è_>ùÀÊ    =à[À>É­!=à[À>Ù³¯=à[À? æó=à[À?ê:>:û>É­!>:û?ê:>pbN>© >pbN?$ðÇ>ˆ7µ>™™x>ˆ7µ?,ô>˜>B>© >˜>B?$ðÇ>ÈQï>É­!>ÈQï?ê:>ØX}>É­!>ØX}>Ù³¯>ØX}? æó>ØX}?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© =à[À½Úîé>:û=K(R>:û=¥®_>0H½šÔµ>0H<•çÉ>0H=K(R>0H=¥®_>0H=åÈ—>PU9½5tý>PU9¼U;>PU9<•çÉ>PU9=K(R>PU9=¥®_>PU9=åÈ—>pbN<•çÉ>pbN=¥®_    >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4n=K(R>4n=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[À=K(R>`[À=¥®_ ½€4l¾MžÇ½4p¾MžÇ?@N¦?M*?HQí?M*=ÀN¥>2þ‚=ÀN¥>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>É­!> A=K(R> A=¥®_> A=åÈ—> A>‰’ê> A>É­!> A>ùÀÊ>@N¥=K(R>@N¥>É­!>@N¥>ùÀÊ>`[À<•çÉ>`[À>ùÀÊ>`[À? æó>`[À?ê:>€4n? æó>:û<•çÉ>:û?í>:û?$ðÇ> A‰?$ðÇ>°H=K(R>ÀN¥=K(R>ÀN¥=¥®_>ÀN¥?,ô>ÐU2>ñg>à[Ã=åÈ—>à[Ã>ñg>à[Ã>S ž>à[Ã?,ô>ðbN>S ž>ðbN>™™x>ðbN?$ðÇ?4o>S ž?4o>™™x?4o>Ù³¯?4o?ê:?4o?í?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶? æó?7¶?í?:ý>Ù³¯?:ý?㬠$$**..//--))  !!%%++,,(  ""&&''## >PU2<•çÉ>PU2>ùÀÊ>pbN<•çÉ>ˆ7µ<•çÉ>ˆ7µ?ã¬>˜>B?ã¬>¸K^? æó>¸K^?ê:>ÈQì? æó>è_?,ô   =€4l<•çÉ=ÀN³=¥®_>4n=åÈ—>4n>ñg>@N«=åÈ—>@N«>S ž>`[À>ùÀÊ>`[À? æó>€4n?ã¬>€4n? æó>€4n?í>:û>ùÀÊ>:û? æó>:û?$ðÇ>°H<•çÉ>°H=K(R>°H=¥®_>ÀN¥>© >ÀN¥?,ô>à[Ã<•çÉ>à[Ã>É­!>ðbQ>É­!>ðbQ?,ô?4o=K(R?4o=¥®_?4o>É­!?4o>éº=?4o?$ðÇ?7¶=åÈ—?7¶>ñg?7¶>éº=?7¶?ã¬?7¶?ê:?7¶?$ðÇ?:ý>éº=?:ý?ã¬?:ý?ê:?:ý?$ðÇ?>D?ã¬?>D?ê:  %%''&&""!$$## = A˜>ñg= A˜>S ž=à[À=¥®_=à[À>ñg=à[À>2þ‚>:û=K(R>:û>ñg>:û>S ž>PU2>ùÀÊ>PU2? æó>pbN<•çÉ>pbN?ã¬>pbN? æó>pbN?í>ˆ7µ>ùÀÊ>ˆ7µ? æó>ˆ7µ?$ðÇ>˜>B>¹¦“>¨DÓ<•çÉ>¸K^>¹¦“>¸K^?,ô>ÈQì=K(R>ØX}=K(R>ØX}=¥®_>ØX}>© >ØX}>É­!>è_=¥®_>è_>ñg>è_>‰’ê>è_>™™x>è_>© >è_>É­!>è_?,ô>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x>øe•>Ù³¯>øe•>éº=>øe•?$ðÇ?6>ñg?6>s¹?6>Ù³¯?6>éº=?6?ã¬?6?ê:?6?$ðÇ? 9Z>éº=? 9Z?ã¬? 9Z?ê:? 9Z?$ðÇ?<¡?ã¬?<¡?ê:   224433//**.1100++% ''--,,&&$$))((!! ##""= A˜>S ž>¨DÓ<•çÉ>¸K^<•çÉ>ÈQì<•çÉ>øe•? æó?6? æó?<¡>S ž?<¡?,ô=€4}>ñg=€4}>S ž=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>2þ‚>4n=K(R>4n>ñg>4n>S ž>4n>¹¦“> A>É­!>@N¥<•çÉ>€4n>Ù³¯>€4n?í>:û<•çÉ>:û?$ðÇ>:û?,ô>°H=K(R>°H>Ù³¯>ÀN¥=K(R>ÐU2=K(R>ÐU2=åÈ—>ÐU2>É­!>ÐU2?í>à[Ã=åÈ—>à[Ã>S ž>à[Ã>© >à[Ã>¹¦“>à[Ã>É­!>ðbN=åÈ—>ðbN>S ž>ðbN>™™x>ðbN>¹¦“?4o>S ž?4o>™™x?7¶?$ðÇ?>B?,ô#" ""# !!   =ÀN¥>2þ‚=ÀN¥>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>É­!> A=K(R> A=¥®_> A=åÈ—> A>‰’ê> A>É­!> A>ùÀÊ>@N¥=K(R>@N¥>© >@N¥>É­!>@N¥>ùÀÊ>`[À<•çÉ>`[À>¹¦“>`[À>ùÀÊ>`[À?ê:>€4n? æó>€4n?ê:>:û>É­!>:û?$ðÇ> A‰<•çÉ> A‰?$ðÇ>ÀN¥=K(R>ÀN¥>É­!>ÀN¥?,ô>ÐU2=K(R>ÐU2=¥®_>ÐU2>¹¦“>à[Ã=åÈ—>à[Ã>2þ‚>à[Ã>™™x>à[Ã>© >à[Ã>¹¦“>ðbN=åÈ—>ðbN>2þ‚>ðbN>‰’ê>ðbN>© >ðbN?,ô?4o>2þ‚?4o>‰’ê?4o?ã¬?4o?ê:?7¶? æó?7¶?ê:?7¶?$ðÇ?:ý?ã¬?:ý?ê:.//--,,112200)) %%**++(($$   &&''#  !!""=ÀN§>ùÀÊ>4t?ê:> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥>ñg>@N¥?í>@N¥?$ðÇ>`[À<•çÉ>`[À>ñg>`[À>S ž>`[À?,ô>€4q>ñg>:ÿ>s¹>:ÿ>‰’ê>:ÿ>™™x>:ÿ?í>:ÿ?$ðÇ>:ÿ?,ô>°H>© >à[Ã?ê:>ðbQ>ùÀÊ?4o?ê:?7¶?ê:?7¶?í?:û?,ô    = A˜=åÈ—= A˜>S ž=à[À=K(R=à[À=åÈ—=à[À>S ž=à[À>‰’ê>:û=K(R>:û=åÈ—>:û>S ž>:û>‰’ê>0H=K(R>0H>‰’ê>0H>© >PU2<•çÉ>PU2>© >PU2>éº=>PU2? æó>pbN>© >pbN>É­!>pbN>Ù³¯>pbN? æó>pbN?í>ˆ7µ<•çÉ>ˆ7µ>É­!>ˆ7µ>Ù³¯>ˆ7µ? æó>ˆ7µ?í>ˆ7µ?$ðÇ>˜>B>¹¦“>˜>B?í>¨DÓ<•çÉ>¨DÓ>¹¦“>¸K^>¹¦“>¸K^?,ô>ÈQì=K(R>ÈQì>¹¦“>ØX}=¥®_>ØX}>© >ØX}?,ô>è_=K(R>è_=¥®_>è_>ñg>è_>‰’ê>è_>™™x>è_>© >è_>É­!>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x>øe•>É­!>øe•>Ù³¯>øe•?,ô?6>ñg?6>s¹?6>Ù³¯?6>ùÀÊ?6?í?6?$ðÇ? 9Z>Ù³¯? 9Z>ùÀÊ? 9Z?ê:? 9Z?$ðÇ?<¡>ùÀÊ?<¡?ê:!##22;;??@@>>44!& 27<<==:>&!#--3388994  ''..556611,,#  '(//00+,   ""$$))**%%#=ÀN¥=åÈ—=ÀN¥>2þ‚>4n=K(R>4n=åÈ—>4n>ñg> A=åÈ—> A>2þ‚> A>Ù³¯> A?ã¬>@N¥<•çÉ>@N¥>¹¦“>@N¥>Ù³¯>@N¥?ã¬>@N¥?ê:>`[À>© >`[À>¹¦“>`[À>É­!>`[À?ã¬>`[À?ê:>€4n>© >€4n?í>€4n?$ðÇ>:û<•çÉ>:û>™™x>:û?$ðÇ>°H=K(R>°H?,ô>ÀN¥=K(R>ÀN¥>™™x>ÐU2=åÈ—>ÐU2>ñg>à[Ã=åÈ—>à[Ã>S ž>à[Ã>© >à[Ã?,ô>ðbN>S ž>ðbN>™™x>ðbN>¹¦“>ðbN?$ðÇ?4o>S ž?4o>™™x?4o>Ù³¯?4o?ê:?4o?í?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶? æó?7¶?í?:ý>Ù³¯?:ý?ã¬)%%!!  "",,002211--''  +//..((##"&&**))$$ = A‹=K(R= A‹=¥®_=à[À<•çÉ=à[À=K(R=à[À=¥®_=à[À=åÈ—>;<•çÉ>;=K(R>;=¥®_>;=åÈ—>0H=K(R>0H=¥®_>0H>É­!>0H>Ù³¯>PU9>¹¦“>PU9>É­!>PU9>Ù³¯>PU9>éº=>pbN>¹¦“>pbN>É­!>pbN>Ù³¯>pbN>éº=>ˆ7µ>É­!>ˆ7µ>Ù³¯  =€4l½Úîé=ÀN¥=K(R=ÀN¥=¥®_>4n½šÔµ>4n<•çÉ>4n=K(R>4n=¥®_>4n=åÈ—> A‰½5tý> A‰¼U;> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥<•çÉ>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>`[À>éº=>€4n>¹¦“>€4n>É­!>€4n>Ù³¯>€4n>éº=>:û>É­!>:û>Ù³¯    >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x>4n>ùÀÊ>4n? æó> A‰=K(R> A‰=¥®_> A‰?ã¬> A‰? æó> A‰?í>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>ùÀÊ>@N¥? æó>@N¥?$ðÇ>`[Ç<•çÉ>`[Ç=K(R>`[Ç=¥®_>`[Ç=åÈ—>`[Ç>‰’ê>`[Ç>© >€4q=K(R>€4q=¥®_>€4q>‰’ê>€4q>© >:û>s¹>:û>¹¦“>:û?,ô> A>s¹>°H?,ô>ÀN¥>É­!>ÐU2>É­!>ÐU2>Ù³¯>ÐU2?,ô>à[Ã>Ù³¯>à[Ã>éº=>à[Ã?$ðÇ>ðbQ>Ù³¯>ðbQ>éº=>ðbQ?ã¬>ðbQ?ê:>ðbQ?$ðÇ?4o>éº=?4o?ã¬?4o?ê:?4o?$ðÇ?7µ?ã¬?7µ?ê:   ,,..--))$$,(++**%%!! ##''&&""   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4h<•çÉ=€4l<•çÉ>4n=K(R>@N¥<•çÉ>`[À<•çÉ>`[À>S ž>ÀN¥<•çÉ>ÐU2<•çÉ>à[À<•çÉ>à[À? æó>ðbN<•çÉ>ðbN=K(R>ðbN=¥®_>ðbN>S ž>ðbN?í?4n=K(R?4n?í?4n?,ô?7µ<•çÉ?7µ=¥®_?:û<•çÉ?>D<•çÉ    =@NŸ<•çÉ= Aˆ<•çÉ=à[À<•çÉ>:û<•çÉ>0H<•çÉ>0H=K(R>0H=¥®_>PU2<•çÉ>PU2=¥®_>pbN<•çÉ>pbN?,ô>ˆ7¸<•çÉ>ˆ7¸?,ô>˜>B>¹¦“>˜>B?,ô>¨DÐ?í>¨DÐ?,ô>¸K^?í>¸K^?$ðÇ>¸K^?,ô>ÈQì?,ô>ØXy<•çÉ>ØXy?,ô>è_?,ô>øe•=K(R?6=K(R? 9Z=K(R? 9Z=åÈ—? 9Z>¹¦“?<¡=åÈ—?<¡>S ž?<¡>™™x?<¡>© ?<¡?,ô??ç=åÈ—??ç>S ž??ç>‰’ê??ç>© ??ç>É­!??ç>Ù³¯??ç?$ðÇ?$C.>S ž?$C.>‰’ê?$C.>É­!?$C.>Ù³¯?$C.?ã¬?$C.?ê:?$C.?$ðÇ?,Fu>Ù³¯?,Fu?ã¬?,Fu?ê:?,Fu?$ðÇ?4Iº?ã¬?4Iº?ê: !!33554400++/2211,,&!((..--'' %%**))"" $$##   =€4p>2þ‚=€4p>‰’ê=ÀN§=¥®_=ÀN§>ñg=ÀN§>‰’ê=ÀN§>É­!>4t=K(R>4t=¥®_>4t=åÈ—>4t>‰’ê>4t>É­!>4t>ùÀÊ> A‰=K(R> A‰>É­!> A‰>ùÀÊ>@N¥>ùÀÊ>@N¥? æó>@N¥?ê:>`[À<•çÉ>`[À? æó>€4q?í>€4q?$ðÇ>:ÿ?$ðÇ> A<•çÉ>°H?,ô>ÀN¨=K(R>à[Ã=åÈ—>à[Ã?,ô>ðbQ>2þ‚?4o?$ðÇ?7¶?í?:û>ùÀÊ?:û? æó?:û?í?>D?,ô!!""     =@NŸ<•çÉ= Aˆ<•çÉ=à[À<•çÉ>:û<•çÉ>0H<•çÉ>0H=K(R>0H=¥®_>PU2<•çÉ>PU2=¥®_>pbN<•çÉ>pbN?,ô>ˆ7¸<•çÉ>ˆ7¸?,ô>˜>B?,ô>¨DÐ<•çÉ>¨DÐ?í>¨DÐ?,ô>¸K^?í>¸K^?$ðÇ>¸K^?,ô>ÈQì?,ô>ØXy=K(R>ØXy?,ô>è_=K(R>è_?,ô>øe•=¥®_?6=¥®_?6>ñg?6?,ô? 9Z>ñg?<¡>ñg?<¡>‰’ê?<¡?í?<¡?$ðÇ??ç>‰’ê??ç>É­!??ç?ã¬??ç?í??ç?$ðÇ?$C.>‰’ê?$C.>É­!?$C.?ã¬?$C.?í?,Fu>É­!?,Fu?㬠&&**,,++''!%%))(("" $$##    =4h<•çÉ=€4l<•çÉ=ÀN¥<•çÉ>4n<•çÉ> A<•çÉ> A=K(R> A=¥®_>@N¥<•çÉ>@N¥=¥®_>`[À<•çÉ>`[À?,ô>€4q<•çÉ>€4q?,ô>:û>¹¦“>:û?,ô> A‰?í> A‰?,ô>°H<•çÉ>°H?í>°H?$ðÇ>°H?,ô>ÀN¥>¹¦“>ÀN¥?,ô>ÐU2<•çÉ>ÐU2>¹¦“>ÐU2?,ô>à[À>s¹>à[À>™™x>à[À>© >à[À>¹¦“>à[À?,ô>ðbN>¹¦“>ðbN>É­!>ðbN>Ù³¯?4n<•çÉ?4n=K(R?4n=¥®_?4n>ùÀÊ?:û>2þ‚?:û?,ô?>D?,ô? A‹?,ô?(DÒ>ùÀÊ?(DÒ?ê:?(DÒ?í?(DÒ?$ðÇ?(DÒ?,ô?0H?,ô% //* ""& '-(,)+.*%!   #$$&<€4n<•çÉ=@N§<•çÉ= AŒ<•çÉ=à[À<•çÉ>;<•çÉ>;=K(R>;=¥®_>0H<•çÉ>0H=¥®_>PU2<•çÉ>PU2?,ô>pbU<•çÉ>pbU?,ô>ˆ7µ<•çÉ>ˆ7µ>¹¦“>ˆ7µ?,ô>˜>B?í>˜>B?,ô>¨DÐ?í>¨DÐ?$ðÇ>¨DÐ?,ô>¸Ka>¹¦“>¸Ka?,ô>ÈQï>¹¦“>ÈQï?,ô>ØX}>s¹>ØX}>™™x>ØX}>© >ØX}>¹¦“>ØX}?,ô>è_ >¹¦“>è_ >É­!>è_ >Ù³¯>øe˜>ùÀÊ? 9Z?,ô?<¡?,ô??ç?,ô?$C.>ùÀÊ?$C.?ê:?$C.?í?$C.?$ðÇ?$C.?,ô?,Ft?,ô! **% "(#'$&)%!   = Aˆ>2þ‚= Aˆ>‰’ê=à[À=¥®_=à[À>ñg=à[À>‰’ê=à[À>É­!>;=K(R>;=¥®_>;=åÈ—>;>‰’ê>;>É­!>;>ùÀÊ>0H=K(R>0H>É­!>0H>ùÀÊ>PU2>ùÀÊ>PU2? æó>PU2?ê:>pbN<•çÉ>pbN? æó>ˆ7µ?í>ˆ7µ?$ðÇ>˜>B<•çÉ>˜>B?$ðÇ>¸K^=K(R>¸K^>s¹>¸K^?,ô>ÈQì=K(R>ÈQì>s¹>ØXy=åÈ—>ØXy>ñg>ØXy>s¹>è_=åÈ—>è_>ñg>è_>S ž>è_>s¹>è_?,ô>øe˜>2þ‚>øe˜>S ž>øe˜>s¹?6>s¹?6?$ðÇ? 9Z>s¹? 9Z?í?<Ÿ>s¹?<Ÿ>ùÀÊ?<Ÿ? æó?<Ÿ?í??ç>s¹??ç?,ô+//11--..++))$$  ( !!'  #0"!*%,&<•çÉ=4h<•çÉ=€4l<•çÉ=ÀN¥<•çÉ>4n<•çÉ>4n=K(R>4n=¥®_> A<•çÉ> A=¥®_>@N¥<•çÉ>@N¥?,ô>`[À<•çÉ>`[À>¹¦“>`[À?,ô>€4q<•çÉ>€4q?,ô>:û?í>:û?,ô> A‰?í> A‰?$ðÇ> A‰?,ô>°H?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2<•çÉ>ÐU2?,ô>à[À<•çÉ>à[À?,ô>ðbN<•çÉ?4n<•çÉ?4n=K(R?4n=¥®_?7µ<•çÉ?7µ=¥®_?:û<•çÉ?:û?,ô?>D<•çÉ?>D>¹¦“?>D?,ô? A‹<•çÉ? A‹?,ô?(DÒ?í?(DÒ?,ô?0H?í?0H?$ðÇ?0H?,ô?8K_?,ô?@N¦?,ô?HQì?,ô?PU4?,ô*-. #1 %' &,()/+0,  !"$<•çÉ=4p<•çÉ=€4z<•çÉ=ÀN¥<•çÉ>4n<•çÉ>4n=K(R>4n=¥®_> A‰<•çÉ> A‰=¥®_>@N¥<•çÉ>@N¥?,ô>`[À<•çÉ>`[À?,ô>€4n<•çÉ>€4n?,ô>:û?í>:û?,ô> A?í> A?$ðÇ> A?,ô>°H?,ô>ÀN¥?,ô>ÐU6?,ô>à[Ã?,ô    <€4®=åÈ—<€4®>2þ‚=@N§=K(R=@N§=åÈ—=@N§>ñg=@N§>2þ‚=@N§>S ž= AŒ=åÈ—= AŒ>ñg= AŒ>2þ‚= AŒ>S ž=à[Î<•çÉ=à[Î>ñg=à[Î>2þ‚>0H<•çÉ>pbU=K(R>pbU=¥®_>ˆ7µ=åÈ—>ˆ7µ>ñg>˜>B=åÈ—>˜>B>2þ‚>¨DÓ>‰’ê>¨DÓ?,ô>¸Ka>‰’ê>¸Ka?,ô>ÈQï?,ô>ØX}?í>ØX}?,ô>è_ ?í>è_ ?$ðÇ>è_ ?,ô>øe˜?,ô?6?,ô? 9X?,ô?<¡?,ô   " !½4p<•çÉ<•çÉ=4p<•çÉ=€4l<•çÉ=ÀN³<•çÉ=ÀN³=K(R=ÀN³=¥®_>4n<•çÉ>4n=¥®_> A‰<•çÉ> A‰?,ô>@N«<•çÉ>@N«>™™x>@N«?,ô>`[À<•çÉ>`[À?,ô>€4n?í>€4n?,ô>:û?í>:û?$ðÇ>:û?,ô> A>É­!> A?,ô>°H<•çÉ>°H>É­!>°H?,ô>ÀN¥<•çÉ>ÀN¥>Ù³¯>ÀN¥?,ô>ÐU2<•çÉ>ÐU2?,ô>à[Ã<•çÉ>à[Ã=K(R>à[Ã=¥®_>ðbQ<•çÉ>ðbQ=¥®_?4o=K(R?7¶<•çÉ?:ý<•çÉ?:ý?,ô?>D?,ô?(DÒ?$ðÇ?8K^?,ô?@N¦?,ô) "$ '+& ()*)  !#%=@N§<•çÉ= Aˆ<•çÉ=à[Î<•çÉ>:û<•çÉ>0H<•çÉ>0H=K(R>0H=¥®_>PU9<•çÉ>PU9=¥®_>pbN<•çÉ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B?,ô>¨DÓ?í>¨DÓ?,ô>¸Ka<•çÉ>¸Ka?í>¸Ka?$ðÇ>¸Ka?,ô>ÈQì?,ô>ØX}<•çÉ>ØX}?,ô>è_ ?,ô>øe•<•çÉ>øe•?,ô?6<•çÉ?6=K(R? 9Z=åÈ—?<¡>S ž     4<•çÉ=4p<•çÉ=ÀN¥=K(R> A‰<•çÉ>@N«<•çÉ>@N«?,ô>`[À?,ô>€4n?,ô>:ÿ?í>:ÿ?$ðÇ>:ÿ?,ô> A‰<•çÉ> A‰=¥®_> A‰?,ô>°H=¥®_>°H?,ô>ÀN¥=åÈ—>à[Ã<•çÉ>ðbN<•çÉ?4o<•çÉ?7µ<•çÉ?:û<•çÉ?:û=K(R?:û=¥®_?>B<•çÉ?>B=¥®_? A‹<•çÉ?(DÒ<•çÉ?0H<•çÉ?8K^?,ô?@N¦?í?@N¦?$ðÇ?@N¦?,ô?HQí?,ô?PU2?,ô?XX{?,ô?`[Â?,ô    !$ "#<•çÉ=4p<•çÉ=ÀN¥=K(R> A‰<•çÉ>@N¥<•çÉ>@N¥?,ô>`[Ç?,ô>€4n?,ô>:û?,ô> A‰?í> A‰?$ðÇ> A‰?,ô>°H?,ô?4o<•çÉ?4o=åÈ—?7¶=åÈ—?>D?,ô? A‹?,ô?0H?$ðÇ?@N¥?,ô?HQí?,ô      =ÀN³>2þ‚=ÀN³>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>É­!> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>‰’ê> A‰>É­!> A‰>ùÀÊ>@N«=K(R>@N«>É­!>@N«>ùÀÊ>`[À<•çÉ>`[À>ùÀÊ>`[À?ê:>€4n? æó>€4n?ê:>:û?$ðÇ> A<•çÉ> A?$ðÇ>ÀN¥=K(R>ÀN¥?,ô>ÐU2=K(R>à[Ã=åÈ—>à[Ã>ñg>ðbQ=åÈ—>ðbQ>S ž>ðbQ?,ô?4o>S ž?4o>™™x?4o?$ðÇ?7¶>S ž?7¶>™™x?7¶>Ù³¯?7¶?ê:?7¶?í?7¶?$ðÇ?:ý>™™x?:ý>Ù³¯?:ý? æó?:ý?í?>D>Ù³¯?>D?㬠""((,,--++'' ##))**&   $$%%!!<€4n<•çÉ=@N§<•çÉ= AŒ<•çÉ=à[À<•çÉ>;<•çÉ>;=K(R>;=¥®_>0H<•çÉ>0H=¥®_>PU2<•çÉ>PU2?,ô>pbU<•çÉ>pbU>© >pbU?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B?í>˜>B?,ô>¨DÐ?í>¨DÐ?$ðÇ>¨DÐ?,ô>¸Ka?,ô>ÈQï?,ô>ØX}?,ô>øe˜>© ? 9Z>¹¦“?<¡>¹¦“?<¡?,ô??ç>¹¦“??ç>Ù³¯??ç?$ðÇ?$C.>Ù³¯?$C.?ã¬?$C.?ê:?$C.?$ðÇ?,Ft>Ù³¯?,Ft?ã¬?,Ft?ê:?,Ft?$ðÇ?4I¼?ã¬?4I¼?ê: &&((''## "%%$$!!    =ÀN³>2þ‚=ÀN³>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>É­!> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>‰’ê> A‰>É­!> A‰>ùÀÊ>@N«=K(R>@N«>2þ‚>@N«>É­!>@N«>ùÀÊ>`[À<•çÉ>`[À>ùÀÊ>`[À?ê:>€4n>S ž>€4n? æó>€4n?ê:>:û>S ž>:û?$ðÇ> A<•çÉ> A?$ðÇ>°H>2þ‚>ÀN¥½Úîé>ÀN¥=K(R>ÀN¥=åÈ—>ÀN¥?,ô>ÐU2¾ „>ÐU2½šÔµ>ÐU2½5tý>ÐU2=K(R>à[ýÚîé>à[ýšÔµ>à[Ã=åÈ—>à[Ã>ñg>ðbQ¾ „>ðbQ½Úîé>ðbQ½šÔµ>ðbQ=åÈ—>ðbQ>S ž>ðbQ?,ô?4o½5tý?4o¼U;?4o>S ž?4o>™™x?4o?$ðÇ?7¶>S ž?7¶>™™x?7¶>Ù³¯?7¶?ê:?7¶?í?7¶?$ðÇ?:ý>™™x?:ý>Ù³¯?:ý? æó?:ý?í?>D>Ù³¯?>D?㬠""**2288<<==;;77,, %//3399::6  &&++00445511, !!$$))- ##(''--.=@NŸ<•çÉ= Aˆ<•çÉ=à[À<•çÉ>:û<•çÉ>0H<•çÉ>0H=K(R>0H=¥®_>PU2<•çÉ>PU2=¥®_>pbN<•çÉ>pbN?,ô>ˆ7¸<•çÉ>ˆ7¸?,ô>˜>B<•çÉ>˜>B>¹¦“>˜>B?,ô>¨DÐ?í>¨DÐ?,ô>¸K^?í>¸K^?$ðÇ>¸K^?,ô>ÈQì?,ô>ØXy>¹¦“>ØXy?,ô>è_?,ô>øe•>© ?6>™™x? 9Z=K(R? 9Z>¹¦“?<¡<•çÉ?<¡=¥®_?<¡=åÈ—?<¡?,ô??ç=K(R??ç=¥®_??ç>É­!??ç>Ù³¯??ç?$ðÇ?$C.<•çÉ?$C.=K(R?$C.=¥®_?$C.>É­!?$C.>Ù³¯?$C.?ã¬?$C.?ê:?$C.?$ðÇ?,Fu=åÈ—?,Fu>ñg?,Fu>Ù³¯?,Fu?ã¬?,Fu?ê:?,Fu?$ðÇ?4Iº?ã¬?4Iº?ê: 33554400))-2211**# %%,,++$$""((.!!'&&../   =€4l<•çÉ=ÀN³=¥®_=ÀN³>ñg=ÀN³>S ž>4n=¥®_> A‰=K(R>@N«>ùÀÊ>@N«?ê:>`[À>Ù³¯>`[À>ùÀÊ>`[À?ã¬>`[À?ê:>€4n<•çÉ>€4n>Ù³¯>€4n>éº=>€4n?$ðÇ>:û>¹¦“>°H?,ô>ÀN¥<•çÉ>à[Ã>¹¦“>ðbQ=K(R>ðbQ>‰’ê>ðbQ>™™x>ðbQ?,ô?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?7¶>ñg?7¶>s¹?:ý?$ðÇ?>D?í? A‰>ùÀÊ? A‰? æó? A‰?í?(DÒ?,ô ##$$!!""    =€4p<•çÉ=€4p>ùÀÊ=ÀN§<•çÉ=ÀN§?ê:>4t<•çÉ>4t?$ðÇ>4t?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>`[À<•çÉ>`[À=¥®_>`[À?,ô>€4q<•çÉ>:ÿ<•çÉ>:ÿ?,ô> A<•çÉ>°H?,ô>ÀN¨?,ô>ÐU2?,ô?4o?,ô?7¶?,ô?:û?,ô?>D>ùÀÊ?>D?ê:?>D?í?>D?$ðÇ?>D?,ô? A‹?,ô      =€4}=åÈ—=€4}>S ž=ÀN¥=K(R=ÀN¥=¥®_=ÀN¥>S ž=ÀN¥>© =ÀN¥?,ô>4n=K(R>4n=¥®_>4n>S ž>4n>© >4n?,ô> A>© > A?,ô>@N¥<•çÉ>@N¥?í>@N¥?,ô>`[À?í>`[À?$ðÇ>`[À?,ô>€4n?,ô>:û?,ô> A‰<•çÉ> A‰?,ô>°H?,ô>ÐU2=K(R>ðbN=åÈ—?4o>S ž?7¶?,ô?:ý?,ô? A‹?$ðÇ?0H?,ô?8K_?,ô    =4p?,ô=€4z?,ô=ÀN¥?í=ÀN¥?,ô>4n<•çÉ>4n=¥®_>4n?$ðÇ> A‰=åÈ—> A‰?í> A‰?,ô>@N¥>ñg>@N¥?,ô>`[À?,ô>€4n?,ô>ÐU6?,ô>à[Ã?,ô?4n?$ðÇ?:ý?,ô?>B?,ô    =€4}?,ô=ÀN¥<•çÉ=ÀN¥=¥®_=ÀN¥?,ô>4n=åÈ—>4n?,ô> A>ñg> A?í> A?,ô>@N¥?ê:>@N¥?$ðÇ>`[À?,ô>€4n?,ô>:û?,ô> A‰?,ô>°H<•çÉ>°H=¥®_>ÀN¥=åÈ—>ÐU2>ñg>ÐU2?í>ÐU2?,ô>à[Ã?$ðÇ>ðbN?,ô?:ý?,ô?>B?,ô?(DÒ?$ðÇ?8K_?,ô?@N¦?,ô    ½4p<•çÉ<•çÉ=€4l=K(R>4n<•çÉ> A‰<•çÉ> A‰?,ô>@N«?,ô>`[À?,ô>€4n?í>€4n?,ô>:û?í>:û?$ðÇ>:û?,ô> A<•çÉ> A?,ô>°H<•çÉ>°H?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2<•çÉ>ÐU2=K(R>ÐU2=¥®_>à[Ã<•çÉ>à[Ã=¥®_>ðbQ<•çÉ?4o<•çÉ?7¶<•çÉ?7¶?,ô?:ý?,ô? A‰?$ðÇ?0H?,ô?8K^?,ô     =4p<•çÉ=4p?,ô=€4p<•çÉ=€4p?,ô=ÀN²<•çÉ=ÀN²?,ô>4n<•çÉ>4n?$ðÇ>4n?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?,ô>@N¥<•çÉ>@N¥=¥®_>@N¥?,ô>`[Ç<•çÉ>`[Ç>¹¦“>`[Ç?,ô>€4q<•çÉ>€4q>¹¦“>€4q?,ô>:û<•çÉ>:û>¹¦“>ðbQ?,ô?4o?,ô?:ý?$ðÇ? A‰?,ô?(DÒ?,ô     =4p<•çÉ=€4l<•çÉ=ÀN³<•çÉ> A‰>ùÀÊ>@N«?ê:>`[À?$ðÇ>`[À?,ô>€4n?,ô>:û?,ô>°H<•çÉ>°H?,ô>ÐU2<•çÉ>à[Ã<•çÉ>ðbQ<•çÉ>ðbQ=K(R?4o=åÈ—?7¶>S ž?>D?,ô? A‰?,ô?(DÒ?,ô     =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý=à[Î>ùÀÊ=à[Î? æó>;>éº=>;>ùÀÊ>;?ã¬>;? æó>;?ê:>;?í>0H>éº=>0H>ùÀÊ>0H?ã¬>0H? æó>0H?$ðÇ>PU9>ùÀÊ>PU9?ã¬>pbU?,ô     =€4}>2þ‚=€4}>s¹=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>s¹=ÀN¥>© >4n=K(R>4n=¥®_>4n>ñg>4n>s¹>4n>© > A=K(R> A>© > A>Ù³¯>@N¥<•çÉ>@N¥>É­!>@N¥>Ù³¯>€4n<•çÉ>€4n>éº=> A‰=K(R> A‰>éº=>°H=¥®_>ÀN¥>ñg>ÀN¥>Ù³¯>ÐU2=åÈ—>ÐU2>s¹>ÐU2>© >à[Ã=K(R>à[Ã=åÈ—>à[Ã>s¹>ðbN<•çÉ>ðbN>s¹>ðbN>éº=?4o>éº=?7¶<•çÉ?7¶>éº=?>B=¥®_? A‹>ñg ""$$%! ##    =à[Î>ñg=à[Î>‰’ê=à[Î?,ô>:û=¥®_>:û>ñg>:û>s¹>:û>© >:û>éº=>:û?,ô>0H=K(R>0H>© >0H>éº=>0H?,ô>PU2>É­!>PU2>éº=>PU2?í>PU2?,ô>pbU<•çÉ>pbU>Ù³¯>pbU?$ðÇ>pbU?,ô>ˆ7µ?,ô>˜>B<•çÉ>˜>B>éº=>¸Ka=¥®_>¸Ka>éº=>ÈQï=K(R>ÈQï=¥®_>ÈQï>ñg>ÈQï>Ù³¯>ØX}>ñg>ØX}>s¹>ØX}>© >ØX}>É­!>ØX}>Ù³¯>è_ >ñg>è_ >s¹>è_ >© >è_ >É­!>øe˜>s¹>øe˜>™™x ##''((&&""   $$%%!  =ÀN§>2þ‚=ÀN§>s¹>4t=¥®_>4t>ñg>4t>s¹>4t>© > A‰=K(R> A‰=¥®_> A‰>ñg> A‰>s¹> A‰>© >@N¥=K(R>@N¥>© >@N¥>É­!>@N¥>Ù³¯>`[À<•çÉ>`[À>É­!>:ÿ<•çÉ>:ÿ>éº=>ÀN¨=K(R>ÀN¨>éº=>ÐU2>™™x>ÐU2>¹¦“>à[Ã>ñg>à[Ã>© >à[Ã>¹¦“>à[Ã>Ù³¯>ðbQ>™™x>ðbQ>¹¦“   =€4}>2þ‚=€4}>s¹=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>s¹=ÀN¥>© >4n=K(R>4n=¥®_>4n>ñg>4n>s¹>4n>© > A=K(R> A>© > A>É­!> A>Ù³¯>@N¥<•çÉ>@N¥>É­!>€4n<•çÉ>€4n>éº=> A‰=K(R> A‰>éº=>°H=¥®_>ÀN¥>ñg>ÀN¥>Ù³¯>ÐU2=åÈ—>ÐU2>S ž>ÐU2>s¹>ÐU2>© >à[Ã=K(R>à[Ã=åÈ—>à[Ã>S ž>à[Ã>© >à[Ã?,ô>ðbN<•çÉ>ðbN>s¹>ðbN>© >ðbN?,ô?4o?,ô?7¶<•çÉ?7¶?í?7¶?,ô?:ý?$ðÇ?:ý?,ô?>B=¥®_?>B?,ô? A‹>ñg(!!&&++-*## ,,""   $)%'=ÀN§>2þ‚=ÀN§>s¹>4t=¥®_>4t>ñg>4t>2þ‚>4t>s¹>4t>© > A‰=K(R> A‰=¥®_> A‰>ñg> A‰>s¹> A‰>© >@N¥=K(R>@N¥>© >@N¥>É­!>@N¥>Ù³¯>`[À<•çÉ>`[À>É­!>€4q>S ž>:ÿ<•çÉ>:ÿ>éº=>°H>s¹>ÀN¨=K(R>ÀN¨>éº=>à[Ã=åÈ—>à[Ã>™™x>à[Ã>Ù³¯>ðbQ>¹¦“  ½@NŸ¾-‘¬½@NŸ½Úîé¼€4n¾MžÇ¼€4n¾-‘¬¼€4n¾ „<€4®¾-‘¬<€4®½Úîé=@N§¾MžÇ=à[ξ-‘¬=à[ξ „>:û½šÔµ>:û>éº=>0H½Úîé>0H½šÔµ>0H<•çÉ>PU2½5tý>PU2<•çÉ>pbU=K(R>pbU>™™x>ˆ7µ>™™x>ˆ7µ>Ù³¯>˜>B>™™x>˜>B>éº=>˜>B?ã¬>¨DÓ>éº=>¨DÓ? æó>¨DÓ?ê:>¸Ka? æó>ÈQï?í>ÈQï?$ðÇ>è_ ?,ô>øe˜>éº=>øe˜?ê:>øe˜?$ðÇ?6?í?6?$ðÇ?6?,ô? 9X?ê:? 9X?$ðÇ"##!! %%&&$$    =€4l¾ „=€4l½šÔµ=ÀN³¾-‘¬=ÀN³¾ „=ÀN³½Úîé>4n¾ „>4n½šÔµ>4n>2þ‚>4n>s¹> A‰¾MžÇ> A‰=¥®_> A‰>ñg> A‰>s¹> A‰>© >@N«=K(R>@N«=¥®_>@N«>ñg>@N«>s¹>@N«>© >`[À=K(R>`[À>© >`[À>É­!>`[À>Ù³¯>€4n¾MžÇ>€4n<•çÉ>€4n>É­!> A¾-‘¬> A<•çÉ> A>éº=>°H¾-‘¬>ÀN¥½Úîé>ÀN¥½šÔµ>ÀN¥=K(R>ÀN¥>éº=>ÐU2½Úîé>ÐU2<•çÉ>ÐU2=¥®_>à[Ã<•çÉ>à[Ã>ñg>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>s¹>ðbQ>© ?7¶>éº=?:ý>éº=?>D>éº=+##,%%+--(("" )**''!!   $$&&) =@NŸ<•çÉ= A˜<•çÉ=à[À<•çÉ>:û?,ô>0H>s¹>0H?,ô>PU2?,ô>pbN>¹¦“>pbN?í>pbN?,ô>ˆ7µ?$ðÇ>ˆ7µ?,ô>˜>B>Ù³¯>˜>B?,ô>¸K^>éº=>ØX}=åÈ—>ØX}>S ž>ØX}>éº=>è_=K(R>è_=åÈ—>è_>2þ‚>øe•<•çÉ>øe•>™™x>øe•>¹¦“>øe•>Ù³¯?6>‰’ê?6>¹¦“? 9Z<•çÉ??æ=¥®_?$C.>ñg     =4p>© =€4z>É­!>4n>éº=> A‰=åÈ—> A‰>S ž>@N¥=K(R>@N¥=åÈ—>@N¥>2þ‚>@N¥>éº=>`[À<•çÉ>`[À>™™x>`[À>¹¦“>`[À>Ù³¯>€4n>‰’ê>€4n>¹¦“>€4n?í>€4n?$ðÇ>€4n?,ô>:û<•çÉ>:û?í>:û?,ô> A?í> A?$ðÇ> A?,ô>°H=¥®_>ÀN¥>ñg     ¼€4n¾-‘¬¼€4n½Úîé<€4®¾MžÇ<€4®¾-‘¬<€4®¾ „=@N§¾-‘¬=@N§½Úîé= AŒ¾MžÇ=à[Î>© >:û¾-‘¬>:û¾ „>:û>É­!>0H½Úîé>0H½šÔµ>PU2½Úîé>PU2½5tý>PU2<•çÉ>PU2>éº=>pbU½5tý>pbU=K(R>ˆ7µ=K(R>ˆ7µ>s¹>ˆ7µ>éº=>˜>B>‰’ê>˜>B>¹¦“>˜>B>Ù³¯>¨DÓ>‰’ê>¨DÓ>¹¦“>¸Ka?í>¸Ka?$ðÇ>¸Ka?,ô>ÈQï?í>ÈQï?,ô>ØX}?í>ØX}?$ðÇ>ØX}?,ô!!## "    = Aˆ<•çÉ=à[Î<•çÉ>:û<•çÉ>0H?,ô>PU9>‰’ê>PU9?,ô>pbN?,ô>ˆ7µ>‰’ê>ˆ7µ?í>ˆ7µ?,ô>˜>B>s¹>˜>B?$ðÇ>˜>B?,ô>¨DÓ>S ž>¨DÓ>s¹>¨DÓ>™™x>¨DÓ?,ô>¸Ka=K(R>¸Ka>S ž>ÈQì<•çÉ>ÈQì=¥®_>ØX}=K(R>ØX}=¥®_>è_ <•çÉ>è_ =K(R>è_ >Ù³¯?6=K(R?6>éº=? 9Z>¹¦“? 9Z>Ù³¯?<¡>ñg?<¡>É­!?<¡>Ù³¯?<¡>éº=??ç>¹¦“??ç>Ù³¯   ""##!!   = A‹=åÈ—= A‹>S ž=à[Î=K(R=à[Î=åÈ—=à[Î>S ž=à[Î>© =à[Î?,ô>;<•çÉ>;>s¹>;>© >;?,ô>0H?,ô>PU9<•çÉ>PU9?í>PU9?,ô>pbU?$ðÇ>pbU?,ô>ˆ7µ=¥®_>ˆ7µ?,ô>˜>B>ñg    =4p>© =€4p>É­!>4{<•çÉ>4{>éº=> A‰<•çÉ>@N¥<•çÉ>@N¥>s¹>@N¥>éº=>`[À>‰’ê>`[À>¹¦“>`[À>Ù³¯>€4n>‰’ê>€4n>¹¦“> A>¹¦“>ÀN¥>Ù³¯>à[À>éº=>ðbN<•çÉ?4n<•çÉ?4n>éº=?7¶<•çÉ?7¶>s¹?:ý>‰’ê?:ý>¹¦“?:ý>Ù³¯?>D>‰’ê?>D>¹¦“?(DÒ>¹¦“?8K_>Ù³¯?HQí>éº=?XXy=åÈ—?XXy>S ž?XXy>éº=?`[Â=K(R?`[Â=åÈ—?`[Â>2þ‚?h_ <•çÉ?h_ >™™x?h_ >¹¦“?h_ >Ù³¯?pbN>‰’ê?pbN>¹¦“?xe–<•çÉ?„6=¥®_?ˆ7µ>ñg    &&((''!&$$"" % ##))**+=4p>© =€4p>É­!>4t<•çÉ>4t>éº=> A‰<•çÉ>@N¥<•çÉ>@N¥>s¹>@N¥>éº=>`[Ç>‰’ê>`[Ç>¹¦“>`[Ç>Ù³¯>€4n>‰’ê>€4n>¹¦“> A‰>¹¦“>ÀN¥>Ù³¯>à[Ã>éº=?4o=åÈ—?4o>S ž?4o>éº=?7¶=K(R?7¶=åÈ—?7¶>2þ‚?:ý<•çÉ?:ý>™™x?:ý>¹¦“?:ý>Ù³¯?>D>‰’ê?>D>¹¦“? A‹<•çÉ?0H=¥®_?8K_>ñg    =ÀN¥>2þ‚=ÀN¥>s¹>4n=¥®_>4n>ñg>4n>s¹>4n>© > A=K(R> A=¥®_> A>ñg> A>s¹> A>© >@N¥=K(R>@N¥>© >@N¥>É­!>@N¥>Ù³¯>`[À>É­!>€4n<•çÉ>:û>éº=>°H<•çÉ>ÀN¥>éº=>ÐU2=¥®_>à[Ã=K(R>à[Ã=¥®_>à[Ã>ñg>à[Ã>Ù³¯>ðbN>ñg>ðbN>s¹>ðbN>© >ðbN>É­!>ðbN>Ù³¯?4o>ñg?4o>s¹?4o>© ?4o>É­!?7¶>s¹?7¶>™™x""##!!    =4h¾MžÇ=€4l¾MžÇ=ÀN¥¾MžÇ=ÀN¥>© >4n¾MžÇ>4n>É­!> A¾MžÇ> A¾-‘¬> A¾ „>@N¥¾MžÇ>@N¥¾ „>@N¥>éº=>`[À¾MžÇ>€4q¾MžÇ>€4q>ñg>€4q>s¹>€4q>éº=>:û¾MžÇ>:û>ñg>:û>‰’ê>:û>¹¦“>:û>Ù³¯> A‰>ñg> A‰>s¹> A‰>‰’ê> A‰>¹¦“>°H=K(R>°H>© >ÀN¥>É­!>ÐU2<•çÉ>ÐU2>Ù³¯>ðbN<•çÉ>ðbN>éº=?7µ=¥®_?7µ>éº=?:û=K(R?:û=¥®_?:û>ñg?:û>Ù³¯?>D>ñg?>D>s¹?>D>© ?>D>É­!?>D>Ù³¯? A‹>ñg? A‹>s¹? A‹>© ? A‹>É­!?(DÒ>s¹?(DÒ>™™x   ""++//1100,,##*..--''$"&&))((%%!!  =ÀN³>2þ‚=ÀN³>s¹>4n=¥®_>4n>ñg>4n>s¹>4n>© > A‰=K(R> A‰=¥®_> A‰>ñg> A‰>s¹> A‰>© >@N«=K(R>@N«>© >@N«>É­!>@N«>Ù³¯>`[À¾MžÇ>`[À<•çÉ>`[À>É­!>€4n¾MžÇ>:û¾MžÇ>:û<•çÉ>:û>éº=> A¾MžÇ>°H¾MžÇ>°H¾-‘¬>°H¾ „>°H=K(R>°H>éº=>ÀN¥¾MžÇ>ÀN¥¾ „>ÀN¥=¥®_>ÐU2¾MžÇ>ÐU2>ñg>ÐU2>Ù³¯>à[þMžÇ>à[Ã>s¹>à[Ã>© >ðbQ¾MžÇ?4o>éº=?7¶>éº=?:ý>éº=&'&((#$$!! #   %"=4‘>© =€4p>É­!>4t<•çÉ>4t>éº=> A‰<•çÉ>@N¥<•çÉ>@N¥>s¹>@N¥>éº=>`[À>s¹>`[À>¹¦“>`[À>Ù³¯>€4q>s¹>€4q>¹¦“> A>¹¦“>ÀN¨>Ù³¯>à[Ã>éº=>ðbQ>¹¦“>ðbQ>Ù³¯?4o>É­!?4o>Ù³¯?4o>éº=?7¶>¹¦“?7¶>Ù³¯    =€4p=¥®_=€4p>ñg=ÀN²=K(R=ÀN²=¥®_=ÀN²=åÈ—>4n=¥®_>4n>ñg>4n>© >4n>É­!> A‰>‰’ê> A‰>™™x> A‰>© > A‰>Ù³¯>@N¥<•çÉ>`[Ç>s¹>`[Ç>‰’ê>`[Ç>™™x>€4q>éº=>:û<•çÉ> A>S ž> A>s¹> A>‰’ê>°H>éº=>ÀN¥=K(R>ÀN¥>2þ‚>ÀN¥>S ž>ÀN¥>s¹>ÐU2=åÈ—>ÐU2>2þ‚>ÐU2>© >ÐU2>É­!>à[Ã>¹¦“>à[Ã>É­!>à[Ã>Ù³¯>ðbQ>© >ðbQ>É­! ""##!!      =€4l>éº=>4n=åÈ—>4n>S ž> A‰=K(R> A‰=åÈ—> A‰>S ž> A‰>© >@N¥<•çÉ>@N¥>s¹>@N¥>© >€4n<•çÉ>€4n?,ô>:û?,ô> A‰=¥®_> A‰?,ô>°H>ñg>ÀN¨>éº=    =4p>© =€4p>É­!>4t>éº=> A‰=åÈ—> A‰>S ž>@N¥=K(R>@N¥=åÈ—>@N¥>2þ‚>@N¥>éº=>`[Ç>™™x>`[Ç>¹¦“>`[Ç>Ù³¯>€4n<•çÉ>€4n>‰’ê>€4n>¹¦“> A‰<•çÉ>ÀN¥=K(R>à[Ã=åÈ—?4o=åÈ—?4o>S ž?7¶=K(R?7¶=åÈ—?7¶>S ž?:ý<•çÉ?:ý>s¹?:ý>éº=?>D>éº=? A‹<•çÉ? A‹>éº=?0H=¥®_?8K_>ñg     =€4l>© =ÀN³>É­!> A‰>éº=>@N«=åÈ—>@N«>S ž>`[À=K(R>`[À=åÈ—>`[À>2þ‚>`[À>éº=>€4n>™™x>€4n>¹¦“>€4n>Ù³¯>:û<•çÉ>:û>‰’ê>:û>¹¦“>°H<•çÉ>ÐU2=K(R>ðbQ=åÈ—?7¶>S ž?7¶>Ù³¯?7¶>éº=?:ý>© ?:ý>¹¦“?:ý>éº=     =€4>© =ÀN§>É­!> A‰>éº=>@N¥=åÈ—>@N¥>S ž>`[À=K(R>`[À=åÈ—>`[À>2þ‚>`[À>éº=>€4q>™™x>€4q>¹¦“>€4q>Ù³¯>:û<•çÉ>:û>‰’ê>:û>¹¦“>°H<•çÉ>ÐU2=K(R>ðbQ=åÈ—?4o=åÈ—?4o>S ž?7¶=K(R?7¶=åÈ—?7¶>S ž?:ý>s¹?:ý>éº=?>B<•çÉ?>B>éº=? A‰>éº=?(DÒ<•çÉ?8K_=K(R?HQì=åÈ—?XX{>S ž?XX{>Ù³¯?XX{>éº=?`[À>© ?`[À>¹¦“?`[À>éº=     ""$$!! #=@N§=K(R=@N§=åÈ—= Aˆ<•çÉ= Aˆ=K(R= Aˆ=¥®_=à[Î=K(R=à[Î=åÈ—=à[Î>© >:û<•çÉ>0H>Ù³¯>PU9=K(R>pbN>éº=>ˆ7µ=åÈ—>˜>B=åÈ—>˜>B>2þ‚>˜>B>éº=>¨DÓ=K(R>¨DÓ=¥®_>¨DÓ>2þ‚>¨DÓ>™™x>¨DÓ>Ù³¯>¸Ka=K(R>¸Ka>2þ‚>¸Ka>™™x>¸Ka>É­!>¸Ka>Ù³¯>ÈQì<•çÉ>ÈQì>™™x>ÈQì>¹¦“>ØX}>¹¦“>è_ <•çÉ>øe•>Ù³¯?6=K(R? 9Z>éº=?<¡>ñg?<¡>¹¦“?<¡>Ù³¯??ç>É­!??ç>Ù³¯??ç>éº=?$C->¹¦“?$C->Ù³¯  %&&$$##(())''!!  "=@N§>© = Aˆ>É­!=à[ξ „=à[νšÔµ>:û¾-‘¬>:û¾ „>:û½Úîé>:û>éº=>0H¾ „>0H½šÔµ>0H=åÈ—>0H>S ž>PU9¾MžÇ>PU9=K(R>PU9=åÈ—>PU9>2þ‚>PU9>éº=>pbN>™™x>pbN>¹¦“>pbN>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>‰’ê>ˆ7µ>¹¦“>˜>B¾MžÇ>¨DÓ<•çÉ>¸Ka¾-‘¬>ÈQì¾-‘¬>ÈQì=K(R>ØX}½Úîé>ØX}½šÔµ>è_ ½Úîé>è_ <•çÉ>è_ =åÈ—>øe•<•çÉ?6<•çÉ?6>s¹?<¡>éº=??ç>éº=?$C->éº=   #$%!!$&&""  =ÀN¥<•çÉ>4n=¥®_>4n>™™x> A>¹¦“> A>É­!>@N¥=¥®_>@N¥>ñg>@N¥>É­!>`[À>É­!>`[À>Ù³¯>`[À>éº=> A‰<•çÉ> A‰=K(R> A‰>Ù³¯> A‰>éº=>ÐU2<•çÉ>ÐU2=K(R>ÐU2=¥®_>à[Ã=¥®_>à[Ã>© >à[Ã>É­!>ðbN=¥®_>ðbN=åÈ—?4o>2þ‚?4o>É­!?7¶>éº=    >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =à[À?ã¬=à[À?ê:>;>éº=>;?$ðÇ>PU9>Ù³¯>PU9?,ô>ˆ7µ>Ù³¯>ˆ7µ?,ô>¨DÓ>éº=>¨DÓ?$ðÇ>¸Ka?ã¬>¸Ka?ê:   dx-4.4.4/fonts/Makefile.am0000644000076500000240000000061207703651071012247 00000000000000## Process this file with automake to produce Makefile.in fontdir = $(prefix)/dx/fonts font_DATA = \ README area.dx cyril_d.dx \ fixed.dx gothiceng_t.dx gothicger_t.dx gothicit_t.dx greek_d.dx \ greek_s.dx italic_d.dx italic_t.dx pitman.dx \ roman_d.dx roman_dser.dx roman_ext.dx roman_s.dx roman_sfix.dx \ roman_tser.dx script_d.dx script_s.dx \ variable.dx EXTRA_DIST = $(font_DATA) dx-4.4.4/fonts/Makefile.in0000644000076500000240000002571010472426233012263 00000000000000# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = fonts DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/include/dxconfig.h CONFIG_CLEAN_FILES = depcomp = am__depfiles_maybe = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(fontdir)" fontDATA_INSTALL = $(INSTALL_DATA) DATA = $(font_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ ANYDX = @ANYDX@ AR = @AR@ ARCH = @ARCH@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILDBASE = @BUILDBASE@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DOT_EXE_EXT = @DOT_EXE_EXT@ DXABI = @DXABI@ DXEXEC_EXP = @DXEXEC_EXP@ DXEXEC_IMP = @DXEXEC_IMP@ DXUI_ALDFLAGS = @DXUI_ALDFLAGS@ DX_GL_LINK_LIBS = @DX_GL_LINK_LIBS@ DX_JAVA_CLASSPATH = @DX_JAVA_CLASSPATH@ DX_OUTBOARD_LIBS = @DX_OUTBOARD_LIBS@ DX_RTL_ALDFLAGS = @DX_RTL_ALDFLAGS@ DX_RTL_CFLAGS = @DX_RTL_CFLAGS@ DX_RTL_DXENTRY = @DX_RTL_DXENTRY@ DX_RTL_IMPORTS = @DX_RTL_IMPORTS@ DX_RTL_SYSLIBS = @DX_RTL_SYSLIBS@ DX_X_LINK_LIBS = @DX_X_LINK_LIBS@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FMT_LIBS = @FMT_LIBS@ HAVE_MC = @HAVE_MC@ INSTALL_BIN_PROGRAM = @INSTALL_BIN_PROGRAM@ INSTALL_BIN_SCRIPT = @INSTALL_BIN_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ JAR = @JAR@ JAVA = @JAVA@ JAVABRANCH = @JAVABRANCH@ JAVAC = @JAVAC@ JAVAH = @JAVAH@ JINC = @JINC@ JNI_CFLAGS = @JNI_CFLAGS@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIB_LF = @LIB_LF@ LN_S = @LN_S@ LOCALMAKE = @LOCALMAKE@ LTLIBOBJS = @LTLIBOBJS@ MAJOR_VERSION = @MAJOR_VERSION@ MAKEINFO = @MAKEINFO@ MICRO_VERSION = @MICRO_VERSION@ MINOR_VERSION = @MINOR_VERSION@ MKDEP = @MKDEP@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHARED_LINK = @SHARED_LINK@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ VERSION_STRING = @VERSION_STRING@ WITH_BUILDLIBDX_FALSE = @WITH_BUILDLIBDX_FALSE@ WITH_BUILDLIBDX_TRUE = @WITH_BUILDLIBDX_TRUE@ WITH_INSTALLHTML_FALSE = @WITH_INSTALLHTML_FALSE@ WITH_INSTALLHTML_TRUE = @WITH_INSTALLHTML_TRUE@ YACC = @YACC@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ bsh_path = @bsh_path@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ rsh_path = @rsh_path@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ yakker = @yakker@ fontdir = $(prefix)/dx/fonts font_DATA = \ README area.dx cyril_d.dx \ fixed.dx gothiceng_t.dx gothicger_t.dx gothicit_t.dx greek_d.dx \ greek_s.dx italic_d.dx italic_t.dx pitman.dx \ roman_d.dx roman_dser.dx roman_ext.dx roman_s.dx roman_sfix.dx \ roman_tser.dx script_d.dx script_s.dx \ variable.dx EXTRA_DIST = $(font_DATA) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu --ignore-deps fonts/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu --ignore-deps fonts/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: install-fontDATA: $(font_DATA) @$(NORMAL_INSTALL) test -z "$(fontdir)" || $(mkdir_p) "$(DESTDIR)$(fontdir)" @list='$(font_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(fontDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(fontdir)/$$f'"; \ $(fontDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(fontdir)/$$f"; \ done uninstall-fontDATA: @$(NORMAL_UNINSTALL) @list='$(font_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(fontdir)/$$f'"; \ rm -f "$(DESTDIR)$(fontdir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(fontdir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-fontDATA install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-fontDATA uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-exec install-exec-am \ install-fontDATA install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-fontDATA uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: dx-4.4.4/fonts/pitman.dx0000644000076500000240000211662007120231225012035 00000000000000object 1 class array type float rank 1 shape 3 items 4 msb ieee data 0 attribute "dep" string "positions" # object 2 class array type int rank 1 shape 3 items 1 msb ieee data 48 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Empty" class field component "positions" value 1 component "connections" value 2 attribute "name" string "Empty" attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 3 class array type float rank 1 shape 3 items 24 msb ieee data 60 attribute "dep" string "positions" # object 4 class array type int rank 1 shape 3 items 22 msb ieee data 348 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ApostropheCurlyOpen" class field component "positions" value 3 component "connections" value 4 attribute "name" string "ApostropheCurlyOpen" attribute "char width" number 0.225000 attribute "series position" number 1.000000 # object 5 class array type float rank 1 shape 3 items 24 msb ieee data 612 attribute "dep" string "positions" # object 6 class array type int rank 1 shape 3 items 22 msb ieee data 900 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ApostropheCurlyClose" class field component "positions" value 5 component "connections" value 6 attribute "name" string "ApostropheCurlyClose" attribute "char width" number 0.225000 attribute "series position" number 2.000000 # object 7 class array type float rank 1 shape 3 items 40 msb ieee data 1164 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 3 items 38 msb ieee data 1644 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Bullet" class field component "positions" value 7 component "connections" value 8 attribute "name" string "Bullet" attribute "char width" number 0.375000 attribute "series position" number 3.000000 # object 9 class array type float rank 1 shape 3 items 168 msb ieee data 2100 attribute "dep" string "positions" # object 10 class array type int rank 1 shape 3 items 164 msb ieee data 4116 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Cent" class field component "positions" value 9 component "connections" value 10 attribute "name" string "Cent" attribute "char width" number 0.537500 attribute "series position" number 4.000000 # object 11 class array type float rank 1 shape 3 items 235 msb ieee data 6084 attribute "dep" string "positions" # object 12 class array type int rank 1 shape 3 items 233 msb ieee data 8904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Copyright" class field component "positions" value 11 component "connections" value 12 attribute "name" string "Copyright" attribute "char width" number 0.812500 attribute "series position" number 5.000000 # object 13 class array type float rank 1 shape 3 items 12 msb ieee data 11700 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 3 items 10 msb ieee data 11844 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CrossProduct" class field component "positions" value 13 component "connections" value 14 attribute "name" string "CrossProduct" attribute "char width" number 0.612500 attribute "series position" number 6.000000 # object 15 class array type float rank 1 shape 3 items 80 msb ieee data 11964 attribute "dep" string "positions" # object 16 class array type int rank 1 shape 3 items 80 msb ieee data 12924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Degree" class field component "positions" value 15 component "connections" value 16 attribute "name" string "Degree" attribute "char width" number 0.375000 attribute "series position" number 7.000000 # object 17 class array type float rank 1 shape 3 items 4 msb ieee data 13884 attribute "dep" string "positions" # object 18 class array type int rank 1 shape 3 items 2 msb ieee data 13932 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "EmDash" class field component "positions" value 17 component "connections" value 18 attribute "name" string "EmDash" attribute "char width" number 0.987500 attribute "series position" number 8.000000 # object 19 class array type float rank 1 shape 3 items 4 msb ieee data 13956 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 3 items 2 msb ieee data 14004 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "EnDash" class field component "positions" value 19 component "connections" value 20 attribute "name" string "EnDash" attribute "char width" number 0.812500 attribute "series position" number 9.000000 # object 21 class array type float rank 1 shape 3 items 52 msb ieee data 14028 attribute "dep" string "positions" # object 22 class array type int rank 1 shape 3 items 48 msb ieee data 14652 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Exclamacion" class field component "positions" value 21 component "connections" value 22 attribute "name" string "Exclamacion" attribute "char width" number 0.225000 attribute "series position" number 10.000000 # object 23 class array type float rank 1 shape 3 items 74 msb ieee data 15228 attribute "dep" string "positions" # object 24 class array type int rank 1 shape 3 items 72 msb ieee data 16116 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Franc" class field component "positions" value 23 component "connections" value 24 attribute "name" string "Franc" attribute "char width" number 0.675000 attribute "series position" number 11.000000 # object 25 class array type float rank 1 shape 3 items 30 msb ieee data 16980 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 3 items 26 msb ieee data 17340 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetOpen" class field component "positions" value 25 component "connections" value 26 attribute "name" string "GuillemetOpen" attribute "char width" number 0.500000 attribute "series position" number 12.000000 # object 27 class array type float rank 1 shape 3 items 30 msb ieee data 17652 attribute "dep" string "positions" # object 28 class array type int rank 1 shape 3 items 26 msb ieee data 18012 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetClose" class field component "positions" value 27 component "connections" value 28 attribute "name" string "GuillemetClose" attribute "char width" number 0.500000 attribute "series position" number 13.000000 # object 29 class array type float rank 1 shape 3 items 15 msb ieee data 18324 attribute "dep" string "positions" # object 30 class array type int rank 1 shape 3 items 13 msb ieee data 18504 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetSingleOpen" class field component "positions" value 29 component "connections" value 30 attribute "name" string "GuillemetSingleOpen" attribute "char width" number 0.275000 attribute "series position" number 14.000000 # object 31 class array type float rank 1 shape 3 items 15 msb ieee data 18660 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 3 items 13 msb ieee data 18840 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "GuillemetSingleClose" class field component "positions" value 31 component "connections" value 32 attribute "name" string "GuillemetSingleClose" attribute "char width" number 0.275000 attribute "series position" number 15.000000 # object 33 class array type float rank 1 shape 3 items 114 msb ieee data 18996 attribute "dep" string "positions" # object 34 class array type int rank 1 shape 3 items 116 msb ieee data 20364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Infinity" class field component "positions" value 33 component "connections" value 34 attribute "name" string "Infinity" attribute "char width" number 0.900000 attribute "series position" number 16.000000 # object 35 class array type float rank 1 shape 3 items 77 msb ieee data 21756 attribute "dep" string "positions" # object 36 class array type int rank 1 shape 3 items 75 msb ieee data 22680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Integral" class field component "positions" value 35 component "connections" value 36 attribute "name" string "Integral" attribute "char width" number 0.437500 attribute "series position" number 17.000000 # object 37 class array type float rank 1 shape 3 items 114 msb ieee data 23580 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 3 items 110 msb ieee data 24948 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Interrogacion" class field component "positions" value 37 component "connections" value 38 attribute "name" string "Interrogacion" attribute "char width" number 0.575000 attribute "series position" number 18.000000 # object 39 class array type float rank 1 shape 3 items 4 msb ieee data 26268 attribute "dep" string "positions" # object 40 class array type int rank 1 shape 3 items 2 msb ieee data 26316 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Minus" class field component "positions" value 39 component "connections" value 40 attribute "name" string "Minus" attribute "char width" number 0.612500 attribute "series position" number 19.000000 # object 41 class array type float rank 1 shape 3 items 12 msb ieee data 26340 attribute "dep" string "positions" # object 42 class array type int rank 1 shape 3 items 6 msb ieee data 26484 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "NotEqual" class field component "positions" value 41 component "connections" value 42 attribute "name" string "NotEqual" attribute "char width" number 0.612500 attribute "series position" number 20.000000 # object 43 class array type float rank 1 shape 3 items 16 msb ieee data 26556 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 3 items 12 msb ieee data 26748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "PlusMinus" class field component "positions" value 43 component "connections" value 44 attribute "name" string "PlusMinus" attribute "char width" number 0.612500 attribute "series position" number 21.000000 # object 45 class array type float rank 1 shape 3 items 149 msb ieee data 26892 attribute "dep" string "positions" # object 46 class array type int rank 1 shape 3 items 149 msb ieee data 28680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pound" class field component "positions" value 45 component "connections" value 46 attribute "name" string "Pound" attribute "char width" number 0.850000 attribute "series position" number 22.000000 # object 47 class array type float rank 1 shape 3 items 48 msb ieee data 30468 attribute "dep" string "positions" # object 48 class array type int rank 1 shape 3 items 44 msb ieee data 31044 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuoteOpen" class field component "positions" value 47 component "connections" value 48 attribute "name" string "QuoteOpen" attribute "char width" number 0.400000 attribute "series position" number 23.000000 # object 49 class array type float rank 1 shape 3 items 48 msb ieee data 31572 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 3 items 44 msb ieee data 32148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuoteClose" class field component "positions" value 49 component "connections" value 50 attribute "name" string "QuoteClose" attribute "char width" number 0.400000 attribute "series position" number 24.000000 # object 51 class array type float rank 1 shape 3 items 273 msb ieee data 32676 attribute "dep" string "positions" # object 52 class array type int rank 1 shape 3 items 273 msb ieee data 35952 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Registered" class field component "positions" value 51 component "connections" value 52 attribute "name" string "Registered" attribute "char width" number 0.812500 attribute "series position" number 25.000000 # object 53 class array type float rank 1 shape 3 items 84 msb ieee data 39228 attribute "dep" string "positions" # object 54 class array type int rank 1 shape 3 items 80 msb ieee data 40236 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Similar" class field component "positions" value 53 component "connections" value 54 attribute "name" string "Similar" attribute "char width" number 0.612500 attribute "series position" number 26.000000 # object 55 class array type float rank 1 shape 3 items 229 msb ieee data 41196 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 3 items 225 msb ieee data 43944 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Trademark" class field component "positions" value 55 component "connections" value 56 attribute "name" string "Trademark" attribute "char width" number 0.650000 attribute "series position" number 27.000000 # object 57 class array type float rank 1 shape 3 items 100 msb ieee data 46644 attribute "dep" string "positions" # object 58 class array type int rank 1 shape 3 items 98 msb ieee data 47844 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Yen" class field component "positions" value 57 component "connections" value 58 attribute "name" string "Yen" attribute "char width" number 0.900000 attribute "series position" number 28.000000 # object 59 class array type float rank 1 shape 3 items 4 msb ieee data 49020 attribute "dep" string "positions" # object 60 class array type int rank 1 shape 3 items 1 msb ieee data 49068 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Space" class field component "positions" value 59 component "connections" value 60 attribute "name" string "Space" attribute "char width" number 0.312500 attribute "series position" number 32.000000 # object 61 class array type float rank 1 shape 3 items 52 msb ieee data 49080 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 3 items 48 msb ieee data 49704 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Exclamation" class field component "positions" value 61 component "connections" value 62 attribute "name" string "Exclamation" attribute "char width" number 0.225000 attribute "series position" number 33.000000 # object 63 class array type float rank 1 shape 3 items 20 msb ieee data 50280 attribute "dep" string "positions" # object 64 class array type int rank 1 shape 3 items 16 msb ieee data 50520 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "InchMark" class field component "positions" value 63 component "connections" value 64 attribute "name" string "InchMark" attribute "char width" number 0.350000 attribute "series position" number 34.000000 # object 65 class array type float rank 1 shape 3 items 32 msb ieee data 50712 attribute "dep" string "positions" # object 66 class array type int rank 1 shape 3 items 32 msb ieee data 51096 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "HashMark" class field component "positions" value 65 component "connections" value 66 attribute "name" string "HashMark" attribute "char width" number 0.512500 attribute "series position" number 35.000000 # object 67 class array type float rank 1 shape 3 items 123 msb ieee data 51480 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 3 items 125 msb ieee data 52956 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Dollar" class field component "positions" value 67 component "connections" value 68 attribute "name" string "Dollar" attribute "char width" number 0.512500 attribute "series position" number 36.000000 # object 69 class array type float rank 1 shape 3 items 106 msb ieee data 54456 attribute "dep" string "positions" # object 70 class array type int rank 1 shape 3 items 104 msb ieee data 55728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Percent" class field component "positions" value 69 component "connections" value 70 attribute "name" string "Percent" attribute "char width" number 0.937500 attribute "series position" number 37.000000 # object 71 class array type float rank 1 shape 3 items 130 msb ieee data 56976 attribute "dep" string "positions" # object 72 class array type int rank 1 shape 3 items 132 msb ieee data 58536 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Ampersand" class field component "positions" value 71 component "connections" value 72 attribute "name" string "Ampersand" attribute "char width" number 0.850000 attribute "series position" number 38.000000 # object 73 class array type float rank 1 shape 3 items 10 msb ieee data 60120 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 3 items 8 msb ieee data 60240 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "FootMark" class field component "positions" value 73 component "connections" value 74 attribute "name" string "FootMark" attribute "char width" number 0.212500 attribute "series position" number 39.000000 # object 75 class array type float rank 1 shape 3 items 38 msb ieee data 60336 attribute "dep" string "positions" # object 76 class array type int rank 1 shape 3 items 36 msb ieee data 60792 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ParenthesisOpen" class field component "positions" value 75 component "connections" value 76 attribute "name" string "ParenthesisOpen" attribute "char width" number 0.387500 attribute "series position" number 40.000000 # object 77 class array type float rank 1 shape 3 items 38 msb ieee data 61224 attribute "dep" string "positions" # object 78 class array type int rank 1 shape 3 items 36 msb ieee data 61680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ParenthesisClose" class field component "positions" value 77 component "connections" value 78 attribute "name" string "ParenthesisClose" attribute "char width" number 0.387500 attribute "series position" number 41.000000 # object 79 class array type float rank 1 shape 3 items 53 msb ieee data 62112 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 3 items 51 msb ieee data 62748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Asterisk" class field component "positions" value 79 component "connections" value 80 attribute "name" string "Asterisk" attribute "char width" number 0.300000 attribute "series position" number 42.000000 # object 81 class array type float rank 1 shape 3 items 12 msb ieee data 63360 attribute "dep" string "positions" # object 82 class array type int rank 1 shape 3 items 10 msb ieee data 63504 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Plus" class field component "positions" value 81 component "connections" value 82 attribute "name" string "Plus" attribute "char width" number 0.612500 attribute "series position" number 43.000000 # object 83 class array type float rank 1 shape 3 items 24 msb ieee data 63624 attribute "dep" string "positions" # object 84 class array type int rank 1 shape 3 items 22 msb ieee data 63912 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Comma" class field component "positions" value 83 component "connections" value 84 attribute "name" string "Comma" attribute "char width" number 0.312500 attribute "series position" number 44.000000 # object 85 class array type float rank 1 shape 3 items 4 msb ieee data 64176 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 3 items 2 msb ieee data 64224 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Hyphen" class field component "positions" value 85 component "connections" value 86 attribute "name" string "Hyphen" attribute "char width" number 0.400000 attribute "series position" number 45.000000 # object 87 class array type float rank 1 shape 3 items 40 msb ieee data 64248 attribute "dep" string "positions" # object 88 class array type int rank 1 shape 3 items 38 msb ieee data 64728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Period" class field component "positions" value 87 component "connections" value 88 attribute "name" string "Period" attribute "char width" number 0.312500 attribute "series position" number 46.000000 # object 89 class array type float rank 1 shape 3 items 4 msb ieee data 65184 attribute "dep" string "positions" # object 90 class array type int rank 1 shape 3 items 2 msb ieee data 65232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Slash" class field component "positions" value 89 component "connections" value 90 attribute "name" string "Slash" attribute "char width" number 0.387500 attribute "series position" number 47.000000 # object 91 class array type float rank 1 shape 3 items 97 msb ieee data 65256 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 3 items 97 msb ieee data 66420 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "0" class field component "positions" value 91 component "connections" value 92 attribute "name" string "0" attribute "char width" number 0.612500 attribute "series position" number 48.000000 # object 93 class array type float rank 1 shape 3 items 47 msb ieee data 67584 attribute "dep" string "positions" # object 94 class array type int rank 1 shape 3 items 45 msb ieee data 68148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "1" class field component "positions" value 93 component "connections" value 94 attribute "name" string "1" attribute "char width" number 0.612500 attribute "series position" number 49.000000 # object 95 class array type float rank 1 shape 3 items 183 msb ieee data 68688 attribute "dep" string "positions" # object 96 class array type int rank 1 shape 3 items 181 msb ieee data 70884 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "2" class field component "positions" value 95 component "connections" value 96 attribute "name" string "2" attribute "char width" number 0.612500 attribute "series position" number 50.000000 # object 97 class array type float rank 1 shape 3 items 109 msb ieee data 73056 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 3 items 107 msb ieee data 74364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "3" class field component "positions" value 97 component "connections" value 98 attribute "name" string "3" attribute "char width" number 0.612500 attribute "series position" number 51.000000 # object 99 class array type float rank 1 shape 3 items 65 msb ieee data 75648 attribute "dep" string "positions" # object 100 class array type int rank 1 shape 3 items 65 msb ieee data 76428 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "4" class field component "positions" value 99 component "connections" value 100 attribute "name" string "4" attribute "char width" number 0.612500 attribute "series position" number 52.000000 # object 101 class array type float rank 1 shape 3 items 127 msb ieee data 77208 attribute "dep" string "positions" # object 102 class array type int rank 1 shape 3 items 125 msb ieee data 78732 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "5" class field component "positions" value 101 component "connections" value 102 attribute "name" string "5" attribute "char width" number 0.612500 attribute "series position" number 53.000000 # object 103 class array type float rank 1 shape 3 items 155 msb ieee data 80232 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 3 items 155 msb ieee data 82092 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "6" class field component "positions" value 103 component "connections" value 104 attribute "name" string "6" attribute "char width" number 0.612500 attribute "series position" number 54.000000 # object 105 class array type float rank 1 shape 3 items 121 msb ieee data 83952 attribute "dep" string "positions" # object 106 class array type int rank 1 shape 3 items 119 msb ieee data 85404 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "7" class field component "positions" value 105 component "connections" value 106 attribute "name" string "7" attribute "char width" number 0.612500 attribute "series position" number 55.000000 # object 107 class array type float rank 1 shape 3 items 158 msb ieee data 86832 attribute "dep" string "positions" # object 108 class array type int rank 1 shape 3 items 160 msb ieee data 88728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "8" class field component "positions" value 107 component "connections" value 108 attribute "name" string "8" attribute "char width" number 0.612500 attribute "series position" number 56.000000 # object 109 class array type float rank 1 shape 3 items 143 msb ieee data 90648 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 3 items 143 msb ieee data 92364 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "9" class field component "positions" value 109 component "connections" value 110 attribute "name" string "9" attribute "char width" number 0.612500 attribute "series position" number 57.000000 # object 111 class array type float rank 1 shape 3 items 80 msb ieee data 94080 attribute "dep" string "positions" # object 112 class array type int rank 1 shape 3 items 76 msb ieee data 95040 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Colon" class field component "positions" value 111 component "connections" value 112 attribute "name" string "Colon" attribute "char width" number 0.312500 attribute "series position" number 58.000000 # object 113 class array type float rank 1 shape 3 items 64 msb ieee data 95952 attribute "dep" string "positions" # object 114 class array type int rank 1 shape 3 items 60 msb ieee data 96720 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Semicolon" class field component "positions" value 113 component "connections" value 114 attribute "name" string "Semicolon" attribute "char width" number 0.312500 attribute "series position" number 59.000000 # object 115 class array type float rank 1 shape 3 items 7 msb ieee data 97440 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 3 items 5 msb ieee data 97524 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AngleBracketOpen" class field component "positions" value 115 component "connections" value 116 attribute "name" string "AngleBracketOpen" attribute "char width" number 0.450000 attribute "series position" number 60.000000 # object 117 class array type float rank 1 shape 3 items 8 msb ieee data 97584 attribute "dep" string "positions" # object 118 class array type int rank 1 shape 3 items 4 msb ieee data 97680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Equals" class field component "positions" value 117 component "connections" value 118 attribute "name" string "Equals" attribute "char width" number 0.612500 attribute "series position" number 61.000000 # object 119 class array type float rank 1 shape 3 items 7 msb ieee data 97728 attribute "dep" string "positions" # object 120 class array type int rank 1 shape 3 items 5 msb ieee data 97812 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AngleBracketClose" class field component "positions" value 119 component "connections" value 120 attribute "name" string "AngleBracketClose" attribute "char width" number 0.450000 attribute "series position" number 62.000000 # object 121 class array type float rank 1 shape 3 items 114 msb ieee data 97872 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 3 items 110 msb ieee data 99240 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "QuestionMark" class field component "positions" value 121 component "connections" value 122 attribute "name" string "QuestionMark" attribute "char width" number 0.575000 attribute "series position" number 63.000000 # object 123 class array type float rank 1 shape 3 items 152 msb ieee data 100560 attribute "dep" string "positions" # object 124 class array type int rank 1 shape 3 items 152 msb ieee data 102384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AtSign" class field component "positions" value 123 component "connections" value 124 attribute "name" string "AtSign" attribute "char width" number 0.650000 attribute "series position" number 64.000000 # object 125 class array type float rank 1 shape 3 items 58 msb ieee data 104208 attribute "dep" string "positions" # object 126 class array type int rank 1 shape 3 items 58 msb ieee data 104904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "A" class field component "positions" value 125 component "connections" value 126 attribute "name" string "A" attribute "char width" number 0.850000 attribute "series position" number 65.000000 # object 127 class array type float rank 1 shape 3 items 129 msb ieee data 105600 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 3 items 131 msb ieee data 107148 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "B" class field component "positions" value 127 component "connections" value 128 attribute "name" string "B" attribute "char width" number 0.725000 attribute "series position" number 66.000000 # object 129 class array type float rank 1 shape 3 items 155 msb ieee data 108720 attribute "dep" string "positions" # object 130 class array type int rank 1 shape 3 items 153 msb ieee data 110580 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "C" class field component "positions" value 129 component "connections" value 130 attribute "name" string "C" attribute "char width" number 0.650000 attribute "series position" number 67.000000 # object 131 class array type float rank 1 shape 3 items 106 msb ieee data 112416 attribute "dep" string "positions" # object 132 class array type int rank 1 shape 3 items 106 msb ieee data 113688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "D" class field component "positions" value 131 component "connections" value 132 attribute "name" string "D" attribute "char width" number 0.762500 attribute "series position" number 68.000000 # object 133 class array type float rank 1 shape 3 items 135 msb ieee data 114960 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 3 items 133 msb ieee data 116580 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "E" class field component "positions" value 133 component "connections" value 134 attribute "name" string "E" attribute "char width" number 0.687500 attribute "series position" number 69.000000 # object 135 class array type float rank 1 shape 3 items 114 msb ieee data 118176 attribute "dep" string "positions" # object 136 class array type int rank 1 shape 3 items 112 msb ieee data 119544 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "F" class field component "positions" value 135 component "connections" value 136 attribute "name" string "F" attribute "char width" number 0.662500 attribute "series position" number 70.000000 # object 137 class array type float rank 1 shape 3 items 185 msb ieee data 120888 attribute "dep" string "positions" # object 138 class array type int rank 1 shape 3 items 181 msb ieee data 123108 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "G" class field component "positions" value 137 component "connections" value 138 attribute "name" string "G" attribute "char width" number 0.737500 attribute "series position" number 71.000000 # object 139 class array type float rank 1 shape 3 items 123 msb ieee data 125280 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 3 items 121 msb ieee data 126756 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "H" class field component "positions" value 139 component "connections" value 140 attribute "name" string "H" attribute "char width" number 0.850000 attribute "series position" number 72.000000 # object 141 class array type float rank 1 shape 3 items 64 msb ieee data 128208 attribute "dep" string "positions" # object 142 class array type int rank 1 shape 3 items 60 msb ieee data 128976 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "I" class field component "positions" value 141 component "connections" value 142 attribute "name" string "I" attribute "char width" number 0.412500 attribute "series position" number 73.000000 # object 143 class array type float rank 1 shape 3 items 146 msb ieee data 129696 attribute "dep" string "positions" # object 144 class array type int rank 1 shape 3 items 144 msb ieee data 131448 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "J" class field component "positions" value 143 component "connections" value 144 attribute "name" string "J" attribute "char width" number 0.687500 attribute "series position" number 74.000000 # object 145 class array type float rank 1 shape 3 items 138 msb ieee data 133176 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 3 items 136 msb ieee data 134832 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "K" class field component "positions" value 145 component "connections" value 146 attribute "name" string "K" attribute "char width" number 0.862500 attribute "series position" number 75.000000 # object 147 class array type float rank 1 shape 3 items 76 msb ieee data 136464 attribute "dep" string "positions" # object 148 class array type int rank 1 shape 3 items 74 msb ieee data 137376 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "L" class field component "positions" value 147 component "connections" value 148 attribute "name" string "L" attribute "char width" number 0.687500 attribute "series position" number 76.000000 # object 149 class array type float rank 1 shape 3 items 127 msb ieee data 138264 attribute "dep" string "positions" # object 150 class array type int rank 1 shape 3 items 125 msb ieee data 139788 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "M" class field component "positions" value 149 component "connections" value 150 attribute "name" string "M" attribute "char width" number 1.000000 attribute "series position" number 77.000000 # object 151 class array type float rank 1 shape 3 items 109 msb ieee data 141288 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 3 items 107 msb ieee data 142596 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "N" class field component "positions" value 151 component "connections" value 152 attribute "name" string "N" attribute "char width" number 0.800000 attribute "series position" number 78.000000 # object 153 class array type float rank 1 shape 3 items 199 msb ieee data 143880 attribute "dep" string "positions" # object 154 class array type int rank 1 shape 3 items 199 msb ieee data 146268 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "O" class field component "positions" value 153 component "connections" value 154 attribute "name" string "O" attribute "char width" number 0.637500 attribute "series position" number 79.000000 # object 155 class array type float rank 1 shape 3 items 150 msb ieee data 148656 attribute "dep" string "positions" # object 156 class array type int rank 1 shape 3 items 150 msb ieee data 150456 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "P" class field component "positions" value 155 component "connections" value 156 attribute "name" string "P" attribute "char width" number 0.675000 attribute "series position" number 80.000000 # object 157 class array type float rank 1 shape 3 items 297 msb ieee data 152256 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 3 items 297 msb ieee data 155820 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Q" class field component "positions" value 157 component "connections" value 158 attribute "name" string "Q" attribute "char width" number 0.637500 attribute "series position" number 81.000000 # object 159 class array type float rank 1 shape 3 items 193 msb ieee data 159384 attribute "dep" string "positions" # object 160 class array type int rank 1 shape 3 items 193 msb ieee data 161700 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "R" class field component "positions" value 159 component "connections" value 160 attribute "name" string "R" attribute "char width" number 0.787500 attribute "series position" number 82.000000 # object 161 class array type float rank 1 shape 3 items 220 msb ieee data 164016 attribute "dep" string "positions" # object 162 class array type int rank 1 shape 3 items 218 msb ieee data 166656 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "S" class field component "positions" value 161 component "connections" value 162 attribute "name" string "S" attribute "char width" number 0.550000 attribute "series position" number 83.000000 # object 163 class array type float rank 1 shape 3 items 102 msb ieee data 169272 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 3 items 100 msb ieee data 170496 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "T" class field component "positions" value 163 component "connections" value 164 attribute "name" string "T" attribute "char width" number 0.662500 attribute "series position" number 84.000000 # object 165 class array type float rank 1 shape 3 items 127 msb ieee data 171696 attribute "dep" string "positions" # object 166 class array type int rank 1 shape 3 items 125 msb ieee data 173220 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "U" class field component "positions" value 165 component "connections" value 166 attribute "name" string "U" attribute "char width" number 0.775000 attribute "series position" number 85.000000 # object 167 class array type float rank 1 shape 3 items 74 msb ieee data 174720 attribute "dep" string "positions" # object 168 class array type int rank 1 shape 3 items 72 msb ieee data 175608 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "V" class field component "positions" value 167 component "connections" value 168 attribute "name" string "V" attribute "char width" number 0.850000 attribute "series position" number 86.000000 # object 169 class array type float rank 1 shape 3 items 105 msb ieee data 176472 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 3 items 103 msb ieee data 177732 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "W" class field component "positions" value 169 component "connections" value 170 attribute "name" string "W" attribute "char width" number 1.075000 attribute "series position" number 87.000000 # object 171 class array type float rank 1 shape 3 items 118 msb ieee data 178968 attribute "dep" string "positions" # object 172 class array type int rank 1 shape 3 items 116 msb ieee data 180384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "X" class field component "positions" value 171 component "connections" value 172 attribute "name" string "X" attribute "char width" number 0.837500 attribute "series position" number 88.000000 # object 173 class array type float rank 1 shape 3 items 92 msb ieee data 181776 attribute "dep" string "positions" # object 174 class array type int rank 1 shape 3 items 90 msb ieee data 182880 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Y" class field component "positions" value 173 component "connections" value 174 attribute "name" string "Y" attribute "char width" number 0.862500 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 3 items 64 msb ieee data 183960 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 3 items 62 msb ieee data 184728 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Z" class field component "positions" value 175 component "connections" value 176 attribute "name" string "Z" attribute "char width" number 0.625000 attribute "series position" number 90.000000 # object 177 class array type float rank 1 shape 3 items 23 msb ieee data 185472 attribute "dep" string "positions" # object 178 class array type int rank 1 shape 3 items 21 msb ieee data 185748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "SquareBracketOpen" class field component "positions" value 177 component "connections" value 178 attribute "name" string "SquareBracketOpen" attribute "char width" number 0.250000 attribute "series position" number 91.000000 # object 179 class array type float rank 1 shape 3 items 23 msb ieee data 186000 attribute "dep" string "positions" # object 180 class array type int rank 1 shape 3 items 21 msb ieee data 186276 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "SquareBracketClose" class field component "positions" value 179 component "connections" value 180 attribute "name" string "SquareBracketClose" attribute "char width" number 0.250000 attribute "series position" number 93.000000 # object 181 class array type float rank 1 shape 3 items 7 msb ieee data 186528 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 3 items 5 msb ieee data 186612 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Circumflex" class field component "positions" value 181 component "connections" value 182 attribute "name" string "Circumflex" attribute "char width" number 0.350000 attribute "series position" number 94.000000 # object 183 class array type float rank 1 shape 3 items 4 msb ieee data 186672 attribute "dep" string "positions" # object 184 class array type int rank 1 shape 3 items 2 msb ieee data 186720 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Underscore" class field component "positions" value 183 component "connections" value 184 attribute "name" string "Underscore" attribute "char width" number 0.662500 attribute "series position" number 95.000000 # object 185 class array type float rank 1 shape 3 items 10 msb ieee data 186744 attribute "dep" string "positions" # object 186 class array type int rank 1 shape 3 items 8 msb ieee data 186864 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "BackApostrophe" class field component "positions" value 185 component "connections" value 186 attribute "name" string "BackApostrophe" attribute "char width" number 0.212500 attribute "series position" number 96.000000 # object 187 class array type float rank 1 shape 3 items 165 msb ieee data 186960 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 3 items 165 msb ieee data 188940 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "a" class field component "positions" value 187 component "connections" value 188 attribute "name" string "a" attribute "char width" number 0.625000 attribute "series position" number 97.000000 # object 189 class array type float rank 1 shape 3 items 114 msb ieee data 190920 attribute "dep" string "positions" # object 190 class array type int rank 1 shape 3 items 114 msb ieee data 192288 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "b" class field component "positions" value 189 component "connections" value 190 attribute "name" string "b" attribute "char width" number 0.612500 attribute "series position" number 98.000000 # object 191 class array type float rank 1 shape 3 items 144 msb ieee data 193656 attribute "dep" string "positions" # object 192 class array type int rank 1 shape 3 items 142 msb ieee data 195384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "c" class field component "positions" value 191 component "connections" value 192 attribute "name" string "c" attribute "char width" number 0.525000 attribute "series position" number 99.000000 # object 193 class array type float rank 1 shape 3 items 116 msb ieee data 197088 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 3 items 116 msb ieee data 198480 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "d" class field component "positions" value 193 component "connections" value 194 attribute "name" string "d" attribute "char width" number 0.650000 attribute "series position" number 100.000000 # object 195 class array type float rank 1 shape 3 items 126 msb ieee data 199872 attribute "dep" string "positions" # object 196 class array type int rank 1 shape 3 items 126 msb ieee data 201384 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "e" class field component "positions" value 195 component "connections" value 196 attribute "name" string "e" attribute "char width" number 0.537500 attribute "series position" number 101.000000 # object 197 class array type float rank 1 shape 3 items 95 msb ieee data 202896 attribute "dep" string "positions" # object 198 class array type int rank 1 shape 3 items 93 msb ieee data 204036 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "f" class field component "positions" value 197 component "connections" value 198 attribute "name" string "f" attribute "char width" number 0.475000 attribute "series position" number 102.000000 # object 199 class array type float rank 1 shape 3 items 183 msb ieee data 205152 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 3 items 185 msb ieee data 207348 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "g" class field component "positions" value 199 component "connections" value 200 attribute "name" string "g" attribute "char width" number 0.600000 attribute "series position" number 103.000000 # object 201 class array type float rank 1 shape 3 items 113 msb ieee data 209568 attribute "dep" string "positions" # object 202 class array type int rank 1 shape 3 items 111 msb ieee data 210924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "h" class field component "positions" value 201 component "connections" value 202 attribute "name" string "h" attribute "char width" number 0.700000 attribute "series position" number 104.000000 # object 203 class array type float rank 1 shape 3 items 72 msb ieee data 212256 attribute "dep" string "positions" # object 204 class array type int rank 1 shape 3 items 68 msb ieee data 213120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "i" class field component "positions" value 203 component "connections" value 204 attribute "name" string "i" attribute "char width" number 0.350000 attribute "series position" number 105.000000 # object 205 class array type float rank 1 shape 3 items 87 msb ieee data 213936 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 3 items 83 msb ieee data 214980 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "j" class field component "positions" value 205 component "connections" value 206 attribute "name" string "j" attribute "char width" number 0.250000 attribute "series position" number 106.000000 # object 207 class array type float rank 1 shape 3 items 90 msb ieee data 215976 attribute "dep" string "positions" # object 208 class array type int rank 1 shape 3 items 88 msb ieee data 217056 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "k" class field component "positions" value 207 component "connections" value 208 attribute "name" string "k" attribute "char width" number 0.687500 attribute "series position" number 107.000000 # object 209 class array type float rank 1 shape 3 items 56 msb ieee data 218112 attribute "dep" string "positions" # object 210 class array type int rank 1 shape 3 items 54 msb ieee data 218784 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "l" class field component "positions" value 209 component "connections" value 210 attribute "name" string "l" attribute "char width" number 0.350000 attribute "series position" number 108.000000 # object 211 class array type float rank 1 shape 3 items 166 msb ieee data 219432 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 3 items 164 msb ieee data 221424 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "m" class field component "positions" value 211 component "connections" value 212 attribute "name" string "m" attribute "char width" number 1.012500 attribute "series position" number 109.000000 # object 213 class array type float rank 1 shape 3 items 114 msb ieee data 223392 attribute "dep" string "positions" # object 214 class array type int rank 1 shape 3 items 112 msb ieee data 224760 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "n" class field component "positions" value 213 component "connections" value 214 attribute "name" string "n" attribute "char width" number 0.700000 attribute "series position" number 110.000000 # object 215 class array type float rank 1 shape 3 items 88 msb ieee data 226104 attribute "dep" string "positions" # object 216 class array type int rank 1 shape 3 items 88 msb ieee data 227160 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "o" class field component "positions" value 215 component "connections" value 216 attribute "name" string "o" attribute "char width" number 0.525000 attribute "series position" number 111.000000 # object 217 class array type float rank 1 shape 3 items 117 msb ieee data 228216 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 3 items 117 msb ieee data 229620 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "p" class field component "positions" value 217 component "connections" value 218 attribute "name" string "p" attribute "char width" number 0.637500 attribute "series position" number 112.000000 # object 219 class array type float rank 1 shape 3 items 113 msb ieee data 231024 attribute "dep" string "positions" # object 220 class array type int rank 1 shape 3 items 113 msb ieee data 232380 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "q" class field component "positions" value 219 component "connections" value 220 attribute "name" string "q" attribute "char width" number 0.612500 attribute "series position" number 113.000000 # object 221 class array type float rank 1 shape 3 items 99 msb ieee data 233736 attribute "dep" string "positions" # object 222 class array type int rank 1 shape 3 items 97 msb ieee data 234924 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "r" class field component "positions" value 221 component "connections" value 222 attribute "name" string "r" attribute "char width" number 0.537500 attribute "series position" number 114.000000 # object 223 class array type float rank 1 shape 3 items 162 msb ieee data 236088 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 3 items 160 msb ieee data 238032 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "s" class field component "positions" value 223 component "connections" value 224 attribute "name" string "s" attribute "char width" number 0.462500 attribute "series position" number 115.000000 # object 225 class array type float rank 1 shape 3 items 84 msb ieee data 239952 attribute "dep" string "positions" # object 226 class array type int rank 1 shape 3 items 82 msb ieee data 240960 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "t" class field component "positions" value 225 component "connections" value 226 attribute "name" string "t" attribute "char width" number 0.462500 attribute "series position" number 116.000000 # object 227 class array type float rank 1 shape 3 items 93 msb ieee data 241944 attribute "dep" string "positions" # object 228 class array type int rank 1 shape 3 items 91 msb ieee data 243060 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "u" class field component "positions" value 227 component "connections" value 228 attribute "name" string "u" attribute "char width" number 0.700000 attribute "series position" number 117.000000 # object 229 class array type float rank 1 shape 3 items 63 msb ieee data 244152 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 3 items 61 msb ieee data 244908 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "v" class field component "positions" value 229 component "connections" value 230 attribute "name" string "v" attribute "char width" number 0.687500 attribute "series position" number 118.000000 # object 231 class array type float rank 1 shape 3 items 88 msb ieee data 245640 attribute "dep" string "positions" # object 232 class array type int rank 1 shape 3 items 86 msb ieee data 246696 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "w" class field component "positions" value 231 component "connections" value 232 attribute "name" string "w" attribute "char width" number 0.912500 attribute "series position" number 119.000000 # object 233 class array type float rank 1 shape 3 items 117 msb ieee data 247728 attribute "dep" string "positions" # object 234 class array type int rank 1 shape 3 items 115 msb ieee data 249132 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "x" class field component "positions" value 233 component "connections" value 234 attribute "name" string "x" attribute "char width" number 0.712500 attribute "series position" number 120.000000 # object 235 class array type float rank 1 shape 3 items 92 msb ieee data 250512 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 3 items 90 msb ieee data 251616 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "y" class field component "positions" value 235 component "connections" value 236 attribute "name" string "y" attribute "char width" number 0.712500 attribute "series position" number 121.000000 # object 237 class array type float rank 1 shape 3 items 67 msb ieee data 252696 attribute "dep" string "positions" # object 238 class array type int rank 1 shape 3 items 65 msb ieee data 253500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "z" class field component "positions" value 237 component "connections" value 238 attribute "name" string "z" attribute "char width" number 0.525000 attribute "series position" number 122.000000 # object 239 class array type float rank 1 shape 3 items 52 msb ieee data 254280 attribute "dep" string "positions" # object 240 class array type int rank 1 shape 3 items 50 msb ieee data 254904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CurlyBraceOpen" class field component "positions" value 239 component "connections" value 240 attribute "name" string "CurlyBraceOpen" attribute "char width" number 0.275000 attribute "series position" number 123.000000 # object 241 class array type float rank 1 shape 3 items 8 msb ieee data 255504 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 3 items 4 msb ieee data 255600 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pipe" class field component "positions" value 241 component "connections" value 242 attribute "name" string "Pipe" attribute "char width" number 0.312500 attribute "series position" number 124.000000 # object 243 class array type float rank 1 shape 3 items 52 msb ieee data 255648 attribute "dep" string "positions" # object 244 class array type int rank 1 shape 3 items 50 msb ieee data 256272 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CurlyBraceClose" class field component "positions" value 243 component "connections" value 244 attribute "name" string "CurlyBraceClose" attribute "char width" number 0.275000 attribute "series position" number 125.000000 # object 245 class array type float rank 1 shape 3 items 42 msb ieee data 256872 attribute "dep" string "positions" # object 246 class array type int rank 1 shape 3 items 40 msb ieee data 257376 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Tilde" class field component "positions" value 245 component "connections" value 246 attribute "name" string "Tilde" attribute "char width" number 0.400000 attribute "series position" number 126.000000 # object 247 class array type float rank 1 shape 3 items 169 msb ieee data 257856 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 3 items 167 msb ieee data 259884 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "aBar" class field component "positions" value 247 component "connections" value 248 attribute "name" string "aBar" attribute "char width" number 0.450000 attribute "series position" number 128.000000 # object 249 class array type float rank 1 shape 3 items 10 msb ieee data 261888 attribute "dep" string "positions" # object 250 class array type int rank 1 shape 3 items 8 msb ieee data 262008 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentAcute" class field component "positions" value 249 component "connections" value 250 attribute "name" string "accentAcute" attribute "char width" number 0.000000 attribute "series position" number 129.000000 # object 251 class array type float rank 1 shape 3 items 10 msb ieee data 262104 attribute "dep" string "positions" # object 252 class array type int rank 1 shape 3 items 8 msb ieee data 262224 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentAcute" class field component "positions" value 251 component "connections" value 252 attribute "name" string "AccentAcute" attribute "char width" number 0.000000 attribute "series position" number 130.000000 # object 253 class array type float rank 1 shape 3 items 74 msb ieee data 262320 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 3 items 68 msb ieee data 263208 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IAccentAcute" class field component "positions" value 253 component "connections" value 254 attribute "name" string "IAccentAcute" attribute "char width" number 0.412500 attribute "series position" number 131.000000 # object 255 class array type float rank 1 shape 3 items 10 msb ieee data 264024 attribute "dep" string "positions" # object 256 class array type int rank 1 shape 3 items 8 msb ieee data 264144 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentGrave" class field component "positions" value 255 component "connections" value 256 attribute "name" string "accentGrave" attribute "char width" number 0.000000 attribute "series position" number 132.000000 # object 257 class array type float rank 1 shape 3 items 10 msb ieee data 264240 attribute "dep" string "positions" # object 258 class array type int rank 1 shape 3 items 8 msb ieee data 264360 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentGrave" class field component "positions" value 257 component "connections" value 258 attribute "name" string "AccentGrave" attribute "char width" number 0.000000 attribute "series position" number 133.000000 # object 259 class array type float rank 1 shape 3 items 74 msb ieee data 264456 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 3 items 68 msb ieee data 265344 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IAccentGrave" class field component "positions" value 259 component "connections" value 260 attribute "name" string "IAccentGrave" attribute "char width" number 0.412500 attribute "series position" number 134.000000 # object 261 class array type float rank 1 shape 3 items 22 msb ieee data 266160 attribute "dep" string "positions" # object 262 class array type int rank 1 shape 3 items 18 msb ieee data 266424 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "accentHungarian" class field component "positions" value 261 component "connections" value 262 attribute "name" string "accentHungarian" attribute "char width" number 0.000000 attribute "series position" number 135.000000 # object 263 class array type float rank 1 shape 3 items 22 msb ieee data 266640 attribute "dep" string "positions" # object 264 class array type int rank 1 shape 3 items 18 msb ieee data 266904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AccentHungarian" class field component "positions" value 263 component "connections" value 264 attribute "name" string "AccentHungarian" attribute "char width" number 0.000000 attribute "series position" number 136.000000 # object 265 class array type float rank 1 shape 3 items 176 msb ieee data 267120 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 3 items 178 msb ieee data 269232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "ae" class field component "positions" value 265 component "connections" value 266 attribute "name" string "ae" attribute "char width" number 0.900000 attribute "series position" number 137.000000 # object 267 class array type float rank 1 shape 3 items 151 msb ieee data 271368 attribute "dep" string "positions" # object 268 class array type int rank 1 shape 3 items 151 msb ieee data 273180 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "AE" class field component "positions" value 267 component "connections" value 268 attribute "name" string "AE" attribute "char width" number 1.112500 attribute "series position" number 138.000000 # object 269 class array type float rank 1 shape 3 items 80 msb ieee data 274992 attribute "dep" string "positions" # object 270 class array type int rank 1 shape 3 items 80 msb ieee data 275952 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "angstrom" class field component "positions" value 269 component "connections" value 270 attribute "name" string "angstrom" attribute "char width" number 0.000000 attribute "series position" number 139.000000 # object 271 class array type float rank 1 shape 3 items 80 msb ieee data 276912 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 3 items 80 msb ieee data 277872 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Angstrom" class field component "positions" value 271 component "connections" value 272 attribute "name" string "Angstrom" attribute "char width" number 0.000000 attribute "series position" number 140.000000 # object 273 class array type float rank 1 shape 3 items 28 msb ieee data 278832 attribute "dep" string "positions" # object 274 class array type int rank 1 shape 3 items 26 msb ieee data 279168 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "breve" class field component "positions" value 273 component "connections" value 274 attribute "name" string "breve" attribute "char width" number 0.000000 attribute "series position" number 141.000000 # object 275 class array type float rank 1 shape 3 items 28 msb ieee data 279480 attribute "dep" string "positions" # object 276 class array type int rank 1 shape 3 items 26 msb ieee data 279816 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Breve" class field component "positions" value 275 component "connections" value 276 attribute "name" string "Breve" attribute "char width" number 0.000000 attribute "series position" number 142.000000 # object 277 class array type float rank 1 shape 3 items 190 msb ieee data 280128 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 3 items 186 msb ieee data 282408 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "cCedilla" class field component "positions" value 277 component "connections" value 278 attribute "name" string "cCedilla" attribute "char width" number 0.525000 attribute "series position" number 143.000000 # object 279 class array type float rank 1 shape 3 items 201 msb ieee data 284640 attribute "dep" string "positions" # object 280 class array type int rank 1 shape 3 items 197 msb ieee data 287052 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CCedilla" class field component "positions" value 279 component "connections" value 280 attribute "name" string "CCedilla" attribute "char width" number 0.650000 attribute "series position" number 144.000000 # object 281 class array type float rank 1 shape 3 items 7 msb ieee data 289416 attribute "dep" string "positions" # object 282 class array type int rank 1 shape 3 items 5 msb ieee data 289500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "wideCircumflex" class field component "positions" value 281 component "connections" value 282 attribute "name" string "wideCircumflex" attribute "char width" number 0.000000 attribute "series position" number 145.000000 # object 283 class array type float rank 1 shape 3 items 7 msb ieee data 289560 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 3 items 5 msb ieee data 289644 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "WideCircumflex" class field component "positions" value 283 component "connections" value 284 attribute "name" string "WideCircumflex" attribute "char width" number 0.000000 attribute "series position" number 146.000000 # object 285 class array type float rank 1 shape 3 items 71 msb ieee data 289704 attribute "dep" string "positions" # object 286 class array type int rank 1 shape 3 items 65 msb ieee data 290556 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IWideCircumflex" class field component "positions" value 285 component "connections" value 286 attribute "name" string "IWideCircumflex" attribute "char width" number 0.437500 attribute "series position" number 147.000000 # object 287 class array type float rank 1 shape 3 items 206 msb ieee data 291336 attribute "dep" string "positions" # object 288 class array type int rank 1 shape 3 items 204 msb ieee data 293808 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OWideCircumflex" class field component "positions" value 287 component "connections" value 288 attribute "name" string "OWideCircumflex" attribute "char width" number 0.637500 attribute "series position" number 148.000000 # object 289 class array type float rank 1 shape 3 items 7 msb ieee data 296256 attribute "dep" string "positions" # object 290 class array type int rank 1 shape 3 items 5 msb ieee data 296340 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Clicka" class field component "positions" value 289 component "connections" value 290 attribute "name" string "Clicka" attribute "char width" number 0.000000 attribute "series position" number 149.000000 # object 291 class array type float rank 1 shape 3 items 24 msb ieee data 296400 attribute "dep" string "positions" # object 292 class array type int rank 1 shape 3 items 22 msb ieee data 296688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "CommaRumanian" class field component "positions" value 291 component "connections" value 292 attribute "name" string "CommaRumanian" attribute "char width" number 0.000000 attribute "series position" number 150.000000 # object 293 class array type float rank 1 shape 3 items 42 msb ieee data 296952 attribute "dep" string "positions" # object 294 class array type int rank 1 shape 3 items 40 msb ieee data 297456 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "enya" class field component "positions" value 293 component "connections" value 294 attribute "name" string "enya" attribute "char width" number 0.000000 attribute "series position" number 151.000000 # object 295 class array type float rank 1 shape 3 items 42 msb ieee data 297936 attribute "dep" string "positions" # object 296 class array type int rank 1 shape 3 items 40 msb ieee data 298440 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Enya" class field component "positions" value 295 component "connections" value 296 attribute "name" string "Enya" attribute "char width" number 0.000000 attribute "series position" number 152.000000 # object 297 class array type float rank 1 shape 3 items 112 msb ieee data 298920 attribute "dep" string "positions" # object 298 class array type int rank 1 shape 3 items 112 msb ieee data 300264 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "eth" class field component "positions" value 297 component "connections" value 298 attribute "name" string "eth" attribute "char width" number 0.512500 attribute "series position" number 153.000000 # object 299 class array type float rank 1 shape 3 items 110 msb ieee data 301608 attribute "dep" string "positions" # object 300 class array type int rank 1 shape 3 items 108 msb ieee data 302928 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Eth" class field component "positions" value 299 component "connections" value 300 attribute "name" string "Eth" attribute "char width" number 0.762500 attribute "series position" number 154.000000 # object 301 class array type float rank 1 shape 3 items 22 msb ieee data 304224 attribute "dep" string "positions" # object 302 class array type int rank 1 shape 3 items 20 msb ieee data 304488 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "hookLithuanian" class field component "positions" value 301 component "connections" value 302 attribute "name" string "hookLithuanian" attribute "char width" number 0.000000 attribute "series position" number 155.000000 # object 303 class array type float rank 1 shape 3 items 94 msb ieee data 304728 attribute "dep" string "positions" # object 304 class array type int rank 1 shape 3 items 88 msb ieee data 305856 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iHookLithuanian" class field component "positions" value 303 component "connections" value 304 attribute "name" string "iHookLithuanian" attribute "char width" number 0.350000 attribute "series position" number 156.000000 # object 305 class array type float rank 1 shape 3 items 22 msb ieee data 306912 attribute "dep" string "positions" # object 306 class array type int rank 1 shape 3 items 20 msb ieee data 307176 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "HookLithuanian" class field component "positions" value 305 component "connections" value 306 attribute "name" string "HookLithuanian" attribute "char width" number 0.000000 attribute "series position" number 157.000000 # object 307 class array type float rank 1 shape 3 items 86 msb ieee data 307416 attribute "dep" string "positions" # object 308 class array type int rank 1 shape 3 items 80 msb ieee data 308448 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IHookLithuanian" class field component "positions" value 307 component "connections" value 308 attribute "name" string "IHookLithuanian" attribute "char width" number 0.412500 attribute "series position" number 158.000000 # object 309 class array type float rank 1 shape 3 items 48 msb ieee data 309408 attribute "dep" string "positions" # object 310 class array type int rank 1 shape 3 items 46 msb ieee data 309984 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iUndotted" class field component "positions" value 309 component "connections" value 310 attribute "name" string "iUndotted" attribute "char width" number 0.537500 attribute "series position" number 159.000000 # object 311 class array type float rank 1 shape 3 items 60 msb ieee data 310536 attribute "dep" string "positions" # object 312 class array type int rank 1 shape 3 items 56 msb ieee data 311256 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "lSlash" class field component "positions" value 311 component "connections" value 312 attribute "name" string "lSlash" attribute "char width" number 0.350000 attribute "series position" number 160.000000 # object 313 class array type float rank 1 shape 3 items 80 msb ieee data 311928 attribute "dep" string "positions" # object 314 class array type int rank 1 shape 3 items 76 msb ieee data 312888 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "LSlash" class field component "positions" value 313 component "connections" value 314 attribute "name" string "LSlash" attribute "char width" number 0.687500 attribute "series position" number 161.000000 # object 315 class array type float rank 1 shape 3 items 4 msb ieee data 313800 attribute "dep" string "positions" # object 316 class array type int rank 1 shape 3 items 2 msb ieee data 313848 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "macron" class field component "positions" value 315 component "connections" value 316 attribute "name" string "macron" attribute "char width" number 0.000000 attribute "series position" number 162.000000 # object 317 class array type float rank 1 shape 3 items 4 msb ieee data 313872 attribute "dep" string "positions" # object 318 class array type int rank 1 shape 3 items 2 msb ieee data 313920 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Macron" class field component "positions" value 317 component "connections" value 318 attribute "name" string "Macron" attribute "char width" number 0.000000 attribute "series position" number 163.000000 # object 319 class array type float rank 1 shape 3 items 92 msb ieee data 313944 attribute "dep" string "positions" # object 320 class array type int rank 1 shape 3 items 90 msb ieee data 315048 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "oBar" class field component "positions" value 319 component "connections" value 320 attribute "name" string "oBar" attribute "char width" number 0.450000 attribute "series position" number 164.000000 # object 321 class array type float rank 1 shape 3 items 92 msb ieee data 316128 attribute "dep" string "positions" # object 322 class array type int rank 1 shape 3 items 90 msb ieee data 317232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "oSlash" class field component "positions" value 321 component "connections" value 322 attribute "name" string "oSlash" attribute "char width" number 0.525000 attribute "series position" number 165.000000 # object 323 class array type float rank 1 shape 3 items 203 msb ieee data 318312 attribute "dep" string "positions" # object 324 class array type int rank 1 shape 3 items 201 msb ieee data 320748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OSlash" class field component "positions" value 323 component "connections" value 324 attribute "name" string "OSlash" attribute "char width" number 0.637500 attribute "series position" number 166.000000 # object 325 class array type float rank 1 shape 3 items 40 msb ieee data 323160 attribute "dep" string "positions" # object 326 class array type int rank 1 shape 3 items 38 msb ieee data 323640 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OverDot" class field component "positions" value 325 component "connections" value 326 attribute "name" string "OverDot" attribute "char width" number 0.000000 attribute "series position" number 167.000000 # object 327 class array type float rank 1 shape 3 items 88 msb ieee data 324096 attribute "dep" string "positions" # object 328 class array type int rank 1 shape 3 items 88 msb ieee data 325152 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "thorn" class field component "positions" value 327 component "connections" value 328 attribute "name" string "thorn" attribute "char width" number 0.662500 attribute "series position" number 168.000000 # object 329 class array type float rank 1 shape 3 items 107 msb ieee data 326208 attribute "dep" string "positions" # object 330 class array type int rank 1 shape 3 items 107 msb ieee data 327492 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Thorn" class field component "positions" value 329 component "connections" value 330 attribute "name" string "Thorn" attribute "char width" number 0.625000 attribute "series position" number 169.000000 # object 331 class array type float rank 1 shape 3 items 80 msb ieee data 328776 attribute "dep" string "positions" # object 332 class array type int rank 1 shape 3 items 76 msb ieee data 329736 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "umlaut" class field component "positions" value 331 component "connections" value 332 attribute "name" string "umlaut" attribute "char width" number 0.000000 attribute "series position" number 170.000000 # object 333 class array type float rank 1 shape 3 items 80 msb ieee data 330648 attribute "dep" string "positions" # object 334 class array type int rank 1 shape 3 items 76 msb ieee data 331608 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Umlaut" class field component "positions" value 333 component "connections" value 334 attribute "name" string "Umlaut" attribute "char width" number 0.000000 attribute "series position" number 171.000000 # object 335 class array type float rank 1 shape 3 items 144 msb ieee data 332520 attribute "dep" string "positions" # object 336 class array type int rank 1 shape 3 items 136 msb ieee data 334248 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "IUmlaut" class field component "positions" value 335 component "connections" value 336 attribute "name" string "IUmlaut" attribute "char width" number 0.412500 attribute "series position" number 172.000000 # object 337 class array type float rank 1 shape 3 items 279 msb ieee data 335880 attribute "dep" string "positions" # object 338 class array type int rank 1 shape 3 items 275 msb ieee data 339228 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "OUmlaut" class field component "positions" value 337 component "connections" value 338 attribute "name" string "OUmlaut" attribute "char width" number 0.637500 attribute "series position" number 173.000000 # object 339 class array type float rank 1 shape 3 items 38 msb ieee data 342528 attribute "dep" string "positions" # object 340 class array type int rank 1 shape 3 items 38 msb ieee data 342984 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Alpha" class field component "positions" value 339 component "connections" value 340 attribute "name" string "Alpha" attribute "char width" number 0.800000 attribute "series position" number 192.000000 # object 341 class array type float rank 1 shape 3 items 94 msb ieee data 343440 attribute "dep" string "positions" # object 342 class array type int rank 1 shape 3 items 96 msb ieee data 344568 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Beta" class field component "positions" value 341 component "connections" value 342 attribute "name" string "Beta" attribute "char width" number 0.725000 attribute "series position" number 193.000000 # object 343 class array type float rank 1 shape 3 items 89 msb ieee data 345720 attribute "dep" string "positions" # object 344 class array type int rank 1 shape 3 items 87 msb ieee data 346788 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Gamma" class field component "positions" value 343 component "connections" value 344 attribute "name" string "Gamma" attribute "char width" number 0.650000 attribute "series position" number 194.000000 # object 345 class array type float rank 1 shape 3 items 6 msb ieee data 347832 attribute "dep" string "positions" # object 346 class array type int rank 1 shape 3 items 6 msb ieee data 347904 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Delta" class field component "positions" value 345 component "connections" value 346 attribute "name" string "Delta" attribute "char width" number 0.800000 attribute "series position" number 195.000000 # object 347 class array type float rank 1 shape 3 items 64 msb ieee data 347976 attribute "dep" string "positions" # object 348 class array type int rank 1 shape 3 items 62 msb ieee data 348744 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Epsilon" class field component "positions" value 347 component "connections" value 348 attribute "name" string "Epsilon" attribute "char width" number 0.687500 attribute "series position" number 196.000000 # object 349 class array type float rank 1 shape 3 items 27 msb ieee data 349488 attribute "dep" string "positions" # object 350 class array type int rank 1 shape 3 items 25 msb ieee data 349812 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Zeta" class field component "positions" value 349 component "connections" value 350 attribute "name" string "Zeta" attribute "char width" number 0.687500 attribute "series position" number 197.000000 # object 351 class array type float rank 1 shape 3 items 152 msb ieee data 350112 attribute "dep" string "positions" # object 352 class array type int rank 1 shape 3 items 150 msb ieee data 351936 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Eta" class field component "positions" value 351 component "connections" value 352 attribute "name" string "Eta" attribute "char width" number 0.825000 attribute "series position" number 198.000000 # object 353 class array type float rank 1 shape 3 items 180 msb ieee data 353736 attribute "dep" string "positions" # object 354 class array type int rank 1 shape 3 items 178 msb ieee data 355896 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Theta" class field component "positions" value 353 component "connections" value 354 attribute "name" string "Theta" attribute "char width" number 0.775000 attribute "series position" number 199.000000 # object 355 class array type float rank 1 shape 3 items 37 msb ieee data 358032 attribute "dep" string "positions" # object 356 class array type int rank 1 shape 3 items 35 msb ieee data 358476 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Iota" class field component "positions" value 355 component "connections" value 356 attribute "name" string "Iota" attribute "char width" number 0.375000 attribute "series position" number 200.000000 # object 357 class array type float rank 1 shape 3 items 74 msb ieee data 358896 attribute "dep" string "positions" # object 358 class array type int rank 1 shape 3 items 72 msb ieee data 359784 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Kappa" class field component "positions" value 357 component "connections" value 358 attribute "name" string "Kappa" attribute "char width" number 0.800000 attribute "series position" number 201.000000 # object 359 class array type float rank 1 shape 3 items 74 msb ieee data 360648 attribute "dep" string "positions" # object 360 class array type int rank 1 shape 3 items 72 msb ieee data 361536 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Lambda" class field component "positions" value 359 component "connections" value 360 attribute "name" string "Lambda" attribute "char width" number 0.762500 attribute "series position" number 202.000000 # object 361 class array type float rank 1 shape 3 items 61 msb ieee data 362400 attribute "dep" string "positions" # object 362 class array type int rank 1 shape 3 items 59 msb ieee data 363132 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Mu" class field component "positions" value 361 component "connections" value 362 attribute "name" string "Mu" attribute "char width" number 1.000000 attribute "series position" number 203.000000 # object 363 class array type float rank 1 shape 3 items 52 msb ieee data 363840 attribute "dep" string "positions" # object 364 class array type int rank 1 shape 3 items 50 msb ieee data 364464 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Nu" class field component "positions" value 363 component "connections" value 364 attribute "name" string "Nu" attribute "char width" number 0.800000 attribute "series position" number 204.000000 # object 365 class array type float rank 1 shape 3 items 88 msb ieee data 365064 attribute "dep" string "positions" # object 366 class array type int rank 1 shape 3 items 82 msb ieee data 366120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Xi" class field component "positions" value 365 component "connections" value 366 attribute "name" string "Xi" attribute "char width" number 0.750000 attribute "series position" number 205.000000 # object 367 class array type float rank 1 shape 3 items 80 msb ieee data 367104 attribute "dep" string "positions" # object 368 class array type int rank 1 shape 3 items 80 msb ieee data 368064 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Omicron" class field component "positions" value 367 component "connections" value 368 attribute "name" string "Omicron" attribute "char width" number 0.775000 attribute "series position" number 206.000000 # object 369 class array type float rank 1 shape 3 items 144 msb ieee data 369024 attribute "dep" string "positions" # object 370 class array type int rank 1 shape 3 items 140 msb ieee data 370752 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Pi" class field component "positions" value 369 component "connections" value 370 attribute "name" string "Pi" attribute "char width" number 0.737500 attribute "series position" number 207.000000 # object 371 class array type float rank 1 shape 3 items 71 msb ieee data 372432 attribute "dep" string "positions" # object 372 class array type int rank 1 shape 3 items 71 msb ieee data 373284 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Rho" class field component "positions" value 371 component "connections" value 372 attribute "name" string "Rho" attribute "char width" number 0.625000 attribute "series position" number 208.000000 # object 373 class array type float rank 1 shape 3 items 23 msb ieee data 374136 attribute "dep" string "positions" # object 374 class array type int rank 1 shape 3 items 21 msb ieee data 374412 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Sigma" class field component "positions" value 373 component "connections" value 374 attribute "name" string "Sigma" attribute "char width" number 0.712500 attribute "series position" number 209.000000 # object 375 class array type float rank 1 shape 3 items 46 msb ieee data 374664 attribute "dep" string "positions" # object 376 class array type int rank 1 shape 3 items 44 msb ieee data 375216 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Tau" class field component "positions" value 375 component "connections" value 376 attribute "name" string "Tau" attribute "char width" number 0.687500 attribute "series position" number 210.000000 # object 377 class array type float rank 1 shape 3 items 94 msb ieee data 375744 attribute "dep" string "positions" # object 378 class array type int rank 1 shape 3 items 90 msb ieee data 376872 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Upsilon" class field component "positions" value 377 component "connections" value 378 attribute "name" string "Upsilon" attribute "char width" number 0.687500 attribute "series position" number 211.000000 # object 379 class array type float rank 1 shape 3 items 180 msb ieee data 377952 attribute "dep" string "positions" # object 380 class array type int rank 1 shape 3 items 178 msb ieee data 380112 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Phi" class field component "positions" value 379 component "connections" value 380 attribute "name" string "Phi" attribute "char width" number 0.625000 attribute "series position" number 212.000000 # object 381 class array type float rank 1 shape 3 items 73 msb ieee data 382248 attribute "dep" string "positions" # object 382 class array type int rank 1 shape 3 items 71 msb ieee data 383124 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Chi" class field component "positions" value 381 component "connections" value 382 attribute "name" string "Chi" attribute "char width" number 0.800000 attribute "series position" number 213.000000 # object 383 class array type float rank 1 shape 3 items 156 msb ieee data 383976 attribute "dep" string "positions" # object 384 class array type int rank 1 shape 3 items 172 msb ieee data 385848 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Psi" class field component "positions" value 383 component "connections" value 384 attribute "name" string "Psi" attribute "char width" number 0.700000 attribute "series position" number 214.000000 # object 385 class array type float rank 1 shape 3 items 196 msb ieee data 387912 attribute "dep" string "positions" # object 386 class array type int rank 1 shape 3 items 262 msb ieee data 390264 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "Omega" class field component "positions" value 385 component "connections" value 386 attribute "name" string "Omega" attribute "char width" number 0.750000 attribute "series position" number 215.000000 # object 387 class array type float rank 1 shape 3 items 91 msb ieee data 393408 attribute "dep" string "positions" # object 388 class array type int rank 1 shape 3 items 91 msb ieee data 394500 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "alpha" class field component "positions" value 387 component "connections" value 388 attribute "name" string "alpha" attribute "char width" number 0.725000 attribute "series position" number 216.000000 # object 389 class array type float rank 1 shape 3 items 108 msb ieee data 395592 attribute "dep" string "positions" # object 390 class array type int rank 1 shape 3 items 108 msb ieee data 396888 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "beta" class field component "positions" value 389 component "connections" value 390 attribute "name" string "beta" attribute "char width" number 0.687500 attribute "series position" number 217.000000 # object 391 class array type float rank 1 shape 3 items 62 msb ieee data 398184 attribute "dep" string "positions" # object 392 class array type int rank 1 shape 3 items 60 msb ieee data 398928 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "gamma" class field component "positions" value 391 component "connections" value 392 attribute "name" string "gamma" attribute "char width" number 0.600000 attribute "series position" number 218.000000 # object 393 class array type float rank 1 shape 3 items 106 msb ieee data 399648 attribute "dep" string "positions" # object 394 class array type int rank 1 shape 3 items 106 msb ieee data 400920 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "delta" class field component "positions" value 393 component "connections" value 394 attribute "name" string "delta" attribute "char width" number 0.525000 attribute "series position" number 219.000000 # object 395 class array type float rank 1 shape 3 items 69 msb ieee data 402192 attribute "dep" string "positions" # object 396 class array type int rank 1 shape 3 items 67 msb ieee data 403020 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "epsilon" class field component "positions" value 395 component "connections" value 396 attribute "name" string "epsilon" attribute "char width" number 0.400000 attribute "series position" number 220.000000 # object 397 class array type float rank 1 shape 3 items 108 msb ieee data 403824 attribute "dep" string "positions" # object 398 class array type int rank 1 shape 3 items 106 msb ieee data 405120 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "zeta" class field component "positions" value 397 component "connections" value 398 attribute "name" string "zeta" attribute "char width" number 0.512500 attribute "series position" number 221.000000 # object 399 class array type float rank 1 shape 3 items 70 msb ieee data 406392 attribute "dep" string "positions" # object 400 class array type int rank 1 shape 3 items 68 msb ieee data 407232 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "eta" class field component "positions" value 399 component "connections" value 400 attribute "name" string "eta" attribute "char width" number 0.512500 attribute "series position" number 222.000000 # object 401 class array type float rank 1 shape 3 items 93 msb ieee data 408048 attribute "dep" string "positions" # object 402 class array type int rank 1 shape 3 items 95 msb ieee data 409164 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "theta" class field component "positions" value 401 component "connections" value 402 attribute "name" string "theta" attribute "char width" number 0.550000 attribute "series position" number 223.000000 # object 403 class array type float rank 1 shape 3 items 28 msb ieee data 410304 attribute "dep" string "positions" # object 404 class array type int rank 1 shape 3 items 26 msb ieee data 410640 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "iota" class field component "positions" value 403 component "connections" value 404 attribute "name" string "iota" attribute "char width" number 0.337500 attribute "series position" number 224.000000 # object 405 class array type float rank 1 shape 3 items 58 msb ieee data 410952 attribute "dep" string "positions" # object 406 class array type int rank 1 shape 3 items 56 msb ieee data 411648 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "kappa" class field component "positions" value 405 component "connections" value 406 attribute "name" string "kappa" attribute "char width" number 0.537500 attribute "series position" number 225.000000 # object 407 class array type float rank 1 shape 3 items 66 msb ieee data 412320 attribute "dep" string "positions" # object 408 class array type int rank 1 shape 3 items 64 msb ieee data 413112 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "lambda" class field component "positions" value 407 component "connections" value 408 attribute "name" string "lambda" attribute "char width" number 0.725000 attribute "series position" number 226.000000 # object 409 class array type float rank 1 shape 3 items 64 msb ieee data 413880 attribute "dep" string "positions" # object 410 class array type int rank 1 shape 3 items 62 msb ieee data 414648 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "mu" class field component "positions" value 409 component "connections" value 410 attribute "name" string "mu" attribute "char width" number 0.637500 attribute "series position" number 227.000000 # object 411 class array type float rank 1 shape 3 items 43 msb ieee data 415392 attribute "dep" string "positions" # object 412 class array type int rank 1 shape 3 items 41 msb ieee data 415908 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "nu" class field component "positions" value 411 component "connections" value 412 attribute "name" string "nu" attribute "char width" number 0.475000 attribute "series position" number 228.000000 # object 413 class array type float rank 1 shape 3 items 134 msb ieee data 416400 attribute "dep" string "positions" # object 414 class array type int rank 1 shape 3 items 132 msb ieee data 418008 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "xi" class field component "positions" value 413 component "connections" value 414 attribute "name" string "xi" attribute "char width" number 0.475000 attribute "series position" number 229.000000 # object 415 class array type float rank 1 shape 3 items 112 msb ieee data 419592 attribute "dep" string "positions" # object 416 class array type int rank 1 shape 3 items 112 msb ieee data 420936 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "omicron" class field component "positions" value 415 component "connections" value 416 attribute "name" string "omicron" attribute "char width" number 0.587500 attribute "series position" number 230.000000 # object 417 class array type float rank 1 shape 3 items 63 msb ieee data 422280 attribute "dep" string "positions" # object 418 class array type int rank 1 shape 3 items 59 msb ieee data 423036 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "pi" class field component "positions" value 417 component "connections" value 418 attribute "name" string "pi" attribute "char width" number 0.662500 attribute "series position" number 231.000000 # object 419 class array type float rank 1 shape 3 items 59 msb ieee data 423744 attribute "dep" string "positions" # object 420 class array type int rank 1 shape 3 items 57 msb ieee data 424452 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "rho" class field component "positions" value 419 component "connections" value 420 attribute "name" string "rho" attribute "char width" number 0.650000 attribute "series position" number 232.000000 # object 421 class array type float rank 1 shape 3 items 70 msb ieee data 425136 attribute "dep" string "positions" # object 422 class array type int rank 1 shape 3 items 70 msb ieee data 425976 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "sigma" class field component "positions" value 421 component "connections" value 422 attribute "name" string "sigma" attribute "char width" number 0.800000 attribute "series position" number 233.000000 # object 423 class array type float rank 1 shape 3 items 49 msb ieee data 426816 attribute "dep" string "positions" # object 424 class array type int rank 1 shape 3 items 47 msb ieee data 427404 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "tau" class field component "positions" value 423 component "connections" value 424 attribute "name" string "tau" attribute "char width" number 0.650000 attribute "series position" number 234.000000 # object 425 class array type float rank 1 shape 3 items 65 msb ieee data 427968 attribute "dep" string "positions" # object 426 class array type int rank 1 shape 3 items 63 msb ieee data 428748 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "upsilon" class field component "positions" value 425 component "connections" value 426 attribute "name" string "upsilon" attribute "char width" number 0.500000 attribute "series position" number 235.000000 # object 427 class array type float rank 1 shape 3 items 143 msb ieee data 429504 attribute "dep" string "positions" # object 428 class array type int rank 1 shape 3 items 140 msb ieee data 431220 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "phi" class field component "positions" value 427 component "connections" value 428 attribute "name" string "phi" attribute "char width" number 0.687500 attribute "series position" number 236.000000 # object 429 class array type float rank 1 shape 3 items 65 msb ieee data 432900 attribute "dep" string "positions" # object 430 class array type int rank 1 shape 3 items 63 msb ieee data 433680 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "chi" class field component "positions" value 429 component "connections" value 430 attribute "name" string "chi" attribute "char width" number 0.700000 attribute "series position" number 237.000000 # object 431 class array type float rank 1 shape 3 items 90 msb ieee data 434436 attribute "dep" string "positions" # object 432 class array type int rank 1 shape 3 items 88 msb ieee data 435516 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "psi" class field component "positions" value 431 component "connections" value 432 attribute "name" string "psi" attribute "char width" number 0.700000 attribute "series position" number 238.000000 # object 433 class array type float rank 1 shape 3 items 93 msb ieee data 436572 attribute "dep" string "positions" # object 434 class array type int rank 1 shape 3 items 88 msb ieee data 437688 attribute "ref" string "positions" attribute "element type" string "triangles" attribute "dep" string "connections" # object "omega" class field component "positions" value 433 component "connections" value 434 attribute "name" string "omega" attribute "char width" number 0.725000 attribute "series position" number 239.000000 # object "default" class series member 0 position 0 value "Empty" member 1 position 1 value "ApostropheCurlyOpen" member 2 position 2 value "ApostropheCurlyClose" member 3 position 3 value "Bullet" member 4 position 4 value "Cent" member 5 position 5 value "Copyright" member 6 position 6 value "CrossProduct" member 7 position 7 value "Degree" member 8 position 8 value "EmDash" member 9 position 9 value "EnDash" member 10 position 10 value "Exclamacion" member 11 position 11 value "Franc" member 12 position 12 value "GuillemetOpen" member 13 position 13 value "GuillemetClose" member 14 position 14 value "GuillemetSingleOpen" member 15 position 15 value "GuillemetSingleClose" member 16 position 16 value "Infinity" member 17 position 17 value "Integral" member 18 position 18 value "Interrogacion" member 19 position 19 value "Minus" member 20 position 20 value "NotEqual" member 21 position 21 value "PlusMinus" member 22 position 22 value "Pound" member 23 position 23 value "QuoteOpen" member 24 position 24 value "QuoteClose" member 25 position 25 value "Registered" member 26 position 26 value "Similar" member 27 position 27 value "Trademark" member 28 position 28 value "Yen" member 29 position 29 value "Empty" member 30 position 30 value "Empty" member 31 position 31 value "Empty" member 32 position 32 value "Space" member 33 position 33 value "Exclamation" member 34 position 34 value "InchMark" member 35 position 35 value "HashMark" member 36 position 36 value "Dollar" member 37 position 37 value "Percent" member 38 position 38 value "Ampersand" member 39 position 39 value "FootMark" member 40 position 40 value "ParenthesisOpen" member 41 position 41 value "ParenthesisClose" member 42 position 42 value "Asterisk" member 43 position 43 value "Plus" member 44 position 44 value "Comma" member 45 position 45 value "Hyphen" member 46 position 46 value "Period" member 47 position 47 value "Slash" member 48 position 48 value "0" member 49 position 49 value "1" member 50 position 50 value "2" member 51 position 51 value "3" member 52 position 52 value "4" member 53 position 53 value "5" member 54 position 54 value "6" member 55 position 55 value "7" member 56 position 56 value "8" member 57 position 57 value "9" member 58 position 58 value "Colon" member 59 position 59 value "Semicolon" member 60 position 60 value "AngleBracketOpen" member 61 position 61 value "Equals" member 62 position 62 value "AngleBracketClose" member 63 position 63 value "QuestionMark" member 64 position 64 value "AtSign" member 65 position 65 value "A" member 66 position 66 value "B" member 67 position 67 value "C" member 68 position 68 value "D" member 69 position 69 value "E" member 70 position 70 value "F" member 71 position 71 value "G" member 72 position 72 value "H" member 73 position 73 value "I" member 74 position 74 value "J" member 75 position 75 value "K" member 76 position 76 value "L" member 77 position 77 value "M" member 78 position 78 value "N" member 79 position 79 value "O" member 80 position 80 value "P" member 81 position 81 value "Q" member 82 position 82 value "R" member 83 position 83 value "S" member 84 position 84 value "T" member 85 position 85 value "U" member 86 position 86 value "V" member 87 position 87 value "W" member 88 position 88 value "X" member 89 position 89 value "Y" member 90 position 90 value "Z" member 91 position 91 value "SquareBracketOpen" member 92 position 92 value "Empty" member 93 position 93 value "SquareBracketClose" member 94 position 94 value "Circumflex" member 95 position 95 value "Underscore" member 96 position 96 value "BackApostrophe" member 97 position 97 value "a" member 98 position 98 value "b" member 99 position 99 value "c" member 100 position 100 value "d" member 101 position 101 value "e" member 102 position 102 value "f" member 103 position 103 value "g" member 104 position 104 value "h" member 105 position 105 value "i" member 106 position 106 value "j" member 107 position 107 value "k" member 108 position 108 value "l" member 109 position 109 value "m" member 110 position 110 value "n" member 111 position 111 value "o" member 112 position 112 value "p" member 113 position 113 value "q" member 114 position 114 value "r" member 115 position 115 value "s" member 116 position 116 value "t" member 117 position 117 value "u" member 118 position 118 value "v" member 119 position 119 value "w" member 120 position 120 value "x" member 121 position 121 value "y" member 122 position 122 value "z" member 123 position 123 value "CurlyBraceOpen" member 124 position 124 value "Pipe" member 125 position 125 value "CurlyBraceClose" member 126 position 126 value "Tilde" member 127 position 127 value "Empty" member 128 position 128 value "aBar" member 129 position 129 value "accentAcute" member 130 position 130 value "AccentAcute" member 131 position 131 value "IAccentAcute" member 132 position 132 value "accentGrave" member 133 position 133 value "AccentGrave" member 134 position 134 value "IAccentGrave" member 135 position 135 value "accentHungarian" member 136 position 136 value "AccentHungarian" member 137 position 137 value "ae" member 138 position 138 value "AE" member 139 position 139 value "angstrom" member 140 position 140 value "Angstrom" member 141 position 141 value "breve" member 142 position 142 value "Breve" member 143 position 143 value "cCedilla" member 144 position 144 value "CCedilla" member 145 position 145 value "wideCircumflex" member 146 position 146 value "WideCircumflex" member 147 position 147 value "IWideCircumflex" member 148 position 148 value "OWideCircumflex" member 149 position 149 value "Clicka" member 150 position 150 value "CommaRumanian" member 151 position 151 value "enya" member 152 position 152 value "Enya" member 153 position 153 value "eth" member 154 position 154 value "Eth" member 155 position 155 value "hookLithuanian" member 156 position 156 value "iHookLithuanian" member 157 position 157 value "HookLithuanian" member 158 position 158 value "IHookLithuanian" member 159 position 159 value "iUndotted" member 160 position 160 value "lSlash" member 161 position 161 value "LSlash" member 162 position 162 value "macron" member 163 position 163 value "Macron" member 164 position 164 value "oBar" member 165 position 165 value "oSlash" member 166 position 166 value "OSlash" member 167 position 167 value "OverDot" member 168 position 168 value "thorn" member 169 position 169 value "Thorn" member 170 position 170 value "umlaut" member 171 position 171 value "Umlaut" member 172 position 172 value "IUmlaut" member 173 position 173 value "OUmlaut" member 174 position 174 value "Empty" member 175 position 175 value "Empty" member 176 position 176 value "Empty" member 177 position 177 value "Empty" member 178 position 178 value "Empty" member 179 position 179 value "Empty" member 180 position 180 value "Empty" member 181 position 181 value "Empty" member 182 position 182 value "Empty" member 183 position 183 value "Empty" member 184 position 184 value "Empty" member 185 position 185 value "Empty" member 186 position 186 value "Empty" member 187 position 187 value "Empty" member 188 position 188 value "Empty" member 189 position 189 value "Empty" member 190 position 190 value "Empty" member 191 position 191 value "Empty" member 192 position 192 value "Alpha" member 193 position 193 value "Beta" member 194 position 194 value "Gamma" member 195 position 195 value "Delta" member 196 position 196 value "Epsilon" member 197 position 197 value "Zeta" member 198 position 198 value "Eta" member 199 position 199 value "Theta" member 200 position 200 value "Iota" member 201 position 201 value "Kappa" member 202 position 202 value "Lambda" member 203 position 203 value "Mu" member 204 position 204 value "Nu" member 205 position 205 value "Xi" member 206 position 206 value "Omicron" member 207 position 207 value "Pi" member 208 position 208 value "Rho" member 209 position 209 value "Sigma" member 210 position 210 value "Tau" member 211 position 211 value "Upsilon" member 212 position 212 value "Phi" member 213 position 213 value "Chi" member 214 position 214 value "Psi" member 215 position 215 value "Omega" member 216 position 216 value "alpha" member 217 position 217 value "beta" member 218 position 218 value "gamma" member 219 position 219 value "delta" member 220 position 220 value "epsilon" member 221 position 221 value "zeta" member 222 position 222 value "eta" member 223 position 223 value "theta" member 224 position 224 value "iota" member 225 position 225 value "kappa" member 226 position 226 value "lambda" member 227 position 227 value "mu" member 228 position 228 value "nu" member 229 position 229 value "xi" member 230 position 230 value "omicron" member 231 position 231 value "pi" member 232 position 232 value "rho" member 233 position 233 value "sigma" member 234 position 234 value "tau" member 235 position 235 value "upsilon" member 236 position 236 value "phi" member 237 position 237 value "chi" member 238 position 238 value "psi" member 239 position 239 value "omega" member 240 position 240 value "Empty" member 241 position 241 value "Empty" member 242 position 242 value "Empty" member 243 position 243 value "Empty" member 244 position 244 value "Empty" member 245 position 245 value "Empty" member 246 position 246 value "Empty" member 247 position 247 value "Empty" member 248 position 248 value "Empty" member 249 position 249 value "Empty" member 250 position 250 value "Empty" member 251 position 251 value "Empty" member 252 position 252 value "Empty" member 253 position 253 value "Empty" member 254 position 254 value "Empty" member 255 position 255 value "Empty" attribute "font ascent" number 0.750000 attribute "font descent" number 0.250000 # end =ÐSw?!A =Ìžº?'¾Û=ß)‘?/eT>Õõ?6”ý>¿Þ?;7ä>œ/?>;X>×?@Œö=æ› ?>;¥= +?2i%=„Oú$?ÀÏ>s¦? $Ç>) ? …>1j’?¸ >0+?úV>òm? SŒ>F?!A >‚Ï?@3í=i :?$ %=ÓØ?7“>*À?c     > 0º?'\ã> â? ÚO>Á?.=Øß?ù=¼÷4? R=¹<5? Lë=ØÝ,?ùž=þ ¸? L¼>"^Ý?(,>0OÌ?s>4÷ˆ?2üæ>)Ï?:ä™>kÕ??å=Ü”¦?@ð=µ„Â??‹=’/?;—F=pø?6ñJ=ƒIò?0ªR=¨€?(Jù=ä;?'\ã=Ãv´?Ræ>89‘?$ð>ÍÏ?@y =O?+Œ~     >síR>´{>y÷>¹ d>|Ÿ‡>½ðÇ>~¦;>Ãà> d>ÈGh>}Ïn>Ív|>z÷2>Ò|o>v•–>×9™>pÆ.>Û>i­®>ßd—>axÎ>âžä>X[:>å*º>NŽn>æø>DPA>çû\>9á1>è.t>/ƒ >çò>%w$>æ#Ô>üÑ>ãó>OÚ>á V> ¦â>Ý>29>Ùd¢>•>ÔÕÛ=øÿü>Ïïy=ôò†>ÊÐ\=ô&5>ŘÚ=ö ;>ÀiÃ=üP³>»cÑ>‰ö>¶¦§>Y]>²P,>q×>®{°>¦½>«A[> ÄK>¨µ†>*‘>¦è=>4ÏJ>¥äã>?>T>¥±Ì>Iœ|>¦PF>S¨a>§¼k>]"»>©í9>eϲ>¬Ôê>mx©>°a-  !!""##$$%%&&'>‘„»â­?>™í›»Ã¨>£Ó»ƒ¬“>­9î¹èh>¹%;¹.>Áƒ¢ÉŽ%<É>ÑØ<ìCö>ר—=Â>Þv5=N6 >䥙=‚RY>ê = ô>ïIS=¿®>ô<}=ì¹t>ø1Y>™æ>û)Ç>Nij>ø2>^„q>ó¾4>f/S>ê6Ü>i'N>äFœ>h*5>ß²Â>b¸­>Ü»>WÅ>Ü|4>Iú>Ök²=ÿ@>ÐÙÛ=Ùßè>ÎA&=È”÷>ÉR=´Ë)>ÁCÊ=ž†Æ>º6Ü=Ž2 >±Ím=z¿T>©âÄ=bG>¡Øf=Q.„>šl?=K>z>’Æ=IC¾>‰™I=Q.„>‚«Ñ=U#ö>r‰ü=a/>a· =xÄ>Qá`=Œ7ç>An= ô>0;t=»¸Ã>#]Ú=×n¤>îü=æÄà>€‚=÷ > œì>U%>rª>!(2=ú>0¾y=óß>@”=ê2n>S¡2=ç¹>f®:=ãÄ£>,¢=áÉê>‰ú„=áÉê>’cý=å¿B>œÈ,=çº >§«=í*:>°²æ=÷¬>ºx¹=þúŠ>Ãÿ7>¨>ÍÅ> —â>Õ7>‚÷>ÜW>ht>âl>)Mù>è}Ž>26'>îm­>An>óß>Lîž>÷Ô>YÌ2>ûK=>i¡Î>þCM>ywx?^W>„¦‡?W>Œ‘R?[®>™næ?[®>¤Ðr?®>¬<˜>ÿ@Ÿ>´'c>üH–>¼1>ö×#>À†E>ó`h>Ãý>ïé´>Çs·>êxA>Éí>æ‚Ø>Íâ>߸>Ð{š>× F>Ò•þ>Ï€t>ÔQQ>ÅÚ?>ÔQQ>¬!>ÖLD>¦Ž>ØF·>£µ¥>Ü<>¡ºò>á.Û> ½•>æ! > ½•>ë“>¢¸O>ï)}>¥Ïÿ>ò×>« s>ò€>±’>ò€?>ñ$,? 4>ïIS? .¸>ì…?˜>èS?÷D>ã)‘?6š>ß4,?÷D>ÛÝ? ê>ÙD ? ÿ7>×È? )>×È>ûK=>ÓSô?Ú[>Ï^Œ?g>Êêt?Ä>Ã~Q? )>½°? ¢Û>¶Aå? >‘>®7H? {>>§È~?x–> Û?÷D>—òå?uñ>‘l?µH>Š–Ÿ?Ôð>„'Ü?…Å>|o?uñ>o‘æ?÷D>`¹­? ùè>SÜ? üŽ>Hù?? }â>?Ñ]? `ä>-Ce? )>k%?Í>Çk?™>¥ ?x³=û…?þ=ãÄ£>úMä=Ì2>ñe¹=´CÄ>èü<=”˜>ÛŸý=‚È->Ѻv=eå>ÇÔõ=J/I>¼sl=6dN>°‡=&Ž¥>£6ú="™2>—Õn= ž>‰{Õ="™2>vD{=.yh>Tž=BD†>8è»=mÏï>MV=Œ­¼=ï/=®S¨=·ÃP=Ì2=”"½=ë¯a=a/> ¢À=Ââ>ht<Ì™&>8&?TÙv;4ê>r‰ü»ƒ¬“>…%2»Ã¨>Úw>'W>a)½Å¤'>•Ài½º+Z>˜ˆG½ê>˜ŠË?"R¢>—òå?&,>”W*?)ß">Ip?*Rœ>‡´¬?)ù>‚Ù…?)>¬o?&e>¬o½iÞ®>‚ ™½©&…>….½¹]æ  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgegh›œ›ž›žŸ›Ÿ › ¡›¡¢›¢£›£¤›¤¥›¥¦›¦§>Ó‘…>;Än>Ùwš>àh4>=Ùr>æÿ÷>@  >ïSà>DÉø>õ9ü>I¥›>úÝ{>N*?V»>UqË?`¤>[°·?ÃI>dâ°?îr>nm•?×>xÖo? ©p>ø|? eº>‰Þ ? ÈÚ>“Ä´?Óz>¨½7? É>®bÙ? 9q>± ?â,>²†?Í'>±ÄÆ?2G>¯Ü.?'ã>«È?á>§/ ?ñˆ>w>ÿû4>†>þ)>ƒ‡þ>ú„>€í>õ 5>xQ)>ð†>r—ƒ>ê5u>l±h>ä¨L>h[ >ßä>eh>ÙÐq>d]q>Óê\>d§>Î=>eh>É(ž>f²>ÂÛ>h.£>¼ª¿>lX‘>·{>qåÜ>±7`>xÖo>«QH>F×>¦Îy>†"t>¤>ˆÒÄ>¢KÁ>‹¯>žz`>’ù>›€>˜ß;>™[ÿ>žVK>˜%J>£ã‹>–•…>ª‘—>–&‘>±?Š>•tú>¹Ö>•*>Á‚>•*>Ç >•ÍÒ>ÎO>–&¢>ÕñJ>—»>ÜFp>˜íK>ã Ð>š:0>éÎÃ><>ð©)>Ÿ,)>ö 9>¡òÜ>û>¥k->ÿ<>¨ãv?²ý>¬ð?Ç÷>±7`?°ˆ>µaU?Ù>¹ä?JÂ>¿qe? U?>Äþ©? 3R>Ê‹ô? ¸’>Ð5? äø>ÙÉ? äø>áÛ? _º>æNR? ®>ëÛ—?£”>ñhÛ?»>ôˆT?„ >öö?M5>ùcí?d¦>û ?T>ýæ¼>üÎ;>ÿ¹>÷*¿?™T>ñà?4Â>ëâ?4Â>Ù¿?æ‚>Õ)j?˜>Ó*«?ûf>ÑÇU?·>Ñ­?s²>Ñ­? \B>Òxü? žE>Ô¤+? ¦>Ø·ì? Ê>Üáä? Ê?0Û? Oî?Ñ? ©p?| ? µ ?ÔY?%[?oË?i4?œ3?â?oË?Ú ?³ ?ðé?ZÐ?kª?EÖ?kª?JÂ?Ûï? =Ï>þñ8? ÍŠ>ûÑ¿?‰±>öH?EÖ>ò?f‰>íU8?‡<>籞?eO>ã.Ù?÷>ÞS9?oË>ØN?È>Ó8ª?õ >εå? <>Ê3?Ó¸>Æ (?È>Á†\?oË>¼Qï?¾#>·Ï&? z>³ýÿ?³¤>°È3?ëÌ>ªFÂ?EÖ>¥U?¶>¡WT? G°>oü? ¬×>™žó? ê>•tú?ñë>‘K ?Òu>!?ße>‡“Í>ú`f>„t^>óoÒ>­µ>ì5>~Í>ä„>{‡>Û×a>x@Û>ÒÑÐ>w3>ÊÖ¾>w6A>Àƪ>w3>¶¶ž>y¤1>ªêg>}~>¡3.>‚_`>”¡>†0}>ŠLo>Œ™>€•0>‘K >t¬ˆ>–ØM>h.£>Èë>[°Ä>¥k->R«3>®ã>I¥›>¸'ú>Bµ>ÂÛ>=Ùr>ÊäÄ>› 3?ãí>?Î>3(? \>SoÜ?&ñ>x+?+Ðò>8÷?//>¥£Z?0”f>»Í²?0Yû>Ò,E?.`_>è2?*´>ýT=?%l?†Í?©Ç?pé?—Ô?0?? i ?“ø?WS?$sÔ>ñDB?'±>Ûç?)7H>Ä»W?(üß>®µ‹?'A>™“\?#Vâ>…Ùü?ì>h ?L«>I??:¶>/P? í>ÿÛ>÷ôf> ì>âŠ>ò>Ì_¥> Û½>¶>Â5>ŸûK> s¯>ŠÙ!>5“>n?>Pœ‡>J—>pä[>+™Ç>ŠÏÁ> Ò>žó3=ýÇ>´]–=ã,é>ʇñ=Öû>àæ}=ØÎ˜>öìJ=è›z?>>ÿ*?$)p>°?-Uà>5“·?4Ù¾>bYº?:…©>‰£8?>5ß>£’À??Ó$>¾Wñ??SH>ÙJ?<¹r>ó¿G?8?ˆc?1†??Ox?)3€?ê®?R=?&? ¼?-šü?å?3Fæ>õÛ•?6÷>Ûa?8”`>À$A?8ƒ>¥¯ ?5z°>Œ]Œ?0×B>ižÄ?*G~>?2?!ô¿>€ç^ =¡V>̘Ô=¥8>±¦µ=¹ãë>—1‚=ÞÿO>{À> ¾²>L£²>+ ´>"6÷>RŽÏ=û H>TË=¾ë_>˜ Å=‘‹ø>²L=h”>ÌÕw=N@e>çÇ =V>(?i=Û°? Ç'=¥ )?Ž<=Ù‡M  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgeghÃÄÅÃÅÆÃÆÇÃÇÈÃÈÉÃÉÊÃʠàŸÃŸžÃžÃœÃœ›Ã›ÂÃÂÁÃÁÀ¡ Ê¡ÊË¢¡Ë¢ËÌ£¢Ì£Ìͤ£Í¤ÍÎ¥¤Î¥ÎϦ¥Ï¦ÏЧ¦Ð§ÐѨ§Ñ¨ÑÒ©¨Ò©ÒÓª©ÓªÓÔ«ªÔ«ÔÕ¬«Õ¬ÕÖ­¬Ö­Ö×®­×®×د®Ø¯ØÙ°¯Ù°ÙÚ±°Ú±ÚÛ²±Û²Ûܳ²Ü³ÜÝ´³Ý´ÝÞµ´ÞµÞß¶µß¶ßà·¶à·àḷá¸á⹸â¹â㺹ãºã仺ä»äå¼»å¼åæ½¼æ½æç¾½ç¾ç迾è¿èéÀ¿éÀéêÃÀê>æc©=Ëæ£?£B>¸¼>¾L>‘?0Ë>ÓcÛ>䙫>ï+ô>¡c>«õ¹>:Ž»>ðÓ> ¡>Ôë—>†Ñ>‘Ü>ÈD>ïK>;¢=Æ*>¢>mV    >xà€? Aõ>€¢Y? »>ƒè6?Â>†-7?j›>‡c?Ù€>‡‚?UÓ>†‰”?É™>„?# >q?&A&>zâh?),>q2l?+ž>fJ?-·*>Y¿8?/Z>LÓ?0|›>>Ô6?1†>0âé?1' >#Ù?0ªÈ>¾?/¥Ì> 5¥?.‡=û“?,”=çƒ?)²˜=Ö» ?&éÒ=É£±?#ÕË=À¨? ‰ò=»¸N? =»<?ž¸=¿:?*ô=ÇF?Õ‚=Ó€E?³g=ã¿? Ø`=ö߸? Vo>’÷?=b>ã?šu> t?wò>-Î?Ý>;¿X?Í€>IŽo?IÅ>Vä4?NÀ>clœ?Ö>nع? Õù>G?#>>—#ü?‰¸>œŠÇ? k¿> Yr?ªŒ>¢wý?% >¢Ù?¸¼>¡zF?"Bj>žd=?'Ÿ6>™ªn?,­O>“j¥?1LÚ>‹Ì=?5`¯>‚ÿH?8Ï>rvn?;‚>]{B?=iÖ>G‘??>y>1B‘?>©§>Ñ?=úB>¨¢?=Ò?.¼Ã=Xmµ?)Ú¼=9ø\?$›ð=)ê?!m=%ûr?À=0ñ²?=I¡ý?§H=op{? ™.=·o?ù¥=¯0ù?åÍ=Òd×>úî¾=ùu>õ‡õ>µ´>ñ¹H>'Ÿ·>ïš¼>=îd>ï9­>T+>ð˜s>iˆZ>ó®|>}ÀÀ>øhO>ˆu>þ¨()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O>·j>ƒiº?T1>ƒiº?T1>¨Îj>·j>¨Îj>Ó—>ƒiº?)ó\>ƒiº?)ó\>¨Îj>Ó—>¨Îj=(®?æù=„=î?˜ì=z"“?"P=oŸË?Œl=i6£?á4=gõ?+5=i5Ü?u8=ož8?Éý=z x? 4=„<}? ½s=&ú? o^=——›? R=£Ln?lp=¯ûj?ÄJ=½U??]²=Ë!?;4=ص?]¦=æ?Ä3=ò¾?lN=þs? QØ>qø? o&>ç^? ½5> }©? 3Ó>K?É·>¸š?tì>B˜?*ë>¸Ð?àé>°?Œ$> ~/?" >è?˜°>rÕ?æÅ=þtó?=òÀ,?é¯=æ4?‘Û=Ø·l?øm=Ë}?í=½W›?ø{=¯ý¤?‘ó=£N‡?éÑ=—™‘?H=Ï0o>ãst=—5n>à§T=k0Ö>ÑBŽ=k!¤½œ™|=‰#½è-=­Š3¾®ç=å…¾¯L>Á·½êúÃ>'#½Ÿe™>ÇW>Ñõ+>•>ß@•=Ý/×>äÙ ()*(*+(+,(,-(-.(./(/0(01(12(23  !!""##$$%%&&'=Ä ´¾Ê>ô–¾ />J€(½÷<>zW!½­ b>ŒÊL½6®>™zÅgc>íÝn>Í6ÿ>÷#Z>ü/>÷ U?ãë>øš'?Å">ü“? ýÌ?Ð? r? ë]>þó?\>Öùf?\>Ñ?Uñ>Ñ?7g>ÓØ?i>ÝPÃ?%Ší>ñT¨?*lL?ãë?+'Å? ¸ç?)ïŠ? ¦Ò?$Ï…? ¬ì?ô0? ­.?àz?ß?ÿ?u?Ʀ?D…?=u?# f?Ù?$H?ô0?# f?$Ï…?8Ö?,ž¡?oÕ?4mÂ? ¿C?9O2>÷¬?:Æ>ÞÈ‚?9O2>Ï*F?6a‹>ÁÑ?2yø>²^«?'½>¬A?i>¨¯?I»>¢CZ?E >ŠÖ?š:>€—? ±¯>uup? ³o>q‹Ð?ôI>ލ>øßH>št>>öë >ž[Ì>ñÄÿ>r‡þ=HŒ>>bê¾;§„>QXF¼ß¢­>2Û½lÂ0>ë½l¤=Ó¾ú½¥;°=…§â½•™={±l½…ÿQ=‰[½=çd=ƒµ|¼Àd$=dUB¼ä;<õµ´:ª`‘»]Bº'x¼°¼EYq¼öH¼ß O½d ½]#Õ½ Â6½l¤¼¿¨1½ÝÙøsúS>ýî.>‡§:>÷\Ã>,º_¾TªII44556677889:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CCD   EE   FF     !!!""##$$%%%%&&'''((())001122334)*+)+,),-)-G)G.).H)H/)/0=uã1>‡j¹>DZY=@ÛÐ>NÔ==[>Zb<ÏŸE>eF<ÏŸE>k£<ï þ>s~ï=ô8>tÎ#=KU¬>&;á>‡j¹>k£>êI2>pàl>ô|>k£>ú§°>cÈ>ýíÊ>Zb>þ•g>P#>ýF)>€ÙÍ>‡j¹>ÄJ”=@ÛÐ>ɇ†=[>Ïl<ÏŸE>Ô©<ÏŸE>×ï(<ï þ>ÛÜß=ô8>Ü„y=KU¬>µ;Y>‡j¹>×ï(>êI2>Ú¡>ô|>×ï(>ú§°>Ôq>ýíÊ>Ïl>þ•g>Ê/'>ýF) >àŸ>ƒ—x>/Ý>òç£>—ó>úÃ">’}>þ M>ŒÑ…>þ ]>‰‹d>ü>… >ø$æ>„õî>ñ˜µ>¬=—>ƒ˜.>‰ˆq=‚è°>†éÓ=7?T>‰ˆ<=Ý{>uå<ÑX¸>’ :<ÆÝ°>—H/<ÛÐ[>}n>ƒ˜Ë=ìIÈ>òèó=×Vk>úÄu=¿Ä;>þ  =ªÐq>þ ´=·ñ>üæ=Žâ>ø&8=‹b>ñš >@X>ƒ™€=¬&=‚íî=“1Â=7Iñ=«;=è=­aö<Ñm±=¿·A<Æòé=Ô«<Ûå™ =uã1>‡j¹>DZY=@ÛÐ>NÔ==[>Zb<ÏŸE>eF<ÏŸE>k£<ï þ>s~ï=ô8>tÎ#=KU¬>&;á>‡j¹>k£>êI2>pàl>ô|>k£>ú§°>cÈ>ýíÊ>Zb>þ•g>P#>ýF) >}n>ƒ˜Ë=ìIÈ>òèó=×Vk>úÄu=¿Ä;>þ  =ªÐq>þ ´=·ñ>üæ=Žâ>ø&8=‹b>ñš >@X>ƒ™€=¬&=‚íî=“1Â=7Iñ=«;=è=­aö<Ñm±=¿·A<Æòé=Ô«<Ûå™ >­->kã’>°q‚>xÜ\>²§ß>ƒXó>³ÂD>І>³¹±>‘ɧ>²Žq>˜ô•>°GÆ>ŸÚ>¬ô">¦N°>¨¨q>¬)¿>£Ì>±FN>š­>µ„!>—K>¸ÈŽ>3†>ºþç>‰ï>¼L>ÂÏ>¼À>u/Â>ºå}>gdÉ>¸žÕ>Z{‹>µK1>NÅt>°ÿ€>DŒW>«ÖÕ><¢>¥ñ¼>5‡×>ŸuW>1>˜ŠŽ>.æT>‘\ñ>.÷x>ŠÑ>1N>‚îó>5ÛN>xÙ><‚>k)¢>Eú>_s„>OkB>U:g>[5ˆ>L¾¹>h.E>F5ç>vÕ>AÉ5>‚/{>?”d>‰r¥>?¥‰>‰>Aü>—ƒ >F‰_>÷¬>M0§>£Ò´>UÈ >¨ïB>``?/d†>Z“f?2«>mK?5.)>€±×?6Ýæ>‹ƒ´?7¯©>–º†?7žK>¢¥?6ª9>­;Ÿ?4Ùt>·÷þ?27r>Â"?.ÔÇ>ËÁ?*ÆÎ>Ó?&'>Ù¾?!½>Þ•Ü?©Ð>áõV?c>ã˜Ü?cÕ>ãv ? ÍÛ>áù?oª>Ýìp?k>بm>÷¿‡>Ñã>ïÔ²>ÉÇ&>éG>À‡°>äAu>¶^ÿ>àáû>«(>ß>o> VP>ßa1>•1>áIU>‰Õ:>äê×>~1¼>ê.ä>js>ðô7>Wò)>ù(>Hx?'Ï>;5?<(>0õÿ? ¥>*7 ?@>&ïù?ë >'5x? >+¿?!ß:>2HÑ?&ãÎ><ÐÖ?+o>J[{>!7Ò>¸Ž>IûÍ=ü…ë>‚âü=æÈ>žS=÷g>³Î1>I>ÆÔQ>,vl>ÍŸ¯>J[{>Ü’6>'ð>õÒ>ú·? ÒN=Öy²? ¶=Ñ !?*Á-=ì7|?4ò/>¸Ž??#->B4K?Fœs>„n±?GøR>§Ã5?D’¥>È` ?;“>ãa?/‚µ>÷ïe? .?¹;?ï´?g(?´è>ý^Ô>òP>óÛÆ>Ýî>ßyÈ>Îû‰>É»ç>Êçð>ºÉ\>±v>Ñã>Áë>ÜÂ>ZJB>Ú O>)_>Íσ> ~>µYã=æ¶>—tÑ=à™2>}þv=ðç¡>J[{VWXVXYVYZVZ[V[IVIHVHGVGFVFEVEDVDCVCBVBAVA@V@?JI[KJ[K[\LK\L\]ML]NM]ON]O]^(O^)(^)^_*)_+*_+_`,+`-,`-`a.-a/.a/ab0/b10b1bc21c32c3cd43d4de54e65e6ef76f87f8fg98g9gh:9h;:h;hi<;i=<i>=i?>iV?iPV#P#"P"!P! P PPPPPPPP$#V%$V&%V'&V'VVVViiiiijjjjjk k k kl l l l lm mmmnnnnnoooopppqqqPqPQRPRSPSTPTUPUV>›¨ø>Ç+>šY¢>Ç+>‰>£„ÂÆ½uÂ>ø½ß¾w>r¶e¾í‘>hÅ"¾2°!>eá¾9‡>W¶<¾K"Ñ>Q`E¾Që…>@|¾_ß;>9ß¾dZ>%8N¾l¬>"2žm‘h>ϱ¾r°!=Ô⣾r-=·Ô¾n—=³¾f¾n{=èľh´9=f c¾ZáH=˜™½Ø“u=±§½äÝ/=½}¿½éûç=Ô°¬½ï =Ùô2½ï²=ìyc½î{=ó¯î½ì‹D>9ô½å¡Ë>ç¾½àA‰> I½×KÇ>CD½ÍÒò>Þ—½ÁG®>ê—½¸Qì>' ½bN>©÷½["Ñ>#^1¼ñ©ü>&|¯»ƒo>+*=:^5>IÅç>Ç+>L†>Ç+>TÄ?>T°¬?>\'?›¦>bˆ?!xÕ>k±¶?,Z>x+Ç?5Òò>Lé?;o>‚è¥?‰pŒ?@zá>ŒÀó?B¬>“¬§?D´9>—Ä´?EÒò>Ÿÿ?G >¡„?GKÇ>¯¦U?G®>ºFF?G >ÈÛ?F>ÉÞÜ?DÝ/>ÖXæ?B¬>Ò½¡?&Ù>É6?)xÕ>Ä£?*~ú>¾ó?+ >» é?+ >·?*°!>´"2?)ûç>°ê½?(Ý/>®zæ?'®>«§:?%º^>©æ?$“>¨1c?!Òò>§,? “u>¥]?&é>£^1?%>¢ái?—>Ÿl?> o°? ! "! "#" # $# %$ % % &('&% & )(&)& ) *)+*++,+,-,-.-/.//0/102132343K454KJ5KI5JH5IG5HF5GE5FD5EC5D65CB6CA6B@6A76@?7@>7?87>=8>K<8=LK98<;9<:9;>¤4?>Ý™Ì>›äÀ>ÜDÓ>‘±®>Ôøè>Žó¹>¿ÊÐ>Å>¨q>Y{í>†àŒ>-³o>|>g=ì{ô>då]=‹Íš>A;‹=s6>iŒ<¶µÔ=¢Á<Ýû <•÷Ä>OS=í=»>|‚Å>‘>Cv>?™>‰îg>›N¬>G÷?>*ƒî>ló]>>DY>‡‚>S`>˜…ø>j¹G>§7> T>±U¤>Œ¶>»!>ž98>¿î7>¯¼|>¾xÔ>µb>»Ö>ÒÃ">®kƒ>Üú•=:'ò½åJ=š¹Ô½‰¤{=ìs&½Ä÷>*Ã6½ìäe>e#j¾Ø>Áܾ ß>¥¦¾!5>µ³¼½ø–d>Gô\½5èµ>$íý¼ß²î> ”¢ºØŒ=ûiÛ<éD=ìw€=z=òNÅ=½B²>ȃ·½ç4>غ½ÉäÖ>èÈU½¡³>ø23½SàZ?Xs¼™Ì4?çÐ<­¥?Y=b§7?]©=·`ò?è%=ñÁk>Þd»<׌>ÑAc¼ÏÖ—>©2½½>¯ 1½K¶g>œäÚ½Xõ>™8D½^8>|S½\Éd?B3>:«>ø×ª>!¾F>âó›>-kÄ>ή >*%m>†>&ï>º?T> ]->¸÷=Ð>Û§"=ÚjR>äh­=½9—>èÄÕ=£)’>ê>â=nX>çSn<Ä|1>¼Ø =˜6>Ç8S=ˆ±W>ÑO‹=†I>×ìI=ž1é>Û§=·c²>™(|?„×>–o?oI>“I ?—>û¬?šý>.Ý?î>íÞ?"k>@¤?CN>+o?\ˆ>®Ò?z>ŽÇƒ? §â>n? ñ^>’™´? aQ>•;?§>˜B>?Úú>›œ?ô†>Ÿ3p?T>¢ñª?ýo>¦¿7?òØ>ª„?4ˆ>®(?Àà>±•?”k>´µ–?©ü>·tü?ú«>¹ÂV? ~F>»:? +)>¼Ð9? ö×>½}h?Õõ>½’–?¼¼>½:?Ÿ*>»ö‰?qa>ºOp?'å>¸$R?·ì>µ‚ð?Ÿ>²{Ç?>H>¯!ó?$¼>«Š™?Å8>§Ì_?Ó>£þÒ?&j> 9ö?äº>œ•„?Xc            ! !" "# #$ $% %& &' '( ( ")*"*+"+,",-"-."./"/0"01"12"23"34"45"56"67"78"8#19:1:;1;<1<=1=>1>?1?@1@A1AB1BC1CD1D2?EF?FG?GH?HI?I@JKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabJbcJcdJdeJefJfgJghJhiJijJjkJklJlmJmnJnoJopJpq=´:u>…¿? a>…¿? a>ªul=´:u>ªul>@=€ ? G>ë¥+>ø­¼? =´¼á=êd=²Çü>22Å? 2Ê>22Å? 2Ê>|ü=²Çü>|ü=²Çü>¢£™? 2Ê>¢£™? 2Ê>ÈE=²Çü>ÈE  >…J> 4>µ‹> 4>µ‹>¡¬? ª>¡¬? ª>È]“>´Fœ>È]“>´Fœ?WÌ>ŽÚ?G >Ž@…>È]ª=·¼^>È]ª=·¼^>¡”p>…J>¡ó˜=³c<¹–t? F.<¹–t? F.=ÃøU=³c=ÃøU     >ÎÛ€=‹Î§>ê|ò=ϯ?’.<È?åä¼?pä?¶ ¼€wÏ?+þb¼?pä?5u¡:«Ks??.³<¾Ð0?GÓ=f~A?L:¸=¼í¢?NÉ®>eþ?OL©>4m?NFñ>at1?J²I>ƒ¨¸?A{ò>“…e?9L>œ»(?,]>¢ß?°¥>£å?ñû>ŸÍQ? tb>ö~?0>z·?>GÞÐ?‹ò>-C"?°>"o?Ó÷>&[?ñ¸>5rù?zÓ>Q|? ‚>hÖ?°>!Ï?+{b>€Ç?3(9>w÷Ù?9 Ì>[PL?:Õ>6y ?;™½>ëª?9Ž=åÝ?/“M=˜X?%Ú~= §?ªª=ƒŸ?hâ=“þm?+=Á>ß;+>¡Î>äY>&[>çk>Q|>æe>|ª>ãS>’l>Ü)<>¦s÷>È2Ê>¿†x?tØ>¿†x?Œ_>Á’P?æ\>Æ,ó?iY>Ò÷Ð?æõ>Ü-É?€Î>âQÒ>·Qö>âQÒ>°'•>ð"y>« :>ûçK>§øD?)v>¨þ?_H>­0?•>¶Ï$? ;õ>¿‡?$•i>ÌLt?(îÄ>ÙF?*ú¿>ìˆè?,ƒµ>ýîŒ?+}¨?ª?)q²?\ì?%›L??@? ;ð?Ç÷?â†?Ë??åä?*?Ó÷?kC?P×? Ž÷?\«?è ?€ï?“?Ú*?Ÿ?!?–?”Š?%W‚?¦x?)ol? ˆ•?+:?Gu?)o±? }`?#Ή?)qÈ?i?0›©?tØ?5¹‡? †¶?8Ë}?0?:Tp>öÄõ?:×s>Þ52?:Tx>ÊÔ?9 >½u˜?6¿‹>­0?2$˜>ŸÈp?-³>”†ª?&_×>\?¸÷>‡8§?G¤>„&þ?_H>ƒ!? 5l>„'E?Ä>‡8î>í“•>‹Ó½>âQà>æT>âQà>\”>áL&=ö)£>Ú"t=ðñ>Î]˜=üD>Æ-½>È<>¿†‚>›°…>¿†‚>¡Ôf>µJµ>¨þD>ªò>°(>›µ9>·Qö>Œ[Š>¼oÛ>qÓà>¾{Ñ>Q|>¾{Ñ>6y >hÈ>_h8>m²„>m»ô>Jç4>qÔ*>¤Q>n =ߤ«>d†¦=“ëŽ>Jð¤=QÞ>2a=ª> ‰Ü= F/=Ç)<=E—.=V/=Ó³<×aF=Àò­;>P©¼?pä>.?м¡7(>cvº¼×y>Žbȼ±>¤æU;Î’Õ>²4<¶¡è>ª:=ݬï>–’]=œ.w>….e=vß>U#=^Nj>,3×=vÝÍ> z@=– ÿ=úAˆ=Åz=úAˆ=úTg>Iã>¡³>Ñô>"‘>Jæ®>)+‡>pÄÄ>#¨>]Y>­Á=ö(¤=Û Í?6 =¶ÉÁ?õu>áKã>âc>ÁQ$$%%&&''(()*(*+(+,(,-(-.(../0.01.12.23.3“.“4.45.5566778EFGEGHEHIEIJEJKEKLELMEMNENOEOPDEPDPQDQRCDRCRSBCSBSTBTUBUVABVAVWAWX@AX@XY?@Y?YZ>?Z>Z[>[\=>\=\]<=]<]^;<^;^_;_`:;`:`a9:a9ab9bc89c8ooppqqrrssttuu„„……††‡uuvŽvŽvwŽwwxŒxŒxyŒyz‹Œz‹z{‹{|‘‹|‘|}Š‘}Š}~‰Š~‰~ˆ‰ˆ€ˆ€‡ˆ‡‚‡‚ƒ‡ƒ       !!""’’##$cdecefcfgcghch”c”icij8cj8jk8kl8lm8mn8no>Žâ^?!|>ñ?(>’¦‰?/Ø3>ó?7$I>¥“?;Ù„>¥õ`?>èà>óå?AC¨>”Š;?>é/>‚¥?2çë>w,R?+Üq>rt~?·>}¿Á? µÿ>‰³Ô? yB>„?–ù>¦äÁ? p>¯Ö‹? Â>´’?µ•>³œ ?¥>ª0ý? ŠÜ>› !?!|>£^£?@é<>o(Î?$R&>•j?‘>°P~?>Þ=áD{?/ØÖ>;r?7$á>\L?;Ú>@?>éy>l?@é×>= ?ADD=èÓy?>éÉ=¡>æ?2è‹=… ?+Ý=iø\?$RÄ=Îp~?(=w'?·¤=Ò3í?!|µ=’)ú? ¶›=½yž? yÛ=Ôÿÿ?->XP?—’>É?  >+]? \>3|]?¶0>2Q?@>+ö!??v>·A? ‹t>•o?!|Ÿ       !"!"!#$"#$#%$%&$&'$'($()$)*$*+$+,$,-$-.$./> Q½?'0£> ,û? ±6>å²?µ=Û=ß?×=¿c€? 2÷=»ªX? .¼=Û<$?Ü’>,Æ? .‹>#t/?<>1^T?ö&>6Ï?2Ë>*á-?:®â>‡Þ?>Ü(=Þñ’?@·t=·ôº??S =”°?;a:=ƒú+?6½~=…ÒJ?0yŽ=ªöP?(D=æ^¿?'0£=Åßì?5®>9DF?$e> ïz?@@£=’Ñ?+^4>šÿ?µ>Ü;?×>ˆå§? 2÷>‡÷O? .¼>Š„Â?5®>ÛÂ?Ü’>™#? .‹>ªÆÎ?<>±»ñ?ö&>µ®ã?$e>Ÿ£A? ±6>´«?2Ë>žµ›?'0£>®}S?:®â>£Ð¶?>Ü(>žz?@@£>É%?@·t>‡ í??S >|qŒ?;a:>t°?6½~>už?0yŽ>{‚?+^4>ƒÊP?(D>’¤f?'0£       !"!"!#$"#$#%$%&$&'$'($()$)*$*+$+,$,-$-.$./?З> \?¹m>3›? w¦>SQË?&Ú~>x¼?+¹¤>$z?.öl>¥‹Ð?0|l>»²ÿ?0B>Òc?.H±>è?*œÛ>ý04?%U¥?sb?”Y?\;?ƒŠ?v? V?}H?EÃ?$\p>ñ$0?'™8>Úüý?)8>Ä¡?(äØ>®žò?&ë>™Ä?#?©>…É1?ør>gï?7)>Hö'?&Y>/jÞ?øß>î0>÷Ñ$>û>âiË>ã>ÌB–> ̤>µç9>±û>ŸäŽ> a\>ŠÅ`>5~8>n¡>Pƒ\>JzI>pÆš>+X>о?>ö>žÞÛ=üòÐ>´F0=ã >Êm_=ÖÜ“>àÈÀ=د·>öËr=èzs?õP>ì?$:> ús?->Y>5yÞ?4Á)>b9‰?:lD>‰§?>ó>£{€??¸þ>¾<à??92>Ù+,?<Ÿ½>óœ¢?7ü÷?uC?1n!?:­?)?Ô[?<¶?%ÿ? Í?-‚L?Ó[?3-j>õºÚ?6Ý>Úùz?8z >À .?7úZ>¥™»?5`á>ŒK×?0¾>i‚ ?*/G>?N?!ݸ>nÀ?ýÛ=øÇ ? Íñ=Ën/?”=­ð¢>ç=&=¡o>Ì{¿=¥¼>±p=¹Ò|>—=ÞèŽ>{œ>> ¯Ÿ>L†™>*õâ>"ß>Ru[=úæ¡>4ø=¾Ð->˜ b=‘wR>±ù;=góŒ>̺˜=N#)>ç¨ê=VÂ? +=·@? ´=¤ñ²?y‡=Ùh_>nm°>DS>Ä™Í>DS>Èxd>EYÜ>Ë•&>H è>ͯi>LŠ>Ïò>PÊt>Ð`{>VØÚ>Ð`{>]“ˆ>ÏÉÞ>bÊ›>ÎqU>g«ž>Ìl‡>k4 >È£>mcÙ>±l>m ¼>¯§Ê>n;3>®O>qW>­b5>só‚>¬u~>wPÝ>«]d>}àx>«Š>‚M“>«Š>¶tm>«³Ï>¹%‚>­b|>»*W>¯gP>¼‚Ý>²\>¼Øý>Úx„>¼Øý>Þ‚#>¼Øý>âáâ>¼mZ>åþ¨>»€{>èÚÝ>ºÿH>êõ >¹üÜ>íüZ>¸yA>ï•t>·aS>ñ‰>¶L>ò\>´oŸ>óT>³>ô ¿>±E>õ (>®a2>õ¹p>«Yü>öe±>¨RÆ>ö»Ù>¥K>ö»Ù>÷s>÷ù>|‡ï>÷h>w%Ä>÷¾:>qW>øj‚>lat>ú/>dú…>ûq¹>]“ˆ>þxï>V,’?AE>NÅ£?>J¹?ɰ>F²e?zÄ>D­”?K>D­”?:y>E¯ó?}_>Hâ4?Ð>NDY?ú>V,’?ú>\;?ªÖ>bõ³?¨q>g«—?ÆQ>kŠ ?k:>mº? ±Ü>mº? âÊ>o“¼? ª¤>roç? >uÍ;?GG>z®#?ûø>€HÅ?ûø>£œé?Ðð>¨é…?E>­´î?B>³B.?*¢>·KÇ?òY>»*W?Äà>¾1‡?>à>Á8À>ü3†>Âçc>ø^>Ä?ó>ñ‰>Åmn>ìùñ>ÆDÄ>÷¾:>ÈŸ³>ýÌ»>ÊNV?+¶>Ì=ž?œ9>ή?Já>Ñ_5?ù>ÔD?‡ó>×-? ’>Ùrl? lv>Ý^? 9>ßÁp? Ÿ>ãà˜? †È>çê;? Ò->슎? û>ðÿÚ? òx>õµº? Çf>úk¡? [¸>ÿ!? ¯s?¿? .=?š`? 6ª?ßÇ? )}?ÄJ?†? 2\?ù? €#?Ò? ¼?{õ? g ?õæ?ê£>ý÷Æ?>ùØ©?Ï'>õ¹‡?†0>òó/?ç>í}?s>ç—É?¾j>â5¡?é€>Ý)£?é€>qÂ?é€>k¼—?¾j>g³?RÆ>b{‘?ñß>]š•?ä²>\Bc? Z>ZéÚ?^¬>[? \D>[Á™? Wt>]p+? €#>^m? ÓÝ>`øG? '˜>eâ?¦`>i·Æ?{S>Š_?{S>Œ~õ?PA>Žû?Ï>±[? >>ˆ”?”g>‘Ëy?*>’w¾?¾:>’w¾>ˆß>’!š>¡R>‘ui>|\Ý>ÜR>rÆ >ŽC2>n!>Œ¿r>m ¼>kO>m ¼>e®$>lat>bP×>j\©>_Ÿ·>hWØ>\î²>e¦Æ>Z=’>`ðé>Y>\çG>Xå >VØÚ>Z=’>P,>^óv>J¼>eâ>F²e>ª±j>Ôfk>ª±j??n>«y?.³>¬ ó?òé>­£? Ú>¯§Í?8P>²Ä¤?%1>¶7Ž?Ü<>¹U? Gå>¾JÂ? “G>×]? ÓÝ>Ëj ? þé>Önë? þí>Þ,? þí>ä:r? ¨Ë>诺? =>í»Ù?Þ>òÇÝ?ƒ®>ö»Ù?Kt>ùlë?òé>üŸ=?#ð>ÿ%D? ?ië>þ?Õ“>ùS¬?ë#>ó°í?ë#>îNÅ?•>éBÄ? >å>þxï>àÙb>üßæ>Ýç±>ùؘ>Û!>ö»é>×ü>ó‰²>Õ~P>îþ»>Ód>霗>Ò v>á߀>вí>Ú ç>ÏÆ >Ò»q>ÏZd>®»>ÏZd>¬ ó>Ь>ª±j>Ò6’()*(*+(+,(,-(-.(./(/(((((('('&(&%//0001112 2 23 3 34 4 45 5 56 6 67 77888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHI I IJ! J!JK"!K"KL#"L#LM$#M$MN%$N%NO(%OPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]P]^P^_P_`P`aPabPbÛPÛÜPÜÝPÝÞPÞßPßàPàáPáâPâãPãäPäåPåæPæçghijklqrswxywyzwz{w{|w|}w}~w~w€w€w‚w‚ƒwƒ’vw’v’“uv“u“”u”•u•–u–—u—˜u˜™u™šuš›u›œuœužtužstžsžŸqsŸpqŸopŸnoŸmnŸlmŸjlŸijŸgiŸfgŸfŸ f ¡f¡¢f¢£f£¤f¤¥f¥¦f¦§f§¨f¨©f© f  f  f  f  f efededcdbc ©©ªªª««¬¬¬­­®®¯¯¯°°±±²²²³³´´´µµ¶¶¶···¸¸¹ÿ¹þÿ¹þ¹ºýþºýº»ý»¼ý¼½üý½ü½¾ûü¾û¾¿û¿ÀúûÀùúÀùÀÁøùÁ÷øÁö÷ÁõöÁõÁÂõÂÃõÃÄôõÄôÄÅôÅÆôÆÇôÇÈôÈÉôÉÊôÊËóôËòóËòËÌòÌÍòÍÎòÎÏñòÏñÏÐðñÐðÐÑïðÑïÑÒîïÒîÒÓíîÓíÓÔìíÔìÔÕëìÕëÕÖêëÖéêÖéÖ×èé×èרèØØÙbÙbÙÚbÚÛƒ„…ƒ…†ƒ†‡ƒ‡ˆƒˆ‰ƒ‰ŠƒŠ‹ƒ‹ŒƒŒƒŽƒŽƒƒ‘ƒ‘’=ÑsÆ>#qü=è³³>$¹ª=þý>'šÉ>ÊD>5]>z\>= œ> >@â >0jÓ>Cqü>LF>B*3>v+µ>¨žt>)Øb>»³>"*T>ÇžÝ>šø>Õ/ >S)>àSO>š×>íg™>$Ì>ûïŠ>0>É?K×>>SC?,>L¹–? —ì>^SC? ð>lg¾? ð>wìÝ?Ÿè>šø?·ß>€T?æà>~S?ßÐ>vS)>ûïŠ>m¯l>ô/s>fX>èJ>b*T>Üï$>b*T>Ï^÷>h´>–68>*>ˆ¦>ƒ¬>v+µ>„ì1>YZ>„HZ>:ñ>‚\Õ>"ÚŸ>~SC> ªS>rÎ%=ì” >fX=Í“·>WìÝ=º3{>GI=²s`>5]=·K·>(™=ÑsÆ>¢¯=è³³>¢¶Š=þý>¤'>ÊD>«n>z\>®ß>¨žt>¥Eæ>»³>¡nÛ>ÇžÝ> '->Õ/ >ŸƒI>àSO> '>íg™>¢d—>ûïŠ>¨y?K×>¯ƒP?,>¶¶|? —ì>¿ƒP? ð>Æ”? ð>ÌP>ô/s>ÃZ]>v+µ>®>èJ>ÁnÛ>LF>±nË>Üï$>ÁnÛ>0jÓ>²¯>Ï^÷>Ä¢ >–68>ÑnÛ>ˆ¦>ÓZ]>v+µ>ÕEæ>YZ>Ô¢ >:ñ>Ò¶Š>"ÚŸ>σP> ªS>ÉÀÄ=ì” >ÃZ]=Í“·>¼P> >°Êþ=º3{>³þ8=²s`>«n=·K·>¤¡þ?Ÿè>Ð'-?·ß>Ðy?æà>σ8?ßÐ>˃I>ûïŠ>Ç1h           !!""##$$%%&&&'''((()*+,*,-*-./01/12/23/34/45/56/67/78/89/9:/:;</;<;=><=>=?@>?@?A@AB@BC@CD@DE@EF@FG@GH@HI@IJK@JKJL.KL.LM*.M*MN:OP:PQ:QR:RS:S;=ž7H>ñÛ°>6²>ñÛ°>:Ä5>òO€>?„>ó «>BèŸ>ôX—>E¼©>õ— >F‡ >÷g>GQÇ>øÞ>F‡ >úç´>Eö\>ûÝÊ>EHÙ>ý*º>B’>þ±>?J;>ÿBM><¡>ÿm¹>é`>ÿm¹>*>ÿá‡>×+?>{À?õO>=?›Å>¬‘?3Ä>áÓ?jù>Q,?{O>i’?Qú>Ý\?#­>Äö?*Ìã> b?/ü>ü?1xð>¾¿?2·e>]*?3Øã>"Vù?4†—>(8c?4À€>F9?4À€>J™E?4£Œ>N«s?4i§>QÖ ?3õØ>Uè;?3?>X+A?1ì½>X+A?!úÄ>XŸ ? ö6>Z40? >]˜á?}Ý>a7E?í>eIz?Ð)>hçå?Ð)>lis?í>nÉU?'>q€?šÐ>tªõ? :>v$?!0>v$?9 ™>u‰?9€g>rÛƒ?:'>má´?:ÛÏ>ht?:øÀ<õ§Ò?:øÀ<Ø´|?:¾Û<¼¨?:K <¦ ¦?9ºM<›/§?9)ÿŠ­=“\>ÿm¹=‹7¨>þùì=„âm>ýž„=D>üC={KP>ú­Ë=yï•>ù‚=}ˆ>÷IL=‚+>õ@2=ˆ€Ø>ópý=‘Œã>òO€>ûtv>òK0? >òK0?F?>ò…Ç?A>ó~À?ý¦>ô• ?>õô?K>÷ÉD?"”>ù؇?àª>ü1?Uˆ>ýGW? U>þzê?0›>ÿ‘1?F?>ÿŸÒ?~P>ÿ®|?Ý.?S¼?Yb?í‡?Ë?L?Æê?jW?`a?»8?)?8©?)?,ûl?4t?/õ ?© ?1ɼ?<?3FŽ?Î?4š?¸ç?4ˆÄ?ž"?4ˆÄ?ˆ{?4Ã[??5k?ïU?6V$?"”?7e?ö¨?8Oq?rÓ?99Ë?à^?9éŽ?!ø?:½ñ?(ö?;}?>ž?;}?àj?;}?0©?:ñ0?Ñ'?:^»>ÿÍš?9W>þn?7‚f>ßÃ?Â9>Â=Ù?7 9>Áç?8l¾>¿D:?9‘¬>½o‡?:$%>º°{?:Óç>¸, ?:ñ0>”•?:ñ0>Ž$?:¶œ>ŒÚ?:An>‹‚?9ÌB>‰¶ý?8§R>‰AÖ?7Ÿ²>‰AÖ?6µX>Š,?5—»>‹‹°?4à§>%É?4ˆÄ>*Ø?4ˆÄ>žÄõ?40å> 3C?3Ù>¡u_?3 ú>¢3¾?2!Ÿ>¢¨ë?0ßc>¢Ôå?/ß>¢ã?y>¢|?ß„>¡fÉ?T>Ÿ¯M?=Å>ž0>ÿ‘1>Ž¿å>ÿ‘1>Œë5>ÿ>Š¡[>ý¼…>‰|f>ûçÑ>‰$€>ù7j>‰|f>÷>Š,>ôû”>ŒÚ>óp>%É>òÀ^>‘DZ>òK0>Áç>òK0>ÄÂM>òÀ^>Ç '>óp>ÈàÛ>õ 8>Ê@`>÷Ž­>ÊÉ>ú>É8³>ü?³>ÇUi>þ¦Ü>År>ÿ‘1>·A²>ÿ‘1>¶³?/ >´eD?#>³‰¨? $>²­÷?qü>²8Í?žŒ>±Û?3!>±Nq?4N1>²ŸL?4?ˆ>Ô˜>÷ÉD>Õ±®>ô• >׆a>òúò>ÚEl>ñÖ>Ýt>ñ›l>ßÃ>ñ`Õ>âGð>ñÖ>åñW>ò…Ç>èš>ôÝ>êá>øÛ>꿦>ûr¤?Ÿu?3 ÷?£?4š?‰Í?4š?á±?3»¸?1ë? ?Ú ?7e?¼Ã?õ,?*I?•§?z‡?/>ùe,>ÿËÈ>÷Ë>þás>ö¦!>ý¼…>õ»Ì>ü"h>ôÑt>ùð>ôÑt>÷Ž­>õ5>õc>÷Ë>óp ZZ[[\\]]^^__``aabbccdde$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23$34$45#$5"#5!"5 !5 55667788999::;;;;MMMNNNOOOPPPQQQRRRSSTTTUUVVWWXXYYZ;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF;FG;GH;HI;IJ;JK;KL;LMfghfhifijfjkfklflmfmnfnofopfpqfqrfrsfstftufuvfvwfwxfxyfyÛfÛÜfÜÝfÝÞfÞßfßàfàáfáâfâãfã䀂‚ƒƒ„„……††‡‡ˆˆ‰‰Š~Š~Š‹~‹Œ~Œ~Ž~Ž}~|}|Ö{|Ö{Ö×z{×zרyzØyØÙyÙÚyÚÛ‘’’““””••––ÈÈÉÉÊÊËËÌÌÍÍÎÎÏÏÐÐÐÑÑÒÒÓÓÔÔÕÕÖ–—˜–˜™–™š–š›–›œ–œ–ž–žŸ–Ÿ – ¡–¡¢–¢£–£¤–¤¥–¥¦–¦§–§Ç–ÇȨ©ª¬­®¬®¯¬¯°¬°±¬±²¬²³¬³´¬´µ¬µ¶¬¶·¬·¸¬¸¹¬¹º¬º»¬»¼¬¼½¬½¾¬¾À«¬À«ÀÁª«ÁªÁ¨ªÂ¨Âç¨Å§ÅƧÆÇ¨ÃĨÄž¿À>…Š”:3ÌK?Ky:3ÌK?­X;ž¡@?V <5n­?þè<ÀÕc?9=5ƒ¥?þè=h’‹?fp=‰£?5~=–ST?ôA=œ{$>ýDŒ=Íp>÷\=¯ÚÇ>óÁ=ÀßÎ>ðú=Þ¨Š>ë¨>g>ë¨>„x'?-×>„̼?2v>…›?6P[>Ž|¡?6·]>–…‹?6Ú>¢ÿ¾?2²À>¨!R?._.>«-”?Gñ>ª„;?He>橌??C>æþ$?D°>èˆ?Hx>î×f?IÜù>ùC?IK§?Z™?F”?d?A»š?®?¸?®?3†h?'¶+?6·]?)ÖÊ?M ë?)ÖÊ?QO(?*ç?T?.?UC?2ár?TCp?7ªÙ?PñT?:t®?L…Á?:ÛÍ>úŒï?:ÛÍ>óÁ?9—î>íã?6fü>ê˜F?0ÀÕ>ì–?,“>ñµÈ?)÷Ò>ù'ö?)º?yP?)»?fp?'.?V ?!Üq>Ø‚î>´¯>~Q`?%•ˆ>~Q`?)N >‡«2?)ÖÊ>²7¶?)ÖÊ>ºº.?*ç>¾ûq?.>¾ûq?2YK>¼ Ò?7ªÙ>¶xò?:2˜>§ÝÊ?:‡.=É?:\æ<æxÀ?9Ë{<‚¥¢?8‡›;à‡Ê?5;[ ?0¥;Ô,?+)3<Œƒí?*0±=â}–?)±Ñ> Nñ?%•ˆ>\G^?ò¨=Šv?ô=aÜú?‹‹=*þ?¸w=!“‘>÷Þ=*¨e>ñ|==?x6>ê^¡=qÕ>çÄ`>ƒið>ç-²>¨¤ã>ª‹æ>À>ª‹æ> Nñ>¨F>=ù‡> ù=ôÕ*>š—/=ù‡>’·> Nñ>‰’2> •>„>½–x>ƒÎ÷>½ë$>š“>»Ê†=ÝêF>¸2•=¾…>± ®=Ÿj>}^Ã=žo>mLc=’ý>fêŒ=W¶>i <ÀÕc>uÎè;â´–<á÷Q?)H ]]^^__``aab  !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./!"1!333444578979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE67E6EF56F5FG5GGHHPPQQYYZZ[[\\]!12!23"/1/01EcFHIJHJKHKLHLMHMNHNOHOPQRSQSTQTUQUVQVWQWXQXY>H;#¸>½j;õÊ> S§ ôC<ž×A>Žw<Ô>P>F=>Žw= Þó> ôC=;’}> S§=TðØ>½j=lZç>H=€ž=üx=‰ˆ =ðj–=µ=㻄=•ö"=Öa¡=™*·=ȱ¼=š>l=»É=™*·=­§ô=•ö"= øè=µ=•D=‰ˆ =ŠÓA=€ž=è‘=lZç=ux`=TðØ=jö =;’}=d;= Þó=be®==d;<Ô>P=jö <ž×A=ux`#%=ü~ñ>(½·> ’>G‡…> ¶?.W>@Ó?7ˆ¿=æ¤?:®É=®Á?:®É=„!¯?7â==f¯Í?.oŽ=lIÝ>F!$=Œ‰L>+Šq=¶„Ï> YÏ()*(*+(+,(,-(-.(./(/0(01(12(23  !!""##$$%%&&'=zl?"†=z?"†>×ß?2Ó„>×ß?7/¸>el?;‹é=÷]d?>Ñ=Ь?>E‚=¨ß½?8Ò >8È?=ÿÔ=¸!ó?<U>5×Ë?–û>T]?–û>•ȃ?2Gú>•ȃ?6¤)>“M?;[>Žøí?=tG>ˆ³é?>E‚>}Èo?=¹ó>qÊ?;‹Ä>j(÷?8F|       =Äüç=@dg>#ÿö=@dg>>¯õ>{äÔ>™’2>{äÔ>Œ:2=@dg>®1|=@dg>»‰>~Qô>ìµ>~Qô>ðé>¡ D>Ášˆ>¡ D>Èá>Ú#ï>ûÔo>Ú#ï>þÜ]>ùË>Îò‡>ùË>Ûþ?.E×>·å×?-ø.>¬úð>ù­õ>j[>ù­õ>‚…Ñ?-ø.>A?-ø.>%6<>ù‹=Voù>ùz=9Rõ>Ú¿D>ƒ >Ú¿D>+W>Ÿé¸<Í­r>Ÿé¸<¦á>{å9=õ‚´>z®Ž>Y_û>Ú#Þ>¨ q>Ú¿#>¢«i>¡»»>I›&>¡»»            >‰fB½uƒ¥>eþ½_²ˆ>’ªí½+XŽ>’ªí=Ï„>¤ªÉ= EU>¹ð_=C,¥>ÊM¿=„$>Ù=° æ>èM=ñ•‰>ð{d>øß>õïc>1„>øâ>XÉ+>÷£>{±Q>ò©š>L¿>éd> Àß>Ú©þ>¯zÑ>Á‘ü>¼‘ð>«3i>à>“Âs>Å×j>“¹?¥>¦ÙI?Ó­>³ðZ?vœ>¾Mñ?¥0>Åðs? ¼Š>Åð)?vÆ>½6!?¼¤>¸M_?_ž>¸ØÒ>õK!>À{ä>ìc>ÊM/>è¿¡>×d<>è3õ>ÝíÞ>éJá>ì[>öíô>ïc×?ƒ>í5¢? R>âMZ?_M>ÖMŒ?0µ>Ã6#? Óz>²ÙP?#¥>£?$ê¨>“Âs?&ì>”Mó?8Ó>‘”Ã?=»´>Š}+??êE>~4??¤f>pú*?=uâ>nÌ7?9à>oã#?&ì>S†|?%vO>9Wb?$ê¯>(?#GÛ>ä¬?vb=Óm"?¾=ŸÝ?v”=o—h? 0ë=Cõ0?ë?=;;2>òë=HQE>â4=b}F>Ö4@=‰?¿>Ê4€=´áù>¾4¶=é>*>µz§> ž°>±¢>+)Ñ>«©]>P@ƒ>¨cš>jnž>¦5>k†=Ϊ°>QWŠ=×f„>-X^=í7¦>Ì>øð=ëiÎ>„C=Óm">-&ú=Ê´c>?²=é>*>Bø>ä>GT¾>Í=>Vš3>0>wTL>ÍÊ>‡H=ÿf>d=Ùú->“©Á=ŸÝ>“©Á=?• >Ž5<êÕÂ>‚5®<¥Ž>hÂ<‚V>>›<¤ü^> A=%dS=æ­c=œÐ=°"6=Ï=ˆÝ>A±=T£Æ>+)Ñ=1»¯>EWù= G‘>cã=“>jnž<éJ²>jnž½'³>nˤ½N> >€ݽyà>>’«,=έ]>’«,>¥©¥>¦ÙI>¢ïŽ>µ“ >{8>ÄM¬>”Á0>Íî>‰Øv>Ñïú>wTL>Ó’½>_V>Ò|Q>8â>Í o>¯>¾Nã=ë ->±nˤ>È‘s>>Ìf>Ð4;>Ç>Ö¿À>ä¬>á¨N=ñøC>êbZ=é>*>÷yg=íš?Ž=ÿ ¢? _b>W¢?êø>/ƒ?¼O>B?Óz>nˤ?êÓ>å%>ííÃ=¼…¡>”5s    kkllaaabjk ij i i i hihghfgfefededcdbcbyy  !!"""##$$$%%&&'''((((())**++,,--..//xxmmAABBCC]]^^__`/01/12/23/34/45/56/67/78/8u/uv/vw/wx89:8:;8;<8<=8=>8>?8?@8@A8Ao8op8pq8qr8rs8st8tuAmnAnoHIJHJKHKLHLMHMNHNOHOzHzPHPQHQRHRSGHSGSTGTUGUVGVWGWXGXYFGYFYZEFZEZ[E[\DE\CD\C\]>`§:„Ó9>‹&¹²…#?;‘ ?;3Þ?-`'?:‚{?Aˈ¼“ N?V8Tºà?_8S<Ú~v?h7ù=ѹß?jýg>;óS?k®Ë>wwØ?jþ>“Aå?c`÷>ÃÅ?Z¹»>×Õj?GUÓ>é$ò?6 >éÖ5?)Š>á‡3?q¾>Î$5?Ê >¯­7?JŽ>ú©?˜¾>Zq©?úã>‹Z? <ð­?&U;qÉq?>ÑR>Ê®N?FbN>Éý4?R:>¿šƒ?Wî‡>¯®X?\>ŠJÝ?]>Mù?YNÊ=âZ«?P =l¯÷?> £=/Ä;?2Æ==Ksn?*Ý=Œ}p?"šþ=å?ÒQ>MôÐ?*!>lW:?%±>¯­m?(r`>»qä?\;£>%Ï?IÓô=Eêˆ? â¾>fÁ? áÐ>—m?U²/=¥la?/á>Ç7ë?Js0¼n¹œ?h’`>«(æ?RÃd>âéµ?>U7>êà'?ë}=Ãð»?Ð×=o|î?. §¼ ú/?dÞ=dV´?L“ó>ÆßÉ?Z¯>£é»>XŠý>‡DŽ>{)¢>ˆÿe>•>%D>§>ž>°Ð>­ >¹a>Äã©>¾©+>înÛ>À ?Ž>¾ª•?Û‹>¹Ó?Ï>¯p\?)Â{>ž!ç?4%N>Ž5%?9¯s>n´ ?<Í>J±³?=ªª>)u?=%³=ï6 ?8þ3=ŽG™?/L³='? 4<”8Ò? 7ë<{ýr>ý® <ªC5>ß:Þ=+S>Áq`=B€Ñ>®dÐ=‹‚ >Ÿ€=Ó|d>’XÅ> “O>Œ`>L¡þ?-‘Á>jæ?-92>ÖC?+ª>ŒØã?(Ü>˜‹}? Ä>ž ¡?/o> Ìv? `>¢Ým>÷qÞ>¡%¸>ã\³>›L>É Ü>”Ï>¹ÐI>ˆ·³>® 0>x¬¦>©2ƒ>Ißo>¦mº>uª>©ãš=ù¡â>³”=·‘µ>É»ø=©ÏW>Ù¨’=™L>÷oœ=œ |?Pj=©ÈC?ñ=ÊÏC? O=æLs?%ó•>\e?+Ö-44++((  !+ ' ' ' .'..   6 6  /// 5 5 0505,&,&%&%%*%*$*$1$12#$2)#2)2")"!"!3!378979:7:;7;<7<=7=\7\]7]^7^_7_`7`a[\=[=>Z[>Z>?Z?@YZ@Y@AXYAXABWXBVWBVBCUVCUCDTUDTDETEFSTFSFGRSGRGHiRHhiHhHIghIgIJgJKfgKfKLefLeLMeMNdeNcdNcNObcObOPabPaPQ7aQ>r¼)S>‹W¼)U.>¨`;>§>¿Â<¯µÐ>Õí¯=u. >Þ¾=®Ÿ>é˜=‚¹Ô>öz=†Ó?¶ý<„SL? Ú;¶â?ÍÓ9ˆ‚ñ?/·º‹—x?8ñ0;¶?:ú{<Û„?9Ÿ¤=oÀM?5Ž=“P?±=“P?FÌ=£F$? #µ=Ϋò>÷'Ì>»·? c>Q? ~â>Šv†?™>¤:«?ý&>Æ"z?›>܃?#•º>êÀT?/Á>îÑá?8›>ëmü??c¨>áB#?AkÝ>ÐN@?@¾>Àµ»?=°×>´?6’@>¬^?/Á>¬]÷?1|>º›Z?.r>ÆÐ?&ù®>Ê4?!N>ÆÐ?Î+>½R ?r¥>«Ù?$3>œ?#>¯>Žˆ?.F>ˆm¡?8›>Šv†?C>Žˆ?J<]>™a€?Q[">¨LI?UÏ>½ÿa?Uÿ>Õ»?T¿¢>æ®¶?N¥>ù«O?G†?B^?>Á?Së?1%‰?\²?$CP?ªÁ?iâ??ôa>üa­? #µ>åSŸ?®6>Ê4>õ̤>©§­>à¾>[÷~>¡ µ>Ê3Î>±ýó>ÒW>ŦÆ>Þ‹8>ßlL>õ™k>ìO?øl>óO?žg>防?)–·>ܸ?1¹—>ɼf?7&M>˜^?:Š_>h?:á(>ˆ¨.?:Šu>FªL?3Âv>.A ?-¨&>D‡?&àv>"Ø? p>Æ?-^>ŒÅ?K%>.A >ð- >FªL>Úz*> þa>Ê4=Ôä >½ÿa=™8'>±ÊÁ=[¤´>¡„š<óÿ¬>‹Ñµ<4>d‹<4>#ä<óÿ¬=Þò=Eñâ=˜l¹=ž¤Ú=.¨4=õpu<]@î>6d%»†I>iìý>»I>ÂCÉ>r>¸Äz=ìž>§Ñä=¨²—>Žº–=…pr>v!2=z™·>NÍe=‚¹Ô>3­Ç=˜l¹>×Ò=É?:=õpu>+ï=ÚP×>-ÛU=̽©>Y?)=å(ä>,à>CK>rl?;}*=)7?3Ûõ>‰I>ð`ñ?vß>ñ?Á…>aÌû?7¨¶<’WF>@׸>íª¿?$€®>³ªb?9ÜÏ>ŒŒ>ée(>‚†N?9›>g6¦?$˜>h‘„?´e>xÕ}?"ÎJ>‡ïŠ?&à >¦w?(’'>±P„?'7>¼×g?$)ý>Äû,?aü>Ũ:?6#>Àè–? eu>¶)?ï÷>fˆ{?>Þ>–.®?(’      kk``aabbccddeef_`^_^]^<]<=]=>]>?]?@]@A]Am]mB]Bn]nj]jsjstjtPijPiPQiQRiRSiSTiTUiUViVpipWhiWhWXhXYghYgYZgZ[fg[f[[\!"#!#$!$%!%&!&'!'(!() !) )* *l l+ +, ,- -. ..///00111223334445566677888999::;;;<<<^nqCnCDnDEnErnrFnFGnGHnHonoInIznz{n{|n|}n}~n~IJKIKLILMIMNINOIOPIP€I€vIvwIwxIxIyIyzPtuPu€<øe ?ùr=xMÚ?ùr>¹=?3gÿ>¹=?7Ö°>/¤?àQ?>ñ=·ú?<Ó >µ'›½Ì}>»o‚¼ÓFÚ>ºÎÚ»"£>«ç<–¢õ>Ž2=Xž>eØ=Æ„j>2Õh>A> ž«>LÑð=Øë9>‰˜á=ÉÖ®>´S =Øë9>ß :>=?>+K"?’<>Xˆ¼?#V>†¨N?(˜>ŸÊ‚?.ý>³åá?4¤³>½ó•?9 ±>½ó•?;Ž>¸ì»??S?>° Á??ô>¡ :?>Š>{¸¢?7x„>-Α?*çb>f?!*0=ÄÏÑ?{¤=wÚÈ? ê‰=Io>ôjM<…Þ>Ñ:d<&ø'>® „Œ±=R >QØÇ=¡ž¥> º°=ò d=Á}ž>0Qù=C÷&>j ¨< p†>“9f¼«î>§T˽Ì}               !!!"""##$$$%<õÊm?@îm<Ë ??´<™ùÑ?8õÎ=L‚?3Š=Û—x?*œ?>%é}?!y>Xí7?w>€Þ]?Xy>+ö>äúj>“þæ>¹>*È>Ž?Ó>‚"¾>Ul>`Žl>hu>2£c=ÎÉ„=ú"´=[¸=”*<Öüâ=ïf;z½¡ë’»ò!†>]ÿî=-ÉÅ>„®Ð=¥öÜ>•CÊ=ü°p>§Â[>1\;>µ'N>q!G>¾¸Ç>œFË>Áé¯>¿ü>¿^ >âln>³ãV?›>ž4Ê?›E>‰Ì§?Ä]>[{?+âg> Ф?6­=Ç1?=½ì=k"?@îT               !!!"""##$$$%>+Ct>ò ¡>6„þ>òê?>@ê‘>ö`Ø>E?ï?Ú0>3ìî?-1>rJñ? Þ>~hµ?Õk>…Cµ?fw>ŠvÏ? n>ï1? ý»>‡ß1?q²><–h?¤.>ƒˆó?#¯¸>†ÿ?$İ>‰)ç?&îÒ>‡Ÿ?+ê>ƒ‹N?,ÇÁ>nÓæ?,ÿL>5¨s?gË>=r›?3~n>8A‰?6õ`>&î{?8Aö>4‚?7›¸>$Ú?4$³> Þn?gÎ=³­?*.w=žæ—?*eÝ=qŸ?)PÀ=c±Ñ?&ï=g)’?"+n=k? $>½ö?_¯=†£Ï?¶0=nÞ?‹ì=j¥`? nŽ=xvŸ? Dv=·&¯?À+>"ï?œ>œÝ>ý¾5>Ô>öÐ:>"ï>òêL>F>üD>t¯? ÏD>޲á? u>âó?š->‰*¬?)ÛS>º*?-6º>vØ?-‰î><•è?5àD>1Âã?8 >½Á?6O=…¾‘?÷±=–¤º?Ý))  **++,,   - -  . ./ /  001122%%&&''( !!""##3344$$%%>Žø‚=–zS>´þ>=–zS>´þ>>„¬*? c·>„¬*? c·>«ö >³¹Ú>«ö >³¹Ú?$ >v?K>³À>«ö(=µ‰H>«ö(=µ‰H>…,î>Žø‚>…Œ    >(.Ò½o™£>ÝI½±um>éP½Ö¨¬> ѽîÖ4>)½þ¦d>Üe¾¸J>$t½î×Ç>GÌŸ½ü3>U½Ž½0£ú>]§L¼eðö>1z¤¼é¬6>ZeI=-SH>/ž|»JÏ1>O=:=•ç2>9Ù=·a‰>.;Š=Š×>¸=ÆC4>0!=»=Ý =›|š=ÌLŒ=l™Œ=Î%…=)ð=Û*¡p_»JÏ1          =s[Õ>ƒiº>Äd»>ƒiº>Äd»>¨Îj=s[Õ>¨Îj>:AD»èXy>AÁQ»œØ>HYP;ˆ9Š>Mß¶<8eW>R1ž<œˆè>U3à<á|¢>VÓ=­y>W;=9/>UÊØ=]^>S)=€*«>O1‚=œ^>Iý0=Ÿœ¦>C¬ñ=¬Ìz>4]§=À}N>+¿)=Æš>"Ãe=ÉÀÚ>¢Ô=Ê&N>—.=ǯ†>Ùc=Âk×=ÿA)=º|Ð=ðA=°=ãé=£s°=ØF=”êž=Ï`2=„Õ=É[ª=g0@=Æ›=CA=Å·(=¿=È.<õ Ï=Íq•<¯2}=Õ`Ÿ„2¼$0+>"·¼TS >t¼nL> >þ¼qx(>)J—¼]Áè>2o¼3¥  !!""##$$%%&&'<†Wù½ =°<ѽ >ÂZe?@dË>¡<Ô?@dË> wa¼#Í>³G„¼-Ø>Ãz»*uŠ>в;Ý>Õ>Þ`¥<†©<>éR´<üU>õ£ =JÈç>ÿåø=†:±? Ã=²ë? †Ë=è½K? ù#>Ö‹?dÇ>0‘ý?'ý>_Å?Œò>…oƒ?šT>¤8R?ñæ>ðA?Õ^>ÞŠ?ÝÐ>új˜?xÛ?jÙ? 7?Y? J?:ç?yi?!w&?¯?&ð+>ù­?,ÀÅ>éR´?1â=>Õ{÷?6T“>Äaº?9>³ö¤?:Ê>¢-G?:Æê>‘Â.?:Æê>{Öâ?9h¨>_p?7[F>8Ì6?3@>²‘?.=ûî=?'ŸM=´ÈÍ?\]=†D?ÁÝ=Ebž?ÏÌ=!]>ù»x<Û¤Q>áÉô<Å¿î>ÉØp<µSª>¶¯<Û¤Q>”|\= /N>}0q=4÷‰>Kï(=f8É>%Ÿî=–¯%=ûäÛ=Çðg=²ë>³Ÿ=kŸ>ÍQ= >B` <ƒî>h¯E:¸w«>ŒøG¼-Ø> Ï?'G½>±é=?&A >Ãz?$‹6>Ña0? È>Ýe?þ>çôt?…>ím{?»->õú¯? ùÉ>üzT?§¢?JŒ>ð'¦?¨Ð>Úò©?¯>Ã!?Wñ>§£ù?Q<>“Í9>þ‡µ>w·j>ø>P ï>ïO6>%÷i>ãÙ­>ku>Ö+=ÒÙ!>ÇE=¦a¿>¼X=“é>¯,º=‰¦P>¡~'=†:±>ŽVŠ=Žp;>w¼=¡—Õ>`y°=º8v>GÙ=ØR/>3S.>ku>o>!…'>µ>?žÙ>Îf>dÆ=öu/>‡|ä=î?®>ž¿N=èÆ >µR=î?®>ÍD=ûî=>çò>é->ÿãŸ>—Ê? …ž>)¿`?jM>8Ì6?Ío>MR?­;>a×÷? È>xk?#°Q>ŒI'?&A  FFGGHHIIJJKKLLMMNNO:;<EF E DEDDCDCBCBBABA@A@?@??>?=>=<=:<::9:998978776766 56 5 !`5!`!"_`"_"#^_#^#$]^$]$%]%&\]&[\&[&'['(Z[(Z()YZ)Y)*Y*+XY+X+,X,-WX-W-.VW.V./UV/U/0TU0ST0S01RS1R12QR2PQ2P23OP3O34O4>Àý8g¼<>÷!`8g¼<? þ;¼?È;Äöà?¿ù×H=¥u\>Âó¥=¥u\>½‡Ô=³Ö>ºÑî=Ëh>¸É>Ï>¶“>ÇAy>¶“? <¶>º$n?+uN>¹vù?4ñþ>·nµ?8¬*>±U??:´ˆ>«ék?; G=èE!?6úk=Ö¦]?4Z2=Øø?/†+=âÙI?*Ç×=óÃ?(¿d>vâ?&¶ø>&&?& >v>)?& >€Ò?%>…/?!`ß>‡Q©?Û>‰Z>Çîö>‰Z>;!>„òh=Á<¬>ºÒ=¨+A>°=¥u\=óÊu= ·==à#d=˜•~=Ò•Ü=‡¤a=ÂRi=Y™=¼æŸ= -"=Àöj<­íõ=ÕJJ;ðR =î]%;­T %%&&''(())**++,,--.!!!"""##$$%  !=Ûp‘¼ˆ5ž=þø¼NÓM>„5»Ã¨>Щ;ƹ>!¥Ñ<©ä•>"¬|=fQ>ê'=G¼>·+=mÿb> j½=îW=ø#P=ƒL<=éÔ=~e[=ô m=•ù>Jø=µ,Ï>â=ÆAå>.‹=Îtæ>0­õ=Ö§â>F‹O=ÙcŒ>\hŽ=Óì9>oŠ1=Îtæ>‚Ô=ÀÊ’>Š7Ñ=°d˜>•&w=•ù>œªŠ=xî>¥Œq=<Ív>°{<ë|u>¾%g<$ÞÇ>ËÏ·»Wì>Õ`ˆ¼#¹>äh­¼zæ>ò=í¼z~>ÿ½L¼ ;m?\Y;»Ü? |7<‰?`Î=,gz?d}=Š!S? '=Æ=?Õq=ÿ¦Ò?Õq>…Ý?Ï>7Ú}?Ç>Jü ?¯3>\¿î?í*>m%ç? $Â>v¶¹? C>zÐ7?“ð>zÐ7>ø9:>v¶¹>ïWS>i i>êŽê>_{—>ç§}>N¾>åÆ>>¯¥>çÓA>(ÒX>íJ”>(>÷>—?µ>—?‘C>o?i>#[? >l_? Æí> d:? =ô )?£=Ö§â?À=³Ï ?“ð=š‡M>úEù=ŒÜý>ïWS=Š!S>â[í=’TQ>Ú(ñ=¢ºI>΋`=¿lÎ>Áû=á–ˆ>¹\þ=ú/~>®Åæ>,­>¥5>.w>œªŠ>&¯>’jÎ>.øq>‰ˆç>5Ó>~’V>;óû>`‚ >>¯¥>LZ#><¢é>:>Ô>98R>+6¢>3Àþ>_£>)ØÇ>7³>(=Ø´Ú>J¼=å®–>ã²=úÞù>8àÑ> &`>Ož> H>`‚>:>Ô>sû>Vðë>­r>s£°>‡$™>Š7Ñ>Œp@>ËÏ·>£«a>äh­>«Þ^>ôúj>´À4?6>¼DW? C>É?½? ‚®>טæ?œ>è­Û?Q_>öX*?I?_?¨Ô? @ù?Œ¦?¾¨?æË?“Ð? Ó¬? …? C?&6?ëe?+Wž>øè$?/q>ëì¿?2Û±>àO.?5—\>ÐÃã?8h>Àá?9°Ø>¯Ì-?;­>™?ö?;­>ˆ+?:Q>s£°?8ì>R×½?6FE>7ƒ?3Š>.‹?0 =þø?+¯=Ë ?%ˆÙ=™Ø¥?UÙ=?¯?€±=\<?«‹=QMR?Öe=QMR?==g*¿>ùÑ=‘¥©>ívC=¯µâ>åò*=ÐÞ>áØ³=þø>ßËô>rÔ>áØ³>,”~>åy>;œœ>ëi„>EÜá>óœ>Jûþ>þ¶ä>Gé? ü>Cxo?ûÃ>;œœ? ¡‡>,”~? ®H>ê'? žÊ>ûˆ?¥->ûˆ?>Ö:?ôj>,ëµ?‘>BÉ_? ”²>U“f?"Í,>u„?%àK>ŒD?'í >Ÿf3?(óm>¯Ì-?(›ö>¿?'•>Ë Ì?&7À>×mG?"u·>àþ?³±>è‚+?ñ¨>î¨h?)<>ópÑ?±ì>öÛe? ‹¯>öÛe?eq>ö,{>ûÏ~>ópÑ>ð1í>î¨h>çþð>ç$…>Þ™Ë>Ý“…>Öê >ÓSÉ>ÐÃÏ>Å©y>Éî§>±Øì>Âj•> >¼DW>ð+>²³†>N¾?>¨sÊ>,ëµ>ŸéZ> è>”£==ÈNè>†J=•¶>rEÔ=a³I>UêÆ=%’Ú>3Àþ<þžâ>°µ<ÝÒô=ÞÚß<ó°=~e[= >:=Ý=F^Ì<u=?¯»Ã¨=²q›¼d°¤?,?Žj   !!""???@@@AAABBBCCCDDDEEFFGGHHIIJJKKLLMMNNOOPPQQQ Q Q Q Q QXYZZ[\Z\]Z]^Z^_Z_`Z`aZabZb¶Z¶cZcdZdeZeŸXZ£WX£W£¤VW¤V¤¥UV¥U¥¦TU¦T¦§T§¨T¨©T©ªTª«T«¬T¬­T­®T®¯T¯°ST°S°±RS±R±²R²³QR³Q³´Q´´µ"#$"$%"%&"&'"'("()")*"*+"+,",7"78"89"9:":;";<"<="=>">?,-.,./,/0,01,12,23,34,45,56,67ZŸ Z ¡Z¡¢Z¢£efgeghehieijejkeklelmemnenoeopepqeqrer–e–—e—˜e˜™e™šeš›e›œeœežežŸrstrturuvrvwrwxrxyryzrz{r{|r|}r}~r~rŽrŽrr‘r‘’r’“r“”r”•r•–~€~€~‚~‚ƒ~ƒ„~„…~…†~†‡~‡ˆ~ˆ‰~‰Š~Š‹~‹Œ~Œ>¢ï‘¼:F>´f"¼#ë‚>ËsO¹îkƒ>áͦöƒ= ×Ý?Û†=2? r=±äP?±=æúî?EÞ>5è?Ãû>Eê—?vÏ>h׿?e>Œ+Û?~Û>£’w?z“>·zé? Áv>ÇåF?(³>Ö7#>þqÄ>ÝŒË>ïæ>ã#a>á¡z>ç'>Ѽ·>è`‰>½zÚ>æúä?ï?&""?ìs?,!?ø±?1OL?“ ?5Ù¤?»„?8þZ? r?:½h=ã »?:½h=¹ \?:d=¢Æ?8¤ï=‰ Z?6Œz=|æ]?1OL=|æ]?š=„ Ä?i¬=Ÿú°>ù$J=ÆgA>õÒ×=ëk¤>÷ Ð>å>û<Á> ª~?i¬>A?Mm>A?!—Æ>ž?#°>>-—¬?$¼{>F½M?%ä>çdsqü>Ùµ>>fß%>ÑS\>d>Ëé‚>fß%>ÃZç>y•>»«Ú>‚ͳ>¼^¬>`†>¿)ö>ž Î>ÁBp>¯‚a>Ä ½>Â^š>ÃZç>ÒœI>ÁB}>át‚>¼^¬>ï@;>´ÜU>ø'ý>«šç>þq•>¢†9?]i>“Úë?à >„|Ï?à >m³?¶Ð>O²?[P>1OB>÷u/>na>íÚd=ò'Þ>àh=Ë ú>ÐW=£ëá>¾à~=‘Š>¬C=‚d^>›@=2>…˜ù=‡úó>b®7=¡ >FcÎ=¶È>(=Ûͼ>Ûs>uì=óÍ>fÖ=åÕ>5&Ù=è M>GP<=ñ6>LæÎ> Dà>LæÎ>&›h>QÉ>5ùˆ>\Dõ>A&´>rŸF>BŒX>…âw>>\->\²>4;Œ>˜¾¬>!Õ>¢s>Ûs> m¼=÷KÇ> šx=Éä>Ÿa…=¥‘G>š$T=„ Ä>“Úë=RüI>#ÿ=H¿>„Öb<íœ>k£<Ìø>LæÎ<×6H>/F=íC>»…=?mü=æúî=>p=´¯¤=¥‘G=ŠÆ7=ÒEö=A¹¶>®G<ýUa>%5Ê<‘®>F½M;£ì>iªn»•>>‘xú¼#ë‚ BBCCDDEEFFGGHHIIJJKPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]OP]O]^O^_O_`O`aOabObcOcdNOdNdeNefMNfMfgMghLMhLhiLijLjkKLkKklKl       ,,--..//0011223 9 9: :; ;< <= => >? ?@ @A AB344556677889**++, !!""##$$%%&&''(())*>Š8¥ºfk?ˆºfk?È©:çî‘?ÕP<P?Ý¿<›rB?áù<ýB?áù=:%¶?Ý¿=`a?‚Ë=€O±?Ñ=Ý<?Är=•þü?=›jÖ?g©=›jÖ>ú¶=¨øb>÷R¥=¶…ý>õJ2=Ì5H>ñæÍ>5À>ò”F>ao¯?Är>ao¯?‚Ë>bÊ¡?8´>m¢J? —á>}åÄ? A%>‡œ?æ0>Žˆß?‡>“ô·?zZ>—X>ò”F>—X>ò”F?*á½>ñ9T?.òœ>í(u?3Z8>èj?6½ž>ãUG?8ñv>Ü7?:Li>Ôî|?:Î>Ï,-?:{>Ç·ì?9ÊI>¾eä?7í1>µ?Í?3ÜM>ª¿˜?.›ß>¡ð_?)0 =ôo>”¢0<¢T>‹%}<—|H>‚VG<­+²>wú<î9o>m¢J=£»>d%”=X±š>`¶=’K™>^¹Ã>ÃÒL>^¹Ã>ÃÒL>¡‘>ÂwR=ÙÂÏ>¿Á™=¶…Ë>½å=¤:>¸úŸ=›jÖ>ˆÝ¯=›jÖ>‚m_=•ÿq>xþ‘=ƒ >rŽþ=KÄL>oÙp= [6>r\<š¨>€x;¼©>„ÌÐ:çî‘>Çæ>•ý#>É>?"À>Å-;>•Oª 445566778899::;;<<=  !!""##??@@001122334#$%#%&#&'#'(#()#)*#*+#+,#,-#-.#./#/>#>?/0@/@>>šëؼi2”>³”»¼=[«>ÄR»Ë[´>Ü®5< p&>êå<­ÖW>ý7Ë=9Žº?ñ=Úz?à™=ähE?¬>Wß?å>9qV?wž>a,?&ù>‹M?ð>ŸÙ½?b•>³Ã?7‰>ÁjH?1>>În? ½j>Ø?š<>áœ>þ>½>éÔc>ò™¦>ð­õ>å•Ú>õ¥U>×âµ>ù•ž>Ì=ž>û£°>¾Šu>ý±Å>¯x—>þa">¡>ý±Å>“bé>ûûf>ƒ¡®>ù•ž>j~R>ôÊ>QÕy>ïþœ>=H¾>éÔU>ª>ÞÞ©>(»ü?!ps>3±¶?$Ý>>H>x?%Œ™>ÙðÇ?%Œ™>âØk?%4ì>èSw?#ÖC>íÉ? ij>ð‹”?ë>ò™¦?ñÌ>õW? 4]>ûN? Î?ÜÍ?Ç”?Ü? væ?t¢? ©Å? ˜§? “? sÎ?ÿÞ?Wª?4FÌ?B?8ºŸ?ÕÂ?:ȳ>øƒ?; a=ñ‘Þ?; a=Úöá?:ȸ=Âý‡?9M=µJ^?6TÞ=§—5?11°=ƒø˜>¿\6=‰su>´f|=—&Ÿ>¬ÝŠ=¯Ï>¨ =Íó=>¦÷=æœ$>¦³S=ÿE >§b­>/@>®ëŸ>*µ>¹1ý>=H¾>ÁjH>Wÿ€>ÊQû>nšv>Ï ü>…d>Óèî>”E>Ö¦]>¡>×U¹>¯x—>×U¹>Á÷@>ÕG§>Ñ >Ñ+ƒ>Þ¼K>ÊQñ>é±þ>Â¥>óø\>¶tŽ>ü0§>¨ ?~>–ò?-p>…Ò%?-p>l!Î>ÿr>Hƒ4>ûN>'¢ >ö‰ì>Ù±>ëëÍ=úS¹>ä7$=áªÓ>×3X=¸‘\>ÊÞè= —·>½Û=wâ>­j=Ĺ>šëØ=x“¸>‹*=x“¸>tS=‰ý>WPI=šm>7ÍÚ=µÓí>/@=ähE>_ð>ÀÞ=ùÊ&>¬R=ü‡˜>$äš>Ї>&CM>#A>-é>0ôK><.Î>5o>Mþ>3±¶>bŠÌ>,Ø >rûd>#A>€WH>Ke>„sl>b>‡0Û=ÞcÛ>‡à7=­>†=”i/>‚eZ=g>yÔú=0C_>idc=b0>W•<òíx>CW<ç÷»>'¢ <ýã0> ;»=*ȃ=áªÓ=g’=©c=™ä =~–=а¯=&`Å>_ð<É<Ê>$H<fª>Jûã»­ó>vÒż'p<>Ž—h¼SG VVWWXXYYZZ[[\\]]^^__`cdecefcfgcghchicijcjkcklclmcmncnobcobopbpqbqrbrsbstbtubuvbvwbwxbxyabyayz`az`z{`{|`|}`}}~           M MN NO OP PQ QR RS ST TU UV'()')*'*+'+,',-'-.'./'/0'01'12'23&'3%&3$%3#$3#34#45#56#67#78"#8!"8 !8 8899::;;<<==>>?DDEEFFGGHHIIJJKKLLM?@@AABBCCD>¡ðò¼{®Í>·“,¼Pj±>ÇÌØ»óÂÛ>Ú ¾9ý~F>è@6û.+= 0á?B=ZQ]?­=œ? #²=¸à‡?ˆ§=ô^Ÿ?@‰>üÑ?G¿>8aÈ?øl>Wzý?Nô>€•?øl>Ž8?G¿>Ĭ?éÿ>«J?Œn>¶ó? ÐÅ>ŧÏ? kþ>ÐM°?B>ÙBÕ>üˆQ>á_«>ðˆ[>èM©>ä1Ë>íŠï>Ö¬d>ñ™Z>ÇÊ>ôM¢>¸íR>õ§Å>¨³¢>÷ë>™'>õ§Å>¨Õ>ô¤.>Ô>òFy>j¤Ÿ>î8>RN>èÏo>7ð8>ಧ>$U^>×;>³>ËfÔ>â>ÂFu=ò!»>ºÖ­=ú>¥>Ñ%ÿ>’Ì>æÈ;>²>ÿËÒ>$U^? ö>7CO?}V>O™Ñ?š,>a-­?¨—>uuÀ?"`z>‚*¥?$g¯>‹K?&YI>–rÃ?'É >¤¥7?)#->®ÉE?)y¾>¼û½?)#->ËÛI?'É >×Yy?%ÁÕ>àz,?#8Ô>è@6?Uª>ìû¶?Æ>å‹ñ?–’>àÐr?57>Þrš?ÐC>Ýnº? ÿ">ßJŸ? R>æ S? †>ï¯û?š1>÷À?í?K^?€í?°€?-ç?“š?v? s4?½Ø?î? uá?r?Óß?“}?ÿ#? Í)?ÿ"? ok?#ºœ?Í`?(÷ç?ÿ¦?,Û>üˆQ?0’ô>ôk{?2ð³>êrç?5b>ÞÉÑ?7×q>Ô$R?9G9>ÈOn?:`p>¸@=?:·>§°?;Nw>—Ї?:· >…:]?9Gc>]??4¡_>G|û?1@>34ç?-ˆ">’¤?)#-> ¤³?#ºœ=áè?ôO=¼ ?„Œ=¢Zz?¯Ï=ƒBF?¥=[@ >ù =8)>èúº=Â>ÖŽ=·,>º)Ÿ=§Æ>ªqº=·,>–Tç=ðØ>{üÃ=8)>MVú=ˆªÚ>wp=žM=é‹=¾Àr=¾I=äœb=ý >™Ñ=F>’¤=™†>1Ú¾<±º>Pô< ¹R>vÏê»cê÷>û¼%& >õ+ò> t>üDÓ>%4?¡‚>?•™?ƒ>[9Ü??³>wZÓ?T >‰£>þ>—'g>øMº>£ãº>ð °>¯ˆ=>åø >¹Ë>ÚXB>Âm>Ísš>É6!>¿›`>Íü8>±&Ï>С'>¢q>ÑI>“ÖØ>ÏR¼>…´9>Ëgž>pÄ>Åk˜>Xiá>½„d>Bò>³ãã>0äT>¨Æµ>"²˜>œrí>¶1>67>.$>d>=c>f§4>éÀ>Jºà>>/³1>* ·>:™>;(Ø=ýã%>OL+=ÔÕØ>f‹´=²P>€*~=—+ˆ>޼=„$>œwG=rþÅ>«-=oeÿ>¹ÇA=}rW>Çéã=Že>Õ;Û=¦U°>ái+=Åòx>ì%=ìtƒ>p¾X?7Jî=b—>)Å ——––••””““’’‘‘ŽŽ˜— q˜ q q rqrsrsststutuuvuvwvwxwxxyxyzyz{z{{|{||}|}~}~ ~ !~!!"€"€"#€##$‚$‚$%ƒ‚%„ƒ%…„%†…%‡†%ˆ‡%‰ˆ%Љ%89:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CD8DE8EF8FG8GH8HI78I7IJ7JK7KL7LM7MN7NO7OP7PQ67Q6QR56R5RS5ST45T4TU4U™34™3™V3VW23W2WX12X1XY01Y0YZ/0Z/Z[./[.[\-.\-\],-],]^+,^+^_*+_*_`*`a)*a)ab)bc()c(cd(de'(e'ef&'f&fš&šg%&g%gh%hiŠ%iŠijŠjkŠkl‹Šl‹lmŒ‹mŒmnŒnnooop>‹Á`¼šÓ>”Ëp¼rµ_>› ~¼ty> ‰;:4D>¤É¨C•= ”>¦ß“=–r¨>¦-‘>¡½>¨õš>Eš1>¯7¥>vF>µy¯>±k>¼m¸>¡aŽ>ÅwÌ>­å£>ÏŒÊ>¹¹>Þù>ÈQ×>ó\">Û÷?à >ëô™? is>øþ#?Ìó?gà?Á@?E;?0D?K?âE?!Y]?‰F?)Xk?%D?/At???4}?•7?7òƒ? t2?9¯‡? i¦?:ÐË?û?;@?©?:¤_>ø:+?7òƒ>ñËe?4¥>îª{?/óu>ïâ?+nn>ó/˜?'nâ>÷ˆ&?%,b>ÿà7?#È_?j$?#È_?!?!Z>þ|6?†S>õr&?"Q>êR?ÉS>ß1þ?ÔS>Ôè?êU>ÈñÔ?!Y]>½»?%Þc>¯é¤?+l>¢³?/šu>–áw?3}>Œse?5Ü>‚·S?7™…>lfu?8¤†>TÂJ?8ý>=u?8x>(Aõ?6Ž‚>õÝ?3Æ~> ¿ò?/óu=é›,?&éf=é›,?65ƒ=ä '?8¤†=Г?:aŠ=´ÂÇ?;Š=˜ò?:aŠ=Ôâ?8ý‡=Xä˜?5Ü=Mć?2by=Mć>ä"=[«ë>Ûr=zDÈ>Õ‡ë=“b”>Ò æ=±úÊ>Ï÷ã=Ó[ >ЩÔ=ô»C>Õ‡ë>´>Û÷>E»>â > ½>é²=úKU?ëH>µ¶?{S>Í? NY>Þ¬?"z£>3b?#o^>II?$!f>_âZ?#o^>p9i?"!ª>&’?",>Š]^?eM>‘}Í?DN>› ~?B>§¾ ?P6>´®? ˆ5>ÁKÂ? r1>ÍÛ? À1>ÚSõ? g1>æ&? 4>ð”? }5>úP/?“8?!?¿??¢?:7>ýÊ4? g1>ö$%?;*>ë¶? >áGÿ>ûÆ2>Ôè>ð¦>ÁKÂ>áZ>´Ç­>Õ‡ë>¢³>À«Å>—“y>²­>×g>¡aŽ>‡•\>”+s>‚Q>„ßY>}‘>tâ>v"ˆ>ZvZ>mÊs>0¾>h:o>%Ò>da=éãC>da=ºšå>bªc=‚ú„>da=!ÔS>ižsp’v:Âek>Þ”¼F5# `b b bc c cd de ef f fg gh hi ij jk kl lm mn no op pq qr r rs s st tu uv vw wx x`aab  !!""##$$%%&-./-/0-01-12-23-34-45-56-67-78-89,-9+,9*+9)*99:;9;<9<=9=>9>?9?@9@A9AB9BC9CD9DE9EF9FG)9R)RS)ST)TU)UV)VW)WX()X(XY(YZ(Z[([\(\](]^(^_(_`'(`&'`&`9GH9HI9IJ9JK9KL9LM9MN9NO9OP9PQ9QR>úul>!ã¨>þÁø>9Áø?X¬>Rk6?°>kCó>ýW>×È>ø"”>Š>ðº¦>˜o>çN>¢B>Ü>ªÅ>>Ï_>±Âí>Átt>·ù>²®³>ºˆ>£kW>¼J>” —>»µ¿>„í_>¹bç>lå÷>µ.o>Qíb>¯2Ä>9šð>§•³>$ˆ>ž‡+>9j>”@J>D>‰Ü=ûf>z%Y=óHÚ>a|#=õ0§>H£l>Xù>07Ö> Áô>ÓP>‘Ê> V>,k=ÞÆl>BÖô=¼¹ª>\H(= Ã >x,=‹’Ð>ŠÔá={\ã>š7=nÛ/>©xú=qï”>¸–/=‚C>Ç=“>ÔŒà=«Ÿ>à¶=Éwü>ë?=í²>óæÙ> fÊ>Ô‡Ê>ôu’>ÜI´>úÒ´>â‡a?ú·>ç“?Øe>éãh?ê>êÓR? ô>éãh?Aà>ç“?S>â‡a?1.>ÜI´?Â>Ô‡Ê?ñ>Ër™?"¨Ô>ÁCa?$Ø‹>¶:U?&r|>ªœþ?'l>ž´™?'Àš>’Ì7?'l>‡.à?&r|>xK¡?$Ø‹>cí1?"¨Ô>QÂÏ?ñ>B??Â>5Ü?1.>,ŸD?S>' ”?Aà>%+Æ? ô>' ”?ê>,ŸD?Øe>5Ü?ú·>B?>úÒ´>QÂÏ>ôu’>cí1>ï'>xK¡>ꦴ>‡.à>çrÖ>’Ì7>å~´>ž´™>äÖ›>ªœþ>å~´>¶:U>çrÖ>ÁCa>ꦴ>Ër™>ï'>Ÿ%¼„eë>¶DA¼^t*>Íl†»Ôq>â˜W;è—c>ñúU<¦¦?Ö‡=1FÂ?Èö=‚û]? j–=²žM?¢==ÜK¸?[>â™?«â>0¤š?UA>S ?”>p(‡?ƒ>ƒý?[><`?µ“>œwÚ? >©ˆþ? Ç>³Ÿ÷?#x>¸êò?Ø>ÀÛt>úiÒ>Å} >î>Ëqr>ßò×>Ð>é6>Ô L>÷oã>Û'ø?ëÑ>äkL?#x>î‚G? rV>úk? Ã&?Ïa? –ç? ÁÎ? Ô?´>? ·?ùl?!†?"B{?ê?(à6>ù?.Ô˜>ìQ?2÷/>Ýöº?6·>Ét?9j–>º<‚?:½T>¨_b?;f´>“3i?;>z¼"?9j–>Wá?6Å>7?í?3v6>nu?0'W>ï´?+Úi=Üñ€?%<ª=º‰ü?ó›=¨Š?ª=šÈ ?¶/=•}? m=šÈ ?&=¥^>ýƒ=½/>òz…=ÚKö>ç;+>¤µ>Þ¡N>б>Ö°Ì>/Ok>Ð>}ó>ÊÈ=ôÂø>Àð=¿Õ>º=´=2>®Tø=Pÿ>ŸÆ¹=!\!>“4ž<øžw>ƒý<ÎF>d?Ä<ØÜU>D}Ê=A¼>'  =%T3>ý¹=b1é=Å$Ñ=žÀ”=ŒçÍ=Í|=Fr¹=ü³m<ø±˜>§<ŽÕ«>1ôî;¾?6>Nh»‰ì³>vÃÛ¼4ü>‹Bê¼^t*PQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\&P&%P%$P$#P#"P"!P! P PPPP'&\'\]']]^^^__```aaabbbccddeeeffff f f f f f fg gh hi ij jk kl lm mn n( ((OOONNNMMMLLKKKJJIIIHHGGGFFF‰‰ŠŠ‹‹ŒŒŽŽ‘‘’’““””•••–––——˜˜˜™™™šš›››œœœPnopnpqnqrnrsnstntunuvnvwnwxnxynyznz4n43n32n21n10n0/n/.n.-n-,n,+n+*n*)n)(z{|z|}z}~z~z€z€z‚z‚ƒzƒ„z„…z…†z†?z?>z>=z=<z<;z;:z:9z98z87z76z65z54†‡ˆ†ˆ‰†‰F†FE†ED†DC†CB†BA†A@†@?>â½—>¿ëŠ>ê¶k>ËEž>ðÂa>ײ@>ô»^>äã>öˆR>ò„ç>öç? õ>ó~À?áµ>î»\? Z(>çñÇ?a€>ßLÆ?ÑÃ>ÕÛ?ˆ¢>ÉTä?!hi>¼Œu?$X¬>®ú(?&Fç> óˆ?'&è>’Ñ ?&ó/>„ë¸?%­>o6c?#\s>VfË? >@û?Ü”>,ž#?Ü>¬?/ƒ>”•? ù5>¢¢?`Î>³>û¼>݉>íbÂ> Ø>ßáC>¢Ÿ>Òð^>"5É>Æá©>3Æ>¼+>H¢>²“i>_o>ªÓØ>yg>¤óR>Š„>¡Þ>˜ >ŸVÚ>¦;¢>Ÿ¾D>´ ô>¢J>Áq{>¦ëÇ>ÍÙF>­„ž>Ù .>µë…>Ž~¼‘>>¢ü°¼váß>¶Ã¼ˆ]>É/J;u”l>ÜÊ…<®>íZ€=;¤>øØ·=‹•?…™=Ìhx?ê>™1? øý>!²z?Æ >Gäå?Ÿ>hÜ?Âë>ˆö!? >¢¦Ò?Ê>¸I? §>Í>L?Æ…>æAð?Ö>û7"?¸?Ã;? ©ª?ÕI? D´?±8?؈?${$>ú2Ù?*:A>î´¦?/¢Ð>Ý Î?4´Ù>Ì:d?7êñ>¼Q?9Æá>©¿g?;!>—~}?;!>…ê¤?:sò>h­‘?8l¾>D+½?5aì>+Õ4?2>$ƒ?-ò$=û¸Ã?)ã·=À:u?"f=•¢ƒ?­£=i?Å=C)? w„=(G?±3="µ¢>ôth=(G>Þ%=C)>Í>L=nmœ>¾^»=—ª7>¯+=ÂîÈ> ŸŸ=öP,>•!h>ÊY>±>'Æ¿>†îé>@U>‚^§>]…Ù>{ón>zAm>u‡J>‹S9>rÒþ>—~}>r%à>©U>t-!>º¦.>y•—>Æ$d>€ÙD>× (>ˆI>ä“>eé>ì­l>—SÚ>ö$k> ŸŸ>ÿ›j>°,=>þî\>›ä>ü:>‡›þ>ù…Å>p²>ô7>JB¶>íZ€>(u.>äep> µù>Ö^=ÑÐþ>Ì:=®©Q>Àç=<á>±Ü@=k¾¨>¥°ü=Vz>™…±=IðÂ>‡ñØ=P³Õ>w(=fV&>W¼=€°|>=i =–R½>'Æ¿=±]’>~¥=ßVe>õž=çsO>)!@=úa >2—è> jY>3òh> XQ>2B>0;t>*%>?A>T>I•¿> »ë>Qi=öRˆ>S¹µ=Ñ"í>PXe=¢{^>GŽj=~¥ø>8Xe=^3ð>' =OV>É=Wr-=à‘=}Qr=­O=•£ä=€°|=¸Ÿ=5¨ÿ=×â$<ñ Œ>êÐç6;›@->6¦V»P·=>_6’¼a?Ö()*(*+(+,(,-(-.(./(/0(01(12(23(3m(mn(no(op(pq(qr(rs(st(tu(uvwxywyzwz{w{|w|}w}~w~w€w€w‚w‚ƒwƒ„w„…w…†w†‡vw‡v‡ˆvˆ‰v‰ŠvŠ‹v‹ŒvŒvŽ(vŽ34535636737838939:3:;3;<3<=3=>3>?3?@3@33333e3ef3fg3gh3hi3ij3jk3kl3lm@AB@BC@CD@DE@EF@FG@GH@HI@IJ@JK@KL@L@@@ @ @ @ @ @ @@LMNLNOLOPLPQLQRLRSLSTLTULUVLVWLWXLXYLYLLLLLLLLLLYZ[Y[\Y\]Y]^Y^_Y_`Y`aYabYbcYcdYdeYe$Y$#Y#"Y"!Y! Y YYYYYeee'e'&e&%e%$>9àƒ>©±®>A`>¬K×>GøŽ>¯sö>M~ô>³<>QÐÜ>·Ÿ>TÓ>»jÚ>Vr¿>¿è¼>V¥y>Äy>Uj>ÈþÑ>RÈE>Í]½>Nк>Ñz(>Iœh>Õ:;>CL(>؆.><Æ>ÛI]>3üå>Ýr_>+^`>Þóv>"b£>ßÃJ>B>ßܦ>6l>ß>ò>x¡>Ýî=þ¥>ÛòC=ï>ÙX=âOf>Ö/þ=×Bµ>Ò¹=Ξ¯>ΈV=Èš$>Ê9=Å[>Å»5=Äõ >Á*ð=Çlz>¼¥=̰>¸F:=ÔŸ>´)Í=ßÍ>°iÆ=ë¨?>­À=ú1>ªZ—>#p>¨1> Áî>¦°x>½²>¥à«>Þ6>¥ÇQ>(éÕ>¦e>1§§>§µä>9àƒ»õÀv>A`»jº>GøŽ;u¥3>M~ô<1±Ô>QÐÜ<™.æ>TÓ<Þ"æ>Vr¿={>V¥y=7‚>Uj=[±>RÈE=~¨T>Nк=Åß>Iœh=žÆ7>CL(=«ö ><Æ=·Å>3üå=¿¦Î>+^`=Å«>"b£=Èê[>B=ÉOÎ>6l=ÆÙ>x¡=Á•h=þ¥=¹¦`=ï=¯=Ÿ=âOf=¢A=×Bµ=”=Ξ¯=ƒþ =Èš$=eƒB=Å[=A”:=Äõ ="=Çlz<ñÇ=̰<«Ø¼=ÔŸ#p¼*ã¤> Áî¼[>½²¼u>Þ6¼x+«>(éÕ¼du`>1§§¼:X÷  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>' d½o™£>ºâ½±um>Æé½Ö¨¬>éj½îÖ4>±½þ¦d>¹÷¾¸J>#Q°½î×Ç>Fª1½ü3>T› ½0£ú>\„Þ¼eðö>0X6¼é¬6>YBÛ=-SH>.|»JÏ1>NÌ=•ç2>8·"=·a‰>-=Š×>• =ÆC4=þg=»=ÚÅ´=›|š=ʳ=l™Œ=Ëà¬=)ð=ØåÅMñ»JÏ1>9€²>ªê>A¾>¬ž>G˜¾>¯Æ6>M$>³h{>Qq >·mÛ>TsN>»½>Vï>À:û>VE©>ÄË>>U F>ÉQ >Rhu>ͯö>Npé>ÑÌd>I<ž>ÕŒ{>BìX>ØØp>;§õ>Û›>3>ÝÄ¢>*þ>ßE²>"Ó>à‚>âB>à.ß>Öœ>ß‘.>Ñ>Þ@E=ýÀ>ÜD†=î¿ì>ÙªS=áÅ>Ö‚==Öƒ">Òßõ=Íß>ÎÚ•=ÇÚƒ>Ê‹S=Ä›t>Æ t=Ä6>Á}2=ƬÛ>¼÷_=Ëðf>¸˜w=Óß{>´| =ÞH->°¼=êèŸ>­oü=ùq~>ª¬×>à>¨ƒÎ> b>§´>]á>¦2î>~e>¦>(Š>¦·B>1GÖ>¨$            !!""##$$%%&&''(())**++,,--..//00112233445566778899::;;<<==>>?=v5>>ƒ×Ê>ÓêØ=eýh>ÓêØ>"Ø> n>’’>Õx>à µ>Õx?îÈ=v5>>¡Li=³æ>22Å? V>22Å? V>|ü=³æ>|ü=³æ>¢£™? V>¢£™? V>ÈE=³æ>ÈE>Ý­>¡²4={Â?ËX={³>ä|Õ>´ûž>’Û¡=qnz>lŽ=qiå=UEÈ>ݬ›>„ï>wA/>,Òv>ƒð>/|¤>Ž# >>¾>à¹>hq>>‹’:>•åŽ>˜´µ>¡’k>¢ëú>³¹>­#>>ÈùÖ>µäã>ä´l>Á‘Æ>üßÇ>Óg?b=>èÐ9? 3…?Âu?ù(?RÊ?FR?"`Ì>ù"í?+6ê>ä´l?2‚ù>Êox?7žš>­?K?:‰Ñ>?;D >tUÿ?:‰Ñ>T:š?94>.šÀ?6ãÌ>-\?3=Å=Ü#û?."%=ž}5?'>ø=YÍ?Ï@= #?—ü<ú? ÖX=¹W?°= #>÷‘I=Zsq>ëäi=›í1>ã"Ã=ó}´>ÝLR>"Ië>ÞïÃ>:™£>äï+>K&õ>ïT'>M¶ù?€>Eô†?úš>13þ?ë>¢?ðn>Ví?°>Ví>ýg·=í§E?Yâ=ÖMŒ? ‰=áúi?Ý.>Û¬?½ú> ¢? ë>:PÉ?#½!>aŠ¢?&¼Ø>‚ì¨?'é>†™4?'âÙ>¡§÷?'Î]>»×^?%`~>ÍZ¬? ÿª>Ù‰?nl>à÷•?¹‚>ä´l? `¹>ã>Ð?Yâ>ß«>ø´õ>Ó1>ëäi>»×^>ÞÁñ>©Yw>Ôáx>˜ÐÉ>ÊSl>‡M{>¾¦>qjÁ>²ù¬>\ü@>§LÐ>H·>•É‚>?Ì>„F0>B·P>bš›>H·>B)>bÒ >.§>†­’»ÁŸ<>‰Í’ºÛYX>ŒŒî;c ‘>ŽÚE<©Ú>§ <‚r>‘çû<»çó>’•+<÷Ë´>’ªO=RI>’&â=8xû>‘$=Uœj>g=q’>;ß=…Š>Ššp=ÿ½>‡“C=™5>„9e= he>€¢=¥ký>yÇ”=¨ µ>r,t=¨u>>j¢¼=¦g”>cYä=¢Ž>\ã=›h>V?Ý=’»f>PÁ=ˆ5½>L&†=x1­>HŒÌ=]c%>F ð=@¨)>D°¬="¶K>D†j=IÜ>E=<ÌF>G¾º<‘ÿq>K <6^A>OcQ;¤»¡>T¦)¹±»Ï>Z´ˆ»žnë>ah6¼Ò¢>h–ÿ¼0ïâ>pz¼F•>w®¼I9e>8?¼8Ì>ƒ@޼´g>Ì:?:ð=Ü6T?›Ü      ;;;<<<==>>??@@AABBCCDDEEFFGGG        5 56 67 78 89 9: :;..//00112233445  !!""##$$%%**++qq,,--.%&'%'(%(p%p)%)*HIJHJKHKLHLMHMNHNOHOPHPQHQRHRSHSTHTUHUVHVWHWXHXYHYZHZ[H[\H\]H]^H^_H_`H`aHabHbcHcdHdeHefHfgHghHhiHijHjkHklHlmHmnHno? õ>ã–?‡>ã–?¸½=ÄW*>ü[è=žò¦>ïë¨=cnr>â‰ò=lÜ>ÒÑò<ª1è>¿˜{<;0x>¤¸9<Ëÿ>àv–0<ˆ>VeZ<ðÂÆ>,ÛY=M·Ž> #Z=šEö=ÖÖÏ=å=›!‘>!ÌS=r¶®>RYA=V«5>€‹y=d=Š>œS`=‡a>³õÃ=­ÓÝ>ÊŠ =î5ƒ>áˆP>|„>ïþ>:á>ühœ>gHy?àà>‡©?̸>µ`?÷ß>³é?bJ>ÇÆ€?¡”>Û£ï? $>êÔÃ>øç/>÷¯W>îbæ?Úˆ>Þã?ñˆ>Ñ,W? GÐ>Ã&ž? „>°tP? „>ží2? Ý_>Ž‘2??>{ã\?›@>Y\!?„?>=P¯>÷¯W>#›–>í+>éO>àP„>Nk>Ñ£=÷Á{>Çp=þdb>ÁîÉ>˜½>á{¦>ÇÓ0>Èñ¥>ÇÓ0>ÁîÉ>ªœ™>¿˜{>¶L >ºëð>Áûu>¶?a>ÈþU>¬æ:>Ð.>žà‚>ÒWy>‹ê¦>Ñ–V>v\~>ÊŠ >]ïO>ÄQÃ>?š>¸¢R>(.Ë>¬¯`>ù> > Í>Œ:ë>Ê6>nd²> z>KVo> ªƒ>+%w>V>éO>1‡î=÷Á{>K==× t>iž½=Ë”!>†š=ÍŠU>•CÍ=Þº†>žÃ¬>eÛ>©dË>,ôÀ>«”S>éO>®qÄ=ñlÚ>¶?a=Ò\Ò>¿˜{=ý8>ÍáÏ=Á,Ï>ÜÏ=Ëmü>é©¡=à<¶>ùDÌ>W±?>K¸? »š>:úk? Òš>WÖ?g}>s˜H?Ì>”hé?ƒt>¯ª? a>ËTœ? Òš>Þî…?jB>ñƒÃ?¯d>ühœ>ïX?7%>ÙM¥? yM>ÁîÉ? e'>¬æ:?%Ý>—Ý¥?»q>w¤|?J>R?ç? Þ>64}?p>&3?KM=ÖÖÏ>õe¿=£lz>ç`=|Ë>Ø/,=1F¢>Å|å<ò_é>±Ÿu<§–Â>–¿4<§–Â>¶Ÿ<ºH÷>^¶<ò_é>3÷ ='íb>?“=V«5=îhP=º/=±¤ß=ÈÑ=`iè> z<ó*>(.Ë;àÎ >R?ç¼:¼”>r÷缺ٰ>Œ.;¼òðž>  §½Ñl>µ5½Ñl>Â2]¼ÿ™Ä>Ö÷^¼Ÿ¶ß>êÔû©>ü[è<¨ac?Æe=D^q? =½3>¢aò>Å|å>®`>Ã&ž>²¡>¾½“>·j€>µ å>¹ÀÇ>¨FR>¹C>–{¬>µ5>„ é>®8>_×ë>§€>AýK>ž<†>':>”\6>éO>‰>ã–>u:S>Nk>c–e>së>X >äq>NÛJ>)Ê\>HæÄ>M¬²>M 6>{\N>Z=4>”hé>mv²>¦w>ƒ²¸>·º·>¯¤>ÀÐS>•‡^>ÄQÃ>‚?†>Ç\>ÁÈ> »?)>† k./0.01–.1–12–23–3‚–‚ƒ–ƒ„–„…–…†–†H-–H-HI-IJ-JK-KL-LM,-M,MN,NO+,O+OP*+P*PQ*QR)*R)RS()S(ST(T—'(—'—U&'U&UV%&V%VW$%W#$W#WX"#X"XY!"Y!YZ !Z Z[ [[\\\]]]]^^___```aaabbbccdddeeefffggghhhiijjjkkkllmmmnnooopppqqr r rs s st t tu uv v vw wx x xy yyzzzz{{||||}34535636737~3~3€3€3‚78979:7:;7;<7<=7=>7>?7?@7@‘7‘’7’“7“”7”~@AB@BC@CD@DE@E‹@‹Œ@Œ@Ž@Ž@@‘EFGEGHEH‡E‡ˆEˆ‰E‰•E•ŠEŠ‹H†‡?I…Ö: ?N¸·:ÉîÌ?Sq,;ÖM?UGä<ÿÒ£?T¸i=QÕ=?Q­û=‡¢­?L3R=“'»?5úö=’ƒ,?1qB=î (>ô*1?3Õœ>íô?7þ’>äS4?9ê>Ø¥?:ßÝ>ÍšË?:î>Ã4Z?9o;>¼|?7Z¿>¶¹?3ƒ´=óÞ=–ýÊ=1ï×=•¸ˆ<À®=ƒ'·µgU>²>¬;"l<>»4oÀRÌ<ÛûY>ÀS'==Yø>½ô=éR>²¹,=•·Z> n=•hÇ>`—=–L×>pw=õ·<>ÎR>|u{>–d”>„x ?Šž>„ ø? g>~²¨? ž>pž-?3Ï=æ[? r=”?Ä?HR=“È\?ׯ=“'F>ø*8=ô>ï y=‚„>éqí=B{³>éHj<¦77>ôT3:Ç&>þây>¨Éÿ>«ØF>¨òî>¤*1>¨òî> öþ>¬Éø>Ó†Z?"ßÝ?¸ð>®¦?g>©–Å>ëÂù;ïÛ>è>(=ô[     555667711&&''(()))**++,,--..99//880445!!""##$%&1$%1$12$23$334 !=~ƒ¡9ºbg>í”[:€ˆQ>þÜ ;›\? ¡:<';?Þª=D?:Ò=K²X?"ó#=ŽÎí?'¿ð=ºT ?,Œ½=õ5Q?/¿ð>Þ?1ýc>8 L?2¡:>a?1ýc>~q³?1 >†æî?/¿ð>Ž•?-‚€>˜.œ?+E> €‡?(µµ>¨Òs?%‚€>¯8Ù?!«u>µŸ@?Ôk>»aÏ?ýc>¿Ü°?«—>Ä£?xB>ÉvJ? YŒ>ÍMT?>ÑÈ6?‚€>׊Å?YŒ>ܦ?‚€>ãä?!«u>ê½ø?$:Ò>óä?&Ê.>ü©}?(cÇ?Åb?) ? ‡ò?)YŒ?œk?(cÇ?^ü?&Ê.?°è?$Þª?!ÙÝ?!«u?&¦¬?0”?+Åb?:Ü?/Åf?¡:?3!‹??5î]??8@D>þ82?9‡ò>îÜ ?:}´>Û¨Ö?:Ï =[½?:Ï =(¿Â?:}´=˜¾?9‡ò<ÄÊÕ?7_ <‘—¢?3Åb<‡Z2?/îX<›Õ?,i9<Þc"?(}–=/28?&ø–> =8?&ø–>2ô?&¦¬>pe?#Åb>!?ø–>!=ð™>¸=Ä‘}>[ê=ž+=ûp&=“í¦='‚-=“í¦<Ì{=Œãz<T”=eLUv ÿ>{ð>v ®>§aÌ>z„¸>®½û>…æG>´ûi>–Š>¸.œ>áki>¸.œ>ñki>¶æî>þ82>´W’?Œ½>±$_? ž>¬¦?xB>£³»?E>™vJ?Ê.>8Ù?µµ>„ûi?ýc>h¯#?«u>DØ?cÇ>+>€?ýk>R¾?µå=óI±? ü=ÅÙ?‚€=ª÷ä>üð„=™ _>æŠ=‰°6>Ìð„=„‘}> #»=„‘}>“úÅ=Œ?“>‰O=šSü>~ÿÁ=¼ãj>x™[=åÙ(>wQ­>ñÈ6>wQ­?sw>z„`?îX>ki?#!‹>†Š?%^ü>‹,ó?'‡ú>˜#Ì?)!>â³?)6>ðÇ?(@D>ÿ.5?&»(?Ê.?#s|? ü?Ï¢?µÂ?}´?µµ?°è?«u?@D?«u? ‡ò?cÇ?Ï ?xB>ü©}? èæ>ôW’?cÇ>íMT?Þª>çŠÅ>þ82>âl >ôžœ>Þ•>äžœ>Ú”ÿ>ÔuÁ>ØÒf>ÀÇ>ØÒs>l(>ØÒs>ƒVë>Ú½ø>~ÿÁ>ß8Ù>y= >åŸM\\]]^^__``aabbFF>>??@@AABBCCDDE      SSTTUUVVWWXXYYZZ[[\  !!""##$$%%&&''ssttuuvvwwxxyyzzz{{||}fghrs'qr'q'(q()pq)p)*op*o*+no+n+,mn,m,-m-.lm.kl.jk.j./j/0j01ij1i12i23i34i45hi5h56h67h78fh8f89ef9e9:de:d:;cd;c;<€c<€<=€=~=}~H}JJKKLLMMNNOOPPQQRRS=>F=FG=GH=H~IJ}I}H>­o^¼ŠóŸ>¸Œ.¼€~>ÅŸ¼W&>Ò ˆ¼zÄ>áºÀ¹¿+$>ì×< s¬>÷véYZ?‰z>9§;?Â>„U?‰ò>Žøq?™ >”ð?M×>•þï? a´>•W¼? [ª>‘¿S?eÙ>ŠZ?<]>g-?:ç> ll?>åø>ý¬=øó·>öÏd=Þϧ>ìƒ7=Áe]>ã2Ü=«Ó=>Ø=•™ª>Í Ò=…Aê>è=tJ…>¹3…=lr<>®µ=iÔû>¢ùå=tJ…>™Ó=y…'>g•=„šª>‚JÂ=”Jè>oª‘=©5Û>Ypø=Ã[>C7Q=çö²>28h>Hï>)¸Ì>jS>!9É>1k>×K>6¨>>LáÓ=ÿ%>ay=õ÷ >vcé=ê2–>‡Çk=æîf>”\Â=á´]>¤Šz=ßô>²D©=ßô>½a}=äQ¬>ˬ=æï>Ù}6=î.>åk7=ûÚ>òT8>ÓH>þé†> 4?éI>tþ? >êË?·k>,ýª?£x>:‚?…>EÔ­?{–>Ypø?÷>i!%?!±U>z ?#û>‡…ƒ?%ñ>‘úý?'“j>œpr?(Žl>¦åï?(â>·äØ?(â>Æí¸?'ç>лÞ?&˜f>Û1S?$¢_>å¦Í?! ü>ëˆÞ?ÀJ>ðB?v˜>ô¯ª?Þ5>÷ôc?@×>ý/?YÆ?NÚ? "?²z?$?×I?®‹?×I>ß_K?&$>Ø«?tª>ÔBw?>Ñ¥? V¿>ÐVj?›p>ÐVj?3Õ>ÒóÊ?’w>× ¦?sŽ>Þ·ñ?Ç9>æ ?Ç9?/Ø?á$?4‘\?§|?7.¸?Û@?9·+?ê!?:Ü? ¥k?;/­? ?:Ü?Ó5?9xk?þ?6ïô? û?3é? û?#û?/ñ?)‰p>ÿ%*?,zx>ùC?/¿1>ïtï?3é>æõ©?5#Æ>Ýø»?7C¨>ÓY6?8åþ>ÊÙÂ?:4®>Á²ú?:Ü>µîÏ?;ƒ[>¬È?;×>¤H?<Ú>›É"?;˜G>“ñ?;ƒ[>‹q?:Ü>£k?9R>rGô?8>¤>cæg?7—M>WÎ$?6Ï>?K:?3é>+®ü?0Ü> Ù?-`™>ë’?*Z¡>Šc?'?À=á´]?#S±=ÂSë?qš=¢ó€?ã2=r;?=C*?†¦=T…?ý9<érË>ôñ”<µ'Ÿ>äš<‹Qx>Ó›$<€Ûî>Ä’=±V<€Ûî>ž¨e< ˆnÁ<Ô‡ý>lB]=#Éï>:”W=]P">ù1=›X=â»ú=ÂSë=³«U=ì)¿=„šª>:ž=+#>,ýª<Î1>M¬Ç< s¬>s–¨»‰t>g•¼W&>ɼ€~?í¦>U Þ  !!""##$$%%&&''(./00124567899:;=>?<=?STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeSehRShRhiRijRjkQRkQklPQlPlmOPmOmnOnoNOoMNoMopLMpLpqLqrKLrKrsKstJKtJtuIJuIuvIvwIwxIxyHIyHyzHz{GH{G{|G|}FG}F}~F~EFE€DE€D€CDC‚BC‚B‚ƒABƒAƒ„@A„@„…@…†?@†<?†<†‡<‡ˆ<ˆ‰;<‰;‰Š;Š‹9;‹9‹Œ9Œ797Ž7Ž676464‘34‘3‘’23’2’“02“.0“.“”-.”-”•-•–,-–+,–+–—*+—*—˜)*˜()˜(˜™(™ššefgegh=…:ŹCm¨>¶XL¹Cm¨>ÌÔ8¹Cm¨>ãP':Œ·>þtË;ð’? ¡l<–Ç?ªã=iä?²”=f€}?"Ìæ=œ]d?*‚\=ß,¶?/¦> #U?5n>6@j?9HÔ>c8P?<,ß>…†A?=È>šÒ?>lx>¯GØ?>¾´>Ç ®?=È>ÚR\?<>éÏ?:‘½>ù̧?7ÿê?î?5ß? ¬È?1å—?½Î?/?6?*0!?©‹?%^·?#h?!Ö9?&ú"?Í?+'?OW?/ø??3? lí?5(?[ê?7[¾>õñZ?9I>å=†?:?Ë>Õ."?:’=uæÿ?:’=eo?9í<ÖIM?8Rp<˜±?6Ö<_¬?2Ü‘<_¬?/×<˜±?+Ë<õA?)9¾=-óù?(C =ûn†?(C >þ1?'ðÒ>!±?&å¥>é!?"=h>Ö?¼->Ö>þ>=ìÕ>iz=»3E>k=¤á>Úâ=™Ë›=LÉÈ=™Ë›=+=”§ø<ÁºÆ=…<ÿ<_¬=Qñð~2P>Þ>~2P?<ú>~2P?©‹>?!„F>„<Ë?#h>ˆ‡?%_>‘º[?&§ç>¡É·?'ž›>ÌÔ8?'ž›>Ù­T?'L_>ä™?&§ç>ð͸?%±;>û¹r?#Ãß?÷ ?!Ö?Èx?òr? ì?ið?½„?êÂ?<´?Ç?i©? ¬È?ò+?›Ì?!Ö9>û”?$Ï>목?%^·>ÞÑŠ?&Uf>Ð ?&§¢>Â|?&§¢>±Ù¨?&,>¢n¼?$ºC>à+?"z¬>v}÷?– >V_1?²”><¬ú?*>$C³?¡’>þ?t›=þš? £1=Üšñ?Èx=Åz‰?¤Ô=±~>ö¾.=™&s>Ó@Ä=’º¿>ŸÜ]=‘qÁ>¶K=—7ü>†*)=©6‚>ªø=Âè°>{9=×wK    accddeeffgghhii>>445566778899::;;<<=abbc               T TU UV VW WX XY YZ Z[ [\ \] ]^ ^_ _` `a  !!""##$$%%&&''(())**++,,--..EEFFGGHHIIJJKKLLMMNNOOPPQQRRSST34>23>12>1>?1?@01@/0@/@A./A.AB.BC.CD.DE=tLá:Éy?Í:Éy? Yb;{-?#’¸;Å Ì?&'wP<?) ½>‹ÆÚ?(7>’9‰?&Ì>—b?%ï>š›u?"í«>/¸? «ì>ÔË?¢>žyÝ?ƒ_>ÔË?ï>›@„?Rg>—b?µ¾>ïg?«>Š|µ?¾$>ƒdñ?«>\;V?µ¾>$ÇY?c5>0?ï×=ä÷·?ß·=ÀÜ? õ=­ƒè? Ç÷=¤} ?‡=š+ð>šûô=š+ð>ª×=ŸT}>ˆHñ=©¥™>‚{X=»³…>}Þm=Ûñ>z¥—>0>z¥—>¬P>~ƒÿ>¯=¥>‚R>³Á4>ˆî>¶Um>µkÎ>¶Um>¿¼î>µ E>Æ/>²w>Ëý9>­Nq>ΑW>¥?>Ï6Ž>^Ï >ÐüÉ>RA>Ó>J>LÁ©>Ú,Å>G™>ßúa>G™>ç!>HãA>î)æ>Qê6>ñcj>[–=>óRv>nIG>ñcB>u½>í„×>¦6±>í[[>Úš”>ït>ê>ò­`>üø>ôœ”?Uò>óÎ`? #•>ð¾/?§>ìd.?ýx>åÈ?…{>Þ -?Ø>Öól?…{>Ѐ*?&µ>Íp†?P:>Íìp>í$N>Ì¢N>è Ó>ʳ>ãxF>Æ‚3>Þô®>Â( >Ü72>»Þ>ÚqK>µkÎ>ÙÌ<>q~>ÙÌ<>„jŒ>Û]>Î>ÞôÉ>{JË>äž>{Jt?wÒ>€µ?",ú>…´†?$Z,>Œ'`?%zø>–x}?&]ï>¢¸Ë?&îY>êð?&îY>û´\?&›Ò?§Ì?%¤6?ØÂ?$¬ž? dŸ?"½f? øê?„ ?:¨?ø+?×T?2ò?×T>ì??)Ü>äY?k™>Ü`…?÷{>×Ý?Í>Ö’ã? Yb>×Ý?#~&>Ûä¬?%m3>âü_?%¿¦>쨈?%ï>ýè?%ï?32?$#:?6¥ð?"4?8üP?´N?:Fm? ?:˜ö?÷{?:ë=dÓ9?:ë=!Ãð?:˜ö<Ò Æ?9:;<`7?6|ª<6Æ?3fJø?'“j>Qí?%¤6>ÄŸ?"½f>í,?Þû>v?_>v=ßÏY>íƒ=Â&->Ír=§µ¯>Jø=•d=JJ=•d<Ò Æ=в:<”%+=n´†?=?@=@A=AB=BC=CD=DEstu=q™þ9xa¦>¿°é9xa¦>Ã+Ù:›å>ÈÊt<æ>Ì¥°<ÓëÀ>Ì\T=Ncé>Èñ,=„ýÒ>Žì=ƒ©>¿—=”ùm>šÍÔ=•Ÿo>މ=”ú7>‚è7=ž½> ä=ªê1>{,é=ÒNœ>z6>‡Ó>z6>«Úá>~½>¯C>‚é>³š@>ˆº>¶/L>µF6>¶/L>¿š¡>´äÃ>Æl>²O¥>ËÞë>­%k>ÎsÙ>¥o>Îs“>[ÂG>Ó"Q>LAÉ>Ú >G•>ßâ†>G•>æü’>Hb>îš>Ql>ñQ+>[0>ó@Ø>mÔA>ñQ>>>íqR>¦ _>íGÐ>Ú€/>ïa1>êzÈ>ò›>üŽŽ>ô‹b?Q->ó¼î? ©>ð«¾?¥›>ìPV?üÂ>å±þ?…D>Ýò­?×ë>ÖØ¡?…D>ÐcM?& >ÍR±?N>ÍÎÀ>íå>Ì„3>èŠö>Ê”[>ã`¼>Æb$>ÞÛ²>Â>ÜU>»ºú>ÚVÛ>µF6>Ù±–>>ú>Ù±–>„5 >Úü#>`T>ÞÛÊ>zÛŠ>ä«>zÛ9?z~>€~y?"0ß>…?$^À>‹ôt?%ë>–HÛ?&c&>¢%?&óÃ>êÜû¥q?&¡ ?¢8?%©4?Ô„?$±O? aŠ?"Áv? ö¨?‡?9?ú ?ÖS?2¡?ÖS>ìj¡?(ö>ä?kr>ÜF­?øu>×Á¾?Ð >Öw-? ]>×Á¾?#‚Ù>Ûʵ?%r‚>âä°?%Å>ì“ô?%‡H>ýÙ?%‡H?3Š­?$("?6°k?"8L?9“?·É?:R?"®?:¤º?øu?:÷^=b[?:÷^=!†x?:RË<Û¬n?8ó›<‹tX?6 °µš?'™ > ¿q?%©4>4;?"Áv>^v?áÌ>ó–?M>ó–=Þ“¬>^Æ=ÀàÛ><Å=¦gè>µš=“¯†=wÒ=“¯†<ÌLY=‰[<ŽQ=kùƒ<^¨—=E<Þ<^¨—= lU<˜¥Î<’ŽÙ<õÜ;Ö\-=$ ´; z hhiijjkkllmmnnooppq   !!!"""###$$%%&&''((0222334455566677889FGHFHIFIJFJKFKLFLMFMNFNOFOPEFPEPQEQRERSESTETUEUVDEVCDVBCVABV@AV@VW@WX?@X?XY?YZ?Z[?[\?\]>?]>]^>^`=>`=`a<=a<ab;<b;bc:;c:cd9:d9de9eefffggh0112()*(*+(+,(,-(-.(./(/0^_`>­h:¼†{ >¾ t¼mí¯>Èx¼5 >Ñ »øX6>Þ_Ⱥω@>ìÂ<< @}>ù3ª<Äzž?Ò=%?>Ò=geþ?;×=•õ? Å=¯Ðá?z"<¥tt? rZ<¾”? D»%¬Í?–j¼%‡™?ļØE?ªè»¥”¯?@Ò;οì?Þ†<¥tt?Þ†=/Ï^?æM=ÁêW?@Ò>l”Î?9 >…Íé?„>€?¿h>—AÞ?#MŒ>š}B?'Óç>š}B?3ÉG>š}B?6_3>ž^$?7üã>£‰ø?8¢_>«ñ4?7ª(>³ ~?5fù>¸ÞÏ?1†>¼¿±?,­>¾ ¦>ϪÎ>¾ ¦>Ãb³>½e,>¾ÜS>º)Ä>ºUý>´Xv>¹ >«ñ4>¹ >¤Ôí>» ò>ŸŸ>½9>™×È>ôƒ'>™×È>üDè>˜ŒÓ?e >”«í?V>ŽÚ¢?¡ >†sd?™>>vìv?F„>cˆ?óÅ>Nع?ûŽ>;tX?°™>$/ ?e >Ÿ>ûŸp=ýb|>óݬ=Ö™º>ìÁf=¼¾ƒ>ã5=¢ãP>Ú=“_Ä>ϪÎ=ƒÜH>ÅS#=x5>·À=mÝn>® Ü=mÝn>­a⼈OJ>® =m]^>¢ÆK=qX2>™¢e={½{>:Ò=…´W>‚!†=•_š>o^­=ªCî>Y,!=ÄaR>Bù‡=èðâ>1ÿþ>ÀJ>)ƒ>Þn>!Æ>¢>¨Ê>7>âû>MBÊ=þËg>aÓ‰=õ©/>v·¾=éèt>‡íV=æ¥Q>”~¸=álÚ>¤§P=ÞÐH>²])=ÞÐH>½vv=ä m>Ë,N=æ¥ò>Ù‰H=íÒÉ>åsƒ=ûŠO>òXm>©Ý>þé¼> pa?çZ>Eº? Š>¸,?²a>,Æç?/>9Õ›?ˆ>E–?rÓ>Y,!? >h×Z?!¦œ>yÐã?#ï”>‡Z ?%äþ>‘ÌÉ?'†Õ>œ>í?(ˆ>¦±?(Õ>·ªŸ?(Õ>Æ®½?'Úd>ÐyÇ?&Œ>Úëó?$–·>å^? ÿw>ë>T?¶~>ïÐG?mˆ>ôb:?ÖE>÷¥ç?9½>üÞ÷?T9?&>? B?‰o? Ø?­Þ?®D?­Þ>ßi}?üO>Ø2?Jk>ÔP4?æõ>ѳ¢? *¤>Ðe_?nN>Ðe_?>Óî?cn>×?Cî>ÞÂY?—~>æ—ù?—~?/à?±³?4€§?xn?71?¬Â?9¤Ù?¼’?:ÉR? xè?;ã? Ü[?:ÉR?¨7?9f.?ñ‹?6Þ€?ö×?2ó²?ö×?#ï”?½?)|<>þÔi?,lV>øô-?/°>ï)&?2ó²>æ¬?5ä>ݲz?72>ÓP?8Óë>Ê™‹?:"/>Áu¬?:ÉR>µµ8?;pw>¬‘R?;Ä>¤‘?;íË>›—Ð?;…Y>“Â0?;pw>‹Ek?:ÉR>zd?9{ >qûF?8,Æ>cžI?7…¥>W‰Ú?6 >?¬?2ó²>+x¤?0”>nö?-R.>¾S?*M)>a­?'3D=álÚ?#Hq=Âr?h8=¢¿ë?Û’=qîg? @=Bì¯?ƒâ=$?üˆ<é(ã>ôôö<´î9>䢕<‹%->Ó©<€³ >Ĥñ±¶<€³ >žÇ<  °>ˆ”~<ÔD >l™e=#–*>:û=] $>kŠ=šêA=ã·Ø=Âr=´¶ =ëß =…´W> ó=-e>>,Æç<Òþ€>Mk©<d‘>sI‰»ji>:Ò¼LÅv>œæ¼vü?@A?AB?BC?CD?DE?EF?FGMNOOPQSTUVWXXYZ\]^[\^rstrturuvrvwrwxrxyryzrz{r{|r|}r}~r~r€r€r‚r‚ƒrƒ„r„‡qr‡q‡ˆqˆ‰q‰ŠpqŠpŠ‹op‹o‹ŒnoŒnŒnŽmnŽlmŽlŽklkk‘jk‘j‘’j’“ij“i“”hi”h”•h•–h–—h—˜gh˜g˜™g™šfgšfš›f›œefœeœeždeždžŸcdŸcŸ bc b ¡ab¡a¡¢`a¢`¢£_`£_£¤_¤¥^_¥[^¥[¥¦[¦§[§¨Z[¨Z¨©Z©ªXZªXª«X«¬VX¬V¬­V­®UV®U®¯SU¯S¯°RS°R°±QR±Q±²OQ²MO²M²³LM³L³´L´µKLµJKµJµ¶IJ¶I¶·HI·GH·G·¸?G¸„…†„†‡         99::;;<<==>    !!""##$$%%&&''(())))+++, 2 23 34 45 56 67 78 89,--..//00112)*+>ø÷f¹Ÿ¶?HÌ,¹Ÿ¶?L};cSø?Mó<ß?P†‘<¢^š?Q}×=??Q+m=G®X?Oá²=v Ÿ?M §=‡çŸ?K 7=’Ú?Fò#=’ÙZ?2”V=’3{?/®=Ÿ<?/2—=±¸?-mn=ù?Ø?-ü>*þ$?-ü?]Y?-mn?„E?-–j?àY?/ m?$É?2© ?'Ø„?Iq ?'¯K?L©_?(¦–?N—õ?*BÀ?P†‘?-Í?Q}×?1XC?P†‘?55t?NÒ?8é{?Jé?:š<?G0?;C>ôu`?:ì§>ì?7?9õ`>邪?7Èé>æJ]?55t>ä[À?1ª³>åš?-Í>è´á?*x>ñãe?'Øk? ç›?'Øs?4â?'ÃÝ?iÓ?&¸?ªÖ?$$‰?¢#? ™È?™q?¹?×T?:‰?>P?Éå?>P>Ø:š>z¢É>Ø:š>z¢É?Á.>}6ɶ?ý >.‘?#-<>„¹B?%Õ:>ˆ–F?'3…>‚Þ?'¯>• ÷?'è>»$??'¯>ÀÆê?) >ÄÍd?,ƒÈ>Æ»ó?0³f>ÄÍd?5‡ä>¿¦t?8À4>¶¢S?:®Ì>®C?;<=VHÇ?;<=uµ?: ï<Þ|Î?8À4<ª÷?6Ñ ~¬?(­> ”^?'\Û>»D?%À±>+ê?"ÚÐ>¿]? GX>œŠ?ÅM>æJ?ža>æJ> ^e>RÑ=ì^}>u=Ã'$>ì=¢Nï>·$=”ÈÞ= =”ÈÞ<¿“9=ˆ« ǹŸ¶>¸ô;cSø>¿—;íPe>ä<±>Æ<ÿã>ÄÍd==`†>ÂÞÊ=f—Ï>¾\½=‡çŸ>·G:=’5r>Š2®=’5r>…°¨=œƒE>ƒÂ=¦Ñ>‚xU=»lÎ>~€=Õ/d>{ì‚=ù?Ø>z¢É>õë>{ì‚>²àx?>P>²àx?>P>%×>?™q>}?¢#=Ítð?ù=©d–?rƒ=”ÈÞ>ò†Ê=”ÈÞ>êÌc=Š{ >奀=f—Ï>ã =3²>ã <ê@>æJ]<ƒu>í_Ú;šáÎ ssttuuvvwwxxyyz  !!""##$'''((()++,,--..nnooppqqrrs)**+$%%&&'78979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE7EF7FG67G6GI56I5IJ45J4JK34K3KL23L2LM12M1MN01N0NO/0O/OP./m.mn/PQ/QR/RSTUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcdTdfSTfSfg/SmGHISghShiSijSjkSklSlmdef>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:>޼W1>iõ¼W1>ªÂܼ^š>¹q{»ç¬‚>È ;ž€>Ø$cç}Ø=Œa>òÖB=SK>üØé=‘°W?Âó=¼fo?ÃÂ=ç—?o&>éV? o±> ïÏ? Î>;¡¤? >VS€? p}>m>? p}?W_?V?Ø?Æ0?Zœ?Æt? \;?#?#²t?qÖ?%]’?ÇÎ?'°?"v$?'°?&!Ê?'³‡?)"˜?)^¦?*͹?+´›?,xÖ?.µi?,ÎA?3 é?+x’?6b$?(w¿?9 †?$Ì?:c9?!ËL?;>¾È??;>¹qL?:x˜>´‹?8âÔ>°§?6·‘>®?4a™>¬Ãj?1`Í>­n>?/`C>®Ãï?,´ß>²Å?*^ê>¸Ê?(^a>ºÇ,?'³‡>Â~?'°>Þ&?'°>á|=?&³D>å}M?%²ÿ>ç}Ø?#™>ê);?„>êÔ?u>ë~ì?b>ì)Â>}’>ë~ì>fWÆ>ê);>Pü¼>ç}Ø>/žn>á|=>–ë>Ü%y>ç6>Óxy=Ùó>Ì!)=Á½@>ÄÉÚ=¬b>ºQ=—>ªÂÜ=„Wm> Z=xªf>”=xªf>†U=xªf>ukì=¬>]e€=ŒY†>B³¤=Ÿ B>,ì=·¯>S0=Ï+>¥¡=éÈ>MÍ=üw¨=ýB¶> ês=í>\>Dm=ßåy>0ô=Ý:>BN=ÚŽ§>TýË=âá>g­z=ò•;>y{>L°>„…ä>Q>‹2Y>©û>Ý¿>,ì>3i>4>3i>9[Ã>2ä>0ï>‰1Õ>*­1>Ú‚>)Wv>v\>,ì>k®‘>2¯Q>a>:±w>ZT‰>H b>RRi>V¹>NQS>eg™>NQS>qjÕ>Pü¼>yÂ…>Uþ >„ Í>_«T>‡d >i(>Šl>v\>ŒºÊ>‚…Y>e«>Ї‚>Œô>•ßá>ˆà>â>„ Í>¤Ž€>~ÃÍ>¨—>t7>­æX>eg™>°‘¶>Zº>³=>I`>µ=§>4>µè~>©û>µè~> Oí>´’Í=ýB¶>²’B=çç‹>°‘¶=ÇÞø>¬£=²ƒõ>§ä½=(Ð>¤Ž€=‡ÍÍ>Ÿ7¹=o’ó>›6©=OŠ>•5=$Ô%>Ý¿=y>ˆ†ú<ô<8>Ú‚<É…ð>v\<©}Í>^U¦<©}Í>NQS<žÐ0>>M <©}Í>0ô<¹}>™<Ô3”> ês=ËŸ=÷ ä=&Å=Ùó=?†=±¸í=j ¤˜¨å;\ š>,ì»O¶>D X¼ 0{>]e€¼^š>uk켄©>†U¼W1 ::;;<<==>>??@@AABBCCDDEEFFGHHIJUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiTUiTijTjkSTkSklSlmSmnSnoSopSpqSqrSrsSstRStRtuRuvQRvQvwQwxPQxPxyPyzPz{P{|P|}P}~OP~O~O€O€O‚O‚ƒNOƒNƒ„MN„M„…M…†M†‡LM‡L‡ˆLˆ‰L‰ŠKLŠJKŠJŠ‹J‹ŒJŒHJFHFŽFŽFF‘  !!""##$$%%&&''(())**++---...///000111223334445566778899:+,-=mþ¹¹d–î>¬Ò³¹d–î>µ)ç:‡¨Ö>¼8œ;>À¶RÃëŽ<¬¹­>Æ|Š=ŽŠ>Ç É=(|C>Å4 =Liù>ÃGR=pWò>À¶R=…Ö>¾%V=DÃ>¹a=”fÃ>Œ¾e=”fÃ>ˆäî=™ˆÃ>… t=«>‚zt=½vx>€º=ÜBV>Òð=ýŸ>{ù|>Wn>{ù|>‰ÔR>~Šy>­É>¼ÜØ>Á¥¶>À>Ã’w>ÁþÐ>Âî4?,‘=½vx?"ñ=¦]ž?~°=–÷±>õR~=–÷±>îCÌ=‘ÕÃ>éÆ=‚oç>åì•=V­÷>ä¤=(|C>åHY=ŽŠ>æÛ<¶ý¨>êjR< ¬~>ð0‰;hQ>÷ã{¹d–î?Mlú¹d–î?QFx:‡¨Ö?Rá;hQ?Ur< ¬~?W ª<¢u«?W°é<þÙ?W^Ë=-ža?Vº‘=V­÷?VO=pWò?T{°=‡‘æ?Q˜’=‘ÕÃ?Nµ{=–÷±?@ê0=–÷±?<¾–=™ˆÃ?:-›=žª°?6ø`=³2œ?4D=ÌÜl>ë²Ì>ÛO>êjR>Ýà>è}•>ã‚>êjR>æÛù?4gb?'eé?7J€?(®f?:-›?(®f?LȽ?(®f?O«Ø?*I?Q˜’?,‡ä?Rá?0=?Rá?2òW?Q˜’?5ƒV?O«Ø?8O?MÚ?: ?J7À?:¥K?GT¥?:÷i>òÁ‚?:÷i>ë‘?:¥K>æÛ?9\Ñ>â?7p>ÞÝã?4Œø>ÞÝã?1ûø>ÞÝã?/à>ánß?+‘‚>åHY?)öæ>ç5?(®f? ©Ã?(®f?:Á?(\K?ƒ=?'¸ ?Õ^?&k?'|?$Ôí?ƒ=?"è0>}Aú>½Ì<>}Aú?ìÁ>Òð?W>Ö„g1?$‚Ï>‰‰*?&Á®>Žç?(\K>•¹Ø?)…>ºN?)>Á1¦?)ÍÕ>Å4 ?+‘‚>ÆÎ¼?-Ðb>Ç ¡?0a\>Æ|²?3m‡>ÃGR?6'>¿m×?8fp>·ºß?: >°¬-?:¥K>¬\?; ú=Jà?:÷i=›N?:S*<ÆÓ3?8fp<Ãz?6ËÓ<}ï…?4:ØÊ>?(\K> Ÿ?'eé> œ?%'>? ûv>M“?+˜> Þ?[Ã> Þ> ¤y>M“=é6>t=˜x> œ=¦]ž> )=–÷±=?Ìâ=–÷±=›N=‘ÕÃ<¿i=ƒ¸o<‰;~=V­÷?=?@=@A=AB=BC=CD=DE=EF=FG=GH=HI=IJ=JK=KL=LM<=M<MN<NO<OP;<P;PR;WWWXXXY_`a_ab_bc_cd_de_ef_fg_gh_hi_ij_jk_kl_lm_mn_no_op_pq_qr_rs_su^_u^uv]^v]vw\]w\wx[\x[xyZ[yZyzZz{YZ{Y{|Y||}}}~~€45012;RS;ST;TU;UV;VWPQRstu=‚êȹù~Ü?&¹ù~Ü?! ):MÐÙ?$Ú‰;•®?'o¥<[t›?)²<À]™?*W_=þï?*W_>v"7?*WJ>‹4ø?)_w>‘©¹?(ê>–Óé?&ÊY>šH?$5E>œ£b?!òÍ>Hª?]³>íï?È™>Hª?3>š³?–P>–Óé?ù#>_)?SÞ>‰êh?8>‚Ðc?SÞ>[«?ù#>#?¦{>Ìd?2«=âG?!‘=¾Ñ?V™=ªÁ? Ž=¡·¿?PW=—cN>T¹=—cN>“U=œ>Š›¿=¦áï>„ÌJ=¸õ¡>?=Ù=|>D,>Ìd>éL?K>ƒ{?"s>‡7¯?$Ô¨>0ˆ?&›&>–ßr?'¼`>¤ÁK?'å°>À1~?'¼[=vW?:ÇØ=32j?:u6<åAÙ?9?]<’›®?6Wœ<{ì*?2ß7=üJv?'¼>> Ä,?'iš>Î?%yÇ>BÇ?"’ >lô?²d>!?âë>!=Ý>mE=¿jQ>KC=¤ño> Ä,=’9=#³Ç=’9<ôÄŽ=‡ä½<¶Ê=i <—Í=BP•<—Í= €O<Á‰<Œ·”= ;¿&=8\«:¹„>Åa=?)¾>ǘ ?-A>È%ï?1Ör>Ç8k?5aq>Ä´¯?7½>ÀÐd?9»ó>¸ê?;o !!"";;<<==>>??@@AABBCCD      ()E(EF(FG(GH(HI'(I'IJ'JK'K*'*+'+,',-'-.'./'/0'01'12'23&'3&34%&4%45$%5$56#$6#67"#7"78"89"9:":;?& §ºj[S?mícºj[S?q39ÅT3?uz;½>O?vb?w[Õ=v°?v‹Ï=ˆ¶¥?tC=•U?q3=•¸»?[cÁ=–_R?Y™Ì=¡n?X#0=¯ã?W|ª=¾³E?V‚ã=ÐéŸ?U_w=îÕx?T\>ó?T\?´?Tâ ?b?V/¥? Á?WÏî?$ûÖ?Yp7?'B¡?\ C?(¨?rzú?(¨?u?)6*?xZ?+|ø?yò?-®ô?y¢ ?0±?y%Ë?3K!?w¯?5å/?vÐ?7ع?sñ­?:4]?q-õ?;I?n“ç?;I?4°3?;I?2¼©?:Æ?.Õ•?9%Â?,;ˆ?68o?*Gü?1V>ýg-=Ø·½>©~ê?/·O>¦>X?3žb>¡ ›Ö#?8=>”û?:rÈ>ŒàT?:Æ=bËê?:Æ=)Žº?:†<õsd?8Ò{<ËÒ·?7…x?w?(¨> Z©?'•á>|å?&œ$>£ù?$UW>Þ?!»F>x?'q> r#?Nó> Å"=ÿ¾„>7¿=ÛQË>Pú=¸2>޾=Ÿz’>s=•U=9*ú=•U=Š,=Þ@<·`=€Aî<‚ùD=Vã¦>Xºj[S>°¦”:××Ã>·'´;²×ù>¼[ÎÀBß<è Õ>¿œ_=-B>>½U=^±a>·÷à=Šª)>²š=•U>ŠFF=•U>‡‰=ž-•>‚$š=²WT>hÒ=Ètû>zˆ=èT>wí÷> á‰>qlÍ?%¢X>r¹Ô?'é+>z4¢?'¿{>Ü:ø<òr>àÈŽåü­;?-<>íÊÕ»a¤>õ˜ÿ»š.>ýg-»ÃÐ9?Gg»a¤?{…9ÅT3? hÑ<݇? V!<üÚ+?Oè=Lzà?<~^?$UR?=Ëc?'B¡??l?'B¡?@0?&HÚ?>¥>`f?=$à=ã ?<Ñ =Æg?;1W=§H±?9=Ê=šF|?# U=—¬`? Ù‰=D5?9A=€Aî?ì9=\"?Ÿ2="ÙÏ?Ÿ2<è Õ?˜ù<Š` ? Ù‰;²×ù uuvvwwxxyyzz{{||}}~  !!""##$$$%%&&''(())))pppqqqrrrssttu*+,*,-*-.*./*/0*0b*bc*cd*de*ef*fg*gh*hi*ij)*j)jk)kl)lm)mn)no)op01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A0Aa0abBCDFGHFHIFIJFJKFKLFLMFMNFNOFOPFPQFQRFRSFSTFTUFUVFVWFWXFXZEFZEZ[DE[D[\BD\B\]AB_A_`A`aB]^B^_XYZ?¼3–E?±e¼ À©?IÄ»XU—?":É;ŽØ ?$„{<ŒLY?&&Ó<ôâk?'ÉD=.¼a?(î==v£¾?)Ôd=¶&?)¿1?uË?*º3? +?+ Ý? Hâ?,°:?$ÜC?/ôë?( ô?2åò?)o ?C=q?)o ?F.w?*ø?I ¥?-1Ä?I}?0ô?HËÓ?48º?G}#?7)Ã?DßË?9Ê?BBm?:nv?>ª?;Ê>÷úÝ?;Ê>ï{r?;Ê>êÚ?:D¨>å?8x>áë?6‚s>ßËL?3‘c>ßËL?0ô>áú?.V®>ã9…?+e«>æü?*j¦>êjù?)Ø8?7?)ÃK? 03?)EÎ? dÚ?(5æ?íH?&~™?ãc?$4ê?…Ñ?!‚¦?,ú?ÿ0?,ú?¿{?,ú=¨lU>›Ïú?48º>—<œ?7)Ã>“Î.?9^”>޽+?;Ê=Sú?;Ê=Ÿ²?:ì<Ôù‚?9I¯< ±6?6ë "A?(ÈI>ú[?&ÒF>5 ?$4ê>oÊ?!Cã> &?«„>[Í?uË>[Í>”">¾q=öÝ>!=ÒB>?Š=®õ©>I=¨lU>=˜¼'=ÊÌ=˜¼'<ì‚ =“s<°`5=†nÛ<‹Æh=yB.®ÄÓ: ´ú>µN8;ŽØ >»0D¾tö<«¬q>ÁR=æŸ>ÁR=C§T>¾tö=m}>»×ž=†n¨>¸’ë=–Ö>±b+=›Y‹>ˆ3Æ=›Y‹>„ï= ”P>€Ù=©ƒ>{|=º„>x7=ÅÖ|>tóO=ç,ó>s¤¨=þµ->s¤¨?%×C?="=]Ìê?Ú~=æŸ?wÙ<£Óå?7<0Û? ²:ì³?íH»é¬6?Ф¼«½   !!# # #$ $ $% % %& & &' **++,,--..//eeffgghhiijjkkl '( () )*!"#/01/12/23/34/45/56/67/78/89/9:/:;/;</<=/=>/>?/?@/@A/AeGHIGIJGJKGKLGLMGMNGNOGOPGPQGQRGRSGSTGTUGUVGVWGWXGXYGYZGZ[G[\FG^EF^E^_DE_D_`CD`C`aBCaBabABcAcdAdeBbcG\]G]^>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;ŸaUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.Æ=tǰºCeE>°Ý¯ºCeE>·À9TV.>¼Z´;G¥±>¿—!;à±>Âý3ÆÐ<Ÿ’l>È*S=¾/>È*S=,üƒ>Ç[V=Vh¢>Å“Á=z¦õ>ÃÌ)=ˆT>Àf=’ F>»ÞQ=œd4>·V†=žúø>Š®K=žúø>‡›'=¤(p>…Vý=­Ý >‚–ú=“Ž>€ù=âJ'>~ë>ž>~ë>ž/>ž³> ÅÀ>…€Ð>¢¶Í>‹Sø>£\}>â³d>£\}>í´>¤§Ú>öí>¥$>ÿ6>¥ó-?üÌ>§gë?óy>©Xû? ‚»>¬•s? ¿)>®3£?=>²?9?EC>·l©?æ>»%_?£˜>¾ð?c¸>Ã?út>È@€?!|‹>Íê9?#/z>ÓA%?% u>Ù¹ý?&kÔ>à2Ø?( >ç÷?)‘>îoç?)Ui>ò÷±?*Mî>ú6?*óœ?’å?+?ÇØ?+? …?+Fx?1À?*we?êp?)¨??£?(Ä?Ãa?'&>?!º?%^¥?!Iq?#Õ?$3?!ä?&ÉÂ?MN?)³X? e?+¤f?Å€?-•p?C?/¯î?ùÐ?2Âî?¨¼?4Š? _?6{¢? 7^?7ˆÝ?@?8ªÒ?f4?9ö2>ô©?:Ú>éÑé?;,Ó=jlÃ?;,Ó=,K ?:Ùû=?:œ<ä{?8èî<²æí?7J¹<“Ö?5¬€<~@B?3»sLî?'ÂK> s†?&ÉÂ>7»?$Ø´>w?"©†>¯à? £Á>û:?º.>Fš?#p>Fš=ñÒ>¯à=ÕXr>!=ºÏS>¾1=¤(p> ·=žúÆ=!ð=žúø= :@=œd4<Ñ÷Õ=’ F<‰{4=z¦²|Ä‹>Ъh>|Ä‹?И>[R?!œH>‚Dc?$…ß>‡qÞ?'š>ê²?(gù>•®ê?)`€>Ý…æ?)`€>è Q?) ­>ò„?(gü>úø ?'˜ß?â ?&ÉÂ?Œ?$Ø´?µG?#:€?»?!°ÿ? ê;?«;? .?Á§?Äà?2c?½d?›¦?Å?²?J?È?¦ø? Œ?ùÐ? üÌ?ùÐ?")?å*?úu??{>û8(?[š>ò÷±?=>ì~×?Äà>æÿ? €÷>ß(? >Ú_°?S~>Õ×ß?™>Ò›u?xð>Ð.#>ÿü¨>ÍDŒ>øµ>Ë*>ï¥>Èæ4>æ•>ÇGð>ßv÷>Æ¢C>Ó*õ>Å©Æ>ÄH5>Å©Æ>ŒLj>Å©Í>ƒÀ>ÆOs>[R>Éb|>~ë>Ë|î ]]^^__``aabbccddeeffggh  !!""###$$%%&&''(())**++‹‹ŒŒŽŽ‘‘‘’’’““””••iiz{|Š‹+Š+,‰Š,‰,-ˆ‰-ˆ-.ˆ./‡ˆ/‡/0†‡0†01…†1…12…23…34„…4„45„56„67ƒ„7ƒ78‚ƒ8‚89‚9:‚::;;<€<€<=€=~=~=>~>?}~?}?@|}@|@Az|AzAByzByBCyCDxyDwxDwDEvwEuvEtuEstErsEqrEqEFqFGqGHqHIpqIpIJpJKpKLpLMopMoMNoNOnoOnOPnPQnQRmnRmRSlmSlSTklTkTUjkUjUVijViVWiWWXXYYZZ[[\\]>©žì=n©¤>˜õõ=yS8>Œ÷0=‡S.>‚ø8=—Qœ>sG³=§Oè>cIS=·NV>SJó=Ì¡j>A÷l=ïH>8£>£>(¤®> ù>û>+žñ>Q]>?ò>üÿ>Yï>>ýú>w—$=ûüÑ>‹Éë=óý¡>¡=ñS7>®q=î¨Ú>ÁË=ñS7>Ðm†=÷R>àÁ=>¨Ë>ñÚ>ý2>þ>7>ü>?óÜ>û‰? H‡>!ú³?2Æ>-ùm?2B>8£?1Ú>Eöý?†Õ>T !?>gHä?"Ûl>sG³?$0Ÿ>F{?%…Ï>„ø?&Û>Žöù?(05>–ö,?)0> õ!?*0>¨I·?*0>­ž?*Zª>µ­?*0>¼òC?)Ú¶>ÜA?)0>É›ž?(05>ÑEÄ?'ÿ>Øs?%0ƒ>ÜD?#ÛR>á™V?"pÐ>çn? d>ìB»?†¦>ðìí?Ü>>ôì…?1Ú>øì?‡t>üA?‡Â? X?ˆ? $? ˆ}?Ê¡?ˆã?u#?Þ´?ÊS>ý¢?Ê<>õ¿ ?tÓ>í¿ß? o>å? Ê>Øl¹? R>Ðm†? R>ÅÃö? tŸ>¹›? R>§Ç ? Ê>}? t»>’sç?_>‚uŠ?ÊR>qB\?ŸÏ>^îó?Jž>Kðã? >8òç? <>'ŸY>þ@ê>K\>úAN>¡Ð>ôAî=ÿFà>îí!=çI]>èC)=ÏKÛ>ã˜÷=¿M{>Üîõ=¬¤Ã>ÕÅ=œ¦">Í›:=Rd>ÆF¨=„¨Ñ>ºòw=sþ}>²óJ=n©¤>¬IR?;ØÞ>žJ¾?;ØÞ>”ö]?;.B>Š÷h?:ƒ©>Í`?:À>vœ‚?9Û>eó¶?7ƒ÷>QõÅ?5„/>@¢7?3/>4£o?1„™>%úK?//~>ûñ?,…> ý#?*0=÷üÇ?&°a=Þª{?#0·=ÉWG?Û½=±YÕ?Ü$=™\B?1ø=†³x?2[=]kÉ? 2þ=BÃê?ˆÉ=%r5?­=Èè>þhÐ<ðB >│<ÐE7>ãÀç<ªòR>ÓB<­w>ÄnÅ<¥žë>²p£<°HW>¢rC<Å›Á>”s²<å˜[>…ʇ<õ˜>}AE= t >c™3=(>K›£=:Ä >;Gð=Lì>-ž˜=`/>JÎ=€ >öß=޲¯>MÚ=¡[g=äžó=±YÕ=É÷=Ä~=´£è=áTÊ=”§=ùRY=n©¤> ý#=>®Ÿ>û¸=¼>&ú<Т>1ù A÷l<:õµ>P —; «q>_I¹žË2>pI»´…ä>€MÕ¼<§>ˆM¼Z6b>ö̼oˆ¹>› [¼Æ>¦tœ¼1>´÷¼1>¾ò¼Æ>Éq¼oŠG>Ï›¼/>Ù™»Ôˆƒ>嘿;¿Ë>ìmo< M>òì¼<’Ê>úëæ<èv?Êô=] ?ñ=IX3?ÊS=n©¤? 4²=‹Rë? t‡=œ¦U? ɲ=µN?sé=ßJ ?É=üœ‘?ÈÉ> ÷m?È•>õÆ?s>*IÃ?H]>;Gð?rÝ>Gœ?r®>Tð?]O>eCµ? >|ëä?!õ>Ƀ?!Ç>œrß?"Ù>§r?"œÃ>¯ðç?"r*>ºoÐ?"r*>ÃÄ.?"Ù>ÏU?!Ç>Þl?!õ>ëÀ? %>õ?"?]J>þ¾'?È?ˆã?”? ÝÅ?j?H?Èz?‡Â?sb?2?2?1¿?É1?1>? Œ?!Æ9? tO?$0Ÿ? ´¨?'ÿ?ˆ?)…e?u#?+Ú}? $?.Ú2>üA?1„™>ôAî?3Ù«>ímd?6.Ò>ãÃû?8B>Ù™þ?9ƒÅ>Îðo?:Øõ>Äñs?;ƒ>¹E?;ØÞ>ÃñO;iË>ÃñO½¥Ü>ěĽ¯¡+>ÆFT½Ñž>ÊEì½ððp>ÐES¾vÂ>ך ¾ E>ßCÕ¾tÝ>éBѾ´>ñ앾sâ>ý@¾ÉA?Ê—¾¿?ôÙ¾ð? ´€¾Ê%?´/¾Ë?ó½¾Ëý?óo½ñšj?î½ÙœÌ?ˆ`½¼J„?™½–ù?H3½h£Ö?™½$ªÚ?HQ¼Ü T?Ò¼œä?Hê¼b×±?ó£¼ ‹?óï»ðoi? ô<¼ ‹? ôa¼}~Ñ? IܼæµK? ŸC½¬? _8½]úD? ŸC½‘¤H?ʽ«¡²?õ ½ÁŸ€?ŸÃ½ÌHà?õz½Ñª>û@ö½Ñª>óìd½ÌHà>íìú½ÄIº>ç홽®ö”>䘢½ŒOo>䘢½x¢#>䘢<ãÆ„>à™=Àã¬>à™>)¿£>ßT>9¾>ÜoN>L¼>×ï@>YºÃ>Ô‹>ddq>Κå>lcr>ÉF>s z>ÄF­>xbN>½GW>|aÒ>µòÁ> ;>¯>€[Q>§É}>¶Ý>Ÿtë>~ [>˜ J>{ Å>“K¨>w >Ž!>r¸ >‡÷{>kQ>‚¢±>a¹ì>{›í>XºÇ>tò>N4>n_>Dgu>iH™>4i">gža>'>fHÎ>>fž6> m>gGó=ùˆ‚>jòz=׋ó>oò6=¾9@>z›¼= æó>ÃF·=†?>¼œ¼=qÖ)>´=a×¹>­Hþ=\ƒ>¦žÔ=a×V>Ÿõ=ln>—ÊÉ=”}>‘ ã=”=x>Œ¡=®:Ž>‰÷D=Ðâ>ˆ¢=ö3™>‰!ü>˜>Šöå>!Àl>ö~>0i¥>“ö<>=½›>™õ>E¼Ë>¡ôÉ>Jœ>§I–>K‘>¯HÃ>Jfð>·r¤>E#>¼Çm><->ÀœT>1¾Ú>ÃF·>%À>æÃ3½¦øUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÇÉÊÇÊËÇËÌÇÌÍÇÍÎÇÎÏÇÏÐÇÐÑÇÑïÇï(Ç(ðÇðñÇñòÇòóÇóôÇôõÇõöÇö÷Ç÷øÇøùÇùúÇúûÇûÇÇÇÇÇÇ'û&'û&ûü&üý&ýþ%&þ%þÿ$%ÿ$ÿ$#$###"#""!"! !                ÇÑÒÓÑÓÔÑÔÕÑÕÖÑÖ×Ñ×ØÑØÙÑÙÚÑÚÛÑÛÜÑÜÝÑÝÞÑÞßÑßèÑèéÑéêÑêëÑëìÑìíÑíîÑîïßàáßáâßâãßãäßäåßåæßæçßçè=Z7&¹·om>¯ݹ·om>¶i; „M>¼ZH;ë2H>À]ðÂïÀ<Àjn>ʼn=uY>ʼn=AÙ+>Äa÷=i¬½>ÁÐ*=‡wŸ>½õ=”õ,>¶º®=NÁ>ŠhT=œÄ>‡Æ= „ú>„v¬=«p‹>‚²i=¶\->€îv=Ã5>}¯s=ÜBŒ>|g£=õôk>|g£>¡‚>~ùv>¦2>‚²ü>ª É>†¨>¬ž>‹±:>­C>ØÆø>­C>à|R>­C>èÖ)>¬u~>îÇT>ª±E>ô=6>©ºž>ø@å>§Í9>þï>¤é1?‹>¢ÒÉ?èy> j ?1a>3Ó?ÕÑ>š¢ ?Ì{>–ÇW?Ã(>‘£Â?g>‹Û»? >†²?^I>€K®?^I=ób¦?°=×ó?º=¬?Tó=«p‹?ùg=™sû? ”ƒ=z`´? Ýl=AÙ+?Án= QÆ?œ<¡•?$—<3E’?ZÑ;˜ûD?~e:m,¿?<¯q:m,¿?@a;;6¶?Bɲ<JÜ?D·<™ÞÎ?E­³= QÆ?E­³=7’?E B=jõÝ?Cé=‡wl?Al7=–=æ?<ìÊ=ž—?(sX=ž—?$ÿG=¥¨‹?"«N=°”?!vè=½m? Ú=Ð å?u=扽?u>z*Û?"ì>‡3z?Ã>Zß?*V>šôI?ì>¢©¤?¿²>ª É?€">¯ÔÌ?®Ç>µœÓ? –n>¸Ó?§->»dÝ?èy>½¤j>ü”>¿??Tó>þ¬?>ÆôÝ?rõ>ʦq?A>ÏN½?Q}>ÔrV?‡º>Ù•ë? €P>߇?"Y>ãÝ?$[>êÄÚ?%£û>ïèr?'*†>÷Æî?(!>ÿ|S?(±?(»?)È?j3?(î·? éW?(œ~?hy?'Îå?çœ?&…ÿ?¸õ?%Q?œú?#¶¢?!òÿ?!´º?%?ž:?(Jï?‡º?*È'?ÿF?-¬+?ݯ?0Rˆ? ;?36‡?F%?5v? Vñ?6Ó?g³?81?Áœ?8ê >üD¹?9õB>ñÔp?:… >çB?:×X>Ýê?:×X=nÅ?:×X=E¨ß?:… =!¯À?9·“<ýúG?8þ•<³uÉ?6ü²<ží?5aŠ<Š^¹?2+N<ŒóX?0=õ<—=å?,cH<°î ?*È'<Âçq?)C<æßB?(6]=Dé?'?±=6>?&íw=üÿÞ?&íw>Ð×?&›A> ê«?%¤”>é?$2Ž>;š?!c> ‹?¦N>žJ?'->žJ>Ñt>Un=ðÐà>Ãù=Özˆ>©Î=±Üù>œ=Ÿài>Ç=œÄ=@…+=œÄ=hz=™sû<ûmŠ=‘¾¡<ÒPµ=Š 5<©4&=„"<€W=[‹&<\1Ú=<µ›{Ç>Ú:Y>{Ç?Ù>|gZ?Ïi>€!-? .Ä>ƒ.F?"E;>‡É?$„Ì>Œú#?&I>“Ã?'¦>™Ó?(t >¢ú€?)õ>­‰?)C>¼õ?)Ñv>Ñš?)Ñz>ß×á?)Ñz>ëgõ?)->óêé?(_|>ýÎ?'˜?˜C?%°?^I?"À? ð? .Ä? ý=?ºß?eõ?à0?þ?ðð?΄?];?÷¨? ûþ?÷¨?Øg?SN??H >ú?Án>ñþè? :÷>ì_õ? VÝ>çO?^]>à¦Ç?QI>ÜPº>ÿöF>ØM>õ¯>Õ»8>æèÑ>Ó)o>×ùƒ>Ñe,>Ê©>З£>…DÂ>З£>€!->Ñà†>{Ç>Ö ~ ‹‹ŒŒŽŽ‘‘’’““””••––—!"#'()')*'*+'+,',-'-.'./'/0'01'12'23'3B&'B&BC%&C%CD%DE%EF%FG%GH%HI%IJ%JK%KL%LM%MN$%N#$N#NO!#O !O OOOOOOOOOPPQQRRSSTTUUVVWWXXYY¹¹ºº»»¼¼½½¾¾¾¿¿¿ÀÀÀµ¶·¸¹Y¸YZ·¸Z·Z[·[\µ·\µ\]µ]^µ^_´µ_´_`´`a´ab³´b³bc³cd²³d²de²ef±²f±fg°±g°gh°hi¯°i®¯i®ij­®j­jk­kl­lm¬­m¬mn«¬n«no«opª«p©ªp©pq¨©q§¨q¦§q¥¦q¥qr¥rs¥st¤¥t¤tu¤uv¤vw¤wx¤xy¤yz¤z{£¤{¢£{¢{|¢|}¢}~¢~¡¢¡€ ¡€ €Ÿ Ÿ‚žŸ‚ž‚ƒžƒƒ„œ„œ„…›œ…›…†š›†™š†™†‡˜™‡˜‡ˆÀ˜ˆÀˆ‰À‰‰ŠŠ‹34535636737838939:3:;3;<3<=3=>3>?3?@3@A3AB=e ‰[<·Û¯>…\))Ì;µz5>6z·¹¤~Ð>A!Í»i”>OÇ»ô£@>]mȼ$íö>nͼdØr>€†I¼…\>‰Ø€¼‡¹Þ>‘ÕÔ¼‡ºª>›(¼‡¹Þ>¥O\¼z'#>®!ϼtÓ|>¶ts¼_†X>Á–¼øù>ɘá»i ®>ÑA;UÉ`>Û¿âe¤<·Û¯>èc§<í]>ï =Øž>ó Ä=6zs>ùÇ=fjU>ý±ã=ˆƒw?-=Ñ´?,=½Ç?f=Õ¾ñ?+‚=ð`É?ÕŸ> ð? € >%À? Ôñ>,? */>AmS? h>V»™? */>eaU? »>v°ç? ê™>ƒUÊ? *Ö>‰SË?k>>Q}?Ö]>–O€?A­>w¾?‚z>¤Ê­?˜>ªHÕ>ú]¨>¯ñ˜>ó Ä>µï™>ë i>»C#>á¿>¿ìF>×i:>Ãk>ÍAê>Åê,>¼Çm>É>c>fjÀ>×äG>Rql>Û8‚>?Ìö>ß7/>/ÒB>ã5Ö>×>è‰j>Û<>í²Y>Üí>ñÛ¢>‰ç>ø.Ò>àæ>þ‚=ý¶?ê*=ý¶?èÐ=ý¶? ’D>Œ?åÔ>‰ç?9¾> 2Í?£O>…?â>‚¯?á€>+Ó›? ‹I>9$€?"ŠŸ>GÊC?$‰ò>Vp?%ÞÕ>cÀñ?&Þ€>o¼ø?'ˆó>Û&?(3c>‰Ø€?(ˆœ>“Õ*?(ˆœ>œ|ó?(Ê>¤¤ñ?'žF>­Ì‚?&‰G>µ–?%‰Ÿ>¼„?$4¸>Âp{?"_ü>Çd? 6 >Ììí?Ì:>ÒØ? >×¾æ?9>Ü=%?:Æ>Ý? ‘›>Ý>ëÝ¥>Þfó>ãàK>âe¤>ß7/>è8ý>Û¸>ñµã>Ù9,>ø³Ñ>Úcp>ý±ã>Ý7Ù?í[>áàä?,Ö>é3Ý?,Ö?/1?--?3/º?ØF?5„K>ÿÄ?7.e>ü]?8x>÷³æ?8ƒQ>óµ6?8ƒK>ìbQ?7ØÙ>鸈?6Ù0>æd%?5Y¯>ãe>?1°,>㺌?-†ô>㺌?)ˆG>Ý?-†ô>Öiª?0[Z>Ïl;?3">ÇÃá?5/>¿?6Ù0>¹?8.>¯ËÙ?9‚õ>¦y?:-i>ž|G?:×Ù>”?:×Ù>ˆƒ™?:×Ù>€†I?:×Ù>m0?:‚Ÿ>Yâ?9‚õ>DÊÕ?8ƒQ>3З?7>'Ôî?6.¼>/ª?4Dµ>й?20=êvF?/1=Ð?,Ç1=·Ü{?)ˆG=Ÿäi?&4=?ò?"ßÓ=eý-4=ªž>õ/Ý=/ø©>ìˆ=Jš€>ãàK=rŒ½>ÚŽ=‘è÷>Òf=¯ß+>Éèí=Å-f>ÅêF=ßÏ0>À–¸=õi>½ìð>5Ê>º˜µ>Ú@>·îï>#ÖA>µE->6z·>±ðì>I.>¯Æü>veu>ªž >‹-^>§ôE>ªxK>¢ ³>¸Èï>Ÿöë>Án>M)>ÉÃ4>™øê>Ñ@ë>•úD>×¾„>‘Q!>ݼˆ>‹S<>á¿>‡þæ>ädú>€>ç¹5>q]U>鸈>` ×>êbþ>Qh>êbþ>>Ñ>éE>.s>çò>$f>ã> M>Þfó=ó ‘>Ùi=Õ¾ñ>Ól=½Ç>ˇ=¥Ï>ÃÁ=•Ôc>»j=ˆƒw>°vK=vdô>£ÏÕ=k¾>˜~F=fjU>‹X=fiï>|¸Ú=g¾ü>h¿ê=oº«>TÅÚ=ƒÙý>@Ì€=”$>,}Ž=©Í“>×¥=½L> Þ9=ݼK=ý¶>-¾=çÌ}>Ò.=Ò~E>*Ê6=Ë+w>?Ñ=Í*³>ü@=ÁØø>˜NÚ=¹ÜQ>›Í¼=¥ã2>¡KÖ=…B¢>¢ ³=UA¶>£õ˜=©>¢ ³<ÕkÈ>Ÿ¡µ<ŠÙó>šN*‘û”Ùþ?®ú      ÁÁÂÂÃÃÄÄÅÅÆÆÇÇÈÈÉÉÉÊÊËËÌÌÍÍÎÎÏÏÐÐÑÑÒÒÓÓÔÔÕÕÖÖ×רØÙÙÚ !!""##$$%%&&''(())**++,,--..//00112233445566²²³³´´µµ¶¶··¸¸¹¹ºº»»¼¼½½¾¾¿¿ÀÀÁ67868969:6:;@ABTUVZ[\`ab`bc`cd`de`ef`fg`gh`hi`ij`jk`kl`lm`mn`no`op`pq`qr`rv_`v_vwÛ_wÛwxÛxyÛyz^Ûz^z{]^{]{|]|}]}~\]~\~Z\Z€YZ€Y€XYX‚X‚ƒXƒ„WX„W„…W…†VW†V†‡V‡ˆTVˆTˆ‰T‰ŠSTŠSŠ‹S‹ŒRSŒRŒQRQŽPQŽPŽOPONON‘MN‘M‘’M’“LM“KL“K“”JK”J”•J•–J–—IJ—HI—H—˜H˜™H™šGHšGš›FG›F›œEFœEœDEDžDžŸCDŸCŸ C ¡BC¡B¡¢@B¢@¢£@£¤?@¤?¤¥?¥¦>?¦>¦§=>§=§¨<=¨<¨©;<©;©ª6;ª6ª«6«¬6¬­6­®6®¯6¯°6°±6±²rstrturuv>ðÅT:_P]>ö‡Ó;[«">ý@;òñ$?hüî,=™kv>øsU=›VÉ>ÌJÊ=›VÉ>É»{= uq>ƈL=­B>ÄœÊ=·k>ÂÙô=Æ7›> x=Ó¨>Àî¥=ï,ß>À!ö>òc>¾ÚO>~Mk>¿~>òXÅ>ÀÅÊ? U&>±O?}ú>Ãøù? 6;>ÇÏö?#»Q>Ìî¡?&î{>ÓøÎ?(Ùû>ÜJ¥?)}Ò?CÔ?)}Ò?vþ?)+å? XA?(ˆ? •«?'@h?vê?$±??!}è?>è¿??bj>âüÁ?>Þ/þ?ç‚>Úªí?vÔ>×wÀ?X>ÖÓé?çn>ÖÓé?bV>×w¹? Z>Ø¿n?!ûØ>ÛNÀ?$9l>ÞÓÈ?%/>äDk?%/?5¦¨?$‹.?6îR?"ñ˜?8‡ê?l?:ÅT?•?;>=Méã?;>=$ôa?:si<ú‹Ò?9+À<ºŽ+?7’(<›Ö`?5ø•êªÄ<‡[Ä>âüÁ<ºŽ+>Ü–k<÷þN>Ø”=*<>ÕŒB=bd>ÕŒB=Zó>Ö0=¦ô8>ÙcB=³Àô>ÝI=Ädî>äDø=Ãë?äP=ÍZN?"Å‘=áÔú?%Tè=øÞô?'’R> )?)+å>ßÛ?*!§>ed7?*!§>pé4?)ϼ>€"š?(Ùû>…AE?'@h>‰¼?$±>ŒKr?"!»>Ž6ð?î>ŽÚË?»f>~ž?}ú>ÆF>ýÝÅ>ÆF>h‹>~ž=ú>Ž6ð=Ó¨>ŒKr=º¶>‰¼=ª²À>ƒ~==œžw>-Ò=›VÉ>!Ô=–8>˜-=†Ü >y{=o>Z×=K)_> dß='R¸>¢…<üº¶>Á)< ’Í>¶Ñ<P">*ƒŠ;[«" ZZ[[\\]]^^__``aabbccdde$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23$34$45#$5"#5!"5 !5 55667788999::;;;;MMMNNNOOOPPPQQQRRRSSTTTUUVVWWXXYYZ;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF;FG;GH;HI;IJ;JK;KL;LM>É׼O¡é>Ϙ4¼O¡é>ÝÔA¼* >æˆí¼gõ>óBÅ»¨È¬>ûÌå9Ö^F?ìo;ã»Ç?å<ƒòÔ?PŠ=¡Â?Î==7?c=mp?]¶=–Þ†?`=®ûL? ú=Ï!¦?!f=÷Q‹?#Â>À±?$i±>/ç ?%jä>L–?%À >fÓ1?%À ?ý?&Y?ÐÕ?'‹?Ø?(n}?#ˆF?+V?&áœ?-tx?(ŽB?;…??(ŽB?>ˆÓ?)9º?@5|?*æd?B7å?,èÉ?BãZ?/ìa?C9?2š=?BbÍ?5È·?@5|?8K²?=‡ ?:N?9Ø•?:ùŽ>é·W?:ùŽ>ä[Ÿ?:N>à”?9Í>ÜQÞ?86D>Øø¶?6Ÿ >ÖöQ?4œ¢>ÖJÝ?1™ >ÖJÝ?.ë/>ØMA?+ç•>ÜR ?)å2>ä‡i?(£´?ñ;?(ŽB? ôÒ?(8ˆ? v¿?&vu? ¸9?#Þ? ùœ?ƒ{?Ïü?|M?PŠ?r¶?PŠ>zë?úÎ>Ui? ùœ>6™­? Í–>Ï?  6>\„?³Y=ñJ@?ÛÛ=Ú„8?—ç=Æl\?”O=´W>ù =¤Cå>òlg=™Œ]>ë9*=+Ù>ãµ=†Ëc>סÆ=o¨>Ë“h=}ƒ¤>½‚ª=}ƒ¤>°ÈÑ=†Ëc>¤ºp=‘‚Ë>˜¬=¡–>‹FÂ=¼`š>ƒ=3=×+8>{Âï=ñõÌ>q Õ> »è>jXÜ>Óè>dý$>7ð–>bOD>ZÄÐ>bOD>×5ã>dý$>úµ‹>g«?ý>n]¥? „­>y?%Š­>ƒ=Ä?(£´>«m?(ŽB>´""?)t>¸&î?+<>¼+º?->…>¾`?0­I>¼+º?5H>¸&î?8K²>´Íí?:N#>®Æl?:ùŽ=`¼ž?:ùŽ=0‚ò?:£Ô=£ä?9¸<Õµt?8K²<•hè?5ó“…a?#Þ>Š#?‚K>8?{>Žì?0> åâ?Ð> åâ>ß?x>8>«¬§>3:>€#j>Š#>;õl>8>!@>A”=íE™>Ož=½·k>'^]=–Þ†>7q€=b¹ >K‰r="l\>`ø[<Îöù>vg6†–„;Õ>–©±»fff>ªÁ ¼UX ;;<<==>>??@@AABBCCDDEEFFGGHHIOPQTUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcdTdeTefTfhSTiRSiRijQRjQjkOQkOklNOlNlmMNmMmnLMnLnoLopKLpKpqKqrKrsKstKtuKuvKvwKwxKxyKyzKz{K{|K|}JK}IJ}I}~I~  !!""##$$%%&&''(())**++,,--...///000111222333445566778899::;Thifgh>ã™À¼°Eþ>ëx¼ŸÙº>ñIǼx†å>öñ¼1ZÌ>üÀ¹ ãC?m™<'Ž?55]?P?7BÛ? z?9P„?#Þ?;^?&òi?>Ê=?(|”?M€´?(¨b?P•?)W?Rú>?+ Ž?TX ?-ÊS?U_l?0Þ³?UÒ?4¢??SQØ?7¶ ?QDD?9lš?Nß?:Êþ?L"Q?;"–?‘?;"–>þùs?:sb>ü<°?9Ä3>ø!‡?8eÓ>ôµ?6¯Ô>ò§ý?2ìD>ò§ý?/€N>ô]à?,—»>÷Ð?*¥>þJB?(Pº?s“?(Pº?ÁF?(PÈ?Re?'4?47?%&ˆ?PÕ?"SÞ?’j?­?:Ò?ÿP>äHî=®ì)>Œ?®‚>Š¢®? É©>‹QÜ?$5¡>¶Ç?&Ƥ>˜Ö?(Pº>Á¹Ç?(P¿>ÆÛÔ?)Ù>Ì)á?*ËÎ>Ð.?-Fæ>Ðpƒ?1Ï—>ÏÓ?5¾õ>ËNß?8eß>Ç?:‰Z>¾!û?;"“=S8q?;"“=ÿ~?:sb<Öfd?8½h<ª™÷?7n<}›?4J§<}›?/×é<Ÿ¦Ÿ?,kð<÷?w?)¯+=×Ê?($û=燦?(f£>W?(PÈ> fÍ?'¡˜>àM?%ë>u?"×?>#«W?d}>¿T…<Ä>ÄÞ;&‹>Éle¼ ïš>ÐD"¼’+|>Úßç¼³¾>’Ââ?'·|                    ! !!"""###$%%&&'+,-+-.+./+/0+01+12+23+34+45+56+67+78+89+9:+:;+;<I+<I<?*I?*?@)*@)@A()A(AB'(B'BC'CCDDEEFFGGH$%<=><>?>µ4¼¨qc>¼Ñ·¼¢£H>μ‹m>Ê™æ¼:n>Î:_»‹å>Ò”¹;¡Ú{>Ö5<Å$Ã? ¨,?“\?'«í="g„?)N<¢S—?*ï‰< õý?-ž»:îé?/wý¼Q;Ý?2R¼—%?6þº¼«X?:äæ¼«X?=n¼¼—%?@²X¼¤E?Cûìn?8™Î>÷’é?5³>õeÔ?2oc>ò ?.Îì>µÇ=ÐÝÔ>€(?– >Æè?!c–>‚‰?% >„÷O?&ÔG>‰Ä?(D>?)e>ŸF?)_>dz ?)^4>˰\?*Ñh>ÎÅ÷?.C >ÎÅ÷?1ûT>Í$?5Ê9>Ê?8™Þ>Å´¸?9™(>¿¸€?:ÆÞ=;|»?:ÆÞ=\™?:$i<û?8‚•<†Ç?5ø©GV?'1.>Ÿ ?$§:>lN?!¾>­4?– >“y.=™ò>—Ó[<9a€>›sκ¼/Ç>¡AY¼Q7«>©;ú¼—%      778899::;;<<==>>??@@AAABBCCDDEEFFGLMNLNOLOPLPQLQRLRSLSTLTULUVLVWLWXLXYLYZLZ[L[\KL^JK^J^_IJ_I_`HI`H`aGHaGabGccddeeffggh  !!""##$$%%&&''(())**++,,---/00016671223344556/0-./GbcL\^\]^?Ú~¹ÝP©?Péjº# ·?U'è:ûCÙ?Wħ;å¹c?Yf´øû>ý'?1ÖH?$â?6Wc?'`?9v ?(HI?;Áé?(Û@??eú?(ñ˜?O¸J?(îÆ?Rü ?)Vž?U0Í?+Š]?Vj©?.â¿?VA>?2e?U›?5ü‘?Rþš?8EÔ?P8™?:P¦?Kå„?:ø~?ƪ?:ð2>ÿƒ?:sZ>ûn ?9Ï>ö±©?8i­>ôå…?7¹>óC>?5&]>ò›?2!k>òÃÊ?.ÈÜ>ôe?,”º>øO ?)÷Å>úmì?);—>þÖ ?)&m?D¤?(ø«?ˆ?(¤¶?Û¶?('9?Ûh?&[‡?‡­?%`á>â >ã¤>J?%Jü>i‹?'S¦>‘éè?(O >•÷?(ðÁ>ÈR†?)->Í8i?)“%>Ð|`?+I>ÓÀ±?->­>ÔhØ?0.·>Ôj?3Åñ>Òuy?6>Ï2™?8XV>Éùþ?:$n>Ãs?:õá=†)?;Ñ=]Oœ?:°Â=3€î?9¡†= ?7mÒ<ù=S?59ý<é…ð?25(<ì ?-¸=¸§?*²¯=? §?)á‡=Wî.?(æ¢>\>?(ø>Oþ?(ŽÓ>m•?'ié>Çæ4>ë>'0:=Ó'$>$Ã=³ÕV> p=žõ#>óÎ=ñs=0hü=¸J<ý–©=Š7&<Æ´Ë=yÅ<’j%=[|<¤wÿ»]¹§?u>Äþ‘:øçÞ>Ë3D< ­X>ÏœA<¡±V>ÐëC=& >Ñ“L=*íš>ÏŸ=_*à>ÍF=ß>É–‚=‰¶>¼Ût=DÐ>‰ÅW=h>…‡W=™“>ƒåø=§î‘>„cÓ=·™p>ˆy£=ÍÉ>à¯ú>¤U%?ó=ÒˆV?1=½¢¶?TR=¨¾?M=“Ú@?xž=‘Ac?‹Á=s~>÷ïõ=˜t>ôÔ§=CŠ^>ô€X=Øø>õÍO<°îJ>ú²<:¡Q?›:Ämƒ mmnnooppqqrrssttu  !!""##$$%%&&''(()))***+++,,,-..//034535636737838939:3:;3;<3<=3=>3>?3?@3@A3AB3BC3CD3DE3EF23F2FH12H1HI01I0IJ0JJKKKiijjkkllm-.FGHOPQOQRORSOSTOTUOUVOVWOWXOXYOYZOZ[O[\O\]O]^O^_O_`O`aOabNOdMNdMdeLMeLefKLgKghKhiLfgObcOcd>V³¸åæy?ÒŸ¸åæy?^;âi?<ï;Ê¿w?Ñ8ý‰4=š‡±>úOØ=¤ØÜ>÷»‘=±¾;>õ'G=ˉ/>ó8 =÷b>ñíè>ŒƒA?3¤{?"vä?68Ä?&UR?8£À?(mØ?<j?)<$?=õ ?)á4?Q ?)á4?TÙ®?*ØÒ?Vv\?-¿¦?WD»?0ä`?VÝŠ?3¡î?Vvp?668?UjC?8Nµ?S¤\?9Zî?Qw?:x?MoX?:÷Ÿ?Xâ?:÷Ÿ>üä!?:x>ùªÅ?9­x>õËÿ?8Ê‚>óa?7/>ñíè?5)û>ð£›?1ð›>ñHÙ?.·@>ô«Ù?,S>ú'Q?*3¿?w?*3¿?Ñ8?)á4?\?(DŠ?ò$?%î&?Ñ8?#ö>ÝK>³3Ž>„O´?% ->„O´?'Lì>…™Ù?(éš>‰Ê’?)·ø>V³?)á4>ºy¼?)á4>¿OÚ?*]>ÄOI?,`Ö>Æ\?/ Ê>Æã¸?1ž>Æb?4[§>ÄO{?6ˆÃ>¿P8?9Zô>·jC?:q>®9`?:âõ=Gš®?:ÎO="4E?:Rˆ=öE?:<³ó?7Òè<€]?4®)º?(Y+>Ë?&UR>ÄÊã>ˆ¤Ó>À¾>LF>Â6œ=çèG>Àìq=Èôè>¿¢L=±¾;>¼hð=¤ØÜ>·’z=—ók>Œ ’=—ók>†>è=’ÊÌ>»B=ˆy³>}=qÿÕ>wÛ=H»->uG?= Ôo>y%µ<™Úâ>ä;Àdª SSTTUUVVWWXXYYZZ[  !!""###$$%%&&''(())+++,,,-//000156757858959:5:;5;<5<=5=>5>?5?@5@A45A4AB4BC4CD4DE4EF4FG4GI34I3IJ23J2JK12K1KL1MMNNOOPPQQRRS-../)*+1LMGHI=³œØº4úH? ºº4úH?$i:õº?BC;9¥©?` <1¥Ê?ñ<¬ÍÙ?}å="„z?}å>ˆ*?lð>‘Lö?K>–8¿?l7>—Ü–?$i>™,? Ç–>˜®‰? @Ï>–Œ©? ÷>¥?Q >ˆÅv?Q =àHÓ?+%=È©Î?Û:=¼2—?¹P=± ¦>ýŠù=¦Œ8>õu=œ Ø>éÜ=–Í)>ÝdÛ=‘z=èÅ=‘z?d? =W?Wë?$-?OÍ?(à?K½?,`¢?÷Å?0Ph?Oá?4.?Ö?74 ?` ?9é?ÈP?:{Ì?0“?;#Â=®])?;#Â=ŽÞü?:{Ì=m-«?8˜ì=Kw?6¡=:å?2œD=%>íω=%>è1=?C…>à°N=y>Ü—=”¬>ÚÈ®=¸Ü‡>ÚÈ®=Ð{5>Ýh€=çrB>á#=õ8\>ëÝ=úx¯?M“>»½? ‘R>*Þ?$->!ú-?%Ñ>5©?(à>Q7m?)Ò>þÚß?)Ò=%=ò§½<ë›=ЉÈ<±Ï5=¼ÚÓ<‡Ë¶=œ´¯>?      "#$"$%"%&"&'"'6"67'()')*'*+'+,',-'-.'./'/0'01'12'23'34'45'56=§ˆ¼˜ö>;Ѽ™>LZ¼€Ëó>Y\®»¡†˜>`š^s±= dr>Vº =GI®>Fd=P²ë>Ç=P¹¼=ôÆ=~åï=çÝÊ=¨»M=Þ{s>^=Þ—›?$@¶>ù?,Ö>A-?,Õœ>UÑ?-‹7>`ß?0H•>f‹O?5îª>bÔÀ?:nƒ>V*‡?>AÄ>A.ï?>©Œ=û®?>ª•=îqÎ?*1ù          >aéf?>Ÿs=œX?>Ÿò=uäç?=Ý–=AÛ$?;8=$æ|?6¦=-(?1Þ=Lh©?-b“=†à;?,Ì >Ó~?,ËÓ>q^?)é>åË?$À>—ž?S«>‘=¬¶t>£Ï=zXN>ÊÞ=Pï=‘_«=P7=P/P=D¿m=#÷Ï=èê= H%aÞ鼚ZI=NͼS    <ߟÈ?ƒæ=·:¬?ƒæ>5ÍH?(X–>„?ƒæ>§ÓG?ƒæ>PSÏ?<=>ŸŸ?<=<Ø{W8Ši{?†v8Ši{?†v=•µR<Ø{W=•µR>6׋?2W>= à?$0ñ=‰%î??A}=[|þ?@9®=Ö?@ú<È®?<È¢<³j?8Îõ= Æb?3¾<ówâ??•<ÔåO?5÷Ñ >Xa ¼EÅý>v'ƒ¼<É_>„èµ¼!Ñ >åÜ»×Äã>˜Ÿµ–þµ> oó;É6>§½ ±Új<×¹>»ga=3Ž>Æû=’c>ÈSB=i´š>Ê’=*ȃ>Ð0Â<λû>Öî£Ý¬};³½>çÉD»WÍF>ñæ »×Äã>ý²O»û¹I?/t»×Äã? ]~»äz?Ü;³½?¸<{«'?w=Óú?¨N=‚Uó?€ =¡Ëÿ?€ >0g ?8#>@"¡?|>Mž\?i>U{Ü?)½>Yúi?¸>\9¶?û³>[? ¼j>V›|? Å >OÝ¢? Í«>CŽ? +Ù>5tÖ? =Ù=å6“?õî=ÁAú?f=¤ F?þ‘=Ñ«?O=‚Uó?W·=n3'>ÿñ•=i´š>ø={®Í>ðÆg=’>í÷N=ªÉ>ë¸=Ðüø>ígz>ÆPÍ>ìG×>×»D>èèê>ä§+>äú*>îÃö>à{–>÷Á>Ú)³>þêÖ>Ò7?¬>Ê’?(>¿V!? X>µ9W? S¢>©m? >Ÿà#?"¾>–S)?²>‰÷?úw>|U¯?²>d½4?j§>Jål? K>: Ë? sE>+oc? ÃÑ>”Ã? \B> ùh?ú=üûi?m„=èÁÛ?.8=ÉKÎ?_=°“¦>ú3= Ø©>ôñù=‘­>îÃö=ƒ Ç>è=pË >ßñ=gÍí>Ô\W=pË >ÊÏ`=ƒ¡õ>Âb=šÖ>¹ô¿=¹Ñ>³Æµ=ÙÍ>°÷˜=üûi>¯×ò>wü>°÷˜>Ô >³Æµ>)0>¸EF>1 >¾sP>6«Ø>Å1)>6«Ø>Ì~×>3Lë>ÓÌ„>-®·>Ùj¾>%Ñ7>Üɧ>Ô >à(”>ó¶>ä§+>#‘ã>êEb>6«Ø>ñ“ >IÅÅ>õÌ>d½4>ùp>xöÈ>û¯Ö>†[>üσ>•O>üÏ}>›a´>ûD>£?>ùp>­[Ú>óB†>µS>ëˆý>·xž>鵋>½¦¨>à¸k>¿åñ>×»D>Á•k>ξ >Á•>ÁBm>¾6{>¸EF>ºG»>±‡l>²j>>«Yb>¨ÝC>§j¡>>¤ ´>V>¡Ìk>WA€>M×>u#>˜ÏG=ñ¾õ>“Àä=¬>‰¤=ZRI>xPÄ=i>Yúi<Áñ>=ãT<ý&>!Ì?<¦ú@=ýî®<Êîç=ν¸=fP=‰×=cO`=/G=• O<Õy)=ÉKÎ<3ÂZ> ùhº÷Y>)0»û¹I>Q£F¼EÅý>Á•>ñÇ>Á•>L~®>¿åñ>:„g>½Ø>$ “>¶èÎ>•‘>°ºÇ=çuà>ªŒ½=Ì~k>£?=³ÆC>™"F=ŸŒº>Іë=‰×>~”õ=€­>b}ç={®Í>G†=‚Uó>+oc=‹S>Öé=¡Ëÿ>üH=º„'=í@h=׺ß=âô=÷0Ô=ÙÍ>E=ÛF'>*Ém=ë>=ãT>¼û>OÝ¢> >Yúi>"rC>e6Ö>AèE>n3÷>Z f>psD>u—Õ>tñ×>ˆ×q>vw>—rÌ>{¯±>¢¯9>€">°*ð>„ã>¹(>Š3í          * * *+ +, ,- -. ./ /0 01 12 23 34 45 56 6l ŽŽ‘‘’’““””•žŸŸ ¡Ÿ¡¢Ÿ¢£Ÿ£¤Ÿ¤…Ÿ…Œ ‹Œ Š‹ ‰Š ˆ‰ ‡ˆ †‡ …† … l…lm…rœrœrs›œs›st›tu›uv›vw›wx›xy›yz›z{š›{š{|™š|™|}™}~˜™~˜~—˜—€—€–—•–•‚•‚‚ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6AB6BC6CD6DE6EF6FG6GH6HI6IJ6Jb6bc6cd6de6ef6fg6gh6hi6ij6jk6klJKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabqr…pq…op…no…mn…>°‘7¼¢Ò8>¾˜¼qm>Íö¼E`G>ÛRv»>ðk>ëZê<©›>õ`4<½è-?^Õ=9ή? ø=ŠTµ? ¸“=²ià?»8=ò‹±?¼Í>ª·?½Ý>>¿å?ih>X"š?ið>„?ið>•|?¾ë>¤.ð?æ>³Œb?×>ÂéÓ?¼F>ÐF:?º>ÚK„? d>æQÜ? b‰>ðW&?µî>ø[f?^L?/Ï>ú¸_?†é>ð³?ˆ€>èÐ?ß>ÕúK? à¦>Èê? 6±>¿CÏ? ÷>±g? á»>¤Šß? 6±>—Ù~? 6)>‰Ò? 4>™›?Þ>pç"?Üj>b4¶?0T>H}>ò¸>J( ?5KÛ>G{õ?8¢ñ>@ÍÂ?:N€>3q[?:¤=RÆ?:¤= ”´?9£|<ÎWV?8Mp<›Þ?5öá<ƒ…@?1I»<›Þ?-<Ðû ?*pÆ=ö˜?)E=Á5ë?)E=Óêp?'ïu=áF×?%Cc=áF×?"—N=æŸ?= =æŸ>Úö‡=éK>ŽÎT=áF×=Ý+=ÙBŸ=$n =Ûî¶ðk>¼Ÿ8> m¼Ÿ8>#hê¼>´>2VºÒܱ>:Ž<;j¥><˦<è©}>8ɉ=HÃ>HÒ=½Ç>W„m<³7ë>lå ;ËÐ>€wл>ðk>‹Ó&¼/ÿÂ>ž‡±¼˜!¯>HÒ>yV>J( >¨Ü>O€.>¾<µ>XÚy>Êî>hâé>ØJs>€wÐ>äPÎ>‰Ò>ìU>˜„„>òX4>¢‰Í>õL>­å >÷°\>¼—’>÷W>Çòå>õL>×PV>ï¬!>䬷>äûÑ>îþ>Øõu>ø K>ÈAû>ü¹j>¸9‡?D>ªÝ#?]Ã> ,Ô?³H>$\?]Ã>€ä?D>`&Ó>þv>=iÓ>ú Z>®ö>õ Ì> Š>ì[³=Ô{>ãV®=²ià>ÕúK=Ä>Èê=iè>¹ë~=O/U>¬=O/U>š…’=_7Ù>Œ~(=„üƒ>™›=¥ }>n;=Åd>b4¶=ꇆ>V.a> NW>K~>$>G{õ>T ~>G{õ>„É ccddeeffgghhiijjkklqJK]^_bc b b aba`a```_`__]_]]\]\[\[Z[ZZYZXYXXWXWVWVVUVU U !TU!T!"T"#ST#S#$RS$R$%QR%PQ%OP%NO%MN%LM%KL%qK%%&'%'(%()%)4q%4q45q56pq6p67p78op8o89no9n9:n:;n;<n<=n=>n>CmnCmCDmDEmEFmFGmGHlmHlHHI)*+)+,),-)-.)./)/0)01)12)23)34>?@>@A>AB>BC>æN¼¿“ÿ>–Ú¼¿“ÿ>£}•¼¦Lü>¬qa¼xX6>¶rͼ<>¾œt»'ªi>Ç?;Â8T>ά!Ö ¢<Ήe>Üæ= d>â(+=>¯«>ì)“=Êt>ñôƒ=¹ëd>öLá=Ý3Å>úa>à >þ>ð–>ÿÑ>'¼ø?7>5n>ÿó>DpJ>ûÔ/>M§{>øÍ>UÃ>ô–—>[Xˆ>ï·Ž>^t>ê•+>_>å×Ü>_>à.ˆ>]ú›>ÛÖp>W" >Ø&¿>FH>Ôýã>6{¶>Óis>'¼ø>ÑN2>|>ά!> ?ƒ>Ë?í=õm >ŸV=Ó2\>¿íg=·Ð)>¹Ú=ž‰2>³Iî=‹“þ>©H…=q=•>¢öÇ=Wö>—ç¶=G—>ŒØ­=>¯«>ƒ^=Bæ!>q«°=SÀ>^¶u=hЉ>J³=‡]y>9Ù¤= ¤m>/Qi=³™³> ’«=ÕM¥>á‘=ÿn>0~>âÿ=ù†ï>2E3=ìã€>Nµ =ävz>phý=â[?>‰x=ävz>—Í2=ìã€>©-ú=ù†ï>´=>K¹>ÁgK>¸²>Ëï>N‘>Õj'>+í>ßk“>=ƒ>çØ>LÎß>í£>aßU>ónh>už³>õ«\>…yT>÷¤ë>>ø²ˆ>›™>ø+º>¤d>÷>¬ø/>ô| >¶ù›>î*N>¿f˜>çØ>ŸV>ày0>Éh>ÙÕ>Êüw>Αš>Ä#ê>̓ù>¼=¼>Êáì>µëþ>Æ«l>±µ>Áî!>®ŒŸ>¸úV>¯š@>­ëE>³Iî>£éÙ>¸Ž>Ÿ,‹>¾ßÉ>šö>Ä#ê>˜ÚÐ>˃F>—Í2>Óis>—Í2>ÚB>˜ÚÐ>߆>šo?>äÊ;>˜>é©C>¡`>îDØ>¦&Ç>ñ±.>«Ì>õe>±(>÷¿r>¸s„>øÍ>¾Å>>øÍ>Ç2;>ö±Õ>Õj'>ó$>ãD>îDØ>í£>åQ >ûT–>Þx}?Yú>Ö €?ÆA>Ìã?ï >ÃI? `>¼Ä‹? [f>´¼ç? ›“>ª™¾?0> Ûˆ?Ç­>˜õ[?Ç­>Žm?ó>ƒäâ?Ç­>r¹N?@Ü>^rü? ‡…>LÎß? i>9Ù? o|> Õâ?Wy>Å£?« =摵>ýö¦=®8ü>ï8=”k'>å½Q=vHA>Ú'y=Cºw>Ìv\=È>¸úV<ïË >­ëE<Ū.>˜<´Ð>Œ¾%<®|Ð>{þÏ<½<ý>_<Þðñ>Bˆ=‰ >'¼ø=$!> ´=EÖ9=ìyU=mÛU=ÆŽç=4Ÿ= ¤m=©{–=}àù=Æù=6B=ì\<çÐ)> t˜…;†à>8̼bE>MÜ|¼g}Ó>g#o¼¦Lü>‚×A¼¿“ÿ ""##$$%%&&''(())**++,,--.JKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`IJ`I`aIabIbcIcdIdeIefIfgIghHIhHhiHijHjkGHkGklGlmFGmFmnFnoFopEFpDEpDpqDqrDrsCDsCstCtuBCuBuvABvAvw@Aw?@w?wx>?x>xy>yz=>z=z{={|<=|<|};<};}~:;~:~:€9:€9€9‚89‚78‚7‚ƒ7ƒ„67„6„…6…†6†‡56‡5‡ˆ45ˆ4ˆ‰34‰3‰Š23Š2Š‹12‹01‹0‹Œ0Œ0Ž/0Ž./Ž.Ž.  !!">c¼šÖË>›~ͼ…‚V>¥~`¼`\A>°(˜»ëkô>¹}Šº0úß>ÀÒ‘;¿-<>Ê'†<…&>ÒÑÐ<ïÃ1>ÞÑM=r‡>ÞÑM<ºp >àÑ><“ÿ>ç{žº0úß>ì&º0úß?¾º0úß?¼;;S¶Ì?¼<“ÿ?¼<šq›?f§<úmj?V==4?¼ =gÝ?¼#=†˜W?¼B=Ž˜?`=Ž˜?gÓ=ž—\?½0=Á@š?gÝ>ô9?gç>¶õ-?gç>èó??wã?½&?2!¤?gÝ?8!d>ÿzŸ?:Ëñ>ú%‚?;!B>°Ó9?;!B>«~&?:!M>¦)?8Ì > Óç?5vÔ> )F?1ÌP> Óç?.!Ï>¤Ó¼?+w=>®ÓR?)wS>Ð'E?)wS>ÔѺ?(" >×|I?%ÌÑ>Ù|3? "a>ÚÑ|>ôGõ>Ï|Ì?Î^>ÆÒS?xÞ>½(%?Î>²ýÛ? >ªÓz? x•>~¸? ÍÛ>’)Ø? x>„*t? x>lV ? ÍÛ>Wž? #:>GE? #E>0X”? #Z>Yä?#ƒ=øµ{?y=È·€>÷%=¨¸Ð>îòØ=ˆº>âó[=VËú>ÔIL=1xP>Æô…=y>¹Ÿ¿<âõÞ>¤õî<ØK¡>˜KÍ<ØK¡>‡¡Ó<ØK¡>uïc<øJO>SF.=xP>2G{=1vÞ>ž-=bËê=é>æ=˜À=ª–¢=»b·=r†¶=è¶=àI> ¯R<Ç^>-®:üÉë>XVà¼5³V>⼚ÖË>Ø&î>¶õ->Ú&Ø> ö>ØÑ’>`šô>Ø&î>9ñë>Õ|_>ñ>Î'W=ëéx>Ã} =¹@í>¸Òå=™B>>®ÓR=C9>Ÿ~ž=b‡å>Ô–=Wݪ>„*t=]2Æ>m«V=r‡>Wž=‰Bå>:­±=®–Õ>%Xñ=Ó?P> ¯R> žm=øµ{><œo=è¶>iïß=ãa>ŠLe=è¶>¢Kc=øµ{>¶J‰>ù>ÉŸ >X±>Ùž}>7í>çÔ>N¬(>îÈ5>i«>ôGõ>ƒT¾>ö4>M>÷%>›~Í>öò>¦)>ôU>´Ó>îòØ>À}U>åH™>Ë|Ì>Ùžf>ÒÑÐ>ÊôZ     XXYYZZ[[\\]]^^__`WXVWUVUTUTSTSSSSS RS QR sQ s -rs-r-.r./r/0r01qr1q12q23q34pq4p45op5o56o67o78o89no9mn9m9:m:;lm;l;<kl<k<=jk=j=>j>?ij?i?@hi@h@AhABghBgBCgCDfgDfDEfEFfFGfGHefHeHIdeIdIJdJKcdKcKLbcLbLMabMaMN`aN`NO`OOP !" "# #$ $% %& &' '( () )* *+ +, ,->ŠÃÛ¼ÁÜ>™…¼ÁÜ>¥H…¼¨g'>°ó‹¼ZÝ>¿Í6»‚ƒÓ>Ï.¤< fÜ>ÙÊ<³„w>ãÝÔ=êž>ïˆØ=eÆ[>õæ=’µ¢>û»Ÿ=¬*»?„³=ÚÖÙ?ÿ=þçt?or>ù?çª>-G?_ã>6œ*?PZ>> >ÿ”>Ev>û3Û>JÛ>öõ©>Lâ°>ò·{>Mò1>ìáø>Lâ°>èÿ>JÛ>äe˜>EuÛ>à¯->;éê>Ý€‡>0>ê>Üpü>#„U>ÙÊ>l€>Õ#=ôKõ>Î=Ëý/>ÈI™=²ˆ>¿ÍW=˜‹!>·Ø=…û >®Ôs=nBá>¤8ý=T͸>™¾=CÔñ> =?–ž>„f”=CÔñ>s–0=T͸>aÑ‘=d¶†>Q¤·=;‡>-”=²ˆ> ÙŽ=Ëý/>>=é°> ^Y>*!>E>(Ž=ýÐ>#„U=ñg>6œ*=è™>G”ê=â;Ê>hvé=à®>‚W?~ü>‚W?Òk>Gå?Z2>™ãa?Z2>©Ì–?ŽŠ>¶‡(?÷8>¹ò?+ >˾?PZ>ÕJ>þêF>Ý>£>ú$P>å38>ôÖ”>í'Ô>ð˜b>òýT>ê;>új)>ãV/?RÆ>Ý^‘?ù›>Òå?9=>Êh®?œ6>ÁìN? »O>¶É? Ún>ªRs?>Ô>Ÿs?ù>“È?=b>ˆ¤Â?ù>|“?µŸ>c¬þ? ¦>G 8? †û>0²? #ÿ>ªÝ?Á> Á«?^=ù‘Ê?ë=Ù¿g>ûy·=µ®Å>ñf=“½Z>å»=xΓ>Ü/=N`¡>Ñ“™=(0ä>Æø$= }ª>»Ôä<êh>¯¢<À5>¢ç…<¯&¯>” Û<¯&¯>…»ø<¯&¯>t!é<·£>Z¬Æ<Ù”¡>> ='>!e@=´> Á=A¦ =ëÏŸ=t@=¸åO=“5n=’-Ø=µ®Å=LQU=× K= ¬n=û°æ<¢‹±>d;òÜ+>'6낃Ó>Eù°¼jù©>hú·¼°ãˆ>Þ>©DÏ=õS¬>©DÏ=ÿï>½l2> ±Ó>Íÿ(>Ê>ܶØ>;^8>èé£>Vòi>ðÞ?>vÄÓ>÷;†>ˆû>ùâi>—~e>új)>¤8ý>ùZ¢>¯ä>ö+ÿ>¼ž>ïFê>Å¢¹>çÚ>Ï.¤>ܶØ>Õ‹ñ>ÏüG>Ûaq>ÀšÙ>Ý€‡>±Á/  !!""##$$%%&&''(())**++,-./034535636737l3lm3mn}l7}78}89|}9|9:|:;|;<|<=|=>|>?|?@|@A|AB|BC{|C{CD{DEz{EzEFyzFyFGyGHxyHxHIxIJwxJwJKwKLvwLvLMvMNuvNuNOuOPtuPtPQstQsQRsRSsSTrsTrTUrUVqrVqVWpqWpWXpXYpYZopZoZ[o[\no\n\]n]^n^_n_`3n`3`a3ab3bc3cd23d2de2ef12f1fg01g0gh.0h.hi-.i-ij+-j+jk+k=L¡¬9×¾˜>‹…T9×¾˜>˜|9×¾˜> 9_;néW>§X<‚>©þb= y¶>¨«5=U«~>£³4=‚¯$>œ =HW>”ËŽ=î³>mø2=î³>f%=šˆ>b ¢=µ§>\¾ï>ïã>\¾ï>Þ!ç>b ¢>ãn>iþ¯>澈>¤±«>澈>«û&>è»M>±GÖ>ð®a>³î7>ø¡j>²pð?´;>­÷è?îø>©:?¬'>¤?•S>kQØ?•S>c Œ?>^? åC>_eO?è>d8?6ÿ>oKb? kB>|ˆÆ?$ãý>‡‹Î?(^N>’%4?*€>ç†?+/>§X?+ª>´íH?)Ûà>¼ŠØ?' ">¹q?$%.>·h“? kB>·ç_?sY>½‰'?P÷>Å'€?“Ó>ËÇ`?)á>Õ·2?~©>Þýh?ÑÙ>åO?x1>é–Ö?q»>ì¾?!?:>é–Ö?( †>äó·?-m>ÞSÐ?0úó>Õ·2?4Jã>É!?7ïŸ>½Þ?9BÎ>±ñn?:•ù>£^~?:êÃ>˜Å?:•ù>Ž+®?:A/>‚“Ñ?9j>l¥?7F >Z•?5IG>HßR?2N">:L[?.©g>/²õ?+®B>#Æ^?' ">ÙÎ? t>?ÉÂ>?Ö´>’)? õ—>æ»?è€>ó§?@‡=qº€?@‡=<»€?B$=¢Œ?Ec<ﬡ>ÿAJ<åu>õQy=¼>î=3t6>è¨=g!,>åk\>SÑ>åk\> š>âÅ> @a>Üη> @a>&×> í1=ñùº>ó§=­‘>§K=“>Š=ø/=Š¢ =7nÇ=Š¢ = =‚®ó<Ò„â=i‹r<¥z¾=EÅr"#>">?!"?!?@!@A !A AB BBCCDDDEEFFFFGGG G GR RS ST TU UVGHIGIJGJKGKLGLMGMNGNOGOPGPQGQR>h½¾=ã@>¥CC¾¶0é¾:ÏS>˼|¾3x>ß¾¾&ͯ>í—˾ô>üûz¾òd?¥œ½Ø¥Î?á ½¡>Ô? ô÷½;w? Wt¼5í? /û<Žô ? C†=)ø<?C=Œc>üûz=·z->ìÒÎ=â‘?>Ú[1>6O>ÆY•> ü >­º>™ø>›Bx>­ò>€T>­ò>LU>­ò>'eÕ>Áß>ŠŠ>"‡§=ìM©>.×\=Üéó>ANþ=ÙÕÿ>Yî‚=é9µ>jÜ$>ìœ>rŽ> xµç>*>xµç>3µ—>q>JË>f>D>cjž>]v>>VÚŽ>h½>SÆ”>œÌk>SÆ”>¬0>Xd‚>»“Í>`j>Ìv>lf%>Ûå%>€3Ú>èùä>‹¾¦>òú¯>š][>öÓŸ>¦­>ú¬†>¹é¯>ùç‰>ËœR>ù"“>×ì>õI¢>ä;Ù>í—Ë>ïÆ›>å ö>üÛV>Ú[1? >Ñ`?†>ÓnT? Ñ\>Ø ;?–À>Þù? +>æªð?—$>ô„¨?—$>ü6ƒ?o§?‘­?¾6?V©?ÑÃ>ü6ƒ?½Ò>ø]–? ½o>ú¬†?½?̯?ä?j›>ÿïJ? k>ÿï6?Íä?F—?]?ig?“-? é÷?“`?›Ò?ŽA?æ?Cê? Hý? ?#¿j?ªQ?&pä>ö¢?'˜Y>å´§?'˜]>ØÑ4?&Ó`>Ï•j?$„i>ÆY•?!pz>À1»?¿>º Ú?ƒ—>¶0é?¾6>³ü? ©ä>§’7? ná>˜ó…?3Ü>ˆÊÕ?3Ü>qDS? ná>Z.É? Gc>?¢V? BS>*x”?é>x&?n>vû>üÛE=é9µ>ôd‚=Ôt>ê&=¾"“>ÛÅ=±ÒÏ>ÏuF=±ÒÏ>Ã%=»¢>³ÁÒ=ÊrU>§r=æ%Á>œ¬K=ìM©>˜^=±ÒÏ>“pz=‰Ï«>Ž –=V‹>†[¸=Yâ>q<ót¼>^Œi<ç%>>?Å<ÿÄ|>(¯ˆ=1!H>þ=t×Î>¬H=®¾à=ß}f=é9µ=ÆÝÎ=´æÁ=«*}=n°=†;%=1!H=Nç¢<ÿÄ|=XÛ<µæ6  ¾0 ‹>Z.ɾ:ÏS>Ž-¹=’Šç>¤~F=’Šç>¶0é=‰O'>Ä ¡=€4>Ï•j=[7C>Ûå%=6Gþ>æzE<Þûn>ëH×<"˧>ïSC¼Ì>î\Ƚ.Àµ>é¾à½~Ç>âÒ½ž*å>×GA½¼òI>Çã½Õ‘Û>¸à½äõƒ>¥CC½î1C>“š½ñE7>€T½î1C>[¸Ã½äõƒ>9Ýk½Ø¥Î>î9½À;=õ‰w½”ï$=Ö½S°=Ï<¼’]Ñ=é;c<˜0ä> ²^=)ø<>2+=m®Å>i’=vø>/yã>´·ù>*h>Ëþé>/:>ÚÿÕ>GT*>ë¼®>VTê>ò½>só|>ùƒ>ŠTÏ>ûQi>™Uç>ûQi>¦›ñ>ú)ú>¶÷(>öÕ>¿Ïð>îÐŽ>Çäe>æŠø>Ìä>Û1>ÎÐm>ËœR>Ï•j>¿L>Î p>µKÏ>Ê÷|>ª†>Å2l> Sê>½âó>˜?>²'>’Hï>¨W0>—“>˜ó…>Hœ>ŠTÏ>Hœ>z€!>—“>Z.É>•¿j>F-3>žû?>9zu>¨6ÿ>8‚ >ä#V ‹‹ŒŒŽŽ‘‘’’“‚ƒ„Š‹ ‰Š ‰ ˆ‰ ˆ ‡ˆ ‡ ‡ †‡††…†„…„„‚„‚‚‚‚€€€š™š™˜™—˜—o–—o–op–pq–qr–rs–st–tu–uv–vw–wx–xy–yz•–z•z{”•{”{|”|}“”}“}~“~ !!""##$$%%&&''(())**®¯¯¯°°±±²²³³³´´´µµ››œœœ­®*­*+¬­+¬+,¬,-¬-.«¬.«./ª«/ª/0©ª0©01¨©1¨12¨23§¨3¦§3¥¦3¥34¤¥4¤45£¤5¢£5¢56¡¢6 ¡6Ÿ 6;<=;=>;>?;?@;@A;AB;BC;CD;DE;EF:;F:FG:GH:HI:IJ9:J9JK9KL89L8LM8MN78N7NO7OP67P6PQŸ6RŸRSŸSTŸTUŸUVŸVWŸWXŸXYŸYZŸZ[Ÿ[\Ÿ\]Ÿ]^žŸ^ž^_ž_`¶ž`¶``aabddeeffgghhiijjkkllmmnnnno®¯6QRcdbc=8h4¹T>’îȹT>œ¶z;m>¡íÍ<8w*>¥0c<šÓf>§%=Ê$>§%=5¼>¤‰u=d­ß>¡íÍ=~Âk>Ÿ(·=Œk­>šÁ¾=”>u>•Šo=”>u>k/>=”>u>b Â=ž1>[ÛÂ=«F>Z;y=Èg>[‰J>ޝ¿>\×!>½¡˜>e÷ï>Ì ¡>tP >ÚQÖ>û>ãr¤>Ž^^>í:Z>˜Ìÿ>ñÊÁ>¡íÍ>õ T>ªg³>÷>²:­>øöÏ>¼©K>øöÏ>Çð>÷¨û>Îêç>ö['>Ö½á>ó¿€>ÞÛ>ñ#Õ>æcÕ>ëì†>î6Ï>ågc>òÇ2>Þ;T>÷W>ÕÁo>ûA>Êù>üŽì>Àä/>þƒ¨>’™>>þƒ¨>U¦î>üŽì=ßà‹>ùLY=©µ>ö°®=”>u>Ð8¾=”>u>Ëh=Œk{>ÅÊ=y‹ >Ã.u=Uê>‡†= Þ²>‡†<ø·>ÃÕY<¥B>É ©<#™³>Íœë;¼'>ÔÉ!¹T?#q•¹T?(Uo;m?+DŽ<8w*?-ŒÁ<¯°’?.‡!=p?-à5=Uê?,>ì=„˜?(¨å=”>u?µ =”>u?w=¦€?x-=Ð:ž?ÑC>¢?2?ÑC>Æ~?Öä>ÖhZ?çÆ>ågc? Q¿>òq¬?Ì>üàJ?Ý}?­>ûè?œ7>ï„£? 2>>äo? Óˆ>Úp? !Z>Í? ÈE>Áà? o/>³ˆ€? ÈE>¦~4? tÐ>šÖ? &ü>·u?ÞÈ>…ä?–—>s5?Ž>e÷ï?då>WŸÒ>øöÏ>WŸÒ?À>[‰J?/ª0>WŸÒ?4á‚>Q¥?9t>GùÞ?:lG=b"µ?:lG=(ÂA?9ï <ñ?7å„<•½Q?4Ž <ƒ;?0¤<‹N˜?-aþ<ëÔJ?)%=8lÉ?'­|=Ô,W?'×8=ë¥P?&ÜÚ=öá?$”¤>?Ø1>=>ð|í>=>¨ÄU>xœ>â=ýæÞ=®S=ðÜ‘=•Œ:=(ÂA=”>u<Ü*=®y%&>%>?$%?$?@$@A$AB$BC$CD$DE$EF#$F"#F"FG"GH!"H!HI !I IJ JJKKLLLMMMNNOOOOPPPQQQRRSSSSSSSSSSTUVTVWTWXTXYTYZTZ[T[\T\bSTbSbcSccddeeffgghhi):;);<\]^\^_\_`\`a\ab=PŽÞ¹¡Ÿ>“¹¡Ÿ>šŠ/:‰‚Ë> Ê*<L>¦X]<‚Р>©t<ñì’>¨m®=; ¥>¥¦“=s.ž> Ê*=ŠAå>›í»=•^\>u1=•^\>n?W=³>h±(=®^$>d†…=Ê%1>a¿g>…ÞE>c"ò>³³c>d†…>ðÏ‘>gMœ?d3>c"ò?ç»>ZÍ¥?®Ô>O±@? a=lUÉ? a=Er{?`š=è?¤+<úsõ?ç»<Ùª?Òg<ÂåÞ>þ³<Ùª>÷ÁR=V`>ñW=PŽÞ>íV°=íœ(>íV°>†í>ëA[>±—>çÈ~>Ü:>à$ö>jp>¼±>1‡>Ž3‹>1‡>5 t>jp=ÚÏÅ>xµ=£AÑ>±—=•^\=:V=•^\=è=Ð=È=‡zÅ<ä;.=x¼à<¬­=F½ <¡Ï=  Î<·ÉZ<ìã=r¤;v‰Ê>*1o?õá>:Ü?§§>NM»?¼ø>W­ì?c*>bq¶?ÅÙ>gMœ?#uÑ>gÿ7?']Æ>c"ò?,ÕÇ>['?0N­>O±ž?3Æ>C1W?4Ò2>3êH?5ƒ÷>$£9?5Ʀ>-Ü?5ƒû> £R?4 g=þ÷I?2 =ë…˜?/³=ÞT?,|á=×c^?(«=×c^?$Ù_=â×?K+=üâß?Çš>jp?Yk>±?N ''(())**++,,--../! ! !" "# #$ $% %& &'  !01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A0AB0BC0CD0DE0EF0FG<ø2޾Pîä>B¾B‹>.e¾/ʵ>=Â1¾šÖ>K¶‚¾pÒ>WìC½Í|>`¤ê½‡K >bcz¼ÎE~>`¤ê<Æff>^æa=ê~K>`¤ê>„ÁU>eà>Ô¬>k(>ýû†>i]˜?¨þ>`¤ê?¶l>To0? t÷=]Ì!? t÷=3ïK? W= P?FÌ<Àjô?¨þ<¤‚Á?êv<–ŽB>ü<ú<Î_t>ôc—=ï>íin=dÆ>>ëªè=öó¿>ëªè>2Ž>éì\> n0>ãÑ|> ,³>ÕÝ2> ,³>«!> ë<>>£> ë<=  > ,³½ŽE=>ñ½Â™B=úpß½å{þ=å‚q¾pÒ=Ä^³¾“K=´«‚¾Ã=‘ȸ¾!Ök=VÑá¾' <ø*’Y?ù§>:E,?ù›>O3›?—m>^æa?}>g/\?!*>k(?&<Ì>k(?)¹Û>fÀy?.iþ>[Ù?1wl>RAY?4:>BýÛ?5û>3Jú?6_@>\™?5ïœ> z?4ôv=þÊ‘?2þ=ëœ#?/œë=âQ?,W­=Û 9?&¬m=ÞˆL?!1=ïù¨?¤Û>ñ?—m>%t?ôÙ &&''(())**++,,--../0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<=.==>>??@       ! ! !" "# #$ $% %&ABCACDADEAEFAFGAGHAHIAIJAJKAKLALMAMNANOAOPAPQAQRARSASTATUAUV=<ý¹öð>‘ƒ¹öð>™”;bäÒ>žoM;Ç^c>£",¥Ñ‹<²¸Å>§):=R>§)˜=/G×>¥Ò"=[•€> óÕ=„Z>šhF=W&>lQÔ=W&>fó=˜”>dCÇ=­q>^å>2>^å><ÏX>£Î>Œ Ë>ìø‘= "ª>îü=W&>Ðr=W&>Ê;Š=ˆ¤L>Ä\=vo >ÁVœ=N(Š>Àªø=!Û>À«!<Ý®‚>ÂXx<_/Ü>Æ_°;§ÿ>Ëh:\;Ö?$!d:\;Ö?)*0; ùä?,ù;ç&?-Ý<’€k?.ˆè=R?.)=Ck ?,$=ï!?(~Y=WX?ø‡=Ž.?´—=~?<=sC>ÂÐ>¨>?ìš>ìµ»? I>ð¼Â? ú®>ól? pE>ól?$wO>õo¥?&ÐÀ>ü& ?'&«??%Îü?!?"s÷?»?lÀ? |M>¥%±? |M> rÒ?zˆ>¡?w>™¼A?šô>™¼p>ûz4>žoM>ôù>£Î>ñhž>Ñs!>ñhž>ÔÎR>ðì>ÔÎR>ì å>ÐÇL>çW>^å>Œ¸¡>^å?1±>\5­?6u’>RÏí?9zÚ>JÁÓ?:Ò‡=L8*?:Ò‡=ãž?:|œ<ì™&?8y<Ìa ?6Ë}<¬(³?3pI<¶æ?/S<×p?+¸"=ãž?)Æ=L8*?(²Ù=ñºÃ?(²Ù>ën?(\î>šÓ?'A>ù‰?øî>X?>ËÑ–> ¨ç>8È[>¡Ý=¥Y>•s=V°=ÎT=Œªü<ì™&=‡øf<®Ö2=k±¯<Žš³=> [<‹ít=úQ<¡k<’€k<ì™&;œgà RRSSTTUUVVWWXXY  !!"""$&&'''(*+,*,-*-.*./*/0*01*12*23*34*45*56*67)*7)79()9(9:(<<===>?=?@=@A=AN=NNOOPPQQR$%%&"#$(:;(;<789ABCACDADEAEFAFGAGHAHIAIJAJKAKLALMAMN=WóI¹¿Â">ŽÇC¹¿Â">•e:rà]>œÖ¼;ˆ3@>ŸÐÔ<-÷>¢ ‹<›Ë>£óM<ååm>¤œ¯='à¬>£óM=\ÎÃ>¡MÊ=|‘>ž)R=‹„">š19=•pµ>•e=˜¿>h o=˜¿>cUi=ž u>^ c=³6Œ>[dç=Òø–>Z)>ƒyí>[dç>Õ„“>\·¬? €z>b¤?,ëë>b¤?5…Ï>^³ø?8•3>V9?:»²>LÖ¡?;%=WóI?;%=2æD?:ÐÐ= „Ö?9ý#<æÄ??8Ô±<¯-€?6í»<œª0?4Ün<ŒÇÔ?2àL<‡~?0|<’*?-éû<¼lW?+™(=C1?) =BÇU?(JI=è\h?(JI=úâè?&÷„>i¼?$ûe>aü?!#>aü?i@>´Á>» „>>>eß>i¼=ø£=ýˆq=°‘ =ß!=š”=&ýE=˜¿±<ö¤=”&<§@A=†8üƒÙ¹ûÊ>ŒÕé¹ûÊ>’ÓË; B–>˜õ<ï>›Ð¡<‹Þ@>ž×<ë¼q>ž×=1É.>›ã=[ºv>–òs=~.>’ÓË=ˆÓ¿>•¨=ŽÑž>f½¸=ŽÑž>`¿Ý=—Ît>]÷=¬Ç>YBw=ܶ4>YBw>£ÇV>\Ar>»¾é>h=6>͸–>x·e>ܳR>…X‰>æoç>>ííC>›ã>ó+j>¥7>ö*[>° „>÷©Õ>¼Å>÷©Õ>È>ö*[>Ðýê>ó+j>ÙúÇ>ííC>â÷—>ãpó>æ¶J>Ù´]>éµ8>Ï8>ëôt>À=T>ísë>¦ÆK>ísë>7ÁE>ë4µ=¾ÀÆ>èõ= ËK>æ¶J=‹Ò·>Å%=ŽÑž>¾D…=‡TL>¹Æ=m´#>¶Ç%==Äê>¶m= ÕÔ>¶Ç%<»Í{>ºV<ç2>ÀƒR;Lj>ÅÁÞ¹ûÊ?­O¹ûÊ?‹—; B–?"Z¿;»÷'?$™÷L¹í? ²“>Ét? rR>¿}™?qC>Öµl?I>çï^?­O>ð,v?"*¬>öê?(ˆo>ù)P?.æ2>ùé ?6±>÷©Õ?;AÙ>ôªä??ÀD>ð,v?Dþk>ç/£?H];>Ûó–?Jœq>ÑwF?K¼ >¾½Ý?L{É>¨EÂ?L{É>c1þ?Lé>S»?JüP=¯Åÿ?J<“=—Ît?Hu8=Œ’«?9Â_=ŽÑž?6«l=‡TL?3ô^=m´#?2¤ø=IÀÉ?1å#=Ï?2\ÿ<ÖÄ=?3”˜<ļ?5Có<ï?8Bå; B–?<ǹûÊ?sÍó¹ûÊ?xL^; ¶?`´­>¿}™?_•>Õ5ö?\–>énÕ?Y÷ >òk¯?UÂ>þgv?P:w?²&?Iܵ?÷?D>¯? ê??…? b?9£? Û?1%h? Θ?*ç? Θ?!jð? n¸? +? b?¯j? P,?qC?Q:? Ó=?rï?µ½>ó+j>þ­Ù>ü(A>ðrØ?ÑÃ>æ¶J?в>Ù;? ϧ>Ë? O>¹Æ? Û>¤Íx? ®ý>•Ò¿? b>‰Öô? P,>t8ú?>KÇ5>ñ«ð>KÇ5?ÑÃ>GHÊ?в>:+«? €=Kóß? P,=É?Àj<ä&ü?÷<¨<)?ÑÃ<ŠB)?z’<„HÏ>ý§·<¨<)>÷©Õ<ð"Ý>ñ«ð=Kûœ>î} =ãͨ>î¬ÿ=øÆP>ë® >á“>äðj>à>Ò7>_þ>®C§>_þ>C½>a=ľ¥=øÆP=—Ît=íŠb=Œ’«=(…=ŽÑž<ð"Ý=‚ÕÐ >>???@@@AAABBBCCC~~~€€‚‚ƒƒ„„……††‡‡ˆˆˆˆ‰‰‰‰‰‰‰‰‰‰Š‹‰‹Œ‰Œ‰Ž‰Ž‰‰‘‰‘’‰’“‰“”‰”•‰•–‰™™šš››œœž"<=#;<67868969:STUSUVSVWSWXSXYSYZSZ[S[\S\]S]^S^_S_`S`aSabSbcScdSdeRSeRefRfhQRhQhiPQiPijOPjOjkNOkNklNlmNmnNnoNopNpqNqrMNrMrsLMsKLsKstKtuJKuJuvIJvIvwIwxHIxHxyHyzGHzGz{FG{F{|EF|E|}DE}D}~CD~fgh‰–—‰—˜‰˜™=T²·¹–Vï>‘U¾¹–Vï>˜(Ô:‰!>ž;¥H$>¢½<`šª>¥ K<Â2Õ>¥Ï= Æè>¥Ï2=<ŒP>¤õJ=e>¡·Z=„~:>œ]=‹ÿÎ>˜(Ô=’ÒÝ>iWè=’ÒÝ>câ5=¾+>^l=«dI>ZTS=ư¸>V< >f`‡>Xöã>´´X>b„Ì>È~ä>p*þ>Ø18>£k>ã>ŒŽÃ>êž[>–Ëg>ð¼>¥Ï>õ‰³>³u2>÷•Õ>Àl¬>øDŠ>̽>÷•Õ>Õ”©>ôÚû>àþ>ð >è°€>éï¦>ðá>á¿$>õ§û>ÙŽž>únö>е>ûÌ_>ÅY>þ‡2>¦_q>ý)È>->û§=¹ Š>óšF=’Òª>Ó´>=’Òª>Ì2l=\û>Ç—5=xšÌ>Ä-ª=K¾>Ã'=Q%>Ä„ì<¡p“>Ǫ<*ª>Ñ|fº"â?$uB¹–Vï?(;ë?,¥Ä<,=?.±ä<‹™Ò?/v <û…è?/·½=9ÑM?.Ç¿=i—>?,dC=‡çŸ?)<8=ü?,~=ü? ]=•«?==«dI?¼â=ÎáD?*>¾ðü?°¿>Ø18?¤ >ãËB? éÉ>î¶ž? .ó>ö8h?n >þhë?UË?ž>ý)È?XØ>ó›Ü?dù>é_8? q>ÝÅ+? %à>Ô7Éú˜? 2>½ÝŒ? ]²>²Å? Ú¦>¦}Œ? ¯>š`X? ;Æ>Žò-? [F>‡?¶F>yb/?L³>f>ÿŸ>N Š>ñqq>N Š?ïK>KP±?XØ>D}›? >=ª?­>5z? ½=>Ûù? ½=ü?Âc<ïÄ~?¼R<«‚??°4<’ïÒ?RÇ<‚“?—ó<‚“>ýº9<˜iÄ>õ‰³<äÙ>>ð =9f[>íY1=Ò&>íY1=ꦸ>ëM=û¨>çã…>ù‡>âmÜ>Ê>•þh>Vñ>(ô¯>Vñ=ư¸>>®=¥îª=ꦸ=ü=#š=’Òª<¾T=ƒÎ—Ê’£;&ÅÒ hhiijjkkllppmmnno%&'%'(%()%)*%*+%+,%,q%q-%-.%./%/0%01%12%23%34%45%57$%7$78#$8#89"#9"9:!":!:;!;<!<=!=>!>?!?@!@A!AB !B BC CCDDEEEFFFGGHHHIIIJJKKKLLMMMNNOOOOPPPPPPPPPPQRPRSPSTPTUPUVPVWPWXPXYPYZPZ[P[\P\]P]^P^_P_`Pccddeeffggh567P`aPabPbc>ŽÎ¼zŒä>¢â«¼@">³ìn»–›>ÄZm;îÖw>ÓÝ<ÍÀX>âÇC=H<>í»F=—;†>öÛë=Çé¸>þÅ>X? .>+Š?*h>O Ÿ?¯×>zÝ•?ÃT>°?a÷>¢/?@½>ºäH?5Û>Î]%>üUë>ÛÀ<>ñýº>ë’w>䚤>ûd§>Ù Ó?Œ>ÌC‹?Òý>ÁOˆ? ü>¶[“? ±3>«g? 6¤>žz? M>–x? M>n%q? „ˆ>G3¶? ±3>+5ô? B>t?75=õ‘?ôÄ=Äat>ù‘T=›Š>ë’w=v¸S>à°=7om>ÐÌC= Ÿ™>À^D<Óð>¯T<¬&Y>˜ÐÅ<¬&Y>q<ÜÔg>GÀM=[í>'å=OÆ—=ìlU=›Š=™ª¤=ÎÝ=>€>à,<ºG$>&W¿;Çå¨>HkE»½Œô>yi¼gë>Œ¬·>ùC€>š]Í>øYÅ>¥í>õê«>¯©þ>ò‘ç>¹fu>ìÉÿ>ÁëO>å|¯>ÌC‹>Úˆ°>ѽ„>ÐÌC>Ö›¿>Æt >Ûyñ>ºäH>Ýé>°Œ>ß¼a>Ÿ‚M>à'>‰è>>ß ¡>n²>Ü¿>J/j>×7ƒ>&äU>ѽ„> )>ÇeL=Ûb„>»Õˆ=¯’Ÿ>­Ö®=‹ñ> sŽ=t „>Œú°=eq¯>ƒÚ=jOí>fØ=S‹>GÏY=˜s>1K¾=´pÚ> Aõ=Øóg>oº>**>Œ>"!=íÂF>Fˆ¾=ß' >dõ—=ÙÞ>ˆbÇ=ß' >¡ñh=õ‘>¹¬¹> "u>Í%—>co>ÝÂ>.Ü >çP>@Ïü>íÚ§>Z^š>ó{>urÃ>÷— AABBCCDDEEFFGGHHI@A @ ?@ ? ? >?>=>=<=<;<;:;:9:98988786765654543432322121010W0WVWV V !UV!U!"TU"T"#ST#S#$S$%RS%R%&QR&Q&'Q'(PQ(P()OP)O)*NO*N*+MN+M+,LM,L,-KL-K-.JK.J./IJ/I/=*•Ⱦ@t^>ޏ­¾@t^>— ¿¾=®>›æà¾8!K>Ÿ^˾/Î?>¢Ö¾¾&>£\¾›i>¢%*¾ Ó> f¾.õ>œO½ûû>— ½ód|>’â6½ðžV>`e•½ðžV>ZØä½å„õ>V¯T½ÏR%>Sèÿ½• ³>Q"ª=I^8>ZØä=ø”>eòL<á%Ú>rná<“sð>Šƒ< „>‰Ý9Ê` >’0¢»¤ð>šƒ²¼Ô>¦N°¼W©>°¶…¼mÛÛ>½ä±¼mÛÛ>Èþ¼AvW>Øò§»ÑU“>êJZ;‘×™>üS£<Êó?|á=Tw™? °Í=–¡ƒ?ï/=áŒÕ?¿Õ>Ÿt?Þû>?Û—?šò>h¹? ô>ˆÛ‚?›>¤à?7Å>µA*?{Ë>Ƙà?«>Ü?‡>éùß? ôÓ>ú ?ð?ܳ>ý:?ûÜ>í²? Ì–>ÝÍÁ? ’ô>Ëá? ö >¹»+? ö >ªx:? T>˜nê? ˆ>‹@Á?Â6>~ëw?£>h¸§?o$>Q"ª>òLï>Q"ª?JE>Lù?<>HϘ?Â6>:ïÔ? sË=@ÈŠ? sË= I…?Â6<Ûâ?·Ò<£”û?ûÜ<‚H•?çùîg<®®^>ôa³=¼Ó>ð8*=*•È>îÕ=à™>îÕ=ë!ú>ìÀ;=ùÄ>éùß=þŽn>á¦Ó>ªe>¹j°> “>?Û—=ûÈ»J=ö;i½®Þ=ë!ú½×¥+=×½½ï:Þ<¼WŸ½îÀ=<+ÀX½õvÚ¹½# ¾ß»Å3¾ºz;êp¾(ÞZ;¥´$¾4©i<›/§¾>¸s>X>£éu>aÈÂ>ÂoW>lâ1>Óv>‚í®>âXg>ï<>ìÀH>£ˆU>õJ>¶ôÏ>÷Ù¦>ÊaJ>÷Ù¦>Ûi>ó°>æþÖ>ì¿>ñëÒ>á¦Ó>ý:>ѱ?ú>¾EÑ?T>¨Ä’?µ>–»E?Àé>­·?ð>FËu?ð+>$>ùK>l¤>ï%w=Ã)>áE³=–¡ƒ>П•=uÃß>»Y=Tw™>¥=eÌ>˜nê=€n >ˆzb=žôŒ>u5==Ó­4>aÈÂ>\ƒ>V¯T>8ë²>V¯T>„±ü OOPPQQRRSSTTUUVmmnnooppqqrrssttWlml kl k !jk!j!"j"#ij#i#$i$%hi%h%&h&'gh'g'(g()fg)f)*ef*e*+de+d+,d,-cd-bc-b-.ab.a./`a/`/0`01_`1_12^_2^23^34^45]^5]56\]6\67[\7Z[7YZ7XY7WX7W778979:7:;7;<7<=7=>7>?7?@7@A7AB7BC7CD7DE7EF7IIIJJKKLLMMNNO7FG7GH7HI>¬aÕ¾@”æ?+r¾@”æ?Õɾ<•@?Õ‡¾7@f?€ ¾-ëí?Õ?¾ —Á?Õ?¾îg?ÕX¾ï~?€9½ö‹’?+/½ëáÞ?+r½é7g?×~½é7g?‚G½á8)?׼Î*>ÿ¯µ½¦’´>ýG>8ž >ýG>°GÆ>ÿ? O>ýG?Ê`>ø[? Ê>ò[“? tˆ>ëâ? tˆ>åj? Éï>à].? t·>Ý&?tä>Ú]¶?uB>ÙˆÅ>ý–1>Ù³>öA„>Ï4?u£>Ä5U?_Û>»µÍ?ÊI>¯¶à? Ê>¢b»? ÉØ>˜c¡? ÉÁ>‹º?>|Ëé?>f#K? ts>HÐ? tˆ>,Ó? t·>¨?tä=ÿœ?Ü=Ѳ_? 9=´_ž>ù–Œ=”b€>ï—r=nž>âíê=8Ï>Õ™É=~o>ÄEþ<¼Xñ>°òd<‘²> óÕŒ M<‘²>qîÓ<§ƒ>OG><Ѭ[>-ôë=} > ø!=^Á=Ç÷=™·Z=‰R =Ç«=B«F=ï<ðk>€<`3è>4Òb:/¹>V$µ»êW>„el¼JPP>˜c¡¼4üâ>£·ð»êW>¯¶àº&Û>¹µú< æC>õ<°/>Ë´_= Z¿>Ó =MTý>Ó ½‹Ž>ҳнÇë)>Ì^4½êŒß>§ û½é7g>¡¸ ½ñ6±>œb辚¤>™?¾C÷>—ã¾"—ž>™ã/¾2ëœ>Ÿ¸%¾<•[>¥·Â¾@”æ>Î^É>ÂF+>Ó >¦óJ>Ó³§>cEy>ѳÔ>0Ÿ[>Ë´0> MV>Ã_ß=ßôã>· =³øÛ>¦bŒ=‹üu>“¹d=r¦ô>ƒºÏ=mR>`Îp=ƒý/>@ÑL=ž¥r>#~˜=Ëö²>ÖM> MV=ìZª>?H¯=Ô\É>„K¸=Ô\É>œI•=á°è>´ò=üY2>Êð>*Í>ÜCØ>+}…>émP>K{>òìy>nw¦>øký>‡Ú>ù–Œ>“¹d>øëî>Ÿ8“>õ–ê>¨ ú>ñÁò>± >êí2>»µÍ>âíê>à v>Úî£>É ï>ÐDè=Ü[>^ïå>Ð^w½Þ‘C GGHHIIJJKKLLMMNNOnQQRRSSTTUUDDEEFFppGnPPQ !!""##$$%%&&''(())**++,,--eeffgghhiijjkkllmmn-./-/0-01-12-23-34-45-56-67-78-89-9:-:o-o_-_`-`a-ab-bc-cd-de:;<:<=:=>:>?:?@:@A:AB:BC:CD:DX:XY:YZ:Z[:[\:\]:]^:^oDUVDVWDWX=j^5¹gW“>“{õ¹gW“>š®ù; ï>¡"$;ß#F>¥È¨{–<Å_v>©®œ=þ>©;O=:G>§áÚ=[ßÒ>¤HZ="–>žâ="F>™{ª=”UU>oÆ%=”UU>iÆL=îª>f,È=¬T½>^ùÀ=á &>Z->QÀÑ>[`C>£«µ>b“K>Áªô>pùM>ÚCî>€âÕ>æÝ4>‹Æ>ðvŽ>—¯>övg>¢{•>úè>¯®v>ûC>ºzú>ú©>Ä­ë>øÜ½>Í­±>ô©©>Ö­t>î8>Ýàx>år>áyü>ܯ>â­*>ÒwR>àFÑ>ÈÝø>Ù­a>ʪº>Эž>Éw>Ê.>ÅÞ>ÅG>¿Þ2>Âá)>¹ÞY>Á­ÿ>°Þ“>ÃzÁ>¨xd>ÈGl>¢xŠ>Í­±>«ß>Ö­t>š«ï>àFÑ>˜ß0>éà+>š[>ô >«ß>ú¬‰>£?ïÈ>ªÞ¹?‰K>·*ÿ?V >ÅDu?|{>ÑÝ¿?¼u>ß™?¯Ï>é¶¹?üÃ>÷ƒ5>úö?Ô£>î¬Ú?î>äyé? ¡<>ÕzI? íô>Èá?!>¹GÐ?‚>­H?‚>¡â?mé>•H»? ¡)>‹¯a? Ôg>‚?n>r,t?‡Ä>cÆy?¡x>O`Š>ô>O`Š?‡Ä>KÇ ?:ç>D” ? §>:ú¯? î=W+«? î=“? Tq<÷õ?n<«*«?T„<„Å?:úùvT<Çö´>ô©©=ú+>ðvŽ=W+«>ïÜú=åù>ïÜú=öÅg>î8>b“>è_>Èâ>àCÄ>•Ž>­Þ©> ȵ>H't>/8=ÁíÀ>b“=›ˆU=û’=”U†=?, =–"p=-‰=¼Î<Ï&n=ƒ‰µ<¡‘=W'<••ÿ=#zÄ<Ÿ/<¦,º<Ýz;òSÚ=+ùc:ïØk ZZ[[\\]]^^__``aab !" "# #$ $% %& &' '( () )* *+ +, ,- -. ./ /0 0011223344556667788899:::;;;<<===>>???@@AAABBBBCCCCCCCCDECEFCFGCGHCHICIJCJKCKLCLMCMNCNOCOPCPQCQRCUUUVVWWXXYYZCRSCSTCTU=N]ž¼Ì6T=‚*>¼±;=–fº¼vˆ¾=¡¤Ï¼.”é=ª£Hºõj{=³¡Â<€t=¯"}=¹¦=Î<È„>=÷2<9-ž>Ç;m 1>&CÅ»…Nô>8@¬»ñ;â>OÜœ¼RŽ˜>h˜\¼RŽ˜>†Ù¼d‹e>–g¼.”é>£„»©H™>¯R;%ç>¼?Ü<]'8>Ç}í<õ|>Ð|c=547>Ú ¾=‡’l>ßä=«ŒC>åHÕ=ÝÌ>èT>Ð>éÈ >ùe>é8&>9Ôú>çˆp>Qpê>ã™>j,ª>Û*>€Ti>Ïì|>‰âÄ>Ç}í>µ>¼ÏÃ>•°¿>±‘¯>™ >¥Ã·>j>˜F> ^é>Š8l>¢ž†>v>¤Þ'>W»K>¦Ú>@T>¨=‘>."f>«œý>%€>®üi>A>²[Ö>©Q>¶Û=ýÔý>»ZL=ðWK>ÀùW=çXâ>Ì7d=çXâ>ÖU­=ò–ö>áÖ>©Q>ê’1>FØ>ñQ >"äR>öð>9`{>úßk>Mœÿ>ý>aÙ‰>þμ>z•I>þμ>‡øÕ>þ>Ô>”æœ>úO€>å>õÐE>¤£è>ñàõ>©³>ìAë>®Â*>æù>²!–>ßä>³ÑM>ÖU­>³ÑM>¾)Ò>´ñ>¹ª–>¹pS>µ+[>½ï’>±Ëï>Âþµ>°¬ >ÊÝY>¯ŒQ>Ï\”>°¬ >ÓÛÐ>´ Œ>×;9>·úà>ÙzÚ>½ >Úš¥>Â">Úš¥? Å>>ÙzÚ? tõ>×;9?´‘>Ò,?ô1>Ï\”?„>ÊMr?[ð>Æ^!?ü>ÁÞâ?„>½_«?dH>¸ào?´‘>·À ? ¼ç>¶ Ò? ¥p>¶ Ò?ø>²!–? =¬>«b½? 5X>¤£è? å>å?Û>’¦û?D{>‡hæ?Ô`>xU²?T>fXÅ?T>OÜœ?Ô`>:€I?ü…>%#ö?”Ã>§Î? -=ôÖ”? íb=×›…?­Æ=¬âã?h=‹(¥?=dÙÇ>ûoL=3b@>ñàõ=iï>åƒ<ßÛÓ>Ù%2<ÄàT>ÌÇO<ÍÞÀ>© <ßÛÓ>º:~=iï>¯ŒQ=%ä¤>¦Ú=[Û^>œo˜=†©q>–@§=¯"}>Žñê=×›…>Šr«> T>…ós>FØ>‚”>/B5>~i;>B^ñ>|)—>W»K>yéù>pw >uj¾>Œx >r X>U+>j,ª>¥3Ï>e­u>­¢^>[0>µ>O1M>» >@“Ó>½ï’>/¶´>½ï’>Ù–>½ï’> ¼Ú>º%=êq>µ=ÍFo>®Â*=­ËÞ>¥Ã·=—Oµ>›¥q=…RÒ>÷H=x¨±>…)P=k*ñ>sÖp=k*ñ>^z=t)}>C~¹=€Ó>-ž=ŽQ;>Æ=ž•>Ië=´Š­=à™ü=φ=Î=æ5=µá]>¾j=¦$>»W=¡¤Ï>I’C=%›>Zoa=‹(¥>e­u=iXú>llN=7áv>n«å= éH>n«å<²ã‚>gí ^îœ<1åÁ>R²<1åÁ;š€I=f伺9‚      ŠŠ‹‹ŒŒŽŽ‘‘‘’’““””••––——˜˜™™šš››œœžžŸŸ  ¡  !!""€€‚‚ƒƒ„„……††‡‡ˆˆ‰‰Š"#$"$%"%&"&'?@A?AB?BC?CD?DE?EF?FG?GH?HI?IJ?JK?KL?LM?MN?NO?OP?PQ?QR?RS?ST?TU?UW>?W>WX>XY=>Y=YZ=Z[<=[<[\<\];<];]^:;^:^_:_`:`a9:a9ab89b8bc8cd78d7de7ef67f6fg56g5gh5hi45i34i3ij23j2jk2kl2lm12m1mn01n0no0op/0p/pq/qr./r.rs.st-.t-tu,-u,uv,vw,wx+,x+xy*+y*yz*z{)*{){|()|(|}'(}'}~"'~"~"€UVW>‹Ó¼Âî>žDؼ¡JŽ>®©î¼?l²>¼S‚9ªà>ÈŸ_<¦›Z>ÒÞŠ=;#W>Ù³X=¡á>ß*^=먂>àˆ>+×>àˆ>Yœ>ß*^>vA’>Úb8>€—Ï>Õnw>„ÜÕ>Ït">†Û>Æ’Y>…‹«>Àlp>„>>»Ð9>Ñø>¸é >r(I>¸:@>PW>¶Ü|>}Õ>´ ú=Í™Ù>¯„Ç=¦©µ>©áË=ŽÀù>£d‚=h8¡>˜vA=ND>ß½=D²û>ƒ Ž=Kˆg>q»É=bÁ±>_¢=‘|>QH´=ÃZ–>MßD> >L*L>âöo>N6¾>ë€m>ZÚâ>íä>±er>íä>¸èÅ>îê»>¿é®>ó²®>Ã(>üh­>À? >Â"E?Ýh>¿’º?s”>¸½c? »q>²Ã6? jM>T´? jM>MßD? È>K#¼?Û>K#¼?-˜’>IÅû?2 M>DNò?4ÄÐ>=#U?6Ñw>2Œ?7×Ä>&@B?8E>Û&?8/6> í?6Ñt>­²?52#=õý?2¸+=ï˜í?/¥8=ï˜í?‰â=êÐß? ŒÊ=ß4†? €=Á%$? jF=A¦ ? jF=Kç? Ü<ío?µ< zï?Wd<l²?•<l²>þIš< €´>ö =o§>ïñ =2žô>î<=e,}>í¸Ï=ʸ>íä‚=ÜxV>ë(ú=äªÚ>èmu=çf[>ᘫ=çf[>9]=ï˜í=¯‹7=ýB=w@¤>%=*½ä>8ç<¦›Z>-lC:Ùf8>G s¼?l²>gÔ¤¼¬8®>‚ñª¼·&Î !"#!#$!$%!%&!&'!'(!()!)*!*+ !+ +, ,,---./-/0-01-12-23-34-45-56-67-78-89-99:::;;<<IIJJKKLLMMNNOOPPQQRRRSS        <=><>?<?@<@A<AB<BC<CD<DE<EF<FG<GH<HI>¨½Ž¼…L–>¸¼vG»>ƔӼM¥Û>Õ©h»“,b>àœå;Æ8É>ïÙÎ<Þ@‚?)=†JÏ?)<Éï“?!²‰©?0nÃ<ÔÊ?0À=-Y/?/fÉ=k‘Ô?,³ß=ŒÖ?)rÙ=’ý—? B=’ý—?rè=&1?-Ö=¶‹±?:=á¸??—y>­ã”?:>Þ$n?-Ö>øÏ??*?Ü‘?í”?F5? B?¼? á>Øþs? á>Ò¥? >ÍÄ?wº>È|t?¨~>ÇÙì?6¼>ÉÁ†>ùq>Íè>óâ>ÔŒ±>ñÓ>Ýp2>ñ0>ñÁk>ñ0>ö3*>ïHõ>ù_Ý>é’>ûGw>˺Õ>ú¤ì>\Ë‹>÷x@>×ò>òcö>£.>ëh=Õ€>â„~=´‚>×Ö=˜ä>ÉÁ†=6“>¹â=i–>¨ =có7>–Sù=}XÉ>ŠCÅ=si>~ñ5=¬c>m*-=Õ€>`wh>èJ>W“Þ>4)>SĪ>x»2>U À>»8Ù>XØó>ûY/>XØó?K >SĪ?wº>Iœ? °›>?ÄÈ? í‰=T(Ô? Ú=Iw? °›<éÓ‰? ”,<ÆIK?&s<„@,?__þ…Û<˜Ž½>ø¦_<ìa >òLå=+†n>ñÓ=Ϫ}>ñÓ=Þçg>ïë}=éù>ì¾Ê=ó8š>çò=ú×>Þ$n>Ê>—5>Ê> A©> ü=äBw> cT=¹ß>wM=™ùj>*i=có7>,¸T=–>>.a<µž>SĪ< A>hݹUÁ>‚öy¼Ü>”lX¼vG»>¡¼vG»      001122334455667;<=;=>;>?;?@;@A;AL:;N9:N9NO89O8OP78P7PQ7QR7RS7ST7TU7UV7VW7WX7XY7YZ7Z[7\  !!""')))**++,,--..//0'(()"#$"$%"%&"&'7[\;LM;MNABCACDADEAEFAFGAGHAHIAIJAJKAKL>³|<¼C¯7>¼‘¼î>Äp¹»"­?>Ê~æ<3>Ð <·ý?©µ>âhû?Æ>êã<?æÑ>íêP?&òÆ>íêP?)ùÙ>ï»_?,yP>òÂt?..>ø5˜?.„{?Wë?-›ö?_?+É?yu?)™2?˜?%¼¾? m+>Õe/? m+>Î ü?„¥>È9p?ˆÀ>Ã:¯?• >À3š?ó>¿qž>þ>ÁB°>õÉ~>Å •>ñ>È9›>î¬ >Í…û>íOL>ôG>íêP>÷N#>ìE>ùY>çgä>÷é$>ÞÆâ>´²E=“‚ä>\è¤>ßaê>Z|—>åp>YF=>ênù>]ÐÅ>íêP>’ÉY>íêP>š 5>î…:> B{>ó6˜>¢²>øÐd>¢®¶?Dk>ŸÎ??ñð>™ç?#â>‘E·?Ò7>ŠÃQ? 3=Ga#? Yß=òc?˜3<ÏiË?³¤<ÿ‚?Zíûײ<•Md>ô“‚<Û‰ >ï W=â~>î7ý=Â'8>íœÌ=á¤>íÁ=óÎê>æXˆ>øG=)O>—t<,{>œy˜¸õÊ>¤óÙ¼ Î>¬Ó ¼0Nè=/$s>íœÖ       #$%#%&#&'#'(#()#)*#*+#+,#,-#-.#./#/0#01#12#23#34#45"#7!"7!78 !8 89 9: ::;;<<=#5>#>6#67>•B¼R/­>žöö¼<ýL>¨=»"nT>¯†r<ù>µ|©<ßwj>ºÉK=dQ¹>é'Þ>êv? p=O5? _<ÔÞ>?¼²<+ñ? ˜»"nT?¼'Êê?Rµ¼R/­?!Ÿm¼<þX?&-» 8Î?*ÐP<ˆ)?/3¹=ižR?G¶+>×W£?JÔ>ä?LÃ$>ì´›?P}P>ﯱ?_ãÒ>ïÚ?b_´>ñø?dqÓ>õú©?eš‹>ÿ•æ?e0Š?.æ?cHÀ?i/?aË?go?]ç?ÑR?Z—/? zé?ú©? zé?ªÁ?ÑR?¯¥?)`?²ë?l? ÷?ܼ? ÷>ús]? T>õ&·?Y:>ïÚ?)ç>ðƒ©?-àŽ>ðƒ©?0Û¬>î†ë?2ƒŸ>é:L?3-2>ßô1?2ƒŸ>Ö®?§~=y„;?Ëa>ìŠ4?%>ýÃE?~½?.E>û â?‘Æ>ïÇÖ? äí>ä„Í? ϲ>ÙA÷?gP>Ñø“?l>ÍU…?‡ò>Ȳx>ùÉÈ>ĸÿ>ëàœ>—=~Ðö>Wê©>Ö®>V—‡>ä—>>]7O>ëàœ>e#>ð.÷>šÓ4>ð.÷>¡E>ñ-B>¨¼>õ¥è>©äÅ>ÿ•™>©k?Ùy>¤nd?ÿ>ž&R?ÑY>½å? &=>¥Ø? &=\6?¦÷<©RO?ªTüïI<}ÔÂ>óýà<ÞPÉ>ðƒ©=5Î>ð/&=Ê¢>ï¯Ì=ã$j>îÒ=ñ·>åÀN> |>Ó^.>gД=/S‚>riÙ<Š­£>~VG:·à¬>†J»úÍ[>‹Á'¼<ýL?-!×= à3>ê&R? ¶      ,,--..//0011WW2223344556677889<=><>?<?@<@A<AB<BC<CD<DE<EF<FG<GH<HI<IJ<JK<KL;<M:;M:MN9:N9NO9OOPPQQRRSSTTU  V V   !!""##$$'''((() + +,)**+$%&$&'<LM=’°:`;?>Œ"e:`;?>“‡;K_å>›ö;¯X}>Ÿ³?<3¿*>¢…<‘†>¤á<È]1>¦Ä=8>¥tq=DÜ#>£'(=nK"> F’=€Z´>œÒ¥=Ž*^>—¤Æ=—_>“ :=›ú >oüo=›ú >j;6= ”“>j;6=¬>nÕÉ=¹æ¬>°cƒ>[–>²y>`(">´j¿>`(">ï°¦=°±‰>ñýì=¢áß>ñýì=™¬½>ÎP=™¬½>ÊHß=—_>Çûœ=w«>Ãa=|Î>À€s=7 y>¿í = w>Â:j<¬½Þ>ÆA¦Ë“è;H4>ÕËG:`;??#Jò:`;??'ƒ;K_å?*Ží;¯S??,6cÎãq>º ?º>êÆ?Q>î?&+‡>î?*Æ>ðhO?-¦Â>õ'¯?/ý>ýP?/ªv?ÿ?.»a?9E?,?,M?&¾Ù?äj?#ÞA? w½>Ø«Ý? w½>Òêª? .>Í){?š¾>É"??àÌ>ÆA¦?“„>Åÿ?²ì>ć°>ü~>ÆÔù>÷ãp>ÊHß>óHä>ÏvÁ>ïÔû>ÔQ>î®X>ç¢*>î®X>ë©j>퇲>ë>êÆ>¹N>°‡Ø>µ‘^>¯a5>±Š&>±+>€V>êËÅ>~óT>í=!>„9>>œd1>î®>>£'(>óHä>§.g>÷ãp>¨è]>ý¤¦>§Áº?F>>¥tq?&×> Ùå?t>™ò? w½>’vç? w¶=”€×? w¶=„cñ? .=_Xá?Q=?ò?—"=å?IÜ=¯ó?Bž=JŒ>ùg=1OH>ôo‡=Z¾J>ðhO=‹KÇ>î=òá4>î>@E>ìôb>éP>êÆ>k®>äåæ>˜Ëi>Mó=ú_’=£v’=ã\ =™®´=»®=™v=*h =™­!=Éâ=•¦¤<ÆŸ=‚¯6<˜I=_e3<•À1<Ï7¼<Èe•=9^ž;8í<¯Ñ="í5<í>R= ¯   !!""##$$%%%&&''(())**---...//0000123424525626727828929:12:1:;1;<1<=1=>1>?1?@1@A1AB1BC1CD1DG1gghhiijjkkllttmmnnssooppqqr*+,*,-1GH1HI1IJOPQOQRORSOSTOTUOUVOVWOWXNOXNXYNYZNZ[N[\N\]N]^N^_N_`N`aNacMNcMcdLMeLefLfgKLgJKg1JgDEFDFGMdeabc>`ù¾MÂ>@…—¾Jž>ZëE¾B߆>|S¾6çú>Œö­¾#åõ>œú;¾ %µ>«h½ζŠ>º1Q½c“«>ÈEªº…ƒ?(‚>æpþ?ùI>ð¥Á?ý>òÂ4?%õ'>óIa?)§B>ôW©?+Ãû>÷‚2?,ÿh>ÿôð?,¥6?è-?+iú?ü£?'·³? /Ï?#$J? ä>Øv¬? ä>иJ? /Ï>ËÊÆ?Ç`>ÈEª?Ô>Æ)?Ž>ÄÀ™?½5>ÆÝ;>ûÇ>ÊbS>öÎ|>Ð >ò•.>í•2>óIa>õS‘>ò•.>ø$p>ñ,¿>úA>ë‹>´—=¤ü/>g—2>çQ·>dÆZ>ñ,¿>m8ö>óI2>˜Àí>ó>žé”>ôWŽ>¤^•>üp=>¥Î?ˇ>¢É7?îR>ž5ë? ¨®>–w? ú>Ž1¨? >=^cƒ? T¦= pv? ‰ê<Äú‹? !{<Œ¨æ?Pœüp=<Ð>!>õf=& >ò•.=Ú2Ù>ò•.=ð>>ð¥©> [>énY>–J<=!O>˜fä–J<¼€‚Œ>“yd½0ãî>#m½‚¯>ƒ¢Á½¯«>qrA½Ñ‡b>Y‚ß½í°>:‰G¾…>!1z¾TÖ> ÷¾TÖ=ë÷¾…=ÉM”½óQÒ=µ—p½Ùú=Î:-½Ëå¨=â¥a½¸/”=󊙽œâ=ö[q½n×=ño¡½)ÙM=ßÔ|¼üh§=ëɼ¢M =“ͼ=p¤=XÁÛ¼=p¤=t¢¼€Æ<Œ¨æ¼Úžr:/îp½AÉ.»ËGǽž×Ç»‡«ü½Ê}·ƒo½ô<(®ö¾˜J<Û¶¾"}‚=B:°¾1úN=ü@¾==»=Æ|¯¾E°^>7é¾KR"?,èà?==>>??@@AABBCCDDEEFGEGHEHIEIJEJKEKLELMEMNENOEOPEPQEQRERSESTETUEUUVVWWXXYYZ   [ [                  !$%&$&'$'($()$)*$*+$+,$,-$-.$./$/0$01$12$23#$3#35"#5"56!"7!778899::;;<<=  "67345=”zž:Óùè>ê†:Óùè>òº;@ ¢>ù ”<$/ >ýZ <¨) >ÿ€Ù= ~>ÿ€Ù>Zö¹>þmt>e¸»>ý>q¦>øê@>yŸÐ>ô÷>|P4>ë™ó>{<¾>æÂ£>xŸ>áëV>pz¶>ßÄŒ>jP>Ý >ak&>Û™f>OJ>Ûvó=ÉAt>Ú¨›=¹¨>ؤ=­Ò|>Óet=¤­Þ>Íz¿= `F>Â/ =œ®=îØ2=œ®>öå¢>ãÑZ>üF¦>êEÃ>þ÷(>ñCÞ>ÿ€Ù>úhÂ>þmt?øH>û3A?2{>öå¢?m>ðúð?±‡>èép?€>ß:Û? È=½[Í? È=£Š+? È=‡‘Å?€=hi@?l®=JJ?m=5Ø•?í =,*Ì?ÆÔ=,*Ì>þ,ª=,*Ì>µ+=/c£>°P=JJ>ªÍ)=l¶È>§N=…k>¥õÝ=Ï>¤XÆ=²™È>¥l,=Ëâ>§N=ÙÞ™>«ö=êŠ>±A’=ì±o>¹ÜÃ=ì±o>ä[=ó%Ç>訦>A}>ëâÙ>d|>ìlŽ>ÇV>ìlŽ=,*Ì=ã<×=Ÿ=º1Ö<¬5Ž=¦Ô¢<’d=‚A <šÿ*=7 @<ÆA<í‡=ôkïÅ7>}Ó  99::;;<<==>>??@@AA   BB     !" "# #$ $% %& &' '( () )7 78 89)*+)+,),-)-.)./)/0)01)12)23)34)45)56)67>‚˼Œ[M>j¼Ñ¼kÈÆ>Tðú:ˆ7r>H±<Ó?È>C‰C=–ù>C‰C>˜f>>ar>¦“}>6¥Ð>²,þ>'.j>»2œ>·>ÀZc>«Ü>ÆÌ>ÞÝ>Ê©ø>1}ÿ>Òe¤>;Í>ßI>C‰C>òžG>C‰C?)¤>H±?2¿>U”s?5â“>bwæ?9Àg>w?;¯S>„‘&?„‘&?A|>o[Y?A|>Pl¯?A|>4Ý?@2$>Jñ?>C7>«Ü?; \=ìhú?7Ñ}=Üñ¨?3ó§=ÍzW?.&ç=ÈRƒ?'µ,=ÈRƒ>ñTQ=Ã*®>ã&è=³³c>×g=šþç>Ñ—ó=k¬ >Ì+˜=µN>É’È=+©¯>ÃÈß=„oi>¾ØÃ=¥ƒ>¹lk=»4¤>³?B=ÈRƒ>©'_=ÈRƒ>šùù=ÈRƒ=yù®=Ò¢<Ó?È=çA=;¹3> g~¼Ÿð‹>,V5½†*>MØÑ½CN>nÒ$½Œ>>ƒ“½g“          !!""**++,,--..//0011112233$%&#$&#&'"#'"'("()")*=êUĽ$s>AÐj½$s>AÐj>œ9¬=êUÄ>œ9¬=êUÄ>ÒG>AÐj>ÒG>AÐj?Ao)=êUÄ?Ao)=+"®?<ÐI=‹|?<µ=·G?8$=Ïá}?1Ç=Ú;"?%zý=Ú4×>ôðº=ä>泓=ô>Û &> “º>Ñým>>ÌÏÔ>+;>ÆVÛ>îK>Âtâ=þpH>º°É=鹕>­¿ =Ú0>šT=Ú*Ô=`ƒü=ÏÎí<³Êr=µë;Þ!S=œ%¼ t£=e5ʼ‚ÙÏ=¸À¼—Ž=·´½Ÿ=‚"Ľ T=ÀD¿½¡ç=ù9e½ íŸ>€F¼Õ¼E>+6_¼\a >:¿ ºT€>BƒŠR>JH=÷>Lß-=Í>Lá¸>›ŸE>OxÝ>©Üb>W=b>µ‚­>c¥>»~³>vN´>Àðé>‡Ô9>Ä9>Ýf>Å µ>ƒ0›>É\Ö>nú@>ÎRŽ>^^F>ÓÅ>Sy>Ùù#>Lã¶>ä8>Lä>òYX>Lçb?(·>Gºm?1Æ¿>=_®?6ôG>#|š?=m6>kÈ?@©Ä=ň,?A¶Û=ƒL^?AûÒ=)eõ?AÙw          !!""**++,,--..//0011112233$%&#$&#&'"#'"'("()")*=«,•> F-=ºˆ{> ê=ÉA…>¢Z=Ñ’ø>©;ð=Þ_Å>­ý=ðKJ>®þ>òr>°F->/ö>¯¢I>3í>¬Á>o/â>£yd>ƒÀç>Ÿ¢Y>ŒÒ>žZ«>••>¶Ç>œdÕ>žZ›>¥Á> ˜>®¢/>¦¬“>µ¬l>­¶Ñ>ºËP>´éú>½þX>½¶Ñ>¿F>ÄÁ>¿F>ʃž>¼¶©>ÎZ«>¸ßŸ>ά†>¶yC>Ͷ¶>²y9>ɶÇ>®¢/>Ådå>©ƒv>ÁÛ>¡Õb>¿¢Y>š'M>¿¢Y>‘1‹>ÂÕ‰>VÝ÷>Ï¢Y>Dòr>ÑÛ>3í>Óyd>Ó¹>ÒÕ‰> XØ>Ðê=÷ù^>ͶÑ=Ö±°>ÇôB=½>ÁÛ=¨9>ºƒž=›Ðl>²1¶=–±³>©;ð=™å>¢Õ           !!""##$$%%&&&'''((()>„y>­h>(ôK>­™q>6sn>®-‡>BÊX>¯U¬>P¬>±¥ò>\=Š>³0Ô>fD*>¶F>t%ë>ºç >€¡ >Á•>‡ô·>Éñ>‰’>ų,>‹ p>ÀM&>Žå”>º„j>“†+>¶F>˜&Å>³“Š>ŸŸ>°}Ñ>¦€>¯U¬>®!‰>®òï>µu>¯U¬>½ðá>°à‡>ÄP>³“Š>Éå >· ø>ÏK>½7m>ÔN^>Èv>Õv€>Íi|>Õv€>î0H>ÕÊ>ó–N>Óˆï>ø6å>Ñ8¥>úéè>Î"é>ütÂ>Éå >ý:.>ŧ*>ü×{>‘r>ûL>¿Þr>øüP>½+o>ô¾s>¼MN>ïì>¼f>Øúð>¼J>ÒÏ~>»=ß>ÍÌ2>¹PG>ÊS¼>¶ÿý>Èv>´Lû>Æå>¯¬d>ų,>ªFd>Ç>>¥C>ʶy>£U€>ÎôV>¡Ê¢>Õ‚>¢òÇ?âB>¢-_?"ÜX>ŸÝ?'K“>*?*Ä>šV?-Ù¼>•½Û?0O>&k?33n>‹ p?5-V>ƒT?6é>xÆx?8ti>h”m?9œŽ>[x?:aü>N[È?:ĵ>=dK?:ö>-2@?:ĵ>5?:“W> CL?9Íé=ÿc¶?99×=ëVu?8²=Ô3†?7æ=À&W?5 =­¤?4gç=ŸÂD?2Ý =Š*,?0ïv=reH?.Ї=\ÍS?,âò=G5;?*Ä=4±E?(s¸=%FN?%]ÿ=ã?!´3=%FN?m=4²Ø?ˆÂ=SŒ4?¤d=~¼A?…u=”ö8?Ž©=­¤?+ð=ÆQÒ?Ž©=×I5?…u=è@Ç?R=ó ¸?/@=úÃ?Œ=úÃ?1=ö"?!‚Ù=îl2?#pk=ã 3?$˜=×I5?%Àµ=ØÔ'?'K“=àŠi?)9(=úÃ?+ºË> }à?-M>5?.mÎ>*áö?/3=>7þL?/•ú>E¡?/•õ>ULÛ?/=>`²?.mÎ>mús?,Nß>y)L?)¨7>{Ü.?)Ê>‚+û?%ò>ƒ¶Ó?"ÜX>„Þû?Æœ>„|B?& >‚ޱ?R>·\?À>tëW?¡>gÏ?G–>Wœð?o>Bå?Z>¿?Ï%=Ò¨¡? DG=¥í¯? ˆ=l9Ý? =ÙÁ?o <Èü >ütÂ<…2>òÐßé,øÝ8Î<‹Ià>ÕÈ<ÕS#>É+—=,>À¯ß=L›!>ºÎk=Š*,>µ=À&W>±C==è@Ç>®òï>ãæ>­h>„|B? ‘H>„|B>÷Ô+>ƒ¶Ó>ñ¨º>ÉB>éòj>{Â>ß&b>r› >Ù]¦>jK>Ô½>`²>Ð1>R6÷>ÍÃ>>)½>É+—>.½>Ç ¹>uP>Ç>>ó>Èv=ëVu>ÉŽQ=Êòc>Íi|=³Ïp>ѧY=¢×ù>Öªª=›!£>Ü©=”ö8>ãÆø=–>ìB·=¡M>òÐß=°¹»>øüP=Á±1>ütÂ=Þÿ’?'ó>á?²Ñ>X?‰>(‘³?Úö>;Ùm? P>Oæ ?>_S??ÈŠ>qÕ›?" >~,~?@û<%j>oÇ>Ûa§>oÇ>Ûa§>š<%j>š          * * *+ +, ,- -. ./ /0 01 12 23 34 45 56 6l ŽŽ‘‘’’““””•žŸŸ ¡Ÿ¡¢Ÿ¢£Ÿ£¤Ÿ¤…Ÿ…Œ ‹Œ Š‹ ‰Š ˆ‰ ‡ˆ †‡ …† … l…lm…rœrœrs›œs›st›tu›uv›vw›wx›xy›yz›z{š›{š{|™š|™|}™}~˜™~˜~—˜—€—€–—•–•‚•‚‚ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6AB6BC6CD6DE6EF6FG6GH6HI6IJ6Jb6bc6cd6de6ef6fg6gh6hi6ij6jk6klJKLJLMJMNJNOJOPJPQJQRJRSJSTJTUJUVJVWJWXJXYJYZJZ[J[\J\]J]^J^_J_`J`aJabqr…pq…op…no…mn…¥¦§¥§¨>qî?‚H>ƒÎ‚?p>ÆÂE?3hñ>ÊDÜ?6Ü>ËØ?:'>ÇŸ?>j>¿¶ ?@%Ë>´ZR?>@>ÊêV?<·¾>¹²??Î@ >£ª€?Fëƒ>®º?CÙ>>ñu?ZÒ->ôø?]ë>ö‹Y?aY>ñÑØ?eø¦>êiE?g>ß Ž?e©;>õ’?d ù>äe\?g7| > .-?Fëƒ>!Ü›?CÙ>>“â?ZÒ->—d®?]ë>˜÷ì?aY>”>k?eø¦>ŒÕØ?g>z!?e©;>˜ %?d ù>†Ñò?g7|>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À FFGG  HH!!I""###$ $ $% % %& & &' ' '( () )* *+,-.,./,/0,01,12,23,34,45,56,67,78,89,9:,:;,;<,<E,E=+,=+=> +D+>?+?@+@A+AB+BC+CD>¸Óÿ?2W>¼8ª?$0ñ>ce??A}>q¯³?@9®>bÅ÷?@ú>Sä&?<È¢>Q=±?8Îõ>^?3¾>Y?l??•>Um?5÷Ñ >Üe?A9¹>ßÊ+?G8S>£C4?bHß>œiX?cA>”ôz?c'\>ƒ”?_Ð>Œ0Z?[ÖW>’’…?VÅg>18?bö>ŽH?Xÿ2 >‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À>ƒ„t?@Añ>†é?F@Ž>ÄN?aQ>œ?bIH=ðMÀ?b/”=ÒŠ?^Ø<=Í=5?ZÞ=æÅß?UÍ£=Ý@«?a 2=Õœ?Xk    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:@AB@BC@CD@DH@HE@EF@FI@IG>.À?!°e>žEò?.«©>§ÂØ?2ê>©Ã0?9g>¥F?>eä>K ?>å±>(ÁÀ?'®4>!ÄŠ?%/9>œq??e–> C?"°>(ÁÀ?'®4>³Rb?!°e>ú8G?.«©?Ú?2ê?ÚÂ?9g?œ:?>eä>÷úÉ??e–>ì=b?>å±>°SH?'®4>°SH?'®4>¬Ô§?%/9>¬ö?"°         >OÆè?B‘Û>®É\?O>¸FA?Sˆ>ºFš?ZI >µÉ…?_G\> Îp?_Ç'>IÈš?H­>BË]?F¯>¬‹×?`G >AIï?C‘}>IÈš?H­>ÃÕË?B‘Û?]Ú?O? Q?Sˆ? v?ZI ?Ýî?_G\???`G >üÀÅ?_Ç'>ÀÖ¯?H­>ÀÖ¯?H­>½X ?F¯>¼—`?C‘}         >kù¥¼‹ã¾>‹B ¼~’ >œ–á¼»®>¦ þºÝzš>²¥É<ß¹>½­r<¢Ÿ\>È´¯=U¹>Еl=U¨ÿ>×z=}¯>Ýùé=¹œ>äGJ=‡0Æ>ðk=ðt>ý|â<–†?%;¸L? Y>»,?lt¼9=N?,(¼eZx?)Hß¼?‰ƒ?3†§»Î w?>)C<Çm?Cø°<¯9I?I•=ðt?MêÁ=bCÝ?SÓQ=¦³Ì?Wò=Ùø?Z ·>žh?Zêd>­G?Zêd>*?YÕT>7²?VÇÁ>BÒÝ?Snz>GñÄ?Pa>H»ƒ?LWi>F^h?I•><êQ?GÏî>/ê©?E@U>†•?CH%=þï_??WÞ=̃ý?:¸=°'é?4PV=~5?-ž=u+ô?$)ý=bCÝ?¼=h‘9?¦£=‡0Æ? a =©Ú{?§=ϪÛ>ÿ§@>žG>÷ù,>(nÈ>ó?>N?/>ðk>ƒ{Þ?V•,>ƒ{Þ?Z…Ž>„EŒ?\}½>ˆÿ—?^uí>—÷j?^uí>¬r÷?]G„>º¡?[O;>Êb™?X`>Ú$?T8(>爑?MêÁ>÷J?G8†?(Á?@!s?¬y?9o8? Ó,?/û? • ?(_? Ã? 9?(d?ô? ùà?K? Ëc?2‰?¤ª?€N?´J>ûÞ?–>òur>û:o>ë^]>ñÆY>äGJ>åõ8>Ûœß>ôí >Ò(È?Ãë>Åý?Q>·_Ô? 8>§žW? ^·>—*?;>‚e(?ò>b…Ž?(d>AnË? bª> ½m? Ó5>i??G£=Õù?òm=©p.>ù§=ç>ïiR=aoD>âΆ=Lñ£>Öf'=Q®‘>ÉË[=tUÈ>¿òh=—Qà>µç=Â¥Æ>±-=ëœì>®Ïú> xh>°0Ö>2,>µe>)>ºn¬>/µÐ>¿Œ>4Ôg>È’>4Ôg>Ñy¯>0_>ØÂ>!ìA>äaÜ>,ó­>ìBœ>?Û >òÂt>b ¡>÷J >€:š>øÝl>‘Áè>øœ>`’>ö€d>©ûÉ>ñøÅ>´Ð‰>éê>¼ã>á;->Ãú >Ó >Çë>ŨŽ>Ç!R>¶°»>Ç!R>¦%’>x”m>¦%’>Q0·>¤’6>4oz>£cÆ> Iÿ>{1=Õù>”и=ƒŸÊ>„EŒ=5Qs>oU€=æD>QeÚ<ÆÆ™>0O‰<­â> <ì— =¼Âµ=/={ys=ƒŸÊ= :=¼Xh<`hU>ÕâºÝzš>#—¼2ñ$>D•è¼~’ >ôÒv>¦ï=>÷/z>±->øÂ×>¼4t>ûé‰>Ær<?¶£>Яþ?Õƒ>ÝJÍ? >爑?Üö>?*\>ô#Z?wÂ>õ¶¶?%X‚>÷J?+A>õ¶¶?0_ô>óY¯?7w>ìBœ?<1>âΆ?@!s>×Ç?DÒ>È’?FnÙ>¹×q?FÓ®>¯™¥?G8†>¦ï=>Ç!R>‚²0>Ç!R>L«Ì>Åý>*>Á™> ¥Ô>¼±J=ìЮ>´9"=¹œ>¦ þ=“Ë’>™p2=u+ô>‹B =U¨ÿ>w=ID>RÄ =ID>4Ôg=h‘9>½ª=s=û^`=¹œ=ß=ø¡û=Õù>Ô=âò©>9ó=û^`>Vé>—c>gtÆ>(8È>w6\>JãS>Ú>g?>è…>|é•>‚²&        * *+ +, ,- -. ..//žžŸŸ  ¡¡¢¢££¤¤¥¥¦­®¯ž//0œ0œ01›œ1š›1™š1¯™112313414515616˜¯1˜¯˜…­¯…­…†­†s¬­s¬st¬tu¬uv¬vw¬wx¬xy¬yz¬z{«¬{«{|ª«|ª|}©ª}©}~©~¨©¨€§¨€§€§‚¦§‚¦‚ƒ¦ƒƒ„  !!""##$$%%&&''(())*67868969:6:;6;<6<=6=>6>?6?@6@A6A’6’“6“”6”•6•–6–—6—˜ABCACDADEAEFAFGAGHAHIIJKIKLILMIMNINOIOPIPQIQRIRSISTITlIlmImnInoIopIpqAIqAqrArsAs‹A‹ŒAŒAŽAŽAA‘A‘’TUVTVWTWXTXYTYZTZ[T[\T\]T]^T^_T_`T`aTabTbcTcfTfgTghThiTijTjkTklcdecefs†‡s‡ˆsˆ‰s‰ŠsŠ‹=RjC:?Õ>–wí:?Õ>Ï/;(Kä>©Yª;¤¯ >«§ƒ<"à >°¯é<”>²'€=¦×>³iý=0¢$>²“z=R1 >°ê=ƒñc>«>=˜ü>¥‘á=žÊ%>žÛ¬=¥€^>‚UY=¥€^>}ôy=¬6‡>}ôy=¹¢ù>€§É=Ñ Ÿ>…°o>»“>ÁAq>¥Š½>ÆJ>¬@ò>ËR¼>¬@ò?{‡>¬@ò?”v>©¼œ?Ö >¤³ö?Ö > zk?ÿÙ=èž\?Ø’=ó0?ÌB=´™ò?‹g=¥€>òÁ'=¥€>ìá¸=žÊ%>çÙK=°ç>ã§3=XçX>âÐp=7X\>äH®<åz>èæKí²;—8a>öS¹Ï‰?† š8Ú]¯?ˆg„;Ú/Œ?Š€¦<À/¶?‹=#5Ò?‹ø=m ?‹ø>‹ˆ¹?‹>“µ?Šì>—G•?ŠD>›yt?ˆb>&þ?‡3>ži.?… ™>œP7?ƒ_ >˜õ?‚½ý>’>ï?‚ç>‡VÚ?‚ç=üÀó?ç2=åC6?o=Ñ Ÿ?1$=¼þ?z“à=¬6‡?sç=¥€^?8¸=¥€^?4ñ”=¨Û|?2Þ=¹¢ù?0TR=Ô{¸?/}‹> K?/}‹>¡XÝ?/èî>¨?2Þ>¬@ò?5\ö>­µ?LoD>­µ?Q ‰>¬@ò?Tg¢>©¼œ?V->¤³ö?Vëõ>¡XÝ?Vëõ>REï?WWX>K½?WÂ…>@§M?[Ò>:È?^xì>7m?aƒ'>5¿~?e\>6*=?ho>>=Kq?j¾>LÑH?k>_²Z?k?ò¡?jR¿? ƒp?hõž? =q?g³s?ÁÄ?dû?í?cí1?Â?_»?oP?\•½?˜‘?Y‹ ? ˜?W¹? ûG?WWX? .?WWX>Üéã?V€’>× s?Sü=>Ó¯]?OÊ^>ÐT=?3D>ÐT=?0¿³>ÒÍ?/->Ö3­?/˜>ÝÀ¥?/˜†?aò?0TR?"xù?2Þ?%Ô?5B4?'fÊ?8¸?(Xc?i`ý?(Xc?l¼?'í?r0#?':?vÍd?%Ô?z({?#»!?}3? ` ?1$?ëÿ?1$>çÑñ?€Å>ãj^?€²[>ßÙŽ?‚ˆY>Ü ?„¡8>ÚÑ?†w>ÛÜéã?‰>Š>áQd?‰Ä¹>è==?ŠD>ð5°?ŠD?4=?‰ÄÊ?5ÄÊ?‰L4?7¨?†ïÝ?9ö©?„¡8?:Ín? o?:Ín?ÅT?9ö©? j=?8I? ?5ÄÊ>£:= 1>Rà=¬<â=Þ­Ö=£ÖR=>Eæ=¥„Â= D!=žÎ<½B=ЬT<€Ô—=M2Ö9>п?_=?+f? Ê?+é+?x-?)dÚ?x³>Öžø?6x>ÐõF?Úë>п<Œhc<¥j}<ξà<;Ö   !!""##$$%%&&''(())***;<<<===>>>??@@@AAABBCCCHIJHJKHKLHLMHMNHNOHOPHPQHQRHRSHSTHTUGHUGUVGVWGWXGXYGYZGZ[G[^FG^F^_EF_E_`DE`D`aCDaCabCbbccddee““””Ž……††‡‡ˆˆ‰‰ŠŠ‹‹ŒŒ••’“e’ef‘’f‘fg‘gghhiijjkqrsqstqtuquvqvwqwxqxyqyzqz{q{|q|}q}~q~q€pq€op€no€mn€lm€l€l‚l‚ƒklƒkƒ„k„„ބބ…Ž…;<*+,*,-*-.*./*/0*01*12*23*34*45*56*67*78*89*9:*:;[\][]^•–>¨]™?)"ñ>ªÝ•?*Ë >¬ÐÉ?,¡%>®*õ?.—ë>®ã“?0£–>®ö?2·D>®aÿ?4ÅÒ>­*ý?6ÂP>«X½?8 ;>¨ö±?:SÈ>¦ç?;ÒC>¢Âˆ?=>>Ÿ~?> Û>›)ì?>¸ð>—”??@>’ëE??>ŽÎ!?>Ôv>ŠÕ%?>8ø>‡T?=O×>ƒ²5?<Ï>€µ|j“?9¹>x„?7/2>uÏÌ?58k>t^‹?3,Ä>t9‡?1>ua³?/ †>wϰ?->{t=?+0>€'?)|‘>‚þô?'þ>†PT?&¾>‰û^?%Ä~>èí?%e>’A?$»>–'”?$±Ø>šD·?$ûå>ž=´?%—c>¡ùˆ?&€‚>¥`£?'±‰>´/²?#³á>¸Ft?&S>»~[?);Ø>½Ã?,[è>¿\?/ŸŠ>¿@-?2ò+>¾o+?6>Þ>¼˜s?9pÎ>¹ÇŸ?¶s??5>±„Z?A¢õ>¬F?C®Y>¦ti?EJJ> 4P?Fl§>™­?GG>“Ã?G+4>Œnd?F³>† …?E×W>€g?Dnë>u#?B’R>kLd?@MK>câ?=®>\¯?:ÅS>X%ž?7¥B>UŸ?4až>U+o?1ü>VÍl?-ÂN>Zzã?*`>`Œ?'R>gŽé?$Ì%>p£?"^5>{Æ? RÕ>ƒax?¶â>‰¡•?”„>(â?òà>–Î!?Õú>g~?>y>£Ë`?)Ò>©Ñ}?’>>¯SÐ?!nÖ()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O>懠?Mˆ§>é™?O1W>êúÍ?QÜ>ìTý?Rý¢>í š?U L>í ?Wú>ìŒ?Y+ˆ>ëU?[(>é‚Ä?]ï>ç ¸?^¹~>ä=î?`7ù>àìŒ?awô>ÝA…?bq‘>ÙSó?c¤>Õ<›?czö>ÑL?c„6>Ìø)?c:,>Èÿ(?bž¯>ÅC[?aµ>ÁÜ=?`„…>¾ßC?_>¼_M?]jm>ºl?[”è>¹í?Yž!>¸YM?W’x>¸FË?U~Ñ>¸Úá?Sp<>ºß?Qs¿>»ä&?O•Ó>¾F+?MâH>Á(ü?LcÉ>Äz[?K#Î>È%b?J*5>Ìô?I}>Ð*I?I Ñ>ÔQ›?I>Øn¾?Ia>Üg»?Iý>à#?Jæ9>㊧?LA>òY¶?H˜>öp{?J¸Â>ù¨c?M¡Ž>ûí?PÁŸ>ý0c?T@>ýj4?WWá>ü™2?Z¤•>úÂz?]Ö„>÷ñ¦?`ÙŽ>ô8{?cšº>ï®b?f¬>êp ?h>äžq?i¯þ>Þ^W?jÒ]>×× ?ksÿ>Ñ1Ê?kë>ʘk?k(j>Ä4Œ?j=>¾.o?hÔ¢>¸¬?fø >³Ð9?d³>¯¹x?bÑ>¬‘?_+ >ª<Ö?\ ù>¨ù?XÇT>¨¿¿?Ut²>©½?R(>«gu?Nö>®8M?Kó>±ñ|?I1Û>¶{Ž?FÃë>»¹ê?D¸‹>Á‹?C™>ÇËœ?Aú:>ÎRæ?AX—>Ôø)?A;°>Û‘…?A¤/>áõg?Bˆ>çû„?C÷õ>í}Ó?EÔ()*(*+(+,(,-(-.(./(/0(01(12(23(3(((((('('&(&%(%$($#(#"3334445 5 56 6 67 7 78 8 89 9 9: ::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKL L LM! M!MN"!N"NO("O=Ç2?7M·=Ú:Y?/Lä> ?&Kð>#‰C? äî>CŒ‘?ä•>cÞ?JÎ>qC?}Þ>’1Æ?Jà>¥u? >±Î˜?$åi>¼œl?*²Ã>ÅÆ?1³ˆ>Ƈ?8˜>Ãj?;N#>½ò?;N#>µ?8˜>«?2æØ>™Ì?,æ?>†–æ?+Lx>p^?*˜>X^å?+LY>)ðQ?0æ˜>î ?4æñ>Rd?9´_=ÛÒú?<ô=Ê7ß?:>„ƪ?†>=óK?-æ;      >Ѝ—?]Ž©>uà?UÖ>›wX?LŒà>ª«ì?G%à>º­’?C%‡>ʯ9?A‹Á>Ñvl?@¾Ñ>ë?B‹Ò>ýç¿?FY?Zï?K&[? ÁÛ?Póµ?õˆ?Wô{?Âj?^[Œ?(¥?a? õ ?a?ô´?^[Œ?ô%?Y'Ê>ò³d?S'2>ß~0?Qk>ÑK?PÀŠ>Ž?QM>­ßs?W'‹>£ÞQ?['ã>™|?_õQ>Ü ?b[ç>‹uC?`Â>Ý­ø?AXx>·àð?T'/      >|˜_¼¿¸²>eøî½ªœì>eøî½º¶>l®C½ÅrG>v\p½Ä~J>…K½¸š>ÑØ½²©Å>–Šh½¶ö>낽ÂÃe>¢…©½ÚéÓ>£¸0½øn.>¡F,¾ ¡Î>낾® >–@…¾òÎ>ÑØ¾í>…Å ¾ >{pi¾]Œ>qÂ;¾…³>d¡q¾JQ>[=)¾”ü>Q_½ýÿg>K#¾=€>C®¾òÛ>@g»¾ÿ¦>CÀk¾ò >Pe¾'&">d ²¾0p>zó¾5èO>…Å ¾9D>[Þ¾:åÞ>›<¾8°å>¤¾4Ä:>«­ ¾+Ùß>°´¾ pÍ>µí¾]Œ>¸të¾_8>»oÕ½ëw>ºUL½ÊÐ->¸Úݽ­ß‡>²·I½’vu>¬­¬½‚\Ö>¤{ê½pÂ>›<½a^>“/º½hbö>‰,®½|³>°¼ÄV²>æN¼¿“ÿ>–Ú¼¿“ÿ>£}•¼¦Lü>¬qa¼xX6>¶rͼ<>¾œt»'ªi>Ç?;Â8T>ά!Ö ¢<Ήe>Üæ= d>â(+=>¯«>ì)“=Êt>ñôƒ=¹ëd>öLá=Ý3Å>úa>à >þ>ð–>ÿÑ>'¼ø?7>5n>ÿó>DpJ>ûÔ/>M§{>øÍ>UÃ>ô–—>[Xˆ>ï·Ž>^t>ê•+>_>å×Ü>_>à.ˆ>]ú›>ÛÖp>W" >Ø&¿>FH>Ôýã>6{¶>Óis>'¼ø>ÑN2>|>ά!> ?ƒ>Ë?í=õm >ŸV=Ó2\>¿íg=·Ð)>¹Ú=ž‰2>³Iî=‹“þ>©H…=q=•>¢öÇ=Wö>—ç¶=G—>ŒØ­=>¯«>ƒ^=Bæ!>q«°=SÀ>^¶u=hЉ>J³=‡]y>9Ù¤= ¤m>/Qi=³™³> ’«=ÕM¥>á‘=ÿn>0~>âÿ=ù†ï>2E3=ìã€>Nµ =ävz>phý=â[?>‰x=ävz>—Í2=ìã€>©-ú=ù†ï>´=>K¹>ÁgK>¸²>Ëï>N‘>Õj'>+í>ßk“>=ƒ>çØ>LÎß>í£>aßU>ónh>už³>õ«\>…yT>÷¤ë>>ø²ˆ>›™>ø+º>¤d>÷>¬ø/>ô| >¶ù›>î*N>¿f˜>çØ>ŸV>ày0>Éh>ÙÕ>Êüw>Αš>Ä#ê>̓ù>¼=¼>Êáì>µëþ>Æ«l>±µ>Áî!>®ŒŸ>¸úV>¯š@>­ëE>³Iî>£éÙ>¸Ž>Ÿ,‹>¾ßÉ>šö>Ä#ê>˜ÚÐ>˃F>—Í2>Óis>—Í2>ÚB>˜ÚÐ>߆>šo?>äÊ;>˜>é©C>¡`>îDØ>¦&Ç>ñ±.>«Ì>õe>±(>÷¿r>¸s„>øÍ>¾Å>>øÍ>Ç2;>ö±Õ>Õj'>ó$>ãD>îDØ>í£>åQ >ûT–>Þx}?Yú>Ö €?ÆA>Ìã?ï >ÃI? `>¼Ä‹? [f>´¼ç? ›“>ª™¾?0> Ûˆ?Ç­>˜õ[?Ç­>Žm?ó>ƒäâ?Ç­>r¹N?@Ü>^rü? ‡…>LÎß? i>9Ù? o|> Õâ?Wy>Å£?« =摵>ýö¦=®8ü>ï8=”k'>å½Q=vHA>Ú'y=Cºw>Ìv\=È>¸úV<ïË >­ëE<Ū.>˜<´Ð>Œ¾%<®|Ð>{þÏ<½<ý>_<Þðñ>Bˆ=‰ >'¼ø=$!> ´=EÖ9=ìyU=mÛU=ÆŽç=4Ÿ= ¤m=©{–=}àù=Æù=6B=ì\<çÐ)> t˜…;†à>8̼bE>MÜ|¼g}Ó>g#o¼¦Lü>‚×A¼¿“ÿ,,-  ! !" " "# # #$ $% %& & &' ' '( () ))**+++,,./0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<=.=>.>?.?@.@A.AB.BP.PQ.QR.RS.ST.TU.UV.VW.WX.XY.YZ.Z[.[\xyzxz{x{|x|}x}~x~x€x€x‚x‚ƒxƒ„x„…x…†x†‡x‡ˆxˆ‰x‰ŠxŠ‹x‹ŒxŒxŽwxŽwŽww‘w‘’w’“w“”w”•w•–vw–v–—v—˜v˜™uv™u™šuš›tu›t›œtœtžstžrsžržŸrŸ r ¡qr¡q¡¢q¢£pq£p£¤op¤o¤¥no¥mn¥m¥¦lm¦l¦§l§¨kl¨k¨©k©ªjkªjª«ij«i«¬hi¬h¬­h­®gh®g®¯g¯°fg°ef°e°±e±²de²d²³d³´d´µcdµcµ¶bc¶b¶·ab·a·¸`a¸`¸¹_`¹^_¹^¹º^º»^»¼]^¼\]¼\¼½.\½BCDBDEBEFBFGBGHBHIBIJBJKBKLBLMBMNBNOBOP>œiÔ¼#‹‹>Û¿½œœõ>Û¿½®{´>“”Ó½ºeŒ>˜ô½¹VÁ>£öZ½«B>­¤Y½¥Œ]>·RX½©ÎŽ>¿ƒ½·k>ĞϽÒ9F>Åó ½òü\>Ã<1¾bv>¿ƒ¾Qá>·X¾*F>­¤Y¾¯¨>¤´õ¾FÌ>›Å‘¾LS>–fE¾ Ð>!¾å@>‰æÑ½þæ2>„lâ½ù*>>€÷m½ûëÇ>xÿ|¾h>v¾Wa>y»ê¾îm>ƒñæ¾)%†>ŽË!¾3 Ç>›÷¾9‡>¤´õ¾=Aí>°uÒ¾?>¼ˆ¨¾<ž>ÆE ¾8Bß>ÎÇÓ¾.]ž>Ô\W¾!³e>Ú(F¾LS>Ü÷f¾Ä&>àF0½ä >ß –½ÀZ>Ýh޽ ;O>Ö˜2½ÎÑ>Ï䩽_à%>ÆÌH½Hâ<>¼ˆ¨½8K;>³™G½@kÞ>¨|q½V÷Á>¯·1¼-Ë>«¼à>¶~4»þ¿#>ÃkÉ»¬ç>ϳæ¹PíÄ>ß7e;ñ°G>ê4Š<„Ñç>ôµ<Í6µ>ÿ‰†=Q ?‘=HÜ2?“=†°u? É=ª>?šë=ÑÓ?ÿÐ=úeW?;{>ž?Ñ >?‚%?Á¹>†Ñõ?Ñ~>‘Vý?èþ>–Y ?¯¶>˜It? ÎÂ>—¤?ÑW>”ñ?á>Œ|ã?¸>ƒì^?Â>&>>þ=w>N­>úÙ!>>ôô=ì,¯>éá$=Ï8>à«S=¹Á”>Õ®B=£ÇP>ËVÆ=“ž(>ÀÕß=ˆ¡'>·#®=„À8>¬&‰=ƒuS>¡)d=ˆ¡'>˜ª=‹7>‹Ô=’øÏ>€×k=¢|K>lÿ€=·+ª>W<=ÑÓ>A ñ=õ9«>0 ¶A>'Õ>ºÂ>nF>!c'>4È><‹‡>ŠC>R…ì=üE>fâ€=ó:>{‘´=ç—>Š:p=ä\6>–«ï=ß1>¦«Š=Ü›&>´>š=Ü›&>¿;Â=áÆí>ÌÎÒ=ä\×>Û[=ëwŠ>æÓ`=ù A>ó—“>^o?> œ?f¡>Ë ? }Æ>#?Ò>+ ?ù°>7þ1?Ú“>C Ô?»s>Wfˆ·?!߀>wW.?$"­>†B?& >Zí?'°Ò>š²˜?(© >¥ B?(ûÇ>µØ¹?(ûÇ>;?(>Îhñ?&¸—>ØÀœ?$È'>ãG?!:>èé•?ö×>íoï?³«>ñöO?%‡>õ1°?ž>ú]ƒ?¶…>ýÂV? v?@Ö?ˆ:?ba?:Ì?ba>àØ­?­‚>Ù“?øM>ÕÛ‡?Ž7>ÓEš? É>Ñú¥? >Ñú¥?“$>Ô“?ë>ØšÈ?ÆÀ>à3/?}>çôð?}?/Ò?5ú?4‰»?ÿÐ?7¥?8³?9 à?Oö?:Ât? ’?;1?~¦?:Ât?P?9bÓ?Å?6á“?¥Ž?3´?¥Ž?$"­?¼ç?)¡@>üMú?,‰ç>ö|¥?/ÅN>ìÊt?3´>äch?5ƒ>Û€?74Y>ÐþÛ?8Ò>È—œ?:ù>¿Ší?:Ât>³èJ?;gð>ªÛ”?;º«>¢tY?;ä>š ?;|Ÿ>’K_?;gð>‰ä!?:Ât>€1ð?9w}>o•p?8,ˆ>a\ã?7‡>Ug?6Â>=*?3´>)Å«?0 >ß–?-mv> T9?*p=þ8?'^=ß1?#}2=À*?«â=¡# ?-P=oˆ¹?sY=@þH?ü‹=Ÿ‰?…Á<æÙy>ö-z<³#8>æ<‰ÄT>Õ6 <~ÙZ>ÆX³™<~ÙZ> Ú9<žs£>Šßë<Ò*)>q=!÷.>@l›=ZÙj>9Ã=™aO=ð ×=À*=ÁƒQ=鈪=’øÏ>ŸŒ=Hܘ>+ =¢×>Kb’<„Ñç>pàe;k(Ø>‹Ô»¬ç>›X»þ¿#?m>Z™°./0.01.12.23.34.45.56.67.78.89.9:.:;.;<.<H.HI.IJ.JK.KL.LM.MN.NO.OP.PQ.QR.RS.ST.TU.UV\]^^_`bcdefgghiklmjkm‚ƒƒ„„……††‡‡ˆˆ‰‰ŠŠ‹‹ŒŒŽŽ‘‘’’““–€–€–—€—˜€˜™€™™š~š~š›}~›}›œ}œ|}{|{žz{žzžŸzŸ yz y ¡y¡¢xy¢x¢£wx£w£¤w¤¥w¥¦w¦§vw§v§¨v¨©uv©u©ªuª«tu«t«¬t¬­st­s­®rs®r®¯qr¯q¯°pq°p°±op±o±²no²n²³n³´mn´jm´j´µjµ¶j¶·ij·i·¸i¸¹gi¹g¹ºgº»eg»e»¼e¼½de½d½¾bd¾b¾¿ab¿a¿À`aÀ`ÀÁ^`Á\^Á\ÁÂ[\Â[ÂÃ[ÃÄZ[ÄYZÄYÄÅXYÅXÅÆWXÆVWÆVÆÇ.VÇ<=><>?<?@<@A<AB<BC<CD<DÈ<ÈE<EF<FG<GH“”•“•–,,-  ! !" " "# # #$ $% %& & &' ' '( () ))**+++,,=5K?qÐ>•a?qÐ>Ø2?1F~>Р¸?qÐ?†ª?qÐ>¤¾?E+l>q¶¥?E+l>4Ä-?@ ¨>Œ‰¾?@ ¨>Ó—C?_ßV? /æ?@ ¨?&f2?@ ¨>è}?sÄD>¼šd?sÄD¼à{»?@2–=ª?@2–>VZ×?`E>«õö?@2–>äbŽ?@2–>€A?sì0>(a?sì0>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'ÀCCDDEEF   ! ! !" " "# ##$$$%%&&''()*+)+,),-)-.)./)/0)01)12)23)34)45)56)67)78)89)9B)B:():(:;(A(;<(<=(=>(>?(?@(@A>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;Ÿa=¸–ï?@ ¨>@šÅ?@ ¨>§Zã?_ßV>è#j?@ ¨?H?@ ¨>¼@¹?sÄD>^?sÄDUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÉÊËÉËÌÉÌÍÇÉÍ>ã:„?gJ£>¼‡7?gJæ>…³9?N»š>'mö?gK›= µ$?gKã>k%’??aí>—o­??a³>˜W*¾J6B>.e¾g Ž>†4i¾y¤1>…E©¾‚Ý{>‡ÔM¾†Ñ†>-𾇄>–y̾‚Ýß>¨&¾VMñ>¯ˆ¾:xØ>³g¾®ê>œý¾+…b>±re½Åö>œÿ¾{>«Þ^½†¸„>¡,‰½J|[>›]†½4)¾>ŽŽ,¹>„WѽC N>wý#>n¥É½¦Rð>o’D½ØŠÁ>vÒ¾¼¤>¥¾ ÂÅ>÷ð¾{          >ûŒ?‰2>©?Û>"?“f>&.Æ? >,•,?!ïš>5Šï?"å[>BWµ?#‰2>T•:?#7B>pl0?!Æ¡>–J“?"Î>¢s‰?7H>ªÅw?“q>³»7?A>»w?“k>ûb?²&>ÍTÔ?¼e>Ô_?"A„>Ù}ò?%Û>ܰý?*A„>Ýø«?-Æ¥>Ýø«?0§ë>ÛiN?2“q>×’D?2¼_>Õ+å?2Ax>Ñ+Ú?0A>ÍTÔ?.Ž>È6?,- >Àˆ?+7H>¸Ùò?+7H>¯ä,?,Ðà>Š! ?37H>+Ú?4- >pl0?5"Î>]9?4Ðà>H¾"?3Û>9aù?2A„>(¾"?/`=>ñU?,- >³Þ?(§ë> M~?$~÷>¾"? > WÐ?ÐÛ           !!""##$$%%&&&'''((()>u •?B®â>|¹ˆ?CÏ>‚ ?C¹>„d?G)Ã>‡R—?IJ>‹Íy?J >’3ß?J®â>›R¢?J\ð>©>?HìS>ÇR—?DH}>Ó{?B\ú>ÛÍy?A¹#>äÃ;?Ag1>ìx?A¹>ôÃd?Bר>þ\Õ?Eâ?³ˆ?Ig6?Bø?MÈ?Ü?Qg6?€V?TìT?€V?WÍš?8¨?Y¹#?M#?Yâ?õ?Yg&?ð?Wg1>þ\Õ?U>>>ù>?SR¹>ñ?R\ú>éáô?R\ú>àì1?Sö>»)¢?Z\ú>²3ß?[R¹>©>?\H}>Ÿ¤ƒ?[ö>•g?[Ï>¸þ?Yg6>…g?V…ì>~X?SR¹>sÃç?OÍš>m]?K¤¦>jÎ%?G)Ã>lgÙ?Cö           !!""##$$%%&&&'''((()>~]˜½‚A>šj©¼Ùò4>­ž‘¼uët>½®º€¡{>Ë +<%$>ÜAx=I>ånÎ=œ2Ê>ìÒ=Ý=Ö>ò>ˆ~>ö1>;;Ó>øbå>fT >ø‰V>‹>öãê>¥pû>ò>½b>ë^]>Øêe>ä>ì‘*>Ùi—?ÎÜ>Ì>¤? ”ì>ÀF ?â>³)?òX>š*Ñ?$%h>´q?.þç>¹ »?0Êœ>¹ É?8rŸ>²ú?:Ý¿>¨¡ ?;#Ä>„k?+Må>`#È?1ã\>IË,?4h&>0A±?6õ>!ý¶?5º€>P°?3¯ >ë?/^”>!Ð?+ç>\?ß?$e0>W\¨?!¦×>%/!?šÅ>€Ã?JL>v?ÿ6>"—3? {C>-%‚? "°>ƒëë?ë>>‹æÈ?3þ>”‡Ê?j.>Ÿ±? •>ª¹ÿ?šŠ>²5<>÷W;>´M¢>îv|>›*!>ø >‡H>ùÈš>gÒ >ø¢°>9ÕX>ôKç>k>îv|>vM>è¢=Û ‹>ß2ã=¯XŸ>Òî =Ô>ÉZ‡=;ä>²›ñ= ç>žBC<ñµD>ŒM„<Ò–p>fÓœ<ÓaV>2§R=cR>Æþ=_F=š4˜=˜™¿=/ñ=Ë# ×Ö»òð>H²d¼Ùò4>³—ñ=›™=>¼~Í=Ådù>ÃûH=õ¥â>ÉÞ7>•Ý>Ά>2R¬>ÐN>PT&>вd>nÝ >Ï->†–’>Ëlj>•B‘>Æ—^>£>¿½8>¯¹î>·d9>ºÞp>­Á>Ä=b>£{>Ë›±>—•â>ÐÊæ>‹™Ž>Óª\>~Î<>Ô'é>f–Ø>Ò@…>O%‡>Î*>9?>Ǧ>$Ü>¾íÝ>^>´zõ>g>¨j¿=ðŸ>› >=à ×>ŒªÚ=Ößž>{TB=ÕNa>\ËN=ÛcÔ>>{7=èù¿>!#7=ýºƒ>|3> ‘•=Øhý>C†=«Öù>0‰Ï=†[1>Eë=QÄ>\àG=(JQ>tØÜ=NŸ>†žä= b>’º=:>žs5=> >©~Ü=r”z>ºiË?4îW>·ës?9È>7èÆ? u»>E]¢? M DDkkjjiihhggffeeddcED E FE F GF G HG H IH I JIJJKJKKLKLMLM/NM/N/0ON0PO0P01QP1Q12RQ2R23SR3S34S45TS5T56UT6U67U78VU8V89WV9W9:XW:X:;YX;Y;<ZY<Z<=[Z=[=>\[>\>?]\?]?@^]@_^@_@A`_A`ABa`BbaBbBCcbCcCllmm  !!""##))**++,,--../#$%#%&#&'#'(#(n#no#o)=…:ŹCm¨>¶XL¹Cm¨>ÌÔ8¹Cm¨>ãP':Œ·>þtË;ð’? ¡l<–Ç?ªã=iä?²”=f€}?"Ìæ=œ]d?*‚\=ß,¶?/¦> #U?5n>6@j?9HÔ>c8P?<,ß>…†A?=È>šÒ?>lx>¯GØ?>¾´>Ç ®?=È>ÚR\?<>éÏ?:‘½>ù̧?7ÿê?î?5ß? ¬È?1å—?½Î?/?6?*0!?©‹?%^·?#h?!Ö9?&ú"?Í?+'?OW?/ø??3? lí?5(?[ê?7[¾>õñZ?9I>å=†?:?Ë>Õ."?:’=uæÿ?:’=eo?9í<ÖIM?8Rp<˜±?6Ö<_¬?2Ü‘<_¬?/×<˜±?+Ë<õA?)9¾=-óù?(C =ûn†?(C >þ1?'ðÒ>!±?&å¥>é!?"=h>Ö?¼->Ö>þ>=ìÕ>iz=»3E>k=¤á>Úâ=™Ë›=LÉÈ=™Ë›=+=”§ø<ÁºÆ=…<ÿ<_¬=Qñð~2P>Þ>~2P?<ú>~2P?©‹>?!„F>„<Ë?#h>ˆ‡?%_>‘º[?&§ç>¡É·?'ž›>ÌÔ8?'ž›>Ù­T?'L_>ä™?&§ç>ð͸?%±;>û¹r?#Ãß?÷ ?!Ö?Èx?òr? ì?ið?½„?êÂ?<´?Ç?i©? ¬È?ò+?›Ì?!Ö9>û”?$Ï>목?%^·>ÞÑŠ?&Uf>Ð ?&§¢>Â|?&§¢>±Ù¨?&,>¢n¼?$ºC>à+?"z¬>v}÷?– >V_1?²”><¬ú?*>$C³?¡’>þ?t›=þš? £1=Üšñ?Èx=Åz‰?¤Ô=±~>ö¾.=™&s>Ó@Ä=’º¿>ŸÜ]=‘qÁ>¶K=—7ü>†*)=©6‚>ªø=Âè°>{9=×wK=ñˆ>©ê>¹E>©ê>¹E>Îeš=ñˆ>Îeš    accddeeffgghhii>>445566778899::;;<<=abbc               T TU UV VW WX XY YZ Z[ [\ \] ]^ ^_ _` `a  !!""##$$%%&&''(())**++,,--..EEFFGGHHIIJJKKLLMMNNOOPPQQRRSST34>23>12>1>?1?@01@/0@/@A./A.AB.BC.CD.DEjkljlm>Ö®<5FÔ>©§<5FÔ>¶…#¼‘C>©)d½ò>£~×½v!•>¡yн¨g{>¢¯b½Ú—¬>¬e‘¾•¼>¸Šì¾L¸>Ë)s¾ÆÁ>Þ0*¾}d>çæL¾‰*>ñž˜½êÉz>鄽¸–>ãÚN½Ç*|>ÙSU½×[Ò>ÉŠö½ÔX>Árv½À¯£>¼/D½¡ìN>ºøß½rã?>À<½€œ>Ç„Á¼Ž„­       >l7$<5FÔ>E[<5FÔ>-¼‘C>Z½ò>½v!•>úÞ½¨g{>fŒ½Ú—¬>Ò쾕¼>1¢¾L¸>VZµ¾ÆÁ>|h#¾}d>‡ê1¾‰*>‘¢€½êÉz>‰!h½¸–>ƒÞ2½Ç*|>r®s½×[Ò>S´½ÔX>Bì¶½À¯£>8fW½¡ìN>5ùˆ½rã?>@€½€œ>OQ¼Ž„­=PŽÞ¹¡Ÿ>“¹¡Ÿ>šŠ/:‰‚Ë> Ê*<L>¦X]<‚Р>©t<ñì’>¨m®=; ¥>¥¦“=s.ž> Ê*=ŠAå>›í»=•^\>u1=•^\>n?W=³>h±(=®^$>d†…=Ê%1>a¿g>…ÞE>c"ò>³³c>d†…>ðÏ‘>gMœ?d3>c"ò?ç»>ZÍ¥?®Ô>O±@? a=lUÉ? a=Er{?`š=è?¤+<úsõ?ç»<Ùª?Òg<ÂåÞ>þ³<Ùª>÷ÁR=V`>ñW=PŽÞ>íV°=íœ(>íV°>†í>ëA[>±—>çÈ~>Ü:>à$ö>jp>¼±>1‡>Ž3‹>1‡>5 t>jp=ÚÏÅ>xµ=£AÑ>±—=•^\=:V=•^\=è=Ð=È=‡zÅ<ä;.=x¼à<¬­=F½ <¡Ï=  Î<·ÉZ<ìã=r¤;v‰Ê>*1o?õá>:Ü?§§>NM»?¼ø>W­ì?c*>bq¶?ÅÙ>gMœ?#uÑ>gÿ7?']Æ>c"ò?,ÕÇ>['?0N­>O±ž?3Æ>C1W?4Ò2>3êH?5ƒ÷>$£9?5Ʀ>-Ü?5ƒû> £R?4 g=þ÷I?2 =ë…˜?/³=ÞT?,|á=×c^?(«=×c^?$Ù_=â×?K+=üâß?Çš>jp?Yk>±?N         !!""##==>>??@@AABBCCDDE$%&&'(&()&)*&*+&+,&,-&-.&./&/0&01&12&23&34$&7#$7#78#89#9:#:;#;<#<=&45&56&67FGHFHIFIJFJKFKLFLMFMNFNOFOPFPQFQRFRSFSTFTUFUVFVWFWXFXYFYZFZ[F[\F\]?{<5FÔ>üží<5FÔ>ðzh¼‘C>㩽ò>Ýt½v!•>Ûn̽¨g{>ܤ¤½Ú—¬>æZÔ¾•¼>ò€/¾L¸?\¾ÆÁ? ¸¾}d?íɾ‰*?Éð½êÉz?‰c½¸–?ç˽Ç*|? ¤L½×[Ò?À½ÔX>ûg¸½À¯£>ö$‰½¡ìN>ôî%½rã?>ú1b½€œ?½¼Ž„­       >z)­<5FÔ>SM™<5FÔ>;‘¼‘C> M½ò>ø½v!•>í_½¨g{>Y½Ú—¬>&Åm¾•¼>?#¾L¸>dM7¾ÆÁ>…-R¾}d>Žãq¾‰*>˜›Ä½êÉz>©½¸–>Š×v½Ç*|>€Pz½×[Ò>a6½ÔX>Pß7½À¯£>FXÙ½¡ìN>Cì ½rã?>Nrƒ½€œ>]Ӽބ­>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À         !!RR""##$$SS%%&&''(())**++,,TT--U..///000111222333445566789:8:;8;<8<=8=>8>?8?@8@A8AB8BC8CD8DE8EF8FG8GH8HQ8QI78I7IJ7P7JK7KL7LM7MN7NO7OP>7J4¹¡Ÿ>Ѳ˹¡Ÿ>Üm:‰‚Ë>â]i<L>çë›<‚Р>겯<ñì’>êí=; ¥>ç9Î=s.ž>â]i=ŠAå>Ý€õ=•^\>¼+Ä=•^\>¸²æ=³>µëÒ=®^$>³Ö}=Ê%1>²rî>…ÞE>³$´>³³c>³Ö}>ðÏ‘>µ: ?d3>³$´?ç»>®ú ?®Ô>©kÛ? a>>;è? a>4ƒ?`š>)f¸?¤+>"tö?ç»>JL?Òg>ƒ5>þ³>JL>÷ÁR>%<>ñW>7J4>íV°>yôŠ>íV°>Ö±>ëA[>ƒì>çÈ~>†X>à$ö>ˆÈo>¼±>Š+ÿ>Ž3‹>Š+ÿ>5 t>ˆÈo=ÚÏÅ>…O™=£AÑ>ƒì=•^\>1»ø=•^\>)f¸=Ð>#Ø{=‡zÅ>­ß=x¼à>¼=F½ >X‹=  Î>œ<ìã>(;v‰Ê ''(())**++,,--../! ! !" "# #$ $% %& &'  !=¬ºR¹¿Â">ž÷n¹¿Â">¥•2:rà]>­ç;ˆ3@>°ÿ<-÷>²Ð¶<›Ë>´#x<ååm>´ÌÚ='à¬>´#x=\ÎÃ>±}õ=|‘>®Y}=‹„">ªae=•pµ>¥•2=˜¿>„€c=˜¿>Úà=ž u>~jº=³6Œ>{Å>=Òø–>zr>ƒyí>{Å>>Õ„“>}? €z>1?,ëë>1?5…Ï>N?8•3>vz?:»²>m6ø?;%=¬ºR?;%=š3Î?:ÐÐ=‡?9ý#=tãz?8Ô±=Y?6í»=OÖr?4Ün=GåD?2àL=E@i?0|=J‹o?-éû=_·ƒ?+™(=‚bE?) =¢$X?(JI>ŽŠ?(JI>ÑÊ?&÷„>!Ê?$ûe>%ÂS?!#>%ÂS?i@>'>» „>$o•>eß>!Ê=ø£>$=°‘ >ég=š”=”?O=˜¿±=|Ó[=”&=U!z=†8ü=:ª[=gdÑ=*ÉJ=2v¸=0r<ÛOa=OÖr†?>Á´|?Úë>­Žu?Èq=ˆf>ŸîK ..//001122334455667&'((())**++,,--.'(&'  !!""##$$%%&89:8:;=‚êȹù~Ü?&¹ù~Ü?! ):MÐÙ?$Ú‰;•®?'o¥<[t›?)²<À]™?*W_=þï?*W_>v"7?*WJ>‹4ø?)_w>‘©¹?(ê>–Óé?&ÊY>šH?$5E>œ£b?!òÍ>Hª?]³>íï?È™>Hª?3>š³?–P>–Óé?ù#>_)?SÞ>‰êh?8>‚Ðc?SÞ>[«?ù#>#?¦{>Ìd?2«=âG?!‘=¾Ñ?V™=ªÁ? Ž=¡·¿?PW=—cN>T¹=—cN>“U=œ>Š›¿=¦áï>„ÌJ=¸õ¡>?=Ù=|>D,>Ìd>éL?K>ƒ{?"s>‡7¯?$Ô¨>0ˆ?&›&>–ßr?'¼`>¤ÁK?'å°>À1~?'¼[=vW?:ÇØ=32j?:u6<åAÙ?9?]<’›®?6Wœ<{ì*?2ß7=üJv?'¼>> Ä,?'iš>Î?%yÇ>BÇ?"’ >lô?²d>!?âë>!=Ý>mE=¿jQ>KC=¤ño> Ä,=’9=#³Ç=’9<ôÄŽ=‡ä½<¶Ê=i <—Í=BP•<—Í= €O<Á‰<Œ·”= ;¿&=8\«:¹„>Åa=?)¾>ǘ ?-A>È%ï?1Ör>Ç8k?5aq>Ä´¯?7½>ÀÐd?9»ó>¸ê?;o=™F²>ƒŠ>Å•h?U¢>®Aw?òY<ïÛÖ> Ã{ !!"";;<<==>>??@@AABBCCD      ()E(EF(FG(GH(HI'(I'IJ'JK'K*'*+'+,',-'-.'./'/0'01'12'23&'3&34%&4%45$%5$56#$6#67"#7"78"89"9:":;LMNLNO>¦Ï?+ '>âèv?+ '>âèv?7\>¦Ï?7\>f®˜?CT?v,?CT?v,?OWÂ>f®˜?OWÂ<%j>oÇ>Ûa§>oÇ>Ûa§>š<%j>š>_Ä]>­ ·>{\v>®LÔ>‰c>°Ï>”¬ö>´ýO>Ÿ Å>»BÌ>©”Ž>ßp>±>Ìg>·`š>Ô÷>¼Ð>àx>ÁÔc>ín˜>ÄÁ›>ùކ>ÆØÆ?MÕ>Æó? “P>ÆmÁ?N>À…?jï>¿R3? q>»#á?$´Ê>´Y?*$5>ªÕ«?/“ >¢ä?2ëß>šb?5Ù>’•Ò?7º¾>‹ƒˆ¬?:<î>t«í?:Ýy>^4?:Ýy>?'Ý?:rp>$eÛ?91W>*f?7…:>G/?5n=ßo·?2€Ö=½ý&?.ó=¡Žü?*$5=‹ÑW?&+i=l'c? ñ‚=N $?L“=6£X?r$=)BN? ¶ =)BN?Ží=9û„>÷ V=T½—>èj9=|à¹>Û 4=¡Žü>ÌÒ=Ä­¬>ÂÉ\=í¦õ>ºl¸> Ò">´’J>%;ì>°cõ>F®w>­v¿>\×?.ØV>o§?.ˆ>ŠÅ?-±ù>†uá?,‹§>&g?*;>“Ø?( >šb?$IÃ>ߨ? ñ‚>¡7é?c¼>¤.?jï>¦§}c?¸>¨6?–ì>§^?6ª>¤û3>÷âd>¡¢õ>ëÂz>ߨ>âÄ>–Ä!>Øü>ŽÒ…>Еl>…4Ë>ÊOï>x+>Çb·>]B#>Æ! >P·6>ÆŒ©>:#}>È£Ð>$ÐÂ>Ìœ—>Xµ>Ñkz> £Ó>×°ó=ý‰÷>ÞÌ~=çÌG>êW=ÚkQ>ö¡N=Ðb‘?Š‹=Ì3”?=Ðb‘?ØÉ=ßo·?ÿè=ó)?°j>KR?%-4>¬“?(­™> ÷?*ìå>1‘J?,Ûê>D,C?.E$      EEFFGGHHIIJJKKLLMDEDCDCCBCBABA@A@?@?>?>=>=<=<<;<:;:9:98987876766 56 5 !45!4!"[4"["#Z[#Z#$Z$%YZ%Y%&XY&X&'WX'W'(W()VW)V)*UV*U*+U+,TU,T,-ST-S-.RS.R./QR/Q/0PQ0P01OP1O12NO2N23MN3M3>‹‡~¼xþd>Ÿ|2¼>ðk>°jÖ»•ªø>À¾¬;íZâ>ÏÜé<Ìxê>Þû=Fýë>éÝ®=–Jà>òïÑ=Æ«›>úÌR>3?>*±A?$Ù>MÄ)?§ß>yNd?»=>ŽËx?Zy>¡ŠŠ?<¡>¹ºè>þm1>ÍÌ>øa>Úb–>îX>ê >àËŽ>ùÔ¦>ÕN+?ÀÌ>È›0?üv>½¸£?µ>²Ö? Òí>§ó†? Uó>š¥µ? >(>ŠQà? >(>gãæ? £[>A0? Òí>%^ë?g³>d,?a¥=éü`?%û=¹›²>ø8=|¦>ê =b3>Þž@=#1>Ï€<ïMÁ>¿,0<«“>®=‹<„ßH>—Ý›<„ßH>€H<µ@>F‚s=S½>-Ö=;ax=êô(=|¦=˜¶!=ÃH¡==Pì=þŒ:<¹ª> ˆr;Ƨð>Be»¼^ö>rÆp¼e¤j>‰i“>÷¶à>—Þ>öΚ>¢‚7>ôc^>¬/,>ñï>µÜ>ëQ;>¾Sr>äˆ>È›0>Ù,ø>Î y>Ï€>Òâî>Å8G>×¹k>¹ºè>Ú$§>¯s&>Ûõ>ž„~>ܶŸ>‰ Ñ>ÛZB>m65>ØT7>Hí¶>Ó}¾>%ÚÈ>Î y> ?.>ÃÄ·=Ú€>¸G[=®{>>ª^¿=Š2±>ò=rˆ(>‰·=d§>€¤ñ=hÛ&>`¢*=€…Â>AÊÇ=—€x>+k=³Q½>|[=ך6> ÃJ>\¤=ö>!O=⺫>ELÛ=Ô7?>c‰J=Î*=>‡‰Æ=Ô7?> ï»=éü`>¸…J>›>Ëß+>¥‘>Û¾ì>(ÿ¿>åßö>:Ö>ì`.>T<„>ñø$>o%œ>ö =A1ɽ,ÿ=Û™½Gq>ò [?x©>Õ›¨?ÝÀ AABBCCDDEEFFGGHHI@A @ ?@ ? ? >?>=>=<=<;<;:;:9:98988786765654543432322121010W0WVWV V !UV!U!"TU"T"#ST#S#$S$%RS%R%&QR&Q&'Q'(PQ(P()OP)O)*NO*N*+MN+M+,LM,L,-KL-K-.JK.J./IJ/I/XYZXZ[>¦Ÿ¤=‰ƒQ>–>K=ŽÁ,>Šs=™<ï>€Ÿ=¨öŒ>nå‘=¸°)>_+ô=ÈiÆ>OrP=ÝaU>>i;=ÿs~>5<ù> „ö>%ƒ[>,ù>”>2Ôü>>Fк>cº>`^D=ÿ>}†°=÷(³>Ž|õ=ïKè>£tv=ì¬ì>°%=ê >Âç´=ì¬ì>Ñù–=ò’$>â=üf>ò>h:>ÿW> I-?>Y>/? wÏ>õú?Q<>*Á2?;?>5<ù?)¦>BW¨?pR>PÁÇ?àð>c`?"¥e>nå‘?#ôÞ>z°É?%DV>‚–A?&“Ï>ŒjC?'ãE>”G?(ÞÞ>ž?)Úy>¥P,?)Úy>ªŽ ?*k>²jÛ?)Úy>¹Ÿî?)†š>À-F?(ÞÞ>Æå?'ãE>Íœ?&Ò¹>ÔSc?$ðy>Økœ?#¡>Ý©y?"<“>ãe?܈>è%?g†>ì»/?Ș>ð©›?)¦>ô˜?Š·>÷Þ®?—ê>ûÍ?¥>ÿ»z? ¶´??ÈK?$j?2(?sá>ýßÇ?o}>öª°?6>îÍâ?¾õ>æI[?f¯>ÙÖa?º>Ñù–?º>Ç}Õ?k>» â?º>ªÍ?f¯>Ÿ† ?Ò>• M?O>…P³?o‘>wM*?J>eH?úš>Rœ ?ÙX>?ï«>ýÄG>.æ—>ùÕá>!Ëè>õçx>P.>ðÜ>–Š>êÄ=÷–²>ä6¨=à6>ß „=ÐF’>Ù,=½î>Ò=®4E>ÊG=¡½>ÂÌ7=–ù>·¨¸=Œ"F>¯Ëé=‰ƒQ>©>’?;7m>›|(?;7m>’Oâ?:²>ˆ{Ý?9çø>~òp?9j1>r,?8n˜>aÊâ?6õ'>N"ß?4ýô>=Ä?2²á>1N“?1Œ>"äf?.Äz>*É?,%Œ>_‘?)Úy=ó9÷?&iá=ÚTg?"ùD=Å\ë?²˜=­Æ~?Ä1=–0?. =ƒ×€??¥=X‚(? Z =>L·?Ãå=!y?q=Þ>ÿ/;<éÕ>ðÅ<Êaã>äùà<¥¯l>ÔÂu<¨O >Æ.^< rÒ>´}Ž<ªî¦>¤Ãê<¿æ >—ƒ<ßYG>ˆ—]<ïU>Œ;= â>iÞ­=$d>RH7=6oP>B:·=Gx½>4Ì =[>&µÎ=z“¯>›3=‹´N> 5y=ž á=ô÷·=­Æ~=ÚÂY=À=ÅÊá=ÜóV=¦W—=ô‰Å=‰ƒQ>_‘=cÙÌ>&P==Ù>#ßô=«Ý>.¯ž<댼>>i;<¬¦F>LÓa[=Ž<™(>lFœ;‘w!>|@:Qµ>…Üï»TG€>Žay»”>˜Ý=»çðª>£‚ò¼kÓ>°ñ‘¼kÓ>»—!»çðª>Åé»”>Ëø}º2(Ý>ÕÌ$;cû½>á—¶èO<Ÿ‹[>î²i<á'>ö7=w€>ý=?(¥?Ôñ=nU~?sá=‰ƒQ?ÓÝ=+o? =®4e? U-=Ær¨?ï¢=ï¹Ú?:³>G?1é>±9?)>$jÝ?Ìq>1……?™×>B:·?¿S>NYÑ?ºØ>[t€?¡‰>k‚?YÊ>bJ?Uc>’k^?ý>žÞQ?Pü>©Z?ξ>²?¤Ù>¼Z\?¤Ù>ņ¢?Pü>Ъ?ý>ß¼?Uc>ìÖ¯?YÞ>ö,é?:>ÿƒ??ÈK?oÆ? ?_D?f7?$³?—ê?Ù£?2q?Š+?%??C~?C? ¨?!”Ø? ;?#ôÞ?Mc?&Ò¹?ÃZ?)2¾?$j?+}Î>ÿ»z?.pž>÷Þ®?1Œ>ðÜ?3ZŸ>éJµ?5¥»>ßÊÖ?7‡ð>ÕÌ‚?8ì[>ËPÂ?:;Ô>Á|À?:ã‘>¶YD?;7m=«2‹¼«!<>·‹¼ã?@? Ï0?B ’>ñ4ð?DArUVWUWXUXYUYZUZ[U[\U\]U]^U^_U_`U`aUabUbcUcdUdeUefUfgUghUhiUijUjkUklUlUUUU U !U!"U"#U#$U$%U%&U&'U'(U()U)*U*+U+,U,-U-.234=>?BCDIJK lllmmmnnooopppqqqrrrssttuuvvvvwwxxyyzzz{{||}}}~~~€€€  ‚ ‚ ‚ƒ ƒ„ „ „… …† † †‡ ‡ˆ ˆ‰ ‰‰ŠŠ‹‹‹ŒŒŽŽ‘‘‘’’’’““””•••––—T—T—˜ST˜S˜™S™šRSšRš›R›œQRœQœQžPQžPžŸOPŸOŸ NO N ¡N¡¢N¢£N£¤MN¤M¤¥LM¥L¥¦KL¦K¦§IK§I§¨I¨©HI©H©ªHª«GH«G«¬G¬­FG­F­®EF®E®¯E¯°DE°D°±D±²BD²B²³AB³A³´A´µAµ¶@A¶@¶·@·¸@¸¹?@¹?¹º=?º=º»<=»<»¼<¼½;<½:;½:½¾9:¾89¾8¾¿8¿À78À7ÀÁ67Á56Á5ÁÂ45Â4ÂÃ24Ã2ÃÄ12Ä1ÄÅ01Å/0Å/ÅÆ./ÆU.ÆÇÈÉÇÉÊ>Ÿ‘§?CǶ>¢±©?DÝG>¥q?F.>§¾Y?G±™>©‹!?I^ƒ>ªÌ?K*5>«yB?M S>«Ž`?Nð>« ù?PÒ…>©ò8?R¤»>¨K?T[<>¦ó?UëD>£~„?WJí> wW?Xq“>z?YX>™†?Yøu>•ÇÞ?ZO >‘úQ?ZY>Ž5u?Zç>Š‘ ?Y‹ˆ>‡$?X·ö>„?W¢b>D§?VQ­>}î´?TÎ>zU?S!%>wÓ?QUx>vxÛ?Ov[>vN’?M“>wUl?K­#>y†â?IÚð>|Õ0?H$m>€•½?F”j>ƒ7)?E4½>†>X?D>‰˜6?C'©>/“?B‡5>íÑ?B0¡>”»^?B& >˜€4?BgÅ>œ$¢?Bô!  !!""##$$%%&&'=‚œ¾?1>šj¾?1>¤“ɾ=K>¬ó¾2É>®zx¾Oñ>¬ÏÀ¾ …>ªw-½øk>¢;@½å ,>€ÿƽãG>wL½Ýª…>oEƒ½ÈC‘>l˜¢½uÀ>iëÈ=\!|>yøÿ=…»>‡zœ•G:Ë>¯›–¼:ÀE>ÆŽB¼haé>Þ¼AjC>òçߺKtÞ?¶J<Œ¢? ¼â=1S?m =˜Þ?}/=Ùè?6Û>ÙŒ? »>pu;?! >—µ? Ï>µWë?Q>Öþ?»•>îÅß?kf>þé¯?a?{m>ú¹? 5A>ßøw?‚ >ÏëJ?-<>·×ƒ?‚ >¥RË? Û¦>•G? Ó„>„U?ùY>l˜¢>öã>l˜¢?4ö!>hR5?:û>W1¸?;¦K=‚œ?;¦K=LóV?;§= ƨ?7Ö<üáÈ?2§W=&›?*¡ü> œ?)—w>Ì,?(&_>©Ô?ˆŸ>?k>ãó»>,>-(ÿ>£?½²Ü±> EG½â}=C¥Â½ã¸å='%ĽêÄ<õ[F½÷Õ?<ÞÞÞ¾-Œ¾>no>G >l˜¢>žšŽ>wL>Èõ>…åÒ>á€è>¦ŠC>÷Æ>½T¡>üƒ>Ùªa>ü&5>ñêW>ó&C?7X>Þ*6? lâ>·Ïw? h>“ç? ¼â>dì™?¥V>/¬?¿Õ=é ‹>òfË=­Ï>ÝK=ƒwŸ>Å}=gÊd>¬ó=xæô>–1^=™9>…¹}=Ò9>wL> ¤ >”Wæ>îq&>É„¡>ýŒ?dË>Í,‰= Û=?.Š=KÑË?)²<ÑÚ¾&±=jì¾9¦Ð=F÷Á¾> r 66778899UU::VVW         K KL LM MN NO O; ;<JKJIJIIHIHGHGGFGFEFEEDERDRR CR BC B !B!"AB"A"#A#$A$%QA%Q%&@Q&@&'?@'P?'>P'=>'<=' <' '( () )* *3 3 34 45 56*+,*,-*-.*.S*S/*/T*T0*01*12*23=\¡8öjU>­é½8öjU>·à~;ÖE>¾d¼<9\>ÃÂQ<¬©f>ŬÊ= …>Åz=8qç>Ñ1=k >Ái=†ak>»µÔ=–zC>¶X;=™‹/>‰ã=™‹/>†Ò=¢½ä>‚it=µç·>~O¬=ÖÝj>{>¼> Ó>{>¼>%°>u|>-Zb>†Ò>0k8>Ô=>0k8>çfÎ>2·Ü>ÿ½1>7³E? l>FC¤?Fÿ>Z1«?S|>vð(?"2>‰D2?&¬Ž>2?)½y>µ¹f?*•>ÏÉ%?(ù=>ÞYz?%†9>ïú´? ìÙ>ÿOC?¤¯?´?Õ?7ø?¶Ã? >õ÷"?÷¬>Û#+?>Ã`?>¦?u?»æ>Ž|a?3q>y¶G? >{>¼?€">€Mß?87>† à?#®X>Ê ?%Éö>´ Œ?%û>»„º?&u >Ã`?)Ÿ>Ç5q?-¥N>Ç—§?0ÎÂ>Ä·Ô?5h5>¿Z ?7kA>¹i(?8œ>°ú£?9†Õ=7FÌ?9†Õ=òß?8«<¹¡ý?6¿‡3ª?&¿?> ¢X?&]3>M?#7>Ñ?P¿>ºõ?UB> ËØ?æÂ> ËØ>Ö¯3>Cc>?¿Æ>2=éBâ>™=¾V&>Ä=¡47>áŠ=–zC=7FÌ=–zC= Yû=Xy<Ï={åú<‘ËÐ=Dµš<‹®Ê<ó.5<—é<¼X<íºM;Kæ>|Ç1>„ªÓ>|Ç1>îrC>~OA>÷sì>„…k? À>‹k{?ôQ>—¯?¸>âþŒ?¸•>ó©Ë?Ûä?á >ýÆÒ??8>öŠ? a >èPp?Ô>ÛH‘?úg>ÏÉ%?¦,>ÂÁB?úg>²¨}?qó>¡B? œÑ>•‡×?¶Ã>‰D2>ü¬H>ûñ>é³€>z>ÍW>ugº>­%‚>sßE>É>vð(>‚8¼>z>|Ë>ü5 dddeeffgghIIJJKKLLMMNNOOPPQhiijjRScdbcbabaa`a``_`_ ^_ ^ !]^!\]!\!"[\"["#Z[#Z#$YZ$Y$%Y%&XY&X&'X'(WX(VW(UV(TU(ST(jS(,-.,./,/0,01,12,23,34,45,56,67,78,89,9:,:;,;<,<=,=?+,?+?@*+@*@A)*A)AB()B(BCj(CjCDjDDEEFFGGHHI=>?>CWÅ?ãŠ>I—Ë?ù>O‚?IÔ>S±)? Ín>WJº?"zX>YÌ?$F >[&ü?&%'>[Q>?( í>ZJk?)îX>Xç?+À>TÊ ?-w>Pt^?/>K1?0fÁ>E#&?1g>>ok?2sÖ>7@©?3I>/Ä4?3jß>()?3ur> Ÿb?33½>V’?2§Z>|ƒ?1ÓÊ> <}?0¾6>½¿?/m€>#,?-éã=ýæ?,<ú=ø ?*qL=õZ¥?(’.=õ?&«g=÷»?$È÷=ûv´?"öÅ> ¨?!@@>_ñ?°>> ¢É?P>±(?)è>dÝ?C{>“Ÿ?£ >&?Lu>-«4?Aá>54ß?ƒ™><}½?õ>Ûâ+?ãŠ>ß.?ù>áÁ†?IÔ>äÝ? Ín>åÛ¦?"zX>ç—?$F >çÉÇ?&%'>çÞè?( í>ç[~?)îX>æB¼?+À>䛘?-w>âpw?/>ßÏ?0fÁ>ÜÇØ?1g>Ùmû?2sÖ>ÕÖ?3I>Ò_?3jß>ÎJÓ?3ur>Ê…ú?33½>ÆáŽ?2§Z>ÃtŠ?1ÓÊ>ÀT‡?0¾6>½•(?/m€>»GÛ?-éã>¹{?,<ú>¸:?*qL>·Œï?(’.>·wÎ?&«g>·û7?$È÷>¹ö?"öÅ>º»?!@@>¼æ>?°>>¿‡­?P>ÂŽÙ?)è>Åè·?C{>É€?£ >Í>R?Lu>Ñ ã?Aá>Ôи?ƒ™>Øu$?õ  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>Z=?C> zD?D3/>£9œ?Eƒè>¥†ï?G‚>§S¸?H´l>¨”©?J€>©AÙ?L_;>©Vý?NF>¨Ó?P(l>§ºÏ?Qú¤>¦®?S±&>£èŠ?UA.>¡G?V Õ>ž?î?WÇ{>šæ?X­ë>—N°?YN]>“u?Y¤ò>Âè?Y¯†>‹þ ?YmÑ>ˆY¤?Xáp>„ìœ?X Þ>Ìš?VøL>~|?U§”>yâ?T#ù>uæ/?Rw >sdF?P«`>r ?NÌB>qßÀ?Lå}>ræš?K >u?I0Ù>xf^?GzU>|¼§?EêT>€ÿ¿?DФ>„ï?Ccþ>‡`Í?B}>Šø*?AÝ>޶h?A†‹>’ƒõ?A{ô>–HÊ?A½­>™í9?BJ? ÈC?C? XD?D3/?·ñ?Eƒè?Þœ?G‚?Å?H´l?ey?J€?¼?L_;?Æ¡?NF?„ì?P(l?øŒ?Qú¤?$û?S±&?i?UA.? ¾²?V Õ? ;?WÇ{? Ž,?X­ë?Â|?YN]?ã]?Y¤ò?ü˜?Y¯†?*?YmÑ?Gõ?Xáp>ÿ"å?X Þ>üâ?VøL>ùC†?U§”>öö6?T#ù>õ)`?Rw >óèl?P«`>ó;J?NÌB>ó&)?Lå}>ó©’?K >ôÂP?I0Ù>öix?GzU>ø”™?EêT>û6?DФ>þ=8?Ccþ?Ë‹?B}?—9?AÝ?vW?A†‹?]?A{ô??Š?A½­? Á?BJ  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO>‚wÎ>Ø|¾>‚wÎ?â>>ƒÁ…?÷Á>… A?®>†Tû?#NI>‰ß¨?%öF>¼³?'’ >šÇe?'’S>ÀÅ¡?'’>Å›N?(M>>ÉóÇ?*¸ç>Ëâ]?.Óý>ÊÀÆ?5”v>È1?8ÌÄ>ÃT4?:il>³i„?;"I=|$?;"I=Sš?:ºb=qç?932<ó€?70 <¿‹œ?3ºW<µ=¤?0/˜<ÄÔ‹?,Rä=+¤Q?'Ò">á9?'}é>?%áÁ> x¸?"ûÝ># +? hh>&é^?æY>(3?¿r>(3> âÀ>%Ÿ«=íg4>!Âx=Ä/×>8ë=£W£>ø=•Ñ¢=24e=•Ñ¢=ý=Ž<<¿‹œ=^[…<ªïø= ˆq<¿‹œ<Åk<èÂç°1.9RÁ>¼oK;2|¿>Ä'÷;ýÜ¥>Ȫ<‘åÁ>Ê™=WK>ÉóÇ=?r>È1=h©W>ÃÕ=Ÿ1>«=—r>Š×=‹ù>ˆèu=§ÙÜ>‡ž»=¼u‚>„fk=Ö8>ƒ«=úH>‚wÎ>zF>‚w£>³K×>¾qQ=•Åø>Ì3?2>»^Ü?:îÒ<ômÆ?)¨=FºI?'À=à{®?AÇG=ìû¹?BÜÖ=÷ù?D-‘>—;?E±+>0Ì?G^>²¯?I)Ç> ?Kæ>7P?Lïª>0}?NÒ>þù?P¤P>°²?RZÏ=ú´ß?SêÕ=ð/"?UJ€=äd?Vq&=Öªí?WW”=ÈMw?Wø=¹T†?XNœ=ªO?XY0=› å?Xz=Œy??W‹=}ŠU?V·‰=dŠ6?U¡õ=NJ?TQ@=<$ç?Rͤ=-¾?Q ¸=#¶‰?OU =M~?Muî=¤k?K&=!¿¾?I¬´=*…¨?GÚƒ=7¾Û?F$=I÷?D“û=^#l?C4O=v\Ö?B ¨=ˆ•á?A'8=–ó^?@†È=¥ìN?@04=µ"…?@%ž=Ä5à?@gX=ÒÇ?@ó²>²U1?AÇG>µu7?BÜÖ>¸4?D-‘>ºã?E±+>¼N«?G^>½ ?I)Ç>¾<Ì?Kæ>¾Qñ?Lïª>½Î„?NÒ>¼µÅ?P¤P>»¢?RZÏ>¸ã}?SêÕ>¶B?UJ€>³:á?Vq&>¯á?WW”>¬I¦?Wø>¨‹h?XNœ>¤½Ü?XY0> øÿ?Xz>T—?W‹>™ç“?V·‰>–Ç?U¡õ>”1?TQ@>‘ºä?Rͤ>î ?Q ¸>Ž­?OU >ÿø?Muî>ê×?K&>Žn@?I¬´>†ÿ?GÚƒ>‘."?F$>“YG?D“û>•ú¶?C4O>™â?B ¨>œ[À?A'8>Ÿó?@†È>£±[?@04>§~è?@%ž>«C¾?@gX>®è-?@ó²    <<   ==>>? !"#$"$%"%&"&'"'("()")*"*+"+,",-"-."./"/0"01"12"2;";3!"3!34!:!45!56!67!78!89!9:@AB@BC@CD@DE@EF@FG@GH@HI@IJ@JK@KL@LM@MN@NO@OP@PQ@QR@RS@ST@TU@UV@VW@WX@XY@YZ@Z[@[\@\]@]^@^_@_`@`a@ab@bc@cd@de@ef@fghijhjkhklhlmhmnhnohophpqhqrhrshsthtuhuvhvwhwxhxyhyzhz{h{|h|}h}~h~h€h€h‚h‚ƒhƒ„h„…h…†h†‡h‡ˆhˆ‰h‰ŠhŠ‹h‹ŒhŒhŽhŽ>mÛº?C>t¿?D3/>yšw?Eƒè>~5?G‚>€çX?H´l>‚(I?J€>‚Õx?L_;>‚ê™?NF>‚g0?P(l>Nn?Qú¤>N•?S±&>zøS?UA.>uµt?V Õ>o§?WÇ{>hó`?X­ë>aÄž?YN]>ZH)?Y¤ò>R­ ?Y¯†>K#W?YmÑ>CÚ€?Xáp>=x?X Þ>6Àr?VøL>1A´?U§”>,§!?T#ù>) h?Rw >&‹…?P«`>%1A?NÌB>%ÿ?Lå}>& Ò?K >(?O?I0Ù>+?GzU>/ãæ?EêT>5&¾?DФ>;5?Ccþ>AèÒ?B}>I”?AÝ>P”?A†‹>X/)?A{ô>_¸Ô?A½­>g²?BJ>ñ$%?C>ôD(?D3/>÷?Eƒè>ùPØ?G‚>û ?H´l>ü^’?J€>ý ¾?L_;>ý â?NF>üx?P(l>û„º?Qú¤>ùÝš?S±&>÷²n?UA.>õ?V Õ>ò Ö?WÇ{>î¯ù?X­ë>ë˜?YN]>çZ]?Y¤ò>ãŒÐ?Y¯†>ßÇô?YmÑ>Ü#‰?Xáp>ض…?X Þ>Õ–‚?VøL>Ò×#?U§”>ЉÖ?T#ù>μü?Rw >Í| ?P«`>ÌÎé?NÌB>̹È?Lå}>Í=2?K >ÎUð?I0Ù>Ïý?GzU>Ò(8?EêT>Ôɧ?DФ>×ÐÔ?Ccþ>Û*²?B}>ÞÂ?AÝ>â€M?A†‹>æMÚ?A{ô>ê¶?A½­>í·%?BJ>©ð=p°)>˜£={T>Œ‡=ˆN>‚Q=˜D(>r{˜=¨:2>b…ˆ=¸0<>Rw=ÍxK>ADí=ð l>7õi>ÿA>'ÿ_>òÊ>[M>+æ`>·«>@.æ>h&>Z£>l¿>w·=úÞs>‹Ñ–=òãu>¡©=ð:u>®f´=í‘v>ÁÀ=ð:u>ÐQŠ=ö68>àœ¼>@>ðçå>hà>þ g>d@?Öê>]Î? (J>!XÓ?>-QW? g>7õi? é>EBz?^*>Sãý?Ü>fƒ?"®ñ>r{˜?$r>~t#?%Wò>„Œ?&¬u>Ž…Ø?(õ>–€à?)V> z¨?)ÿ¶>§Ëm?)ÿ¶>­o?**I>µt?)ÿ¶>¼i=?)ª•>ÿ?)V>É ?(õ>в.?&ìS>׃L?%Ô>Û«@?#®Q>àýE?"D>æÎë?Ûc>ë¡%?\ì>ðHà?³ì>ôFf? é>øCé?aç>û—/?cÆ>ÿ”ª?e¡?É? h ?r»?jœ?[?ÂÜ?pÜ>üào?p=>õ£?|>픟?Ä¿>äï`? nÿ>ØL? Ä >ÐQŠ? Ä >Å­ƒ? =>¹ ¸? Ä >§À+? nÿ>'? Ý>’x?C>‚‚?pR>qež?Fk>_À?ñë>L'…?Èz>93d?ɸ>'èá>ý•î>›Ð>ù˜h>÷Å>óœ#>»>îJ$=èn>磛=Ð!K>âûÝ=À+A>ÜUT=­Œ*>Õ/(=•ÿ>Í ‡=I#>ŸÁ=…¥>ºjz=vC>²or=p°)>«Èð?;Ÿa>Ñ¢?;Ÿa>”‚?:õ#>ŠˆV?:Jã>c?9Ë9>uά?8ËÛ>e.Ž?7LÁ>Q:þ?5Mÿ>?ðn?2ú>3÷ê?1P}>%VY?.üš>`H?,S™> gÄ?)ÿ¶=öà?&é=Ý›_?#=ÈSM?°Î=°bþ4ì<íW¼>ï“a<Ík©>ãš×<¨,/>Ó%<ªÕÂ>ÄY<¢Ûb>²d3<­•>¢n%<ÂÇu>”vß<ⳉ>…ÕQ<ò«(>}^D= óß>cÉ=&ü>KÒt=9,l>;‡>=Jw=>-äô=^i>˜–=~VŠ>KŸ=Í->ªÁ= l3=åin=°b<=ÊÏS=ÃC=µ‡A=àD^=•›=ø5s=p°)> gÄ=@Î >_œ=;X>&U­<Ô±¨>1Nä<¢'M>ADíOæx;´k­>^ˆ9¢¹Ô>oÒ‹» r>Èœ¼âa>‡ßV¼O» >„˜¼eï>›(¦¼‡Éž>¥÷D¼—¿ë>³™„¼—¿ë>¾gù¼‡Éž>Èᓼeû>ÏI¼%*Ç>Ù³»ÀK>äúœ;>˜W>ëË·<*Ê>òG§<—ƒZ>úB«<ì£b?t˜=Þ?ÇØ=Kqü?pÜ=p°)?Ùù=ŒK²?  =– ? l•=¶1”?å=àb?hÃ=ýZv?g‰> N¿?fG>DÖ?ê>*‘Ú?ä<>;‡>?!>GÔî? m>U!ÿ?÷–>em5?¶p>} ? µÏ>Ï?!`>œqã?!µ1>§ë?"4×>¯åÆ?" Q>º_8?" Q>îÀ?!µ1>Îý ?!`>ÞHØ? µÏ>ë•Ü?¶‡>õù?÷>þŠ?c/?jœ?¹Š? ½??¤ò?%Ì?e©?cÆ?É? &?½F? I?j?/?«Ì?!šK? c?$r? Y(?&ìS?Å_?)Ux?[?+©V?É?.§|>û—/?1P}>óœ#?3¤`>ìË-?5øK>ã&Í?7á¼>Ù?9K€>Î^ ?: >ÄdB?;JE>¹ú?;Ÿa  !!""##$$%%&&'()*(*+(+,(,-(-.(./(/0(01(12(23(34(45(56(67(78(89(9:(:;(;<(<=(=>(>?(?@(@A(AB(BC(CD(DE(EF(FG(GH(HI(IJ(JK(KL(LM(MN(NO¥¦§¥§¨¥¨©¥©ª¥ª«¥«¬¥¬­¥­®¥®¯¥¯°¥°±¥±²¥²³¥³´¥´µ¥µ¶¥¶·¥·¸¥¸¹¥¹º¥º»¥»¼¥¼l¥lm¥mn¥no¥op¥pq¥qr¥rs¥st¥tu¥uv¥vw¥wx¥xy¥yz¥z{¥{|¥|}¥}~‚ƒ„Ž’“”™š›WXYYZ[kl¼jk¼j¼½ij½i½¾i¾¿hi¿h¿ÀghÀgÀÁfgÁfÁÂefÂeÂÃeÃÄeÄÅeÅÆdeÆcdÆcÆÇcÇÈcÈÉcÉÊbcÊbÊËbËÌbÌÍabÍaÍÎ`aÎ`ÎÏ_`Ï_ÏÐ^_Ð^ÐÑ]^Ñ]ÑÒ\]Ò\ÒÓ\ÓÔ[\Ô[ÔÕ[ÕÖY[ÖYÖ×YרYØÙWYÙWÙÚWÚÛVWÛVÛÜVÜÝUVÝUÝÞUÞßTUßTßàTàáSTáSáâRSâQRâQâãQãäQäåPQåPåæPæç¤Pç¤ç裤è£èé£éꢣê¢êë¢ëì¡¢ì¡ìí¡íî ¡î îïŸïðžŸðžðñžñòžòóžóôžôôõœõœõö›œö›ö÷™›÷™÷ø™øù˜™ù˜ùú˜úû—˜û—ûü—üý–—ý–ýþ•–þ•þÿ•ÿ”•””’”’‘’‘‘‘‘       Œ Œ  Œ  ‹Œ Š‹ Š ‰Šˆ‰ˆˆ‡ˆ‡†‡…†…„…„‚„‚‚€€~¥~gÊä: q“>h!_<Ö>LçÍ<û¿Ô>>=¡>,¤$=(äÙ> Šº=Sé§>Ø=™->2œ=ºž >^aÐ>m'z>öøg>m'z?  &=²"? ¢E=™-? L<=d ›? ô=3¦?A©=¡?<û¿Ô>öLQ<û¿Ô>öLQ: q“?D}: q“?Cÿ <ðþ‹?>Ì=bc?8ý9=.E`?3œœ=^ªó?.è= ª?+5§=ÚáÀ>ÉïE?;V|>½Õå?;V|=ÍxK=¿þ°=²•B=”ùÂ=•â=il=i|`=3¦=3Í=Âç<°—ˆ=@’u¢>µÄù?£b>ð?£>¢ !!"          # #$ $%# % $%$<Ù×8>åÀÊ8>ûÒˆ:릭?F*;ö‚s?é–<¦v!?!=ìº?žÉ=DVQ?)\£=«FÌ?.ˆÕ=í|}?2Sê>›d?4 O>Cüù?3y>m^”?0š‚>‡íH?+Æ—>™ÛØ?&B>¦öy?ûe>³`?\e>½i? ½d>Ãíþ? ×>Åÿª?‘O>ÊÓ™?òŒ>Ù{t?%9E>è{«?)\£>øX?*½Á?5;?)á?µe?%ÿÖ?Ž?´Ê?&–·?b?,÷â?Ï?3È?v¬?7$'>ðÉÂ?9Ž>Ûhg?:–ñ>”mmI>µrA>ºþ>¶"Î>ÓÒ>>³`>ì¦e>­Ü>ûÒ·>¨Wœ?'<>Ÿ`Q? \E>’E¯?Ï>…Û˜?‘O>c¶¸?‘O>>x}?02>]¢? Æ==þ ÿ?òR=ÆÝ'?d=¨„„>ûÒ·=Œî(>íVó=s<æ>ÜɆ=W¦z>ÃDÎ=G >­2Þ=G >•¿Õ=L>†“‡=W¦z>xvA=m¸x>p/Ž=‡i©>mmI={–>nÎk?.,Þ>´y?.,Þ>ÑÀ‘?-$>å=?+Âê>ô<Ž?(P?«™?#Ôz?×Ë?Oþ?òR?Ë„? ý?åë? ´Œ? ¨ ? \E?¹—? ¢à>ù ?ˆ[>î°¸?dÿ>åâ>ùv>ÜÂ(>ë¥>Ö¹,>Ýz>ÓO>Ìì£>Ñ¢>ºM‚>ÐX>mŧ>Є=BBCCDDEEFFGGHHII//001      SSTTUUVVVWW99::;;<<==>>??@@AAB  !!##$$%%&&JJKKLLMMNNOOPPQQRRS!"#./I-.I,-I,I2+,2*+2)*2()2(2]'(]']J&'J89W8WX78X7XY67Y6YZ56Z5Z[45[4[\34\3\]23]<™‰Y<™‰Y<ãSø<ïq<í‘h= G¿<ó¶F=k|þ= C–=^>=¥ã=¨ñ²=49X=©tÅ=5?}=¸MÛ=KC–=»ã\=Që…=ÇëŽ=n{=ÌEª=záH=׉F=“÷Ï=Ù•ƒ=™‡=ߺm=°£×=å\+=Ö=èñ¬>Äœ=étÌ> ~ú=étÌ?^5=étÌ?dZ=æåo? õÃ=âIÉ?&V=Üé{?(¼j=Ü$ì?)‡=Ó/?+Sø=ÐáI?+× =Å»?-™š=Â:?.{=³p¬?/…=®“}?/ïž=‘çu?1©ü=jvÙ?2Ðå=…/?3× <÷¾˜?4“<‰' ?4‹D<‰' ?;…? r,?;…? r,?•?ë?•?&e?|î?Ä? hs?E?n˜?t8?7L? ¹? Z?  ?" J? .˜?&Àƒ? ¹?(ƒ?gð?+÷Ï>ýÑé?-¸>ìY?/ß;>èÓü?0A‰>ÚàE?1‡>Á"?1xÕ>²ð¨?1hs>¨qª?1G®>¡%ä?0õÃ>žy?0›¦>o¡?0ƒ>šž¹?/× >™wÓ?/|î>—½t?.Àƒ>–Ç«?.5?>•c?-G®>”üñ?,›¦>“”?*MÓ>“s·?)ë…>’ð¨?'®>’¯?#÷Ï>’¯>ËC–>’¯>¸Qì>’¯>Ý/>’Ïà=ß¾w>“2*=ÌIº>•³=¤Ý/>—['=ŒIº>—î›=‡®>›l=féy>›æg=_;d>Ÿ)ü=D›¦> ‚ =¤yØ=(r°>¦ea=!ÊÁ>¯ÍÓ= =q>¯Þ6= =q>·ŒN=>Ä8R<í‘h>È]<éxÕ>ÏÞ6<ãSø>ÏÞ6!#" #!# ##CCCCCCCCCCCC#CCCC DC D D ED FE F F F FFGFB#CHGA#B@#A?#@IH>#?=#>JI<#=KJ;#<:#;LKML9#:8#9NMON7#8POQP6#7RQSR5#6TS4#5UTVUWVXW3#4$#3$32$21$10$0/$/.$.-$-,$,+$+*$*)$)($('$'&%$&<“¾©?F-³º€¥­>Éã—?;Êw?!a6=³1=ã 1=³-<>¿?:y<™¹ºts?¶ºts?+rl>DïL?"S>DïL?*¦>.z±?r=ý…·?!Ã=“Ž? Ðô=ž?&U=‡¡n>úCÅ=s1>ß™G=bYŸ>ŒË7=bYŸ>ƒ«×=xÎ->yNÂ=>’>s±›=©PU>o{À=Þ¥e>o{À>´’>ÒD>´’>á´5>´’>ðp¼>±Ã~>úCÅ>¬&W>ÿ-J>¢SQ? f>•±¸?r¯>‰ÃÁ?Ì€>€¤a? ëâ>€¤a? ëâ?îö?€(?îö?Ì€>þ@Å? f>íiI?JI>á{V>úCÅ>ÙÃA>ñØ >Ô&>çQ\>УÚ>Ø”Õ>Ï<’>o{À>Ï<’>o{À?-pî>åê?-pî>ö ê?-?WÂ?+¯Ñ?›?)”â? w#?&lz? ù[?"o?Çî?åÐ?‰ ?•?<²?;=?\?Q­?ôÉ?:Æ-<™¹?:Æ-<™¹?2´B=1š!?2´B=‹S‚?2´B=¯Ñ?0ó'=Ñý?-ÊÁ=߈Ô?);=çô™?#æ=푹?™t=푹=“Ž=å&=>’=Ñý=FG»=¯Ñ=^~=‚çÅ<ú™t=<ÔŠ<ï_N<™¹<ï_N <<==>>?      !!!"""###,-.,./+,/*+/)*/()/'(/&'/%&/%/0%03$%3$34#$7#778899::;;<$45$56$67012023<<´: Á? …?: Á?'~$>NfE? Ú>>NfE?3N>"“?6]>³?eú=Ðñè?ëˆ=¥È¸? Ež=‰?L¼=v’÷>÷ÿÀ=kó>å%=g÷¾>+ôú=f£8? …??5j`? oÎ?:¥=a«¯?:¨Ù=Lö?í=ˆ½x?í=˜­6?8ø=«Då?/Ñ=ÐtI?"Ò±>!¶?("™>±H?+tŠ>9<¹?,È„>e?-Ç€>ôÍ?-Ç€<‰ðå<Ë¢»    <ŽD·<ŽD·<áŸ<<ùÿP<éÀ©=lH<íÑ_=lË==ŽG»=Û‚=Ò-=f=¥§Ò=+Áð=©6r=0ÖÕ=¹ºM=LG¡=½‰ð=Thë=Ê==uòË=ËBW=wû&=Õ­=Ó:=Õî<=‘UP=Ý t=§±:=â ^=Ç´Ä=ä(¹=ä«Ù=å,à>[Ü=å,à?Ì4=äªÍ?À=áž=? åD=܉`?%¨Ö=Ö±R?(  =ÖpO?(3H=ÍJ®?*|¯=ɼ?+/Ž=¼¬?-7è=·pß?-ÊC=¦)è?/q=£`?/²=‹|F?1±=‰´î?1(=e­Ú?1ë:=Wc?2¾ž<õîš?2ß%<švÙ?30s<švÙ?:ç>ÁÜ€?:ç>ÁÜ€?30s>ºž¹?2ïg>·?2¾ž>¬#5?1û|>¥¨’?1Õ>Ÿ„?/º8>žìë?/‘‘>›^I?.D7>š9–?-¹ÿ>—M’?,5>–Ie?+P>”?(öj>“}é?(3H>’Y7?%Ù¡>‘uŽ?" ö>‘ü?:K>ów?Ì4>ów>Ìê,? Æ>Ìê,? Æ?Ì4? µÙ?B3? d‹?" ö?ât?&kø?P?(Å¡?Kì?*þÅ?ê]?+±¥?ŧ?-'¥?Ë?-êÆ?”©?/Z?¨à?/‘‘>ý¢%?1Õ>ýPØ?1(>ö3œ?1û|>ì*Y?2¾ž>èýL?2ïg>â£4?30s>â£4?:ç?M[á?:ç?M[á?30s?I¼ý?2Îá?Gåm?2Õ?CÔ·?1Ú÷?A)¾?1(?=³…?/²?=Šà?/¡Ó?;Š£?.LX?:ð*?-ÊC?9Y£?,5?8çÏ?+€Ü?7¢—?)Wû?7aŽ?(µ_?6žl?&Ku?6Ž'?%éã?5ëŒ? åD?5ª€?Rx?5š[Ü?5ºÃ=ç¸[?5ûÎ=ɽ?6®®=§±:?7šy=’%?7¢—=Q"?8ïò=wû&?99=qâ?:øN=PX5?;aþ=J?F?=Šà=.LQ?=ìp=*½Á?@ø÷=Y|?A)¾=UP?D¨=w?IÍA<éÀ©?K6<å¯ó?M[á<áŸ<?M[á>â£4>â£4<áŸ<>è£<éÀ©>êÄ<íÑ_>÷7Ê=>ý‘á=UP?Õy='/?ˆY=-ÊK?WÉ=BŸà?3N=OT ?í=jÄÕ?úž=tîŸ?R=޳?P=‘×g? ù=¨3@? …=ÐXJ? µÙ=ötß? Æ>[Ü? Æ>´Æø>ów>´Æø>ów>[Ü>‘ü=Ù}Ý>‘U =Ç´Ä>’y¿=¨µg>” Œ=‘UP>–»>=vtô>–Ë|=uòË>™Uí=Xy¤>™Ø=Thë>V=<É>žÌc=2ß0>¤´«=ô–>¥É=f>¬æY=>·Q&<íÑ_>ºßÆ<éÀ©>ÁÜ€<áŸ<>ÁÜ€#%$"%#!%" %!% %%77777777777%7777878 8 …8 †… † † † † ††6%7‡†ˆ‡5%64%5‰ˆ3%42%3Љ1%2‹ŠŒ‹0%1ŒŽ/%0.%/Ž-%.,%-‘+%,’‘*%+“’)%*”“(%)•”&%('&(–•—–tsrIKJutrHKIGKHvurFKGwvrEKFxwryxrDKECKD98…„9…^„ƒ^9„^:9^;:^<;^=<^>=^?>^@?^A@^BA^CB^KC^ƒ‚^‚^€^€_^_~_~}_}|_|{_{z_zy_yr]K^`_r\K]a`r[K\ZK[barYKZcbrXKYdcrWKXedrferVKWUKVgfrhgrTKUSKTihrRKSjirkjrQKRlkrPKQmlrOKPNKOnmronrLKNMLNporqpr?k>¹ŸÓ?_ >ÙÝ? H¸>Xtµ?Ng> ?Gð=Ð×Ù?h=·¸¢>øMó=«°>ôÍ?=fi¬>ë¥=*†”>æ x=±>Û‹:<Ô$_>ÖQ÷<¼Ë¾>ÈW<›LÂ>Ãã<šH÷>µ"…<¯™Æ>±ðo<ºÄ1>¦Ðâ<ò—Â>¢ñ¾=­>˜Žý=;F>‘¼³=jy>…C=¯ß>$ö=Çö+>nC> Ò*>li6>á‘>Yù…>L‡}>NkÍ>Š+ê>I8>¹ŸÓ>LtZ>ä þ>Uã?‚¥>h¹;?› >xU@?\@>€Hµ?"É>>Š«z?)j`>ŽK­?+99>—ƒ‰?.÷i> p?0­ë>§h?2ö“>¬æc?3¹u>»(O?4½M>¿•?4ÍŒ>Íæ¨?4ç>Ñ(y?3ɲ>Ü8L?2ö>à'-?1™>êz1?-ãT>ñ\5?*øB>ýÆ'?#¼Ø?ùö? ¡?ôH?»ˆ?bn?·®? ?}ô? Ò>꺹ÀR<­‚û>ßû<¼Bì>ãà=&fª?³Ê=:Ž÷?×±=žkÆ?Rc=°]–?¯#>@G?#¤{> Åk?&Ø¡>?..?0#Ü>GJÜ?1`>;?8c%>„Ôê?9 ©>£0²?<Ü>ã\?>1%>ätn?<ËÛ?8è?8Üï?K›?2L ?^9?0}2?×ä?&èà?!|a?$o|?+ÇŠ?Im?-æO?5Â?5´S?Ž0?7o?A¯?;ÉÑ>åç»?<7ô>á·×?=è–>¼Z-?=ðv>¹ÀR?”Rd?;éK>?7-æ>^k[?6"u>S¢t?.sè>aÈ?+îâ> H…?!Ë =±`•?Z =—=}?à_=AE?èî=ø/?1 ;ª†Q>þÁà;2¤˜>àf¼Fòc>¿ók¼ŽÅ>Ÿ"X¼Bâ¾>$ö;c^t>IÀ)<îˆY>=u³=5Ê> Íø=–9“><=ª†”=°Û|>Y = ¢#>gR==‚>Nð¨=+Ï.>Yú}<Á-w>Œ3š<²mÌ>‘F×¶´Å>{K>Ú5¡>‚À >Ú5—>‚äU>Ø_î>‚ü„>×zÑ>ƒur>ÓT>ƒÖ:>ÑB‘>„¯÷>·Ï>…_]>Í0$>…•É>ÌÔ~>†Ê>˪¬>‡è>Ë,¥>ˆ}Ã>Ê0¦>‰ø>Éàr>жW>É4œ>ŠìÃ>É)'>mñ>È«!>‚2>È}N>’pH>Èf^>ð’l>ÈeÄ>óD>Èq8>ö>">Ȫv>øj>Èï+>ùÉq>ÉJÐ>ûdÂ>Éðå>û¹r>Ê$n>ýW>ËF>ýlõ>ËY¼>þ›h>Ì”¾>þð>Í ?9Ÿ>϶?9Ÿ>ϼJ?ÊÍ>Òéš?7°>ÖÎ2?IÙ>Øî?n%>Ú›Ý? Ž>Ú›Ó? O>—Ÿ™?mè>—ŸŸ?IŸ>™çÚ?7{>›©?Ы>žêÒ?Q§>¡±>ÿ8d>¤=ü>ýå°>¥à>ý©/>¦>ü&>§Tg>ü÷>§_ß>úµ>¨(U>ú~©>¨Dø>øïx>¨È³>ø×F>¨Îp>özc>©5Ž>ôf>©Wë>ñ;˜>©nÛ>’p >©oy>š2>©X“>m´>©*Ç>‹¼>¨¸<>‰oy>¨#S>‰Q<>¨Þ>‡æL>§C÷>‡<ð>¦Ë±>†“>¥¡ß>…•†>¥~>„ÁÊ>£8>„—t>£7M>ƒ½ª> “u>ƒ\â>žb'>‚ïù>š[5>‚ãÙ>™v>‚¿‘>— s>{J>— v54kj5k65ji6j76ih7i87hg8h98gf9g:9fe:f;:ed;ec;d<;cb<c=<b>=b>bab>a>a>aa>>?>a`a@?` @!@ `"@!`#@"_`_A@#_$A#%A$__&A%'A&^_ ^BA' ^(B')B( ^ ^*B)+B*] ^CB+ ],C+ ]-C,]].C-\]/C.[\DC/[[0D/1D0[2D1[ED2E23E3Z[ZZZEYEZFEYXFYGFXHGXWHXIHWVIWJIVUJVKJUTKULKTSLTMLSRMSNMRQNRONQPOQ±³²’‘°³±“’¯³°”“®³¯•”­³®¬³­–•«³¬š™˜}¢¡}£¢}¤£}¥¤}¦¥}§¦}¨§}©¨}ª©}«ª}³«}¡ } Ÿ}Ÿž}ž~}~œ~œ›~›š~š˜~˜—~—–~–~|³}{³|€€z³{y³z‚x³yƒ‚„ƒw³x…„v³w†…u³v‡†t³uˆ‡s³tr³s‰ˆŠ‰q³r‹Šp³qŒ‹o³pŒn³ol³nmlnŽŽ<™t¡ºã>®t ºã>®t <ê‘S>£™7<ê‘S>š¨=#„>š=kÞ>ˆuê=0ü’>€ÿh=aÕæ>xÕÎ=—–Ñ>uȃ=Í/®>uq>?!­K>w#‰?'Èo>~™w?-Kž>†—ù?0Û}>`ú?2wõ>–µ?3|z>£™7?3þ¹>®GÁ?4**>­ð½?;Ç<”–?:òû<”÷?3’0=I[?3Q=oŽ?3Q=ŸÎÙ?2¹=Ëç°?0šN=áž=?-5ë=ïÝ©?(øl=øê?"œ*=ú ?6Ê=ú =Ïæx=ñåÜ=™ŸÓ=ç ù=w‹½=Ü0=F²=Á Ã=F»=ÅP=á=w³<ò´˜<œ.º<çØÍ !!""##$              !<¡sùº>7ß>«Qº‹A>«Q<èñ×>Ÿ‘Å<ñ.Ç>“ºL=ò‹>ŠÍÀ=ê1>„ =6_–>~D{=gÌ}>v©=”Ù”>p‰Â=ËÄn>p‰Â>¥”ï>‡_>°´>­ ‡>Œ.·>ÛΉ>0£?A=¸‹Ê?/=„_á?ÞÍ=QÔú?×2=0áµ?Ü= pl>úç<óí˜>àœÛ<ñ.Ç>àœ¯º‹A?Fu%º‹A?Fu%<óí˜?AþÜ= pl?<)= h?7=A[W?1Ý=mJ^?,_3=—˜…>´­›>×á?vß?(ñD?¤}?-g‹?$"^?0~^?) @?2?/v?4Dè?9j*?5Lƒ?9j*?; A>áÐV?;"=>áLi?4œÅ>îWd?4œÅ>úç?3í ?Çý?1ÝÔ?'v?/â?'v?+°6?Ü?'‘Ë>ñÆ?–>ÎÓ? µL>—(ú>ßîp>pâ>Æ0Y>pŠ&?Çà>qé=? ´r>wg%?*Pº>á.?/â>ˆÌ?1ÝÔ>Ïe?3•0>Vœ?4Dè>«Q?4œÅ>«Q?;"B<žº*?;8=<¤9U?2åo=;Ñg?2åo=’œ?2¹~=³š?1Çã=Ñ2Ä“=ò/ =ÆF=ç3Þ=ŒœÂ=Öº.=QÔú=µÆã=lQ=‡Û<þéU<¡vÞ<ü+ GGHHI      "#$"$%"%'!"'!'( !( () ))***+ - -. ./ /0 0178979:7:;7;<67<6<=56=5=>45>4>?34?3?@23@2@A12A1AB 1B BC CD D DE EF FG+,,-%&'?:ÛY<Ú¸c?:ÛB¹¨ÁU>Áœ—¹ŸN>ÁœÆ<Úß/>Ìtµ<àØG>Ñðž<æÒ¨>ÝH1=^‚>ãö=Sˆ>ä#!=Pr>èÝ=%Á`>ê~t=18½>ìm =@¬á>íûç=Q &>íûç=RÐ>ï+=fÎ>ïÚ”=z™>ïÚ”=|t>ðZL=’1>ð:h=›éê>ï;9=²YL>ì]~=Ö¾S>ê?!=í­u>é?ì=÷&X>›\o>ú>f>'°=ø­[>% =í5ù>!¢ƒ=ÕGÓ>å=±b®>å™=”÷Û>$†=}>ãñ=oI> ¢Ž=[©Ò>"àÏ=J6 >&]=:BI>)ûu=,Ì>*ÚÎ=*Mô>4ó4=Þ>9Ï“= d>Gå<øÝ>I.<öÞ3>do½<àë®>j+u<Þì>u¢ò<Úîc>u¢¹›A:<€k{¹•+<€n`<Û<Î4·<á­<ôP<äþ7=:Ü*<üêl=`@}= j\=f»¹=h=„‘:=$X=‡O/=(U=œ?æ=P6Ê=¬4L=x£=»)€=”yö=Ä"þ=¦ln=Ói=ÉÑå=ßà=ç;Ö=ß}=èºÇ>²ŒÛ?;€™>À¢_?;€‚?#œú=ï¦ì?&:ñ=¿J™?&ºŽ=¶Q;?()t=ŸáÊ?)X=í…?+6=x÷»?-¯=V4?/Sÿ=6(f?1²5=;/?4@J=JW?6®x<ò¨D?8 t<è®ûIHIGHFGEFDE?>@?A@BACBDCD>>    >  >>   =><=<)+*(+)'+(&+'%+&$+%#+$<<;<;;;;;;; : ;9 :9! 8!98"!8#"8+#7+86+75+64+53+42+31+20+1/+0.+/,+.-,.<’ÏU:ìÀ>‹¯É:ìÀ>‹Ýù=F0>€&W=(@>jªý= í >Wë›=;$>IÎ=;³>=ö\=tÁì>6Ày=Ÿß²>0ûÃ=ÐçÊ>0ûÃ?œk>ë–G:ìÀ>òù:Ó•??³œ?ÒQ??³œ=â5ø?>û =±-Ü?<ÑB=z†·?;Ë=Fœ$?8!k=;$?2¹=(@?&vø=(@?&vø:Ó•?vÜÂ:ìÀ?vóõ=ÔÔ?pÒØ=F0?kSS= í ?fÿÉ=v|?bÃ@=BHR?_Éá=z†·?^X´=¨†¾?]CÒ>@Ä?]‰?ˆ·?^X´?%Fá?_m˜?+ š?bOó?/_#?f£€?2A?kSS?3²®?vÜÂ?3²®?w ö?;-Ò?@ê?;Dâ?øH><W>nþ?;Dâ<’Ìq?;-Í<’ÈÅ?3ÉÃ=~c?4=e'?3²®=•/ä?2ú=º® ?0ÐP=Ϙœ?-íô=ážÞ?)šk=èÔj?$ê”=붸?É=붸=í¿c=ãµ=´0=ÝJò=Ž‘†=Îß=]¯=½ò=;³=”wÞ=θ=RhÓ= u=ùß=·j<’Ò5=ÔÔ99::;;< ( () )2 2 23 34 44556677889     ! !" "#$%&$&'#$' #' ' '()*+)+,),-)-.)./)/0)01)12‰ÓÏ7ΑÉ>‰ÓÏ<ø>sC=ª?>`ô¯= î{>U°y=ÔÇ>IÂ=9ÿP>?( =amô>8p=²™>3ãÜ=ÂeŒ>.Aº>ÿf>.Aº?Ä?' úº¯§"?./Bº¯%?./B?ùè?.‰d?#Š?/Ķ?)-Ú?1´•?-”}?4ßÂ?0¿«?8e?2Üw?Vr>M=P?:õ~/­7<ËZ¹%1?7!%¹%1?7!%>/ª?0Ä¡>/ª?,Ü]=ÿTY=M =>=Ð=,‡>/ª>.¾Ò>ó#6>=ã|>ó#%>>O>ïÊÝ>>–æ>î)->?ýÆ>ææn>Aæ>âÒ2>C¢æ>ÝØ0>E«j>Ûe >FLå>Ú¾’>I,Â>ØŸ‘>JɈ>×¹Ì>Nì[>ÕîW>P­ >Õ\!>Uƒv>Ô"Ó>V$ø>Ô ö>]“`>Ó(1>c¾½>ÒÔ¢>lpJ>ÒªÒ?ïÇ>Ò©¸?ïK>Ò¾™?$ >Ó&õ?Ák>Ó¤C?ŧ>ÔKM?öÅ>Õz? 5˜>ÕØ? >Q>ׄ7? x§>Ø þ? Xÿ>ÚJI? —Î>Û%•? ¶ý>à6? ¶ý>à ¡? Žc>åÕs?/ì>ìîl?JÞ>ï7/?€µ>óݘ?dÍ>ó݇?dr>sz0?€X>szD?J…>{ÌŽ?/ž>€B? —>‡ c? Ú¦>Œ<? Ír>¾²? Ò3>“¹? ¥R>”+ß? †->–_Å? }1>–t¬?tw>—â+?L>˜\?#ñ>™”?>™?QP>™Ìþ?Æw>š ©?m?>š5u>lo¢>š6–>dÜ>š Ý>]’¸>™¹X>Vl >˜è†>Q¹Ž>—Ù>Q_Ó>—Ä'>M*ð>–AË>K4u>•f…>GÖó>“G‡>FL>’#&>C×Ú>|g>CZB>ŽßÂ>@Ô >Š”>?´ß>†8>>q³>}q1>>MÉ>z-Ñ>=â >s}A>.½h>s}c?-¦Í?7«?-§T?;,?&6»?¥?)¸?8Œ=qèæ?;.…=ÁÒž?:³=qàƒ?:á=¦a?:ÍMON.-,LOM/.,KOL0/,JOK10,IOJHOI21,GOH654>=?>@?A@BACBDCEDFEGFOG=<<;;::999887766443322,,OO,,OO,O, ,O! ,O"!,O#",O$#,OO%$,&%, O'&, O (', O )(, O O  *),+*,PQRPRSQTUQURTVWTWU?Ê÷=Êt?'5D=åSÕ?/æ>#¼%?6¦Ç>Yæ¥?;L¡>‰éï?=ºh>¨ d?=àÌ>Æ™·?;¾Ö>äÔZ?7aþ?þX?0åÂ?­{?(s?!W?>ý?& f?Š?/&Ú?ï?6:Y>ï˜E?;7>Ò׋?=¤Æ>µ®ã?=Í>˜Ö?;ä>z'?6þ‰>EÊR?02À>B?'XZ=Ù1°?§/=“ªÎ?b =;K0?Ø<áÛ>è¹g<”!À>Ê—ò¬ Ÿ<Ó“ì>Ï=/—ˆ>aMJ=‹­°>*¹=ÏCº=ñ‚ª>qç=š2<>?E¿="¬Û>rö•«»ãÅ7>±ße¼Šc·>ϼk>ëàμÎt?Ùð<Èz?èâ=îÍ>âÆ=. >ôn¾=yI…?k1=±|? ÊÂ=ô>?'•>!¢Í?Y‘>NP[??÷>?Â0>™Tb?Ðm>³í?d>ΪÄ? >èã¥?/4?ùg?‡›? (? ¦6?´?°? >û¢'?'zh>êuž?-/>ØFæ?0’†>ň‚?2ý>²°®?1x(> 6%?.ÈÌ>Žh?*Õ>|K‰?#yè>^ÍK?!­>EYþ?@¼>0’ ?U> ø|>óËÏ>ï›>Ùþv>¶®>¿eY>hK>¤¨>ùÚ>Šo9>);‹>bÀ>;Ùß>41>S_z> Vå>o8=Ìr¯>‡Z =‘x->˜†ˆ=Jcú>ªµG=nz>½s¤<òí¹>ÐK|=g 00//..--,,++**))((O10 21 2 32 43 4 54 65 6 76787989:9:;:;;<;<=<==>=>?>??@?@A@ABABCBCDCDEDEFEGFG HG H !IH!JI!J!"KJ"K"#LK#ML#M#$NM$N$%ON%O%&O&'O'>ÑUš?:Ñ>ÑUš?3î.> “?3½8>žzÅ?3œ’>•(@?2ùW>ëƒ?2vÂ>‰‡Ð?1Pô>†c_?0dG>…ŒÙ?0Õ>‚Ó©?.Ì7>¬¹?.‚>~½?,.ý>}F%?+bö>z!»?)/Õ>yì?(æc>wž2?%…J>vÇ¡?"·>v\j?Ã>v\j=þö>v’ =àñè>wž2=ÀÏ[>xßó=©X§>z=šÊ>}–™=‰6>~‡î=…¤>i®=m/Á>‚÷=fŽ?>„ù]=M J>†ò=Eé>ŒNl=%Cò>Œ[Ñ=%Cò>“˦= È>œè<ôÖ¡>Ÿ×^<î·‰>¥ÏÌ<ây—>¥ÏÌÔ7Ú?3½8>Ïìn?:Ñ>Ïìn?3î.>ÕCÿ<î·‰>Ïìn<ây—>Ïìn>ÖP"?3¬å>×ý/<ôÖ¡>ß½x?3û>àÿC= Âü>äßf?2—j>ç}Ä=!/M>ë w?1q™>ëÖ•?18z>ív6=?Ê >ï>?0Õ>ôËD=`>ô°p= Ô>ñÜo=at‚?! G?Ã>ùœ¼?Ã>ùœ¼=öàÒ>ùg?"–s>øû×?%…J>÷ï²?(ż>ö“?*èŒ>öxG?+Z>ôˆ6?,û>ón§?-߉>ðµx?/gJ>ùg=Ô³ú>ù©=¾Bl>ø%T=¤Áf>øè=£¼<?! G=þö>öã‰=’ç>ö „=›„>ñHô=\Z¤?!²=àñè?!'?"·?!\¹?%…J?!\¹=ÀÏ[?!­+=©X§?!ð5?(æc?!ý?)/Õ?"o=šÊ?"Æ»?+bö?"ÚÕ=‰6?#,=…¤?#$”?,.ý?$*=m/Á?$K‰?.‚?$,=fŽ??$ß?.Ì7?%ñá=M J?&;?0Õ?&~¦=Eé?&¦à?0dG?(9?1Pô?)œc=%Cò?)£=%Cò?+jð?2vÂ?-[= È?. P?2ùW?1év<ôÖ¡?2²”?3œ’?3`ß<î·‰?3¾º?3½8?5än?:Ñ?5än?3î.?6]<ây—?6]EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$HIJKLMNIHOKMPINQOMRIPSQMTIRUITVSMWIUXYZ[\][^\[_^[`_[a`[ba[cb[dc[ed[We[IW[]f[fg[gh[hij[ijikjkljlXjXZjZmjmVjVMnjMoI[pIoqnMrqMsIptIsurMvItwuMxwMyIvzxM{Iy|zM}I{~|MI}€~MI‚Iƒ€M„ƒM…I‚†„M‡I…ˆ†M‰I‡ŠˆM‹I‰ŒI‹Œ‹ŽŠMŽM¬m¹·Mà>¬m=M>¢2g=M>”)ƒ=‡g>ˆï1=!^à>‚ža=C ×>y§È=d¼j>r£O=ˆÒÔ>m`Ü=µ¼V>m`Ü>¡8v>±¢”>¡8v>Ưî>¢Ÿ¾>à >¦Õ>÷¢I>°{®?Ñ >¾*Æ? e0>ËS?€>ÞEž?ëÜ>ð„Q?&2?0?µä? su?ëð?wè?Ðì?ã¤?ôà?è? ¿?%+m?b?+"g?f?/XH>ðÊ ?3Ž'>ßó$?6\º>Ê2(?9+N>±¢”?:’–>–Dp?;F=<–OØ?;F=<“}¦?3Ž'=VÂ?3Ž'=šÃ¸?2Ä=Ä, ?0 ì=Òè?,‰³=àð-?'F[=é[ò?4r=ì*{?’×=ì*{=Ú9Ó=æM=¢@=ÛS=€gI=Ǭ÷=C ×=®i½=!^à=‡£= êT=&`¢=´ëkù—>»/R>kù—?#Ä$>p/s?)aL>uÌ“?,ã„>‘3?-Ä>§J?.JÏ>§ì?-=W>¹Z¯?*Ș>Ç ?(SÚ>Ô-?$õ>ß?‚?&ù>ç«ì”Á?%>íü ?í>ëá>öÕ!>ç«<>æ±K>áZp>Ú²>Ø; >ω>Ì L>ŵó>¼Üé>À×>¬m>½J@>‰ÏÉ>»/E --..//0     C CD DE EF F1 1BCBBBABA@A@@@?@?>?>=>=<=<;<;:;:9:98978676 56 5 #45#4#$34$3$%23%2%&12&1&' 1' '( () )* *+ +, ,- !" "#<Œ<_·Pœ?#ûo·Pœ?.Õ½>jì)?&² >k=°?#X>B?ƒk>%ù·?Ø•> Ì?$X=àB?ê;=Âs?ä€=²¼0>AºC=²¼0>ÈHÓ>¾=>N~â?%ûK?J?%ûK? à?#…?Kù?4*?!8A?Lu?%É?o‹?'h5? ?“?1-T? Sÿ?%‘?;!"’¨²>°1¦       >5ÿ8–»™?~68–»™?~6<ññJ>øò<ññJ>í w=ñ!>âù=eé>Û[=(÷U>Ô\^=[´õ>ÏçX=Ži>Ìш=Ë >ÌÑ`?-}Ý>ï ?-}Ý>ûqš?,ÎU?”?+Ç ? X?+ƒ?4Ò?)ì?©Ã?&úa?o/?#äq?…^? 4÷?C1?óA?ú?ÎÆ?!¸$? &Á?)šº? &Á?&Ü›?:ܳ<ù3?:ܳ<¦éÿ? <±=YÞ‹? <±=f3? …Á=x.?Œö=”`?RO=¬“? vÊ=Ço~?$I=íÔ„?(ž> |.?*7>"Ì4?+oI>;{J?,ÎU>S"s?-¿¶>mÞ?.YK>zá?.…*>zá=ÓU>¼Ä=‰GÀ>ˆð =P¼{>e9=â>jË<ú*Ô>NV¥<ìrŸ>5§1<鵦 **++,,-      & &' '( () )* &  !!""##$$%%&>ÛAi>óE¸ñ,(>Ûkn=Çиñ,(>Ýãž=ž¸ìúj>à…Ö=|Ô͸èȬ>å!¹=H(€¸àe0>í_=¸ÓÏö>ôFw=QޏÇ:½>ÿö@<Ð R¸²B?`<Ò±n¸¡{?ó´<Ín¸’Ì÷? Gú¸’Ì÷>¬WŽ9¨ŸÇ¹!{>¬‚ ? ›Ò¹ n >­ý0?…¢¹b0>±ï?ʹIR>µ;H?M¼¹”>ºU…? (Ô¹åÖ>ÀB…?$ı¹´>È)W?)в¹ ] >Îè³?-üx¹Þ>×ö¡?2n0¸÷vÅ>áÖñ?5ø(¸æ¯Í>ï ?9¸¸Ïž8>ú3p?:©¸¼¾b?¯F?üVê?$¸¸Œ¤>õ®? =è¸Å!Þ>íçÆ?²¸ÞLQ>áW? 柸æ¯Í>Ý?X¸ïI>ÛAG>üÔ̸ñ,(=Aál?(â'¹€sX=yš?&?ì¹…±…<†î1?)6k¹Ž<±°?,,빋uê= 5"?0t„¹†7½=Q®´?4g×¹}Áa=ˆqø?8ã¹oI=²•t?:ýb¹]?â=ß[?a‚?<áø¹6sÅ=ƒ-?*œ¨¹q,(>$Yç?>°?:©¹7½=´?+oT¹]?â>Uì?9¸¸æ¯Í>oi?5ø(¸¸Œ¤>”Ø?2n0¸–þµ=ëÞ2?+û¹E!Þ>Š¢Æ?-üx¸oI>‘b(?)в¸<¾b> ÷?)в¹0)(>™Hú?$ı¸ i{>Ÿ5ô? (Ô·Àð >|?'åO¹!{>¤P7?M¼·já‹>:i$?$¹ i{>¨m‰?Ê·7½>«ŽO?…¢¶ISœ>Hç¡? =è¸ù£>­ l? ›Ò>Y x?¨z¸ÞLQ>dãl?²¸Ëlz>phº? 柸¶sÅ>xöÈ?X¸§Å¬>|”p>üÔ̸¡{>­3ô9¨ŸÇ>|”->óE¸¡{> ÷¹0)(>H6<Ín¹/¹>|<Ò±n¹!{>3*r<Ð R¹´>JŠ =Qޏ÷vÅ>Y@=¸ÞLQ>hÓ†=H(€¸Å!Þ>r K=|Ô͸²B>wOµ=ž¸©Þ‹>|@)=Çи¡{"! " """"""#"##$#$$$%$%%&%&&'&'('(( )( ) *) +* ,+ -, .- . .         87686585484383282181080/;:8;8/;/9?>=?=;?;9?9<BA?B?<B<@EDBEB@E@CGECGCFJIGJGFJFHLJHLHKLKMLMNLNOLOPRLPRPQSRQWVUWUTWTRXWRYXRZYR[ZR\[R]\RS]R>ûñæ?:Ñ>ûñæ?3î8>ö·t?3½@>ô*Œ?3œœ>èÑ ?2ùb>âpã?2vÏ>Ú©†?1Q>ÖÖ.?0dS>ÕÑ?0ß>Ò€Ñ&?.Œ>ÎJô?,/>Ífn?+c>Ë|Å?)/á>Ë\?(æm>Éõ?%…S>Érp?"·$>É1&?Ã">É1&=þ>ÉQÉ=àñõ>Éõ=ÀÏ[>ʸæ=©X§>˾=šÚ>Í—i=‰6>Î*N=…¤>ÐÇ‹=m/ä>Ñ›½=fŽb>Õz=M J>Öt>=Eé;>Þ  =%D>Þô=%D>ç(¾= È5>ò@Ü<ôÖ¡>õÒî<î·‰>ý²<ây—>ý²=øÇý=øÇý<ây—> eÍ<î·‰>W<ôÖ¡>%öO= Âü>5ÆO=!/p>DOÖ=?ÊC>Mžï=\ZÄ>O=at‚>UèÜ= Ô>V*"=p>Z ·=›„>[Có=’ç>^2É=£¼M>^Sl=¤Áv>`Ÿ =¾B|>abë=Ô´>aå~=öàà>aå~?Ã">abë?"–~>`]¾?%…S>]ÐÙ?(ÅÈ>Z€?*è•>Z>Ç?+d>U†ì?,û>RÙd?-ß“>L7Ó?/gP>H¥È?0ß>@[Û?18„>>r,?1q¥>/f?2—r>"æÐ?3> ò²?3¬ï>Øá?3½@=øÇý?3î8=øÇý?:Ñ>åwP>¾+ñ>äMi>¨hº>áf>—±_>Ù&£>„´¯>Ò̦>w¯ >Ï׃>qpñ>Ç >dE>Äɉ>`hÕ>½&>X÷O>¹&¦>UI>°Ü)>Pôz>¬½&>O>¡q>Ml(>ç >M[ü>’Ž >N¯%> ->O`¿>‡Bš>RØë>„4 >T­6>xú>[ 8>mB>`ê>Y“->oKá>Sû>uzk>Cû>„¤†>AÑH>…¦ä>3E¨>”ºf>*(.>¦”h>&G4>¾+ñ>(šô>ÓM­>/d®>䦄>>è‡>÷£7>K94?+Ø>Q¸g?ßÛ>bº?+ >gÔZ?¼>v_ú?î> ?È>‡ã÷? êÉ>Œc? K­>—Ný? ÌÞ>šÌª? Ôï>¦­? | >¨ª†? SÀ>±d¶? q«>´? ¤>¼¤P?dÚ>Âv?ñm>Ëݺ?X÷>Ï)½?ÍU>×|>÷Ã>ײF>öÁ!>ßé>ç|>ãmü>Ö•g<š-³>¾<<ÃK>ÐÏÑ<Îî>Ó-a= {»>âÚO=0bÔ>åù¦=‹–:>õ]Û=™¾>øµ»=Ø÷é?LÛ=îMC?ä>!ô?ƒ~>$ˆ[? ï>Rû!? $>Xåg? ñë>„fJ?Ö^>ÿÝ?ì>·ãð?ÎM>Ï ? Ù³>åÁÆ? –>êšù?¯æ>þJI?ì°?:Þ?±É? Yä>ùO#?  >ö?î?.s>ç­¦??ƒ>äeì?û@>Ô/Ã?R!>Òà?§x>¿‡'?­¬>¾<?^‹>« N?>©{>?XV>™,Ý?…T>–~Ž? uÑ>‡Ãá? xì>„ ?xì>oÝ=>ýƒ³>i]ð>éÔc>V±ú>æº>TLS>Ï€ >Fk«>̤P>E(µ>´°½>=–ã>›'>:ðž>3>=·/>Sû>E‰Ÿ>&xÔ>R˜Z>Æg>VQ=ë2Ü>iQ=Ú…*>n)7=š!Ù>ƒ¼=U >†Ç=2¶®>•SÎ=$¿Ó>˜E<ÒÏ>§–Ç<Ç,>ª½<š-³>¼¸‰EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$}|³²}³~}²±~²~±°±€°¯€°€¯®¯‚®­‚®ƒ‚­¬ƒ­«ƒ¬„ƒ«ª„«…„ª†…ªb†ª©bªc†bab©d†c`a©e†d_`©^_©f†eg†f‡†g]^©¨]©ˆ‡g\]¨hˆgiˆh[\¨jˆiZ[¨kˆj§Z¨YZ§‰ˆkXY§l‰km‰lWX§VW§n‰mo‰n¦V§UV¦Š‰oTU¦pŠoqŠpST¦RS¦rŠqsŠr¥R¦‹ŠsQR¥t‹sPQ¥u‹tOP¥NO¥v‹u¤N¥w‹v£N¤Œ‹wMN£LM£xŒwyŒxKL£zŒyJK£Œzz{{H¢J£¢IJ¢HI¢H¡¢Ž¡ Ž¡Ž  Ÿ ‘Ÿž‘Ÿ’‘ž’ž“’œ“”“œ›”œ•”›š•›–•š™–š—–™˜—™<‚õ9¡f>‹*Ó9¡f>‹*Ó<éúÛ>\x<éúÛ>Qr <úÜ>Bú = Éå>=`=*¸c>:j=X0><ÇÒ=‡¦7>C«W=£4@>g}°>”;>À5ý>ŸI´?®»=ÄE5? €=ê`? ÐÛ=h¸Ž? p&=,~?_=‹v?/‡<éù>ê[<캴>ê;}9¡f?E¶þ9¡f?E¶þ<éúÛ??Ü=…á?; ‡=!ç?5†¶=B$Ë?0´@=yA?+áÈ=£4@?$þ?=è„>丫>Ð2Ä?ð?ñY?#E`?#W´?+áÈ?*ë—?0\?.µ‰?67?1vî?<?2x?CMÅ?3‡ÿ?CMÅ?;ß?+ë?;ß?+ë?3/Ñ? 1‘?3/Ñ?S«?2פ?År?2'J?~Q?0=?.«?-TÒ?&$?'Ò? ) ?»L>Ôà>æ> >•€?"§Z>ýM?(*,>ì>?,LJ>ýM?/¾>“o?1Ï>›³I?2ן>§iH?3µ>º/?3EÐ>¹Rx?;ß<ç¯è?;ß<ç­?3[æ=L,?3/Ñ=’"?2x=½Ø?14×=è6?.sg=ý&?+CÄ>PŒ?&Éy>Ù?!F§>®LÔ>·f> ïÕ=Ò <=úθ=¥õ®=θ*=~Ãû=ªåÞ=G§§=‡z=&–¢=;|»=‹v<‚õ=% EEFFGGH        "#$"$%"%'!"'!'( !( () ))***+++,,,- - -. .A AB BC CD DE%&'56757858959:45:4:;34;3;<23<2<=12=1=>1>?01?0?@/0@/@A./A?9Þ?:Ðø?9Þ?3î#?œ¦?3½+?V1?3œ†>ùRú?2ùM>òòº?2v¸>ë+c?1Pê>çX?0d=>æRâ?0Ë>ã?.Ì,>á›?.v>ÞÌÒ?,.ó>ÝèO?+bë>Ûþ ?)/Ë>ÛÝý?(æY>Úvç?%…?>ÙôQ?"·>Ù³?Ã>Ù³=þé>ÙÓª=àñÛ>Úvç=ÀÏJ>Û:Ç=©X—>Ü?é=šÊ>ÞG=‰6 >Þ¬/=…¤>áIf=m/Á>â—=fŽ?>åŸW=M '>æö=Eé>îŒz=%Cò>îœÏ=%Cò>÷ª›= È?a]<ôÖ\?*d<î·‰?ÌÈ<ây—?ÌÈ>gÜ>gÜ<ây—>*iª<î·‰>1 ;<ôÖ\>Fú%= Âü>VÊ%=!/M>eS¬=?Ê >n¢¿=\Z¤>p Û=at_>vì²= Ã>w-ò=`>{¤=›t>|GÃ=’ç >6Ÿ=£¼<>WB=¤Áf>€Ñq=¾B[>3]=Ô³ß>t§=öàÅ>t§?Ã>3]?"–i>€°Ê?%…?>~Ô¨?(Å´>{ƒê?*è>{B?+P>vм?,úý>sÝ3?-ß>m;©?/g<>i©—?0Ë>a_«?18l>_uû?1q>Piá?2—]>Cê­?3ñ>,ö–?3¬Û>'ÜÅ?3½+>gÜ?3î#>gÜ?:Ðø=9f?#¦š;Œ7=aÔt? Ï5;Œ7=+c?œç;Œ7=¦æ‡?´À;Œ7=µq?Ä;Œ7=Èÿ?Âê;Œ7=â‘‚?òœ;Œ7=þüæ>ù„;Œ7> Û,>î¯;Œ7>AÂ>æVü;Œ7>5Ôý>à¨S;Œ7>L5>Þ,;Œ7>q$ù>ÛTª;Œ7>Yè>ÛTª;Œ7>²>ÛTª;Œ7>²IQ>¨¸%;Œ7>Yè>¨å;Œ7>hžÜ>¨å;Œ7>Gñ•>ª~©;Œ7>#¹I>®Á;Œ7=ý‘¬>¶dN;Œ7=µq>Ä™š;Œ7=•$á>Ñê;Œ7=~>L>á¹A;Œ7=gƒZ>ñYß;Œ7=\%°?3;Œ7=Vvê? _;Œ7=\%°?‰ˆ;Œ7=?»Ø?î#;Œ7=£ÛI;Œ7=¸¨ô?dN;Œ7=ª°–?Û*;Œ7=…ðæ?ù=;Œ7>’v»>Ç";Œ7>iT¯>ÂÒû;Œ7>N8J>Í=þ;Œ7>><‰>Ïöø;Œ7>/éL>Ô£è;Œ7?*_B? °è»?*"¨?#¦š»Þ?,Ÿ?":ç»ÛÂ?(\ ?18»Q3?(=º?Aþ»Q3?&:?î#»ƒˆ?ßð>ÛI»7½?$sá?‰ˆ»µÝ?$ÎÎ? _»µÝ?$sá?3»µÝ?#¾>ñYß»Ƥ?"RY>á¹A»øù?‘¡>Ñê»<?’Î>ę𻱅?„ >¶dN»­.? Gê>®Á»¨Ö?9Ø>ª~©»¤>ð>¨å» ~™?n>?!?dN»ÂL?V£>ù„»­.?à*?Û*»÷?ä?òœ»H„?\?Âê»ô¡?’Î?Ä»±…?!x!?ù=» À?Ym?´À»0? 0Ñ?œç»+N?$ö? Ï5»Ƥ>Ñõ»>Ç"» ">ä¿‚>¨å» &_>²#)>¨¸%» ç>²Py>ÛTª» Ö=>ä¿‚>ÛTª» &_>ëÙú>ÛTª» Áµ>ïÂ">ÂÒû» `>þQô>Þ,»Æ >ýPU>Í=þ»ÖÔ?Á>à¨S»/?§>Ïöø»ac? %Ì>æVü»v?;í>Ô£è»ü¹EGF&%$DGE'&$CGD('$BGC)($AGB@GA*)$?G@.-,65768798:9;:<;=<>=?>G?544332211100//..,,++**$$GG$$G G$ G $$ G $ G $ G $G $GG$$G$G $G! $GG"!$#"$gHfgfegeHhHehedhdHicbibaia`i`_i_^i^]i]\i\[i[ZiZYiYPiPcjdcjcPjPOjOdkHdkdOkONkNMkMLkLHlHLlLKlKJlJIlIHmXWmWVmVUmUTmTXnYXnXTnTSnSYoYSoSRoRYpYRpRQpQYqYQqQPqPYtsrutrsurusvwuvswvzyx{zx|{x}|x~}x~x€x€x‚xƒ‚x„ƒxy„xyw…„y…†„…w†…ws‡†w‡ˆ†‡‰ˆ‡Š‰‡sЇŠs‹ŒŠ‹Œ‹Ž‹sŽ‹‘’‘“’”“”ƒ•”•–”•ƒ–•–ƒ—˜–—ƒ˜—˜ƒ™š˜™ƒš™šƒ›„š›ƒ„›>ÝtÈ>õü>ÝtYµISœ?,DüµISœ?0°=ùów?)mÙ=ùów?(ÌC=Ù!?'‰=ÄîK?%õ!=«®Þ?#nË=—|$?b=ˆV ?à=€Ã ?Y*=€Ã >ú}»=…ϼ>õq =—|$>óŒG=¸N•>óŒG=íSÀ>ý¥©=üyÜ?ØÅ>`? µ¶>|Z?êS>,ò<?½>AÆ•?!Š >a÷l?'=>€r’?,•ò>’ñ?0_J>¡•Í?36m>² ™?5¥>ÆZ%?5¨º>ؾ?4Êc>ìå?2å¢>ý½J?0?Vn?,•Ç?:@?$±ó?àƒ?À†?%°'?p§?,?Ð?1 ¯?ì1?4Ö3?·”?8Ÿ¶>ñó?;&>Þa?=¬g>È u?>ï‘>·•¦?>ï‘>·•¦?6ºô>¿ÊF?6ºô>Ì»?6AÌ>ׯ†?4…h>å©e?0k1>ïÂÇ?+ ¡>ùÜ"?$lû?·Û?ÌU?fd?X?$? ”?lž?¨3?6x>ð|?J>Û§¨?›h>Àƒz?©>« •?¶¤>˜¿—?>…Ð?ª >g¥ª>ý>Mį>ñ§ˆ>3B>åÒ>E×>äÑË=²jw>ïŒë>I–?„¸>#ÕV?µ<«­Ã?ff=+®g>óŒ"=/ U>ï! =>2]>ìÐŒ=_Ü>ì.ú=Œ‹T?+ËË=³Aá?)ˆÉ=Š?(–f=u½×?'8L=WqÉ?$±ó=?á4? —¦=0»,?!Li?)Í?W0>èqÙ?®™>ÚÐp?d`>Ìíb?© >¿h»?š&>žÙ™?ø‘>‘˜M?ëA>….s? q¿? <²>] •?J>Kª?K;>:Õ>ËÈf?;[í>Ôƒ¾?8 ›>Ü‚?7O>äÑ÷?5\â>ìб?24ô>óŒG?.5>ùp–?)Êu>ýÀÎ?%Y”>‘í=²jw¹J` >™J >õü¹Cÿ>™J|µISœ¹Cÿ>ƒ2‹=íSÀ¹VõE>‡1ñ>I–¹RÇ>r2Z=üyܹ_XÁ>KjÔ>#ÕV¹p¸>V>`¹kíú>:¦Ò>|Z¹wvÅ>Ôf>,ò<¹ƒo>6¿>AÆ•¹‡Êd=Ϋ>a÷l¹ŽÉ>‘·>E×¹J` >*©§<«­Ã¹~ÍÑ=q¦×µISœ¹–þµ>þ-=€Ã ¹„¥>cä=+®g¹e£]>h=€Ã ¹cŠ~>ƒ2´=/ U¹VõE>x‚5=…ϼ¹]?â>‡Ð=>2]¹RÇ>MÊ=—|$¹X´>‰îF=_ܹPª¨>ƒ2‹=¸N•¹VõE>ŠÜ=Œ‹T¹Pª¨=y: =³Aá¹–x}=*õW=ùów¹šª;=Œ‡=ùów¹”_ž=”™8=Ù!¹“Ùf=޵=й”_ž=ž²Ž=ÄîK¹’Ì÷=–H=u½×¹“Ùf=«RD=«®Þ¹‘:P=¡9=Wqɹ’Ì÷=¿…=—|$¹!q=µk©=?á4¹-à=çêz=ˆV ¹Šï³=Ö>=0»,¹Œ‚Z=И ?)͹ŽÉ=žw>€r’¹’Ì÷=l—s>’ñ¹–þµ=0>¡•͹šª;=â>² ™¹IR<Èxº>ÆZ%¹žÛù<¶Ö>ؾ¹Ÿb0<Ò ì>ì幞UÁ=œ„>ý½J¹œÃ=5»?Vn¹š$=lš5?:@¹–þµ=µk©?àƒ¹-à=ì÷7?%°'¹Ši{>»?,¹„¥>*=¦?1 ¯¹~ÍÑ>IÌç?4Ö3¹q,(>jŸS?8Ÿ¶¹b~>…¸æ?;&¹TÜf>_ä?X¹g¼<>4 ã>èqÙ¹zœ>U)? ”¹kíú>.ÃG>ÚÐp¹|´ò>OË.?¨3¹oI>+ì+>Ìíb¹}Áa>L£Æ>ð|¹p¸>2×0>¿h»¹{¨‚>LSE>Û§¨¹p¸>K >Àƒz¹q,(>+>žÙ™¹~ÍÑ>NÙ>« •¹oI>-›e>‘˜M¹}Áa>R£>˜¿—¹lúj>1Ц>….s¹{¨‚>[y?>…йiÕ>8Œ>q¿¹xƒ4>fÕ†>g¥ª¹d–î>@Šâ>] •¹u]æ>su†>Mį¹_XÁ>LSE>Kª¹p¸>…M>3B¹TÜf>\PÁ>:Õ¹hȬ>ªöo?;[í¹5gU>˜¨{?=¬g¹Dn>®]?>2B>¿),?>#“î>¿),?6ºô¹#“î>¶ô?6ºô¹*êû>¢;?8 ›¹;±ò>ªÒ?6A̹5gU>šžøL?4…h¹>×A>‘ìâ?5\â¹J` >‘m?0k1¹J` >‰î!?24ô¹Pª¨>†ü ?+ ¡¹SÏö>ƒ2‹?.5¹VõE>yÅa?$lû¹\3r>zœx?)Êu¹\3r>jž@?ÌU¹b~>qü ?%Y”¹_XÁ???@@@AAAAAAA>A>BB B C C C D D D E E E F F FGGGHHHHIIIJJJKKKLL L M M M NNNNNNNNNNN N !N!"N"#N#$N$%N%&N&2N2O2O23O3P3P34P4Q4Q45Q5R5R56R67R7S7S78S8T8T89T9U9U9:U:V:V:;V;W;W;<W<X<X<=X=Y=Y=>Y>Z&'Z'(Z()Z)*Z*+Z+&[&+[+,[,&\&,\,-\-&]&-]-.].&^&.^./^/&_&/_/0_0&`&0`01`1&a&1a12a2&dcbedbcebecfgefcgfgchighjihkjhlkhmlhnmhcnhpdoqpodqoqdrsqrdsrsdtustdutudvwuvdwvwdxywxdyxydzeyzdez|p{}|{~}{p~{~p€~p€€p‚€p‚‚pƒ„‚ƒp„ƒ„p…†„…p†…†p‡q†‡pq‡‰mˆŠ‰ˆ‹ŠˆŒ‹ˆŒˆŽˆŽˆˆ‘ˆ’‘ˆ“’ˆ”“ˆ•”ˆ–•ˆ—–ˆ˜—ˆ™˜ˆš™ˆmšˆšm›œš›mœ›œmžœmžžmŸ žŸm Ÿ m¡¢ ¡£¢¡m£¡£m¤¥£¤m¥¤¥m¦§¥¦m§¦§m¨©§¨m©¨©mª«©ªm«ª«m¬­«¬m­¬­m®¯­®m¯®¯m°n¯°mn°²™±³²±´³±µ´±¶µ±™¶±¶™·¸¶·™¸·¸™¹º¸¹™º¹º™»¼º»™¼»¼™½¾¼½™¾½¾™¿À¾¿™À¿À™ÁÂÀÁ™ÂÁ™ÚÂÙšÃ?^?É©?•>ÞŽã?ò«>¿Ä?¥@>»@é?>¾ù?V>Èžú?à>Ûéã>þCa>îvô>ðã?ã>åäÒ?q>Ùol? 'Y>È”V? ?>¶ý¨? À3>¥fô? a7>&5? †S>‚9“?/ƒ>D°¹>ûCÜ>ìC>åq=Õ7>цw=‹j>´Å›=.Ã>”­ë<Û3Þ>c›Ì<¬Là>)»<Û3Þ=⬃=¤$=†©µ=bÛè= ºß= U";  =ï{3¼5*„>b=¼|fÎ>F㻼Lé¨>oîºoEž>’Ym<•Ïj>¦€ä=:>»c¶=wB>͆°=·£ª>ߨÌ=õú€>ç®J>Ô>ì}U=ûÈ;>ñž¢=¤X>ø7†=D™j?<Ü<×6?J¤<@Ël?B¶;1x³?°p: £è? Ž: £è?'X®;ÏŠL?-5“<†ýë?)Õ=ËÍi?#¨=¸Ô?<=®?è=·’?%=ÈÕ„? î=ó!¾?µ >yv?É>={?M:>j}±? 6>S/R?a>l}€? $Ç>ƒœ¦?ãÖ>L§?ï7>Ÿp#?ã€>²\>?2Ì%?/’>Î&f>`s0>¼lý>6S>­1ß>!*>”ò>‡Í>ynú=Ù‰Ò>X ƒ=Å`1>C=Ê=Å`1>-Ü[=ÏsU>Þþ=ê»ó>3>§u>„I>:-›>`>qð_>#å¿>“ƒô>>è>¬ßÜ>c->ÂÒ>†ˆ\>Ó"½>˜f>Þ´>«qW>å†\>µg>æ?>»Bê>æ?>ÂJ»>äî†>Èrm>à¡>׉>Ìþ>Üø>ÄOg>áp>µÆ´>ãÑ>©î¿>áÍŸ>››>Û}L>‡<¦     TTUUVVWWXXYYZZ??ST S RS R RQRPQPOPOONONMNMLMLKLKJKJJIJIHIHGHGFGFFEFEEDED CD C !C!"C"#BC#B#$AB$@A$?@$?$$$%%%8899::;;<<==>%&'%'(%()%)*%*+%+,%,3%34%45%56%67%78,-.,./,/0,01,12,23;¢5µ¾VLÊ=“u¾TúA>)<’£>'_-ÿ¤»G®>Fsg¼@®œ>t¸¼•8&>Õ¼ŸËL>§÷c¼jüM>DZ_»ƒ>ÞÓ©<&â£>ÿ6â= D? Ú+=†Œ&?Â=ãQ? –>3.?UÝ>EМ? üu>g1¸? üu>ˆV?YÏ><ÿ?fñ>­?t>·­U?‰ð>Â@ª>þÑ>È H>ìµ >ÌÓÿ>ܬz>Ðvå>ïØ¾>ÑJ<>ÿà>ÔÂ? Ú+>ÜÉ?>åH·?^/>óÓK? §Û?ÚT?$ó´?!Ï?&ïU?O?(AÁ?ª6?'®?‡?$ _?'Dq?Á±?-àˆ?z8?2€ú?Þ ?6#¢? ›?9>ÿ6K?:0>êI?:¡>ç/ú?;>Ò²€?:ÄR>²Â?7L«>Ÿ´?3Ô>‘å‹?.ŠØ>† ?**j>u±.?#wè>Vø™?;>WL%?¹¡>Œ4£>óÓK>ŽÙx?Õõ>’к? m¨>™lÍ?>¨Ëw?ˆ(>·>[?!æÆ>¹DZ?"€>Ä ?%ÜÊ>Ý2†?)¤>þcì?(ÖT?Lû?&ïÖ? ?Ü?#öf?â?Uï?‡W?t?qâ?U™?È©?b»?Ï:? ?ÜX?&/?™>>ÿÓ>ð¬H>öx>Þ*y>ï2Ù>ÌQÛ>è–¿>ºÍÀ>ãöT>®F¡>ävl>Ÿ8±>âÿ’>—Ê^>Ý^Ô>˜¼<>Ç¡(> EÈ>ÂO©>«Ee>¿®Ô>¸éú>¼¾á>ÇU‡>¹Î>ÙŠ3>³Ýb>æö>­Ã4>óQ >£Ù>þ¨>•÷¶?é|>ˆV?’±>{û?@E>`•¨>ýä{>>6Ò>ó{¥>%½>æ>_Š>Ùá =ç6>Ì>=É4­>½Á=­ãü>ªt=˜Ùè>˜›_=ƒ®h>€$-=„Ë}>\“]=—}>EhŠ=­Xd>7ç&=Ú_ =¨þ¾Q¾=Ì{¾CüÃ=ä/;,P4=ù|Ѿ§ > œ?½‘v›>1e¼ò±n>”J¯>Ѫ¸eeffgghhiij      ``aabbccdjdjd3j34j445IJKIKLILkIkMIMNINOHIOHOPGHPGPQFGQFQEFEEEEEEEE DE D !CD!C!"BC"B"#AB#A#$A$%@A%@%&?@&?&'>?'>'(=>(=()=)*<=*<*+<+,;<,;,-;-.:;.:./9:/9/090189181278267256252          V VW WX XY YZ Z[ [\ \] ]^ ^_ _`QQRRSSTTUUV=r`ö>â"=˜,õ>è=ËÑÞ>î"ý=õ">ð¸ >·ç>óM>A%É>ð¸ >^i™>걟>tÊ­>à]q>ƒÝ->Õ,î>Tü>×>–ÌÒ>¯Mœ>ŸhL>—3Û>¢Ù®>~43>£Él>N§é>¤eÄ>"P/>¡ ù>‰q>›=–W¸>‘¢¼;ÊŸ>Š¿ï½IûÇ>ƒÝ-½Áór>‚–·½éÈC>ƒ>¾»:>ƒÝ-¾-;>‰B¾þ>–ʾֽ>¡t£¾­ >ª˜Ï¾ Jk>³4M½àï÷>¸^c½¢öè>»Ïǽ5Si>Ì*g=ÃÆ>Õ¢9>Í;>êJ>ìñ? YÜ>Öø?Ѓ>àÇÈ?£Á>æÛ¼?tZ>óÿ¥?{_>þì? ÓÎ?š?î?e«?„?‰U>û‡>û 5>÷3Ç>óM>æÙ+>Ö F>Ø7C>¸År>ÄN,>–s>»¾0>¿LÆ>¬IB>ázW>œ&>ú{º>ƒÝ-?ÚI>FOâ? `>ž"? à¸=¾ 9? `=r`ö? ’û=ܘ?E<<ÑRn?‰U<š÷šÓ<šîÿY<ÑRn>æcÛ=¿ƒ>á9É=I>á9É>m;_? ™"  ! - - -. ./ /0 0 01 1= = ==2222333445556677788999:::;;;<!"#!#$!$%!%&!&'!'(!()!)* !-!*+!+,!,->¹ö©>ëZF>°y>÷Í>¡¸>þŽ >’”?ˆ>> ?Ôö>ffÒ?µ>H t>ý;’>,׌>õt*>ßñ>í×=å`º>Ü€º=ªt:>Ê%x=‡ís>¸Ù=Rß>–y@<ÉD!>cì<žŠ>6,´<ºP”>Pç=y«=ƨë=?¼¡=ƒE:=–…˜<êŽ.=Í€¡;úËC>ĻӠÇ>4¢:¼…óT>w{¼™?l>ŒW&¼$?æ>›;Þà*>¬ÁG=Ô±>µ§§=M >È¢Y=Æ9“>Ùæ¹>W“>êNw>fÝ÷>ù¨>œ{9>û`>´ >ùÙF>½’Ú>øÈ˜>ÌQŽ>÷×/>ݲz>ò[Ý>í|v>êã+>øBô>äZ>?¼X>Ú¯Ã?|H>Ãê\? q>¶³u?µ>¯ø??ò>«ªK?{>®Í?"F0>²U÷?'•!>À½?*Âæ>Ï ‡?+R±>ÕÕ—?)½@>äüû?#´Å>í©M?\>óü¨?Uò>ø*£?’?QÈ?øS?jD?!?Ú?&=²?ìƒ?-¥>÷¡?3ê >éÎ@?7Ʀ>Û‘I?:( >ÍÅ?:ÉÂ>»aþ?;vÆ>¦dX?:[Ç>"Ô?6<Û>~ˆ`?/à >nÀÃ?*a<>h‡=?$ì >jYâ?\>pô¢?¼p>zYŸ?F5>…Sâ? ïø>“½'?ZV>¥eÊ?U@>´Ò>÷æ?>FÒa=W”A>1m=nÜŸ>1=šŽ>:»=Ø5=îþä>¾=ï‡þ>4ËN=õk¯>]4½>n£>†6´>ÖW>˜q >%wg>¬|´>9À>»T >SŒ9>ȇÔ>k4u>Ñt1>Œ­Þ>×Òª>—M>ذ>£[Î>Õˆô>­aâ>Ïm>µÎì>Ä ö>ºžä>¸Ÿ3>¼ºb>°5Õ>¼ô>›çp>¸¦D>† ý>±%>c*I>§t><Μ>Ÿ%Á>ד>—™)>]a>Õ»=ß`ž>‡±©=·£ª>~öÑ=šW>k’À=‚­>ZX =k"®>QJ=YˆÓ>õ`ú>äÍP VVWWXXYYZZ[[\_`aUV U TU T ST S S RSRQRQQPQOPONONMNLMLKLKJKJIJIhIghggfgfefededcdcbcabaa_a_ _ !^_!^!"^"i]^i]i#]#$\]$\$%\%&\&&''(())*01202303404505606707808909:0:;/0;/;<./<.<=.=>-.>->?-?@,-@,@A,AB+,B+BC+CD+DE*+E*EF*H*FG*GH>¼í?7W>“³?µø>ÅQ?¢ƒ>Ã?Ö? 1¡>ºÑW?X>ª¦'?°:>˜'? Oî> z? MS>Sðq?)>7 =>ÿÊ>!¦>î–c=ç7b>ßs =¥)5>Ⱦ==K·1>«'à<ýM=>†°<ÆAm>Or´<ÑC¿>%=*¯ÿ=·³§=Œcà=JC»=ÓóMB‰»]5>;+¼wÔ˜>ZÑò¼§óÏ>yx¼²ö">€¼‘îð>žó¡¼Áœ>¨Â²;¯÷à>ªÿ£<œÑÈ>©s6=7…>¤I‹=; û>œÉ=Så¸>‘\–=ZÆÎ>ŠO0=UF+>€­=D•>h”æ=?Al>R%=UF+><‹e=ƒhj>/Ð6=°3>)Å>fQ>*¦`>4DÆ>/y>OrÏ>;+>h8 >Hî>s:i>V±>x»—>iõ1>~<Ì>zx½>>ˆîä>€~®>‘0§>€~®>œ3 >.Ô>£}>„Ÿ•>©õþ>‰pš>¬¶•>“ÂØ>ª¦'>š¤R>¦…A>Ÿu]>žC{>¡…Ì>”¡d>¢æ>ŠÿR>£–=>zx½>¤ö‰>^òÎ>¥¦²>Sðq>©Ç”>OÏ•>´Ì>UPÃ>¾l>\2=>Ç]ñ>kU}>ÓÀ>ƒm³>äD(>ŽC>îj‡>šÒ»>öØ(>«VJ>ÿñ>´øX?l D        ' '( () )* *+ +< <= => >? ?@ @A AB BC CD  !!""##$$%%&&'./0.01.12.23.34.45.56.67.78-.8-89-9:,-:,:;+,;+;<=¼8*º‚nÛ=ÑM¼\Dº=ö)ؼ¯F>=b9¼âŠ>l¼üP>Žü¼ÙÍ;>ŠË¼¬üƒ>’C¼.òÇ>˜¢Îº>œ±, uà=8,²> Ži=©r>žfV=ß+ª>–î°>¢¼>Šº»>1ö°>}/ >Aj>]Õ>W I>Bì>f>!’>Šï>.>–ûj=ﳜ>¬kã=ö§Ÿ>Ù_> d”>×LÓ>!’>ì½H>>Šä>übb>]Õ?¹•>ˆ©ï?z§>šFF?k8>«¢?\t>»û\?¾_>Æit?œã>Ï~?·6>Ú±;?މ>çp©?ز>ð!³?K‰>öÓ÷? ¦>ùg?!‰¿>øÒÀ?$or>õ@+?'’ø>í<?)¦u>峨?*Ï%>Ü—‚?*ÆÝ>Ó(Ü?)ð¢>ȺÊ?'éu>Â[?%âH>šÔ½?&U«>‹Ãø?&U«>€-8?&ê>dŠK?(\Ø>TPÎ?*d >T`‰?.>>]–;?0û>hF?3>rr^?4=Å>x+ý?6>x=¼?8–J>l¦ò?;1Ð>[Då?;1Ð>IÁ^?::¦>>L?6ÙI>3Ýö?3©m>0cç?0û>,éí?-I¸>,éí?)……>6/S?%ÁV>G‘g?#oü>]–;?!²û>nøV? Ôx>{·½? Ôx>Qÿx?G><÷?>+ i?+±>Bl?€¶=ýö?r[=Ê 6?4$=ž”?õî=v¤Ê>óoq=‘†>ÜAõ<ò÷õ>Ët3<² >²‰³<»WÅ>¡'›=Án>QÜ==<ÿ>+=l!\>p‹=‘¢@>aŠs=¦€Ð>Y?=ÀÚÒ>NkÆ=ßÀà>B’·>1§>9£>üÙ>,Lt>+Á4>!9r>?t²>z>O®=ÿ;Ý>\m‰=Ì>B>_ç˜=§(¦>b8è=zàÁ>aÇ=oÖ>\ I<›€>Uy€<`¾Q>K h;˜ÐF>3Ýö; ü/>6|<)›> N\<•t±=üœ<Ñ» =Ñ´»<ô==¾¨ë<Ï'u=·•p<•t±=·•p34>3>?23?2?@12@1@A01A0AB0BC0CD/0D=QC>ëvB=q$>ëvB=–Ÿ{>ðâ=©˜Ð>÷¨Ó=Åb|>ÿÊa=ãçK?…=ç3X?Z8>;´>ýÂ>–§>ñ‰=wî=×k=1ß=g“=‚îMN=ûÉ>¡Œ=— >$ÃB=Ý’‚>,äC>.'>R2Ó>Áȃ>[®G>Òd9>cL>Ù×ã>ƒ×[>å³Þ>žF>êÈÅ>«&—>è>>º¼‡>ßñ*>Ä9_>Ђ>Æï>¿jT>Æï>±ÜÔ>š¶€½×U>” ¾‘>”q ¾/Å->šÛ¾>­B>¦èå¾B¾>µ#â¾Ac'>ÂZ¾0l>ËÖØ¾uj>Ð놽Í(>Ò¥½†¬1>Ô¥¼Ê› >ÛB‚=Ž<>ãe>^ >é~Z>Uk½>÷ á>µ@2>ùM>Ëœå>ùM>ÜË>ó¨>ìÑ4>èÐà>üg'>Ù:ô?ö >ÈJ? aì>³sâ? Å{> Nü?  >‘‘Æ? -Š>~5Z? />a¿Y?UG>AŒ4?Hœ>:qÄ?Y€>#gš? Ô> §…? Ƀ=Úc?ͽ=™Ua? Ƀ=fÅl? jY=0e?ù=,¥z?¾2<¨Íd>û¹®<¨Íd>öMà<ß‹>ðâ=à;>î,'          !!""##$$%%&&''((())***++,,--..//00112233334455566778999::;;<<==>>??@@AAABBCCDDEE89>F‡¼Ì2ï>s $¼­«à>–Ç”;`c>²I ="z>Í(Š=¼ >áÓÈ>2>ïѸ>P…«>úó9>†xŠ?%>šÒ¤?;¥>¹_?,>ß¿?’K>þ[??ò“? |ö?gP?X˜>ûDf?#¯>ïѸ?,¦è>á0ô?4H±>Êîq?9°¡>»5?;G°>­ ?;™>œWU?:|'>%Ë?8jþ>€… ?5<ê>\&É?.àÅ>2Ϫ?& Â>ëy?W=ôj†?¿=ÐÌÉ? Î]=¨¤?D"=ï·>ñ=7“>Ôap<ठ>° ô<£–H>™Þm<…D>‡lÈdߺ<<.>0¸ä<·ðg>`Þ= Ââ=Íäª=<¤+=Ö^=jnÜ=F\=£<¢"•=ÐÌÉ:—íÈ>퉼u•y>)E•¼Âÿ=à±ÿ>¤…>Ú[“>¤…>Õ¾¡>–^à>ÐÌ>ƒí >ÈÝÆ>fǨ>½ä÷>?Yƒ>¶—>%F >®ó>šF>¤t‰=ð;>™¤~=LJð>‹¦_= Á>€… =†©Q>l¯þ=xø‚>S?d=sâ >>åG=~>%t­=‹¿×>  =¯]y=ìȨ=Ý(<=ÓX> <=ÅY.>48R=Â*å>_wÊ=ÅY.>…2è=ÓX>˜Á¹=ØmÝ>ŸéS>âv–>Ê×3> u¶>Ê×3>_>ÜD>Œ“>é^b>*‹1>û-,>;f?8\>Lã7? 7S>a³?Г>&·?þ>‘6û?Åå>™õ¤?!× > ôŸ?#¿~>ªV?$Ÿb>²Ãs?%!>» ?$³º>Â?#¿~>Éý?"(v>Ó3?cX>ÙfÉ?ló>Þá?ür>ßëX? ñ²>áÓÈ?D">âv–>ø¡ã>âv–>軃>ãh>ÚÅ445566778899::;;<<=ABC-./34232 12 1 01 /0 / -/ - - ,-D,DEC,ECEFMNOZ[\D- \D \ \Z\ZYZXYWXVWVUVUTUTTSTSSRSQRQPQPOPOMOMMLMLKLKKJKJIJI I !HI!H!"GH"G"#G#$FG$CF$C$%AC%A%&A&'@A'@'(?@(?()>?)=>)=)*=*+=+=í¢Ã? ØB<Ø)Ó=l{ï<Í ÷=ïŸ<ì™k<µR=&#;7Ö0=kSP¼Z0 =•¥¹¼ŸÀÕ=Êýë¼Á_F> Ú&¼Æ:â>.ã ¼¨’«>NîR¼Swa>w3<4%l>†8(=m`>“›;=€)}>šüt=¹¯)>Ÿ²k=òŠç>€VP=ê½P>uš1=¹»Ï>c3³=—ð‰>U×=ŠÊ>AÒÍ=ˆR>7.…= b>5ï­=Û”F>}‹??óÜ>…#Á? ¯‚>„+? ›ö>À? Ä=þvä? ¼        <Ø·a=ƒT <¶¨¹<Ì܇<Ð(a;ãe=¼S¨=q\§¼”sË=ÄQe¼—=÷A¼MS> ÐÖ<Ûý>P=bÿò>;›Å>w8ª>S¢$>…râ> Íg=Q£ >ª«½<â;>¹0];n >ÅÏ»þÁ<>Ï®C¼_µ>Þ¼Ö²>îÝð¼^‰">û„»™í|?]<‚õ?$O=:r¨?/Ó=œ‘?ö=·äi?—¡=Ê;>ù: =Ìü@>ò”á=Æèã>í7=¥¢@>ì§¡=[g>å¨w=dkj>Ý:=Hþ>Ík=öV>»®¼>3>©R >S >˜R>Ðô>އ<>¤y½>«=>¾3÷>ÁÉY>Ô%J>Õ­ƒ>éåÜ>íY?ü,>ð£Q? Eü>ñâÑ?š|>î_?ö!>èJÇ?¨h>âà;?¿»>Ù“c?´r>ÒÇ?­„>ÀY|?§ˆ>M‰Á>«Ïm>cÛP>ávî>oÙc>ü®î>ux? ,g>mZN? Ѱ>QÑ?ü7>(T?{4>¿?‹L=èíó? ,=Ø}¥?–Z=ÖxG?ËX          ! !" " "# #$ $% %& &' '( () )* *+ +, ,- -. ..//0011223344556677889>î>î¸w>?` >…ÛD> ¦^>Lx=ôH=‹ÍF=êÖ8=/˜=ñ+<&ê…>ðŒ¼s>[e¼Œ,ä>)ûÚ¼‹;¸>@1;»ä>MÕÀX€=]\•>aK1=Ç":>pp|>eE>|iy>SØÅ>c5>œ@½>—!Ò>´°>¢†">ÍÉ>¸Eª>¢K>È)Â>tæ}>à ^=úš=>ìX=ˆ.U>÷»Ê<Ò8Q>ÿÚ_;áqŸ?ºþ¼l?ôp¼ž‹|?ÏÕ¼¨ªÉ?$@!¼€-]?*ä®»¼Ê÷?0Rë&à>üâL>tÂ>â­q>µN+>¿Íš>ý§8>±´Ý? C>¦Y:?k>™ä? {s>Þß?&Ï>xP*?.f…>_Ú?22A>5Oß?7Àû>|ž?:s=Ú‘a?:Ž•=“ ™?;%9=>³Ý?:Ì‹=Ó³?:©Ú<Ôì ?9—å<¤|w?7ãÞ<=à?4º<¤|w?2ƒ;<ÿ–X?/ûf=7wk?/x=~R¼?.‡=¯>?-Ä>?+µ>2¸â?%‹>\Ö=?èW>~ÿð? ü $$$%%%&&''(())**++,,--..//00A  !!""##$01202303404505606707808909:0:;0;<0<=0=>0>?0?@0@A<}. ¾gÕË=— f¾}Õ=¯;¾~׬=Ë›¾rQ=ìà3¾Q=ûä¾2ìò>+(½Ë)€>/`á<}ãü>0&gº¨ç>7ÇS¼œ¦Š>H¶°¼¼*Î>hW¼ªúö>ƒ|§¼zS¹>” t»©>  œ; ¶¢>»KÍ<ß[¥>Äì=5â>¿$…º÷@>>È{|¼ ]>ÚÅþ¼³>èÏå»Gm>ÿ‰¿;Ѻ=?ÏX<Òe? ?H=,Nr? Ú=g²? ˆâ=gL?(Ì=™{·?Ö2=ÄsÝ? }>+V?®,?ë?#? Æ?žK?]?Öô?ÞÊ?M ?ƒ? [š?Ëù? èz? §?ðí? Ÿe?v?[ >ùÛ>ïA)>ò;Í>×ú>éïE>µ™ê>Îûn=Û^m>¿,‘=Á–„>¨8Ä=“O>”:Í=‰º >ŠWÉ=ƒÿi>z‡ñ=‰º >k<1=¦_t>b¹¬=ÑWž>c”ç>âŒ>ŸIq?^7>ŸŸ÷?½:>™¼? $>OÏ?¡Ï>€?U@>w‹œ?oú>cñé? w˜>S#k? >u>E'7?tË>5fø>õ&w>/†>é)¸=Æ5a>Æ!<ÇÓN¾ym‰=D¼¾å>??      ,,--..//000112233445566778899::;;<<=  !!""##$$%%&&''(())**++,<Ëß?ä=áã?Ó1=fœª?«=‰¯)?4˜=—«¹>óžM=•4ß¼™n=Ï󼡛P=ùè·¼‚V|>!«·º(\«>G9<ÒËê>n˜®=o?>LO=Ù”¹>Ÿ®ë>+ >µ0Ò>JQ§>Åv">})>ÖD>£u>àj‚>Ç`š>ã6¢>ìUh>àj‚?.¾>Ø6? >ÏuC? Ê>ÄžB? q,>¼ &? èº>³¨Ó? ù>¯j?J¶>®š>ýcí>°Ü¶>ñNø>²BÃ>Ýh¶>³¨Ó>ƪª>­´>¨…>–g>ŠúC>LO>„’h>[>aX9>`B1>Jš6>IáL>Bò>I¸$>ùOB>F E?-Î>8Çw? ˆ">.Çä?Â><®?^=¶pã?×C=@Ù”?kQ<Ãmî? ú   """##$$%%&&''((()))*          ! !">… ó?2Û>™‚f?C >¤´ä?ã–>´V?cÌ>½õí?‡[>Çç}?´B>Ó,?Ã,>ÜŽÛ?r>ãÎx?!0B>äKP?&”@>ß” ?*Úf>Õõ¸?,u>Çš[?,0Ä>½ð&?*ûe>™–?(Ø>“ðÜ?'Ÿë>…qŸ?'Ÿë>f¥/?(:Ž>MFŠ?(Õ0>5&?* t>*=´?,u>*\?/‹Ä>1p?1ðn>9ò4?3´›>Pæ_?6¹Æ>Pæ_?9¾õ>G$±?;»¯>.§é?<8j> “?:ô8>O?7Tl>} ?1ÕÅ>_Ü?-¡> ýÖ?(:Ž> ?%/†>(>(?$÷>A1Ñ?"ÊÛ>Pæ_?"ÊÛ>3”ª? Ý>¾?e> Ÿy?s.=åV©?ëj=Ã'?þL=‹ð»? YO=Wó?`€=#ç±?,–= ¾D>÷.=é6>ê_Ü==q>ݰŠ=E»>Ñ›×=‰†#>÷>=¹Øø>»BZ=ö@d>³h>Sì>®“>ÿ¤>ªó9=Û¬~>¤N==¡8'>›Jj=mM@>’ÉÑ=1ØB>ŠTî= îä>€9<Ý’>c!Ò<£‚¡>ANP<­->&ºd<Æp>ä=hb=ã% =Oe3=¼|t=•šè=š¨ë=ÈX6=‚’=ïÔ=^Vj>%h¥=2ØÃ>Hqn=$Y–>sï"=ž‹>† @=¯y>Q=;>“V<<Þcc>’»•<‡h>Q<‚ >†¦ç»ÔR>u$o»ç >jD÷¼;>f¥/¼{(>eoá¼Á1i>kzD¼ñƒö>u$o½cD>…}y½Úá>†~¼Ñ…I>²á¼3Ã\>¾[!;ÜZ>>Ã03<Ѹê>ÃH =:Â>¼gj=…¿j>±«Î=ž½õ>©ÑŽ=ªÒª>žò=´|È>“x=»¼o>‡c^=Âü>vX=̦2>`¯*=Ò²²>MŠ3=âdÿ>7ËV=óNÔ>)L>Q•>ö>w>ç¶>*Ma>'.>E‡›>*²>aCè>;Á>y`m>IH]>„¨j>Sý5>Šôã>`àÞ>™Þ>mU+>–cA>‚îR>œ[i>†È¾>y=>‘¨)>y=>š;>œ[i> nÏ>œ[i>§g>ŸI(>«¡r>¤¸Ý>¬Ö¼>«øz>©6ê>´ –>¤‹s>¸+>>™ól>¸>“ ç>·Œ>‰ýf>µ×™>€Mc>·Fˆ>k¦4>»¿ü>W«ƒ>«Ž>C˜é>ÈŒS>.!2>Ó;¼> ë>Ý}>&>ê â>ž†>øÁ>$à?ÐT>9Ø? ÷à>O»Ê?ö‰>rKÁ?[      $$%%&&''(())**++,,…   !!"""##$$$,-.,./,/0,01,12,23,3445646747848949:4:;4;<4<=4=>4>?4?@4@f4fg4gh4hi4ij4jk4kl4lm,4~,~,€,€,‚,‚ƒ,ƒ„,„…4mn4no4op4pq4qr4rs4st4tu4uv4vw4wy4yz4z{4{|4|}4}~@AB@BC@CD@DE@EF@FG@GHMNOMOPMPQMQRMRSMSTMTULMULUVKLVKVWJKWJWXJXYIJYIYZHIZHZ[H[\@H\@\]@]^@^_@_`@`a@ab@bc@cd@de@efwxy>JöN>‹T>Xä@>«Ï>fàg>ÇK>w”®>àå…>öÜ>î§>‚¬>ï/Ë>‰m±>ù ‡>ŒiQ>üv>¹ê?^^>•mñ?u>š¡×?t¢>Ÿò)?m@>§¥Z?×>¬Ãô?B\>´Î?à¯>¸¹ˆ?Iº>½U?6x>Áw!?Ü.>Äï>ÿç¢>ÇgF>ûóa>Êø>ò`³>Ë×Ð>îÅ>>Ìþ›>áÌd>Í)>àzõ>Ë Ï>ƬÂ>Æ®‘>©ô¯>À÷D>Š™Ä>º*è>VÄÆ>³ˆ>â¬>ªÄ=Õ‡>¤ =ŸÓæ>£Û¿=›c^>º=gjÖ>šn=L9z>•¼=*_B>‘Î=-ã>‹åç<ñöG>†À3<Õ‰>}S<»“I>s‡–<¸? >cö†<Â[<Õ‰>QŸ/<ó+>Iö•=-ã>C Ø=+{l>>=L9z>6ßh=Œ q>55==›c^>2ÒP=ÏÔç>2à…=ÔŒ>6Ñ9>â¬>?@©>Uï¦<Þü4>ŠR½==/Á>­ =ˆ t>ñ"=’4D>Èí=ÏÍü>ÞB²=ÙY–>á,Œ>j >ók>K¬>öf´>??–¦>F>½?˜#>o3l?¨‡>w¢ê? }£>‘`Õ? “ã>”Ÿò? ãÎ>®Æó?•>¯æ£?#x>É-ã? þr>Êt¢? ãÎ>ÝËÀ? ”>ஆ? }£>ñmq?´H>ô…|?˜#?»Z>øÂ?µ¿>öf´?[L>äK²? 7>àÂ? ”Í>Ëòl? ý’>Èí?,>°h7?Ú>¬»? ó2>ŠR½?3>OÔç?žñ> >x?¤‰>+>ò·Â=Ý´–>ïÜ=ÏÏ>ݶs=…0œ>Ú0N=qö">Ž<öfª>“A<×RÝ>®\;Щ›>ª³;UP>”c¼J0>‘69¼$D£>neu¼qõü>kß ¼t.P>9»¼*í>7Q¼$D£>[Ô:xœ^> $d;UP=Òiª<²²:=Æ^Ì<×RÝ=‹‹y=]mŸ=ƒTÓ=qö"=,ûV=ÀJù= þ«=ÍU–<Íõ>zß<ÄXÊ>+<Ÿñ>GR<¡F>OÝmonlom4olk4lj4k54ji5j65ih6i76hg7h87gf8g98fe9fd9e:9d;:d0;d1;0/0d2;1./dc.db.c-.b3;2<;3,-b=<3+,b=3*+b=)*b()b=a(b`(a>='(`>?>&'`??%&`?$%`??#$`_#`@?^#_A@ A"#^!"^ A !^ A  ^^ A ]^] A \]BA CB \C C\C\C[\CZ[ZDCDEDEZEEZYZYYEXEYFEXGFXWGXHGWVHWIHVUIVTIUJITKJTSKTLKSMLSRMSNMRONRQORPOQ>"W=à–“>ú=X9­>:Á<ñjF>!ïó;¾mY>4‚–¼[`>K«^¼‘Lc>[¿×¼¡˜±>gmž¼·õæ>ƒy­¼cwŸ>‰Œw¼êÄ>‹ÙȈ#û=ÅU‚>£Ž>ëW±?­¬>î­£? ¤/>î@¸?L—>íž0?æJ>îue?ˆD>ò ‘?!oE>öo?" ~>ûý? …?xÖ?ìi? ›ð? >? öI? I¶? âÄ>Éaì? íã>Yþÿ?Y>?? î=Êíg? f^=—•£?²˜=SJî?¡‚=pm>ùÆ÷<µ™ë>ãã‹=˧>Þã‚=a¦s>Ü6X=šz0>Þ7Û=·Òu>ç =ÙC>î9>8Ú>ñO>w3¢>úü>V˜ø>ïÓù>“ô>¨®—>Œ_ù>]¢×?!™Ä? T<²zì>î"c>ÔX >îÍ©>ÉÝ¿>ªY>>Çy>‘æŠ>Äùþ>/ØÝ>ÇÅH=Ù”A>É*ì=^Ï>ÎÁ<Û>ÏtN<?…>Ó¥<ºÉÀ©>å!¥¼~Ym>ûμ¹•?Ì<½Kj>úZ<±bï>øª¹=€+0>ó&=½£n>÷û³>n¸>öó[>oi>ýh¹>»ÏÕ?>ð` ))(( **         ' & &'+  !!""##$$%%&,-.,./,/0,01,12,23,34,45,56,67,7;,;<,<=,=>78979:7:;<]°•¾p]–=§¶¾rA=õ&¾_ô >® ¾RÓ> dþ=2>ø>½âÉ>7Y²<‹„S>\÷å¼^ö>wøó¼u•y>”¬ ¼ª>}>®`p¼“èà>ÉìØ¼C->ØôØ;2·x>ê,œ<¤gÿ>ÿW=QB ?xh=’µ? °=á—D?î(>@é4?Îð>sÙú?ê¸>Š}»? š+> Lô? ¸ð>±d¶?˵>ÉýÑ?>è ý?,?–4?\?-Œ>ïßq? ˆÍ>ÓÌ}?0œ>Ìr­? íM>Ä©Ä? }j>¦—? ±H>{(ú?öÍ>6“&>áY>rÜ>ÄðØ>Nãñ=¸ãi>P\o=¸“É>^úh>7×6>qJ¹>…o > >¦fŸ>†o>Èjê>–á:>åç>¬5>ò°¤>зü>úa×>×Êx>ú@>ç¡k>óš¸>÷FB>á'>ú…>ÄžB>ö½Ý>¡‚>ðp×>†O‘>ì@>f˜š>çè3>EvT>á"<>å>Øg=ó•>ÐDÓ=˼õ>¸l„=µâ? æâ=ÞxA>ÿ=›JË>‹„·=…òí>À™á>øŸ³      78899"""##$$%%&&'5645434323221211010/0/./-.--,-,+,++*+**:*: ): ) !()!'(!'!>uEμÓZ@>”»¼±¦ >«É¼šå>Ì#<ÌS*>ãõ¶=r˜>ýðŠ=òR?ð(>'`M? Aï>b[{?ÒQ>Ö?†>¨¦&?,/>À…¼? N>ÖýÊ? 4L>ç××?ð(>õ/?~>ô¬c?X>óà?+èc>óà?9?¯>ô{Z?=R>÷Jc?A¬¶?5“?DÃÍ?Îw?DÃÍ?¸»?Ašë? •^?ÿ4u?d^>îZl? ~>ÏuS? V¿>¬Y»? ï;>Ѝ‡? Å~>X?à>"¤->ýþ3=ÎßÍ>Ûè=ƒ ¡>¿Ñô=Zê>¡  <¤©H>s5ˆ<™mJ>4×<Æ]<>u°=1Ó=˜1=°µÌ<¾=c>ö¼5->>$¼±¦ >Fín<ðÖ²>;WÌ=4É >4¬œ=›>6>´>B·§>\½p>WÈ>>žÑž>qK>ÎÀ>…+/>î)˜>”OÏ>úŽ´>¤>ÿ“Þ>°† >ÿSS>°>út>Éj·>ö†>Ϙé>å¼>Îå)>ËÁÁ>ÉG>¥× >ÀÚ>v„>¶QÒ>¼Ê>©®L= ž#> =@ Ö>”»<ÌS*>Šs<{^>}²Õ<7õ¥>eÓI<7õ¥>R*3<”&þ>Fî1<î=ê ˆ; =©›=ÌÚn==>>??@@AABBCC*+<=< < < ;< ; ; :; 9: 89 78 67 56 5 555555555555554543433232 12 1 !1!"1"#1#$01$0$%0%E0E&/0&/&'/'D./D.D(-.(,-(+,(+()C+)C)>TN6=ßÿó>Mvè=¬£>Lš=e>P3o<ï>>_@f;"˜F>rh¼H)Ð>†áì¼áø>Ëz¼ï¤Ã>—ñ¼ï¥Õ>ŸÀ¼ÔHG>§缨ˆo>­,]¼|tp>·¨µ;ûòõ>ºùX=ë%>µ("=‚è>« ’=й¡>Ï}Õ>ë*M?>î]Ç?>íïz?ØÚ>íJä?q>îR?‚Î>ð¶í? &>õ(ž?!e[>úõú? …?Dí?]Ó? ý?*S? w? ¼?ð>ËL9?4>[|Œ?)ý>°V? #M=ÊôÏ? |@=–öƒ?¿¶=Pâä?ž/=6>ù›<­¼f>ãp°<þ½ >Þ`s=_lð>Ûª›=™äq>ݲ¢=·›í>æµÄ=Ùxý>íç¸>Í¥>ðÔV>yØ>ùó3>ŽŠP>ï‡Ù>Ãb’> “.>¶ñO><‘m>ºvx=bÞ‡?"p?_ö<ª“'>íÐÅ ..--,,//  !!"+."**+"0#"#$"$%"%&"&'"'("()")*<½vî? ¥=<´Ûà??Þ=!•?¥[=y+]>ÿ«6=ž†è>ÿP´=ÍxÄ>îºM=ã½t>ßÉ=øªy>¿O×>oM>£èž>?>‘R´>(¾>zH7=òÏô>@öI=â8è>œN=å6=àc«=í¾ø=­êÝ>ÑÂ=®»>|Ñ<(JØ>0]¼©±º>V!½ÿò>ã½ÿò>¡¦—¼_î2>¼U2<Çù>ÊÍ=t±>Ø8=Í¥³>çš>1q™>ïZû>~žÿ>ó#ž>£0¼>óÜ;>ÅÎ>ðùÉ>Ýš;>ë4ç>úr¨>â”?Qá>Ùæ:? Û>ÉP0?+®>»n“? ^>¶¿? >¶’£?Ÿ¹>¹xÈ>þ;ë>¿É6>÷í…>ÎÆ>òPÃ>Õ? >Í*>Ô‚>´"Í>Ñn >™tS>Î.á>„.Y>È—–>Tpò>¿7¥>»>°ù<=ʰ>¡I‡=SÑ>„Et=yŸ>qx=‹M¿>dd=»C>Xèñ>–>d>T˜>i >–î°>bòf>®»V>\Z¾>Ƹ¦>K²y>ãì?>:â>ú Ò>$wÿ?›[> Í? w<=åÁ¹?ß®=¹Â?Ý=ƒ´‘?iñ=6¤ª?áO<úi? Šy<×g? 0n        0 1 1 12 2233445566778899:::;;;<<<===>@>??@ 01++,,--..//0  !!""##&&''(())**+#$%#%&?S>¡i>û$E>‰ý>ó>là >åKL>BL>ÛÝ>.y«>×¼>'}ß>̳N>w|>É#E>r >Àè> C>º³S>P>°Ó>)å>¬v>Ї>Ÿm=þm1>›'=þI>Ž£°>ŸÇ>‹é?>fn>‚›>G>~ÁV>SM>n?>s1>c›S>ž>Q_>%ç>KºÜ>,£>? 0>B'ë>>)>Di¼>5ÐY>f!¤>4ÿ†>‡J>= š>¡i>JÁ‚>¹ >[uk>Ìp¡>vÈI>á¬0>„1>ëh8>‰/>ï7^>“ü">ö–w>—§ë>ø™"> Ä0>üÂ>¦ã>þª'>°ò?š>´à}?w>Á¸…?–ë>Ť?Ÿó>Ò‚?<¡>Ôáî?|>Þ-˜?¬>ájˆ>ÿ(>é®>û”>îý‡>øPß>ø Í>ðF:>úíÌ>ìÑc?[>áÐO?Ϙ>à¯\?ñ‚>ÏÁ\?%‹>¼µª<Åq>¡{$= ÍB>¶AN=,G>>¸æ}=†|ò>Ên=’© >ÍëÜ=ÜMX>ß"=壟>âß%>!kv>ð+)>/k>ó»>_w¯>þ¤>gE@>ÿpÀ>oÏ?ž>’êþ?üæ>®²6?¦>Ë«ë?ØC>èBˆ?¡?Ø?áÔ? gŠ?;O?á>þsô?¢†>óÍ(?¤§>ñ â?"#t>㊴?#›y>àá?(”[>ÏÓs?)Wo>Ì(b?+c3>ºp?+~]>·³‚?*‹Œ>¢íZ?*g>¡{$?&~¦>Œ«û?%ãE>ŠEü?’S>pØ?L?>jã?–>I#°?ÞÌ>@¾¼?V€>%ºo?à>vk>ñI> •%>í€>æõ>ѵ =îÄ9>ÎW¼=ëñö>²‡=Û >•–Ò=Õ>rc=ÛL<>?#o=ìʧ>¯¾>ÿe>Ò> (Í=¿å¸>.,=¯å¨>#ÒØ=hç»>>Ží=R’Å>EBs<üð·>gxÃ<é=–>m›Ñ<¥¹>ˆ(=<£PL>Šú<¿2{>ŸÉÇ>»ˆŸ?TÔ>{¶=¶y>lv¼¶‡k>gǽ/f…>i+ÿ½sÙF>pMŸ½šT>{¶½¨Dâ>„EϽ°Ó:>Œ£½¥j¾>’ˆf½šT>˜ÄÁ½}Õ+>îa½:ÏT>¢ ¼¢i>§¹¿<0Ïá>«wÑ=Q²>²?¼=ñ·>Äqq>†Â>ÓkÖ>Îß>êÅÒ?Å#>òf?’ä>ö,.?&ªE>ú™?,çT>ù"?1³>öY3?6µ>ï8Ï?93Ý>èâ?:s`>ÜÝ?:\>ÖEK?9az>Ò,þ?6ù>Í ?3«>Ëùè?.îY>Ê›Ì?)H—>ÊA·?%œ>Èw€?]>Çàæ?-54kj5k65ji6j76ih7i87hg8h98gf9g:9fe:f;:ed;ec;d<;cb<c=<b>=b>bab>a>a>aa>>?>a`a@?` @!@ `"@!`#@"_`_A@#_$A#%A$__&A%'A&^_ ^BA' ^(B')B( ^ ^*B)+B*] ^CB+ ],C+ ]-C,]].C-\]/C.[\DC/[[0D/1D0[2D1[ED2E23E3Z[ZZZEYEZFEYXFYGFXHGXWHXIHWVIWJIVUJVKJUTKULKTSLTMLSRMSNMRQNRONQPOQlmnlnoloplpqlqrlrslstltuluvlvwlwxlxylyzlz{l{|l|}l}~l~l€l€l‚l‚ƒlƒ„l„…l…†l†‡l‡ˆlˆ‰l‰ŠlŠ‹ŒŽ‹ŒŽ>ˆõ6>b Ö> âú=¯4<¬“§½‡€=·À½‡€>\n =Ø8Î>šÉU>Ln>£G>=þøŒ>®7l=„©‹>»%º<Î6>ÌÖQ»¸^>áȼØeØ>ï!#½¢^>ÿî ½4œ’? ÙÀ½;r_?¼½7T°?"ã½*ü‹?—뽎Á?! ò¼±f ?"Ãͼ_p?#sZ;Óÿ&?!d¸<¸¨(?Ÿ;=º}?ù=º}?k×<ê}?kÝ<„ˆ†?§ú¼ž4? ?«¼M4œ?+A»‘ä.>óêA<„®Ì>à#–=|H>ÉjE>‚Û>úÛ>»—?"ã>óP!?/sZ?™v?Gu?™v>ÁL*> äJ>­Å¸>èÕ>¡îu??Ô>”`{? øœ>‹³`? ÛE>tn?:f>QuR?:\>-Í? ƒ…>|¡? =ûš? Ä=à,[>þHØ=Ú¯ÿ>óP!=âê‰>èWt=þVÍ>ᨋ>œ>àù2>/)³>ç*(>3;+>ïŽ~>/sc>ùPò>8ÀV?˜>LM)?Õ*>`Šc?û|>tè>ûD>„)¡>ä•Ñ>Œ7Ó>À:<>С>£Å#>“>[>‘å>“íæ>‚Û>”n>z½d>Ð#÷>øò>Ê·ç>Jðî     ???@@ !!##>          !"#$%&$&'$'($()$)*$*7$78$89$9:$:;$;<$<=$=>$>#*+,*,-*-.*./*/0*01*12*24*45*56*67234<Õ$>ØÐd= V>ÒBÐ=q>>ÊØ=1@>½_u=2§>³"N=ã¨>¢À^<â?«>t;<Õ$>}k_<â?«>Tvz= V>3²“=FPA> Û=Àv>}=¾æC>éV>!6=êã+>'ˆ„=áË>IïÒ=áË>v+r=áË>J ½wÊD>>”F½×£H>@7§¾Á$>P™ž¾#>eåľÆ‚>~y¾ Ð*>‡mK½þôª>)5½Ñª>©Æ~=áßÇ>Èç=án>âKœ=êã+>ó<=þ‹ê?Ys> ½¼?ç >|D?>-%?Óâ>J¢!?ƒ…>h9?av>€Y? ¨>>»?!âÊ>Ö.?"´€>®8"?#ï >¸Þ1?&Ìý>ÁàÚ?*|ž>˵=?/fÏ>Õ‰œ?-Ãi>Ü3?(Ù8>×,ý?#ï >ÒBÐ?Ö>ÊØ?¾>¾š?wG>´Å¶?0}>«Ã ?é¯> KF?¢é>’^h? \>ˆŠ ?U>€Y?+$>m b>öòX>]ë>äS>We >Ò»Y>UiF>±ð}>Wd†>Ü•U? é >àY?Ñ«>å•ë?˜¶>ïà&?*nž>îüH?3wA>â$Â?9¿S>ÙóÔ?:ùÝ>ÑÂÏ?:ùÝ>ÈÀ*?:(+>Á`ã?8„Å>¼ª¼?5ÛF>»A¨?4˜>¸¬U?0’w>³,Ç?¯>²H-?ÓA>¯ ò? f>ˆ0ä>Vá>W ù>Vá>*ÏL>\§r>õ>h9=âðü>u:g=Ìp>ƒŸÜ=Ⱥ¶>Ÿ=Ⱥ¶>~=¾æC>¨|B=±Ë>¹¯å=§öÂ>ÆË=‘A>Пl=`†›>×,ý=þÖ>ÚsÌ>=Y.½íÁ>Èÿä>Æ&Ÿ      OOOPPPQQRRRSSTTUUVVWXX  !!""##$$55566778899JJKKLLMMNNO()*(*+'(+'+,',-'-.'./&'/&/0&01&12%&2%23$%3$34$45<=><>?<?@<@A<AB<BC<CD;<D;DE;EF:;F:FG:GH9Y:9:H9HI9IJ?A6¼œ¢˜?$Ç<ª"´?Ú=ƒ2?$(ã=ê˜?-K>C‹¬?1‚>‰æƒ?3B >¯P?3Ñ>ÒÏþ?0ÙŽ>ë?!?,°‘?b´?&Ü\? ?!9|?Hã?ª1?-Á? ¢?hi?¹»? ? m?–e? 0{?S??JÕ?3h?*>ü>a?l£>ÖÅ]?…>½¡Y?ôÉ>¢‰K?ÐË>c ?î†>eà?îó>-N? /=ÿ8L?²d=ÔÜß>õ&Œ=¿X°?LÛ»Ì<>ø`F=Å­ë>æh®=Á^á>­cB=·¼o>Ä”O=á;¬>ÃÃ/>û>Äy>%->ÅýY>Tè>Ñ›Í>Y;>Ϥ>’Âm>ÈûÑ>›Æa>»¯Ï> À‹>®BŠ>žßM>¨'{>Ÿx|> ¨O>›5>ž>•eh>›Ö>‡FV>Ùá>s^í>žÉ_>8ÞÙ>œ,> È?>‹–l=Öœ>…[¹=²yW>a =»fQ>A—=Ç»s> ­Æ=íñ>(>a> Hr>Fê> Ú>|Iw>Pm>–$T>#6Ø>¶¤Ê>3¨ç>Í{4>QÓ?>殎>q¦^>òÃb>ˆG9>÷l>’;T>ÿ!B>”S8?9>‘A? ¸}>…£«?-„>n‹ ?Í>>åÛ? ÁÓ>üŠ?†(>Ä?{]=¾@È>å΀=vJ>Àù–="þ‚>¥än<Þì9>‹Â›<¹¯>TµŒ<ßMþ>$ã=*Ö«=ãu5=p›·=ˆwh=°Ÿè<–\>—4¼|‹>¸à¼WÉ >š¼Û:ÝHE>ÒÙ`=Êcê>Á>ý=á.‘>^²Ã¼—ÿV>Ÿ‹ó;ÙŸä>¬)<‹ª™>²ÙŒ:÷ é>½¼}G¿>Ә߼úNÁ>ð„¨¼÷ž?ƒ¼¯á>ã\ž½ _å     RRS$%&$&'$'($()$)*$*+$+,$,-#$-#-."#."./!"/!/0 !0 01 112S2S223<=><>?<?@<@A<AB<BC<CD<DE<EF;<F;FG;GH9;H9HI9IJ9JK89K8KL78L7LM67M6MN56N5NO45O4OT4TP34P3PQ3QU3VVWWXXYY\\ZZ[3UVdx-4.4.4/fonts/README0000644000076500000240000000254507703651071011102 00000000000000The following fonts are supplied with Data Explorer, and may be found in this directory. Each one is a Data Explorer format file. If you would like to look at the structure of a font file, simply Import the data using the Import module, and Export it in text format. You may also add your own fonts in this format. default fonts: area: an area font (same as pitman) fixed: a fixed width font (same as roman_sfix) variable: a variable width font (same as roman_s) cyrilic font: cyril_d: a double-line cyrilic font gothic fonts: gothiceng_t: an english gothic triple-line font gothicger_t: a german gothic triple-line font gothicit_t: an italian gothic triple-line font greek fonts: greek_d: a greek double-line font greek_s: a greek single-line font italic fonts: italic_d: an italic double-line font italic_t: an italic triple-line font area (filled) font: pitman: an area typewriter-style font roman fonts: roman_ext: an extended character set roman single-line san serif font roman_dser: a roman double-line serif font roman_d: a roman double-line san serif font roman_s: a roman single-line san serif font roman_sfix: a roman fixed width single-line san serif font roman_tser: a roman triple-line serif font script fonts: script_d: a script double-line font script_s: a script single-line font dx-4.4.4/fonts/roman_d.dx0000644000076500000240000025032407120231603012162 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 16 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 16 msb ieee data 128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 256 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 416 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 42 msb ieee data 512 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 41 msb ieee data 848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.594700 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1176 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 64 msb ieee data 1592 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 61 msb ieee data 2104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.782500 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 15 msb ieee data 2592 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 16 msb ieee data 2712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 20 msb ieee data 2840 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 20 msb ieee data 3000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 20 msb ieee data 3160 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 20 msb ieee data 3320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3480 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3792 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 3856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 15 msb ieee data 3920 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 16 msb ieee data 4040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 4168 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 4200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 12 msb ieee data 4232 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 12 msb ieee data 4328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.344300 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4424 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 36 msb ieee data 4488 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 32 msb ieee data 4776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 8 msb ieee data 5032 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 8 msb ieee data 5096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 27 msb ieee data 5160 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 26 msb ieee data 5376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 37 msb ieee data 5584 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 32 msb ieee data 5880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 9 msb ieee data 6136 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 8 msb ieee data 6208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 38 msb ieee data 6272 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 35 msb ieee data 6576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 54 msb ieee data 6856 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 48 msb ieee data 7288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 7 msb ieee data 7672 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 6 msb ieee data 7728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 60 msb ieee data 7776 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 58 msb ieee data 8256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 54 msb ieee data 8720 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 48 msb ieee data 9152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 24 msb ieee data 9536 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 24 msb ieee data 9728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 27 msb ieee data 9920 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 28 msb ieee data 10136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 10360 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 10384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 10400 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 10464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 10528 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 10552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 46 msb ieee data 10568 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 42 msb ieee data 10936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.594700 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 11272 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 11656 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 10 msb ieee data 12040 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 8 msb ieee data 12120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 32 msb ieee data 12184 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 32 msb ieee data 12440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.626000 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 34 msb ieee data 12696 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 34 msb ieee data 12968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 24 msb ieee data 13240 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 24 msb ieee data 13432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.657300 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 12 msb ieee data 13624 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 11 msb ieee data 13720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.594700 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 10 msb ieee data 13808 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 9 msb ieee data 13888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.563400 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 40 msb ieee data 13960 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 40 msb ieee data 14280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.657300 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 12 msb ieee data 14600 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 10 msb ieee data 14696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.688600 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 4 msb ieee data 14776 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 4 msb ieee data 14808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.281700 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 16 msb ieee data 14840 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 16 msb ieee data 14968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.532100 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 12 msb ieee data 15096 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 10 msb ieee data 15192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.657300 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 6 msb ieee data 15272 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 6 msb ieee data 15320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.532100 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 10 msb ieee data 15368 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 10 msb ieee data 15448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.751200 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 8 msb ieee data 15528 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 8 msb ieee data 15592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.688600 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 36 msb ieee data 15656 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 36 msb ieee data 15944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 20 msb ieee data 16232 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 19 msb ieee data 16392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.626000 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 40 msb ieee data 16544 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 40 msb ieee data 16864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 24 msb ieee data 17184 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 22 msb ieee data 17376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.626000 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 39 msb ieee data 17552 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 39 msb ieee data 17864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 8 msb ieee data 18176 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 7 msb ieee data 18240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.532100 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 20 msb ieee data 18296 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 20 msb ieee data 18456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.688600 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 6 msb ieee data 18616 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 6 msb ieee data 18664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 10 msb ieee data 18712 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 10 msb ieee data 18792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.813800 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 8 msb ieee data 18872 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 8 msb ieee data 18936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 8 msb ieee data 19000 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 9 msb ieee data 19064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.594700 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 10 msb ieee data 19136 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 8 msb ieee data 19216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 19280 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 19328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 19360 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 19376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 19384 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 19432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 19464 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 19520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 19560 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 19576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 15 msb ieee data 19584 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 16 msb ieee data 19704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 28 msb ieee data 19832 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 28 msb ieee data 20056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.626000 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 28 msb ieee data 20280 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 28 msb ieee data 20504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.626000 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 28 msb ieee data 20728 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 28 msb ieee data 20952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.563400 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 28 msb ieee data 21176 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 28 msb ieee data 21400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.626000 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 32 msb ieee data 21624 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 32 msb ieee data 21880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 15 msb ieee data 22136 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 14 msb ieee data 22256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.438200 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 40 msb ieee data 22368 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 40 msb ieee data 22688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.626000 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 17 msb ieee data 23008 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 17 msb ieee data 23144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.626000 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 16 msb ieee data 23280 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 16 msb ieee data 23408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.281700 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 16 msb ieee data 23536 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 16 msb ieee data 23664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.281700 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 12 msb ieee data 23792 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 10 msb ieee data 23888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.594700 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 4 msb ieee data 23968 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 4 msb ieee data 24000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.281700 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 29 msb ieee data 24032 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 30 msb ieee data 24264 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.970300 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 17 msb ieee data 24504 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 17 msb ieee data 24640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.626000 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 32 msb ieee data 24776 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 32 msb ieee data 25032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.594700 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 28 msb ieee data 25288 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 28 msb ieee data 25512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.626000 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 28 msb ieee data 25736 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 28 msb ieee data 25960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.626000 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 13 msb ieee data 26184 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 13 msb ieee data 26288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.438200 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 40 msb ieee data 26392 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 34 msb ieee data 26712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 8 msb ieee data 26984 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 8 msb ieee data 27048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.344300 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 17 msb ieee data 27112 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 17 msb ieee data 27248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.626000 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 6 msb ieee data 27384 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 6 msb ieee data 27432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.500800 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 10 msb ieee data 27480 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 10 msb ieee data 27560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.751200 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 8 msb ieee data 27640 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 8 msb ieee data 27704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.563400 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 8 msb ieee data 27768 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 9 msb ieee data 27832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 8 msb ieee data 27904 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 8 msb ieee data 27968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.563400 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 28032 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 28312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 28584 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 28600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 28608 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 28888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 29160 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 29320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 29480 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 29576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4t=K(R>4t=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>s¹> A‰?,ô>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>s¹>@N¥?,ô>`[Ç=K(R>`[Ç=¥®_    =à[Î>éº==à[Î?$ðÇ>:û?$ðÇ>:û?,ô>0H?$ðÇ>ÈQï>éº=>ÈQï?$ðÇ>ØXy?$ðÇ>ØXy?,ô>è_ ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4t>éº=>4t?ã¬>4t?ê:> A‰=K(R> A‰=åÈ—> A‰>Ù³¯> A‰>éº=> A‰?í> A‰?$ðÇ>@N¥=¥®_>€4q<•çÉ>€4q=K(R>€4q?$ðÇ>€4q?,ô>:û½Úîé>:û?M*> A‰½Úîé> A‰?M*>°H<•çÉ>°H=K(R>°H?$ðÇ>°H?,ô>ÀN¨=K(R>ÐU6>™™x>ÐU6>© >ÐU6?í>à[À=K(R>à[À=¥®_>à[À>‰’ê>à[À?ê:>à[À?$ðÇ>ðbQ=¥®_>ðbQ=åÈ—>ðbQ>ñg>ðbQ>S ž>ðbQ>‰’ê?4o>ñg?4o>S ž?4o?ê: ))!! %%$$    &&((''"" #=ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7µ>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>ñg=ÀN¥>S ž>4t=¥®_>4t>ñg>4t>S ž>4t>‰’ê> A‰=K(R> A‰=¥®_> A‰>‰’ê>@N¥>™™x>@N¥>© >`[Ç<•çÉ>`[Ç=K(R>`[Ç?ã¬>`[Ç?ê:>€4n>Ù³¯>€4n?ã¬>€4n?ê:>€4n?í>€4n?$ðÇ>:û>Ù³¯>:û?$ðÇ> A‰>© > A‰?$ðÇ> A‰?,ô>°H<•çÉ>°H=K(R>°H>© >°H>É­!>°H>Ù³¯>°H?$ðÇ>°H?,ô>ÀN¥>éº=>ÀN¥?$ðÇ>ÐU2=K(R>ÐU2=¥®_>ÐU2>éº=>ÐU2?ã¬>ÐU2?ê:>ÐU2?í>ÐU2?$ðÇ>à[Ã=åÈ—>à[Ã?ã¬>à[Ã?ê:>ðbQ=åÈ—>ðbQ>ñg>ðbQ>2þ‚?4o>ñg?4o>2þ‚?7µ>¹¦“?:ý=K(R?:ý=¥®_?:ý>¹¦“?:ý>É­!?:ý>Ù³¯?>D>Ù³¯? A‹<•çÉ? A‹=K(R? A‹>Ù³¯? A‹>éº=?0H<•çÉ?0H=K(R?0H>Ù³¯?0H>éº=?;;6611..))##  $$**++(( --2288<?>>::574400,,""   %%&&!'//3399==<>4t>éº=>4t?í>4t?$ðÇ> A‰?ê:> A‰?í> A‰?$ðÇ> A‰?,ô>@N¥>ùÀÊ>@N¥?ê:>@N¥?í>@N¥?$ðÇ>@N¥?,ô>`[Ç? æó>`[Ç?í>`[Ç?$ðÇ     =ÀN¥>s¹=ÀN¥>¹¦“>4n=¥®_>4n>s¹>4n>¹¦“>4n?ã¬> A‰=¥®_> A‰?ã¬>@N«½5tý>@N«?$ðÇ>`[À½5tý>`[À?$ðÇ>€4n¾ „>€4n?<úœ>:ÿ¾ „>:ÿ?<úœ> A¾MžÇ> A?M*>°H¾MžÇ>°H?M*    =ÀN¥¾MžÇ=ÀN¥?M*>4n¾MžÇ>4n?M*> A‰¾ „> A‰?<úœ>@N«¾ „>@N«?<úœ>`[À½5tý>`[À?$ðÇ>€4n½5tý>€4n?$ðÇ>:ÿ=¥®_>:ÿ?ã¬> A=¥®_> A>s¹> A>¹¦“> A?ã¬>°H>s¹>°H>¹¦“    =ÀN²>É­!=ÀN²>Ù³¯=ÀN²? æó=ÀN²?ê:>4n>É­!>4n?ê:>`[Ç>© >`[Ç?$ðÇ>€4n>™™x>€4n?,ô>:û>© >:û?$ðÇ>ÀN¨>É­!>ÀN¨?ê:>ÐU2>É­!>ÐU2>Ù³¯>ÐU2? æó>ÐU2?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© >4t½Úîé>4t=K(R>4t=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥½šÔµ>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[ǼU;>`[Ç=K(R>`[Ç=¥®_     >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4t=K(R>4t=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[Ç=K(R>`[Ç=¥®_ =€4l¾MžÇ=ÀNµ¾MžÇ? A‰?M*?(DÒ?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n>™™x>4n>É­!>4n? æó> A>ñg> A? æó>@N¥=K(R>@N¥=¥®_>@N¥?í>@N¥?$ðÇ>`[À=K(R>`[À?$ðÇ>:ÿ<•çÉ>:ÿ=K(R>:ÿ?$ðÇ>:ÿ?,ô>°H<•çÉ>°H=K(R>°H?$ðÇ>°H?,ô>ÐU6=K(R>ÐU6?$ðÇ>à[Ã=K(R>à[Ã=¥®_>à[Ã?í>à[Ã?$ðÇ>ðbN>ñg>ðbN? æó?4o>ñg?4o>™™x?4o>É­!?4o? æó?7¶>™™x?7¶>É­! ""##!!    >pbN?ã¬>pbN? æó>˜>B? æó>˜>B?ê:>¸K^<•çÉ>¸K^?í>ÈQì<•çÉ>ÈQì?,ô=ÀN¥<•çÉ>4n<•çÉ>4n=K(R>4n?ã¬>4n? æó> A?ã¬> A? æó> A?í>@N¥?í>@N¥?$ðÇ>€4n?$ðÇ>€4n?,ô>ÀN¨>© >ÀN¨?$ðÇ>ÀN¨?,ô>ÐU6>© >à[Ã>Ù³¯>à[Ã?í>à[Ã?$ðÇ>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN? æó>ðbN?í?4o>ùÀÊ?4o? æó?7¶<•çÉ?7¶=K(R   =ÀN¥>ñg>4n=¥®_>4n=åÈ—>4n>ñg> A=K(R> A=¥®_> A?$ðÇ> A?,ô>`[À=K(R>€4n<•çÉ>€4n=K(R>€4n>É­!>:ÿ>É­!>:ÿ>Ù³¯>°H<•çÉ>°H=K(R>°H>É­!>°H>Ù³¯>ÀN¨=K(R>ÀN¨>É­!>à[Ã=K(R>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>É­!>ðbN=åÈ—>ðbN>© >ðbN?$ðÇ>ðbN?,ô?4o=åÈ—?4o>2þ‚?4o>S ž?4o>s¹?4o>‰’ê?4o>© ?4o?,ô?7¶>S ž?7¶>s¹""  !!$$##    = A‹>2þ‚=à[À>2þ‚=à[À>S ž>ÈQï<•çÉ>ÈQï?ê:>ØX}<•çÉ>ØX}?,ô? 9Z>2þ‚? 9Z>S ž=ÀN¥>ñg>4n=¥®_>4n=åÈ—>4n>ñg>4n>É­!> A=K(R> A=¥®_> A>É­!> A>Ù³¯> A?,ô>@N¥?$ðÇ>`[À=K(R>`[À>Ù³¯>€4n<•çÉ>€4n=K(R>€4n>éº=>°H<•çÉ>°H=K(R>°H>Ù³¯>°H>éº=>ÀN¨=K(R>ÀN¨>Ù³¯>à[Ã=K(R>à[Ã=¥®_>à[Ã>É­!>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>¹¦“>ðbN?$ðÇ>ðbN?,ô?4o=åÈ—?4o>2þ‚?4o>S ž?4o>‰’ê?4o>™™x?4o>¹¦“?7¶>S ž?7¶>‰’ê    ##%%$$  "!!  =à[À>s¹=à[À>É­!>;=åÈ—>;>2þ‚>;>s¹>;>‰’ê>;>© >;>É­!>;? æó>0H=åÈ—>0H>© >0H? æó>PU2=K(R>PU2=¥®_>PU2>¹¦“>PU2>É­!>PU2?í>PU2?$ðÇ>pbN?$ðÇ>ˆ7¸=K(R>ˆ7¸>É­!>˜>B<•çÉ>˜>B=K(R>˜>B>É­!>˜>B>Ù³¯>˜>B?$ðÇ>˜>B?,ô>¨DÐ<•çÉ>¨DÐ=K(R>¨DÐ>É­!>¨DÐ>Ù³¯>¸Ka=K(R>¸Ka>É­!>¸Ka?$ðÇ>¸Ka?,ô>ØX}=K(R>ØX}=¥®_>ØX}>¹¦“>ØX}>É­!>ØX}?$ðÇ>è_=åÈ—>è_>© >è_?ê:>è_?í>è_?$ðÇ>øe˜=åÈ—>øe˜>2þ‚>øe˜>S ž>øe˜>s¹>øe˜>‰’ê>øe˜>© >øe˜?ê:?6>S ž?6>s¹'**33,,"" ##--445522&&+!!   $$.((//00)) 1%% =ÀN¥?$ðÇ=ÀN¥?,ô>@N¥<•çÉ>`[À<•çÉ?4o?$ðÇ?4o?,ô?7¶?,ô=ÀN¥>ñg=ÀN¥>s¹>4n=¥®_>4n=åÈ—>4n>ñg>4n>s¹>4n>™™x>4n?ã¬>4n?ê:> A=K(R> A=¥®_> A>™™x> A>éº=> A?ã¬> A?ê:> A?í> A?$ðÇ>@N¥>© >@N¥>¹¦“>@N¥>Ù³¯>@N¥>éº=>@N¥?$ðÇ>`[À=K(R>€4n<•çÉ>€4n=K(R>€4n>¹¦“>€4n>É­!>€4n>Ù³¯>€4n?$ðÇ>€4n?,ô>ÀN¨<•çÉ>ÀN¨=K(R>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨>Ù³¯>ÀN¨?$ðÇ>ÀN¨?,ô>ÐU6=K(R>à[Ã>© >à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã>éº=>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>™™x>ðbN>éº=>ðbN?ã¬>ðbN?ê:>ðbN?í>ðbN?$ðÇ?4o=¥®_?4o=åÈ—?4o>ñg?4o>s¹?4o>™™x?4o?ã¬?4o?ê:?7¶>ñg?7¶>s¹  &&--6655,,  !!((..889922$$ !!''77;;::33++ ""))//00*1##%4=à[À>éº==à[À>ùÀÊ>:û=åÈ—>:û>¹¦“>:û>Ù³¯>:û>éº=>:û>ùÀÊ>:û?ã¬>:û?ê:>0H=K(R>0H=¥®_>0H=åÈ—>0H>¹¦“>0H?ê:>PU2=K(R>PU2>™™x>PU2>© >PU2?í>PU2?$ðÇ>ˆ7µ<•çÉ>ˆ7µ=K(R>ˆ7µ>™™x>ˆ7µ?$ðÇ>˜>F>‰’ê>˜>F>™™x>˜>F?$ðÇ>˜>F?,ô>¨DÐ<•çÉ>¨DÐ=K(R>¨DÐ>‰’ê>¨DÐ>™™x>¨DÐ?$ðÇ>¨DÐ?,ô>¸K^>™™x>¸K^?$ðÇ>ÈQï=K(R>ØX}=K(R>ØX}=¥®_>ØX}>™™x>ØX}>© >ØX}?í>ØX}?$ðÇ>è_ >ñg>è_ >¹¦“>è_ ?ê:>øe•>ñg>øe•>™™x>øe•>¹¦“>øe•>Ù³¯>øe•>éº=>øe•?ã¬>øe•?ê:?6>™™x?6>éº=/&& ))335544--$$  1++!0''  ((2",,11..**#% >4t=K(R>4t=¥®_>4t>É­!>4t>Ù³¯> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥>éº=>`[Ç=K(R>`[Ç=¥®_>`[Ç>É­!>`[Ç>Ù³¯     >4t½Úîé>4t=K(R>4t=¥®_>4t>É­!>4t>Ù³¯> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥½šÔµ>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥>éº=>`[ǼU;>`[Ç=K(R>`[Ç=¥®_>`[Ç>É­!>`[Ç>Ù³¯      >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x=ÀN¥?ã¬=ÀN¥? æó>4t?ã¬>4t? æó>4t?ê:>4t?í> A‰?í> A‰?$ðÇ>`[À?$ðÇ>€4q=K(R>€4q=¥®_>€4q?$ðÇ>€4q?,ô>:û<•çÉ>:û=K(R>:û=¥®_>:û=åÈ—>:û>s¹>:û>© >:û>¹¦“> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>s¹> A‰>¹¦“>°H=K(R>°H=¥®_>°H>¹¦“>°H?$ðÇ>°H?,ô>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨?$ðÇ>à[À>É­!>à[À>Ù³¯>à[À?í>à[À?$ðÇ>ðbQ>Ù³¯>ðbQ>éº=>ðbQ>ùÀÊ>ðbQ? æó>ðbQ?ê:>ðbQ?í?4o>ùÀÊ?4o? æó %%++--,,&&"" $$))((## !*' =ÀN¦>™™x=ÀN¦>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¨<•çÉ>ÀN¨?ã¬>ÀN¨?,ô>à[À>2þ‚>ðbQ<•çÉ>ðbQ?ã¬>ðbQ?,ô?4o>S ž?7¶>S ž?7¶>‰’ê?7¶>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=€4~<•çÉ=ÀN¥<•çÉ>4n>2þ‚> A>S ž> A‰?ê:> A‰?,ô>ðbN>S ž?4o>2þ‚?7¶<•çÉ?:ý<•çÉ  =à[À<•çÉ=à[À?,ô>;=K(R>;>© >;>¹¦“>;?$ðÇ>¸Ka<•çÉ>¸Ka=K(R>¸Ka>© >¸Ka>¹¦“>¸Ka?$ðÇ>¸Ka?,ô>è_=K(R>è_=¥®_>è_>™™x>è_>© >è_>¹¦“>è_>É­!>è_?í>è_?$ðÇ>øe˜=¥®_>øe˜>ñg>øe˜>s¹>øe˜>™™x>øe˜>É­!>øe˜>éº=>øe˜? æó>øe˜?í?6>ñg?6>s¹?6>éº=?6? æó      =ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A=åÈ—> A>2þ‚> A?ã¬> A?ê:>`[À=K(R>`[À=¥®_>`[À?í>`[À?$ðÇ>:ÿ<•çÉ>:ÿ=K(R>:ÿ?$ðÇ>:ÿ?,ô>ÐU6<•çÉ>ÐU6=K(R>ÐU6?$ðÇ>ÐU6?,ô>ðbN=K(R>ðbN=¥®_>ðbN?í>ðbN?$ðÇ?4o=åÈ—?4o?ê:?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý?ã¬!   !   =à[À<•çÉ=à[À?,ô>;=K(R>;?$ðÇ>¨DÐ<•çÉ>¨DÐ=K(R>¨DÐ?$ðÇ>¨DÐ?,ô>ØX}=K(R>ØX}=¥®_>ØX}?í>ØX}?$ðÇ>è_=åÈ—>è_?ê:>øe˜=åÈ—>øe˜>2þ‚>øe˜?ã¬>øe˜?ê:?6>2þ‚?6>‰’ê?6>Ù³¯?6?ã¬? 9Z>‰’ê? 9Z>Ù³¯   =à[Î<•çÉ=à[Î?,ô>:û=K(R>:û>© >:û>¹¦“>:û?$ðÇ>¨DÓ>© >¨DÓ>¹¦“>øe˜<•çÉ>øe˜=K(R>øe˜?$ðÇ>øe˜?,ô   =ÀN²<•çÉ=ÀN²?,ô>4n<•çÉ>4n>© >4n>¹¦“>4n?$ðÇ> A>© > A>¹¦“>ðbQ?$ðÇ>ðbQ?,ô  =ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A=åÈ—> A>2þ‚> A?ã¬> A?ê:>@N¥=åÈ—>@N¥?ê:>`[À=K(R>`[À=¥®_>`[À?í>`[À?$ðÇ>:ÿ<•çÉ>:ÿ=K(R>:ÿ?$ðÇ>:ÿ?,ô>ÐU6<•çÉ>ÐU6=K(R>ÐU6>‰’ê>ÐU6>™™x>ÐU6?$ðÇ>ÐU6?,ô>ðbN=K(R>ðbN=¥®_>ðbN?í>ðbN?$ðÇ?4o=åÈ—?4o?ê:?7¶=åÈ—?7¶>2þ‚?7¶>‰’ê?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>™™x?:ý?ã¬'$$   %%&&'##  !!"">4n<•çÉ>4n?,ô> A‰<•çÉ> A‰>© > A‰>¹¦“> A‰?,ô?7¶<•çÉ?7¶>© ?7¶>¹¦“?7¶?,ô?:ý<•çÉ?:ý?,ô  >4n<•çÉ>4n?,ô> A‰<•çÉ> A‰?,ô=à[Î>2þ‚>:û=¥®_>:û>2þ‚>0H=K(R>0H=¥®_>pbU<•çÉ>pbU=K(R>˜>B<•çÉ>˜>B=K(R>¸Ka=K(R>¸Ka=¥®_>ÈQï=¥®_>ÈQï>2þ‚>ÈQï?,ô>ØXy>2þ‚>ØXy?,ô   =à[À<•çÉ=à[À?,ô>;<•çÉ>;>‰’ê>;>™™x>;?,ô>pbN>É­!>ˆ7¸>É­!?6<•çÉ?6?,ô? 9Z<•çÉ? 9Z?,ô    = A—<•çÉ= A—?,ô=à[À=K(R=à[À?,ô>è_ <•çÉ>è_ =K(R>4t<•çÉ>4t?,ô> A‰<•çÉ> A‰?ã¬>ÀN¥<•çÉ>ÀN¥=åÈ—?>D<•çÉ?>D?ã¬? A‹<•çÉ? A‹?,ô  >4n<•çÉ>4n?,ô> A‰<•çÉ> A‰?ê:?7¶=åÈ—?7¶?,ô?:ý<•çÉ?:ý?,ô=ÀNµ>‰’ê=ÀNµ>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>`[À=K(R>`[À=¥®_>`[À?í>`[À?$ðÇ>:û<•çÉ>:û?,ô> A=K(R> A?$ðÇ>ÀN¥=K(R>ÀN¥?$ðÇ>ÐU6<•çÉ>ÐU6?,ô>ðbQ=K(R>ðbQ=¥®_>ðbQ?í>ðbQ?$ðÇ?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>‰’ê?:ý>Ù³¯?:ý?ã¬?>D>‰’ê?>D>Ù³¯  ""##!!   =à[À<•çÉ=à[À?,ô>;<•çÉ>;>© >;>¹¦“>;?$ðÇ>ÈQï>© >ÈQï>¹¦“>ÈQï?$ðÇ>ÈQï?,ô>è_>¹¦“>è_>É­!>è_?í>è_?$ðÇ>øe˜>É­!>øe˜>éº=>øe˜? æó>øe˜?í?6>éº=?6? æó    =ÀNµ>‰’ê=ÀNµ>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>`[À=K(R>`[À=¥®_>`[À?í>`[À?$ðÇ>:û<•çÉ>:û?,ô> A=K(R> A?$ðÇ>ÀN¥=K(R>ÀN¥=åÈ—>ÀN¥?$ðÇ>ÐU6<•çÉ>ÐU6=åÈ—>ÐU6?,ô>ðbQ=K(R>ðbQ=¥®_>ðbQ?í>ðbQ?$ðÇ?7¶½5tý?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý½5tý?:ý>2þ‚?:ý>‰’ê?:ý>Ù³¯?:ý?ã¬?>D>‰’ê?>D>Ù³¯  ""&&''%%   ##$$!!=à[À<•çÉ=à[À?,ô>;<•çÉ>;>© >;>¹¦“>;?$ðÇ>˜>B>© >¨DÐ>© >¸Ka>© >¸Ka>¹¦“>¸Ka?$ðÇ>¸Ka?,ô>è_>¹¦“>è_>É­!>è_?í>è_?$ðÇ>øe˜<•çÉ>øe˜>É­!>øe˜>éº=>øe˜? æó>øe˜?í?6<•çÉ?6>éº=?6? æó    =ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?ã¬>4n?ê:> A=K(R> A=åÈ—> A>Ù³¯> A>éº=> A?í> A?$ðÇ>@N¥=¥®_>`[À>É­!>`[À>Ù³¯>€4n<•çÉ>€4n=K(R>€4n?$ðÇ>€4n?,ô>ÀN¨<•çÉ>ÀN¨=K(R>ÀN¨>© >ÀN¨>¹¦“>ÀN¨?$ðÇ>ÀN¨?,ô>à[Ã>™™x>à[Ã>© >à[Ã?í>ðbN=K(R>ðbN=¥®_>ðbN>‰’ê>ðbN?ê:>ðbN?$ðÇ?4o=åÈ—?4o>S ž?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:&   ""!! &  ##%%$$=€4n?$ðÇ=€4n?,ô>€4n<•çÉ>€4n?$ðÇ>:û<•çÉ>:û?$ðÇ>ðbQ?$ðÇ>ðbQ?,ô>4n>S ž>4n?,ô> A‰=åÈ—> A‰>S ž> A‰?,ô>@N«=åÈ—>`[À=K(R>`[À=¥®_> A<•çÉ> A=K(R>ÀN¥<•çÉ>ÀN¥=K(R>ðbQ=K(R>ðbQ=¥®_?4n=åÈ—?7¶=åÈ—?7¶>S ž?7¶?,ô?:ý>S ž?:ý?,ô  =€4~?,ô=ÀN¥?,ô> A‰<•çÉ> A‰=åÈ—?7¶?,ô?:ý?,ô=€4o?,ô=ÀN¦?,ô>€4q<•çÉ>€4q=åÈ—>ÐU2?ê:>ÐU2?,ô?:û<•çÉ?:û=åÈ—?8K_?,ô?@N¦?,ô  =ÀN¥<•çÉ=ÀN¥?,ô>4n<•çÉ>4n?,ô?4o<•çÉ?4o?,ô?7¶<•çÉ?7¶?,ô=€4n?,ô=ÀN¥?,ô>:û<•çÉ>:û>¹¦“> A‰<•çÉ> A‰>¹¦“?4o?,ô?7¶?,ô=ÀN¥<•çÉ=ÀN¥?$ðÇ=ÀN¥?,ô>4n<•çÉ>4n=K(R?4o?$ðÇ?4o?,ô?7¶<•çÉ?7¶=K(R?7¶?,ô  =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>F¾MžÇ>˜>F?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4n<•çÉ>€4n? æó>€4n?ê:> A>ùÀÊ>ÐU2>É­!4ÿÿ½5tý?4o½5tý>4t>ùÀÊ>4t?ã¬>4t?ê:> A‰>éº=> A‰>ùÀÊ> A‰?ã¬> A‰? æó> A‰?$ðÇ>@N¥>éº=>@N¥>ùÀÊ>@N¥?ã¬>@N¥? æó>`[Ç>ùÀÊ>`[Ç?ã¬>`[Ç?,ô  =à[À>S ž=à[À>‰’ê>:û=åÈ—>:û>S ž>:û>‰’ê>:û>¹¦“>0H=åÈ—>0H>¹¦“>PU2=K(R>PU2=¥®_>PU2>É­!>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ=K(R>ˆ7µ>Ù³¯>ˆ7µ>éº=>¸K^<•çÉ>¸K^=K(R>¸K^>Ù³¯>¸K^>éº=>ØX}=K(R>ØX}>Ù³¯>øe•<•çÉ>øe•=åÈ—>øe•>¹¦“>øe•>éº=?6<•çÉ?6>éº=    =à[À<•çÉ=à[À?,ô>;<•çÉ>;=åÈ—>;>¹¦“>;?,ô>PU2=K(R>PU2>Ù³¯>ˆ7¸<•çÉ>ˆ7¸=K(R>ˆ7¸>Ù³¯>ˆ7¸>éº=>¸Ka<•çÉ>¸Ka=K(R>¸Ka>Ù³¯>¸Ka>éº=>ØX}=K(R>ØX}=¥®_>ØX}>É­!>ØX}>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜=åÈ—>øe˜>S ž>øe˜>‰’ê>øe˜>¹¦“?6>S ž?6>‰’ê    =ÀN¥>S ž=ÀN¥>‰’ê>4t=åÈ—>4t>S ž>4t>‰’ê>4t>¹¦“> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>€4q<•çÉ>€4q=K(R>€4q>Ù³¯>€4q>éº=>°H<•çÉ>°H=K(R>°H>Ù³¯>°H>éº=>ÐU6=K(R>ÐU6=¥®_>ÐU6>É­!>ÐU6>Ù³¯>à[À>ñg>à[À>© >ðbQ=åÈ—>ðbQ>¹¦“    =à[À>S ž=à[À>‰’ê>:û=åÈ—>:û>S ž>:û>‰’ê>:û>¹¦“>0H=åÈ—>0H>¹¦“>PU2=K(R>PU2=¥®_>PU2>É­!>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ=K(R>ˆ7µ>Ù³¯>ˆ7µ>éº=>¸K^<•çÉ>¸K^=K(R>¸K^>Ù³¯>¸K^>éº=>ØX}=K(R>ØX}>Ù³¯>øe•<•çÉ>øe•=åÈ—>øe•>¹¦“>øe•?,ô?6<•çÉ?6?,ô    =ÀN¥>S ž=ÀN¥>‰’ê>4t=åÈ—>4t>S ž>4t>s¹>4t>‰’ê>4t>¹¦“> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>€4q<•çÉ>€4q=K(R>€4q>Ù³¯>€4q>éº=>°H<•çÉ>°H=K(R>°H>Ù³¯>°H>éº=>ÐU6=K(R>ÐU6=¥®_>ÐU6>É­!>ÐU6>Ù³¯>à[À>ñg>à[À>‰’ê>à[À>© >à[À>É­!>ðbQ=åÈ—>ðbQ>s¹>ðbQ>©     =ÀN¥>Ù³¯=ÀN¥>éº=>@N¥<•çÉ>@N¥? æó>`[À<•çÉ>`[À? æó>`[À?í>`[À?$ðÇ>€4q?$ðÇ>:ÿ?$ðÇ>:ÿ?,ô> A>Ù³¯> A>éº=>°H?$ðÇ>°H?,ô    =à[À>S ž=à[À>‰’ê>:û½Úîé>:û=åÈ—>:û>S ž>:û>‰’ê>:û>¹¦“>0H=åÈ—>0H>¹¦“>PU2¾-‘¬>PU2½Úîé>PU2=K(R>PU2=¥®_>PU2>É­!>PU2>Ù³¯>pbN¾ „>ˆ7µ¾MžÇ>ˆ7µ<•çÉ>ˆ7µ=K(R>ˆ7µ>Ù³¯>ˆ7µ>éº=>˜>F¾-‘¬>¸K^¾MžÇ>¸K^¾-‘¬>¸K^<•çÉ>¸K^=K(R>¸K^>Ù³¯>¸K^>éº=>ØX}¾-‘¬>ØX}¾ „>ØX}=K(R>ØX}>Ù³¯>è_ ½Úîé>øe•½Úîé>øe•¼U;>øe•=åÈ—>øe•>¹¦“>øe•>éº=?6¼U;?6>éº='%%""  '&&!! $ #$  #>4n<•çÉ>4n?,ô> A<•çÉ> A>© > A?,ô>€4n>É­!>€4n>Ù³¯> A‰>Ù³¯> A‰>éº=>ÀN¨>Ù³¯>ÐU6>éº=>à[Ã>É­!>ðbN<•çÉ>ðbN>© >ðbN>Ù³¯?4o<•çÉ?4o>©   =ÀN²?í=ÀN²?$ðÇ>4n<•çÉ>4n>éº=>4n?ê:>4n?í>4n?$ðÇ>4n?,ô> A‰<•çÉ> A‰>éº=> A‰?ê:> A‰?í> A‰?$ðÇ> A‰?,ô>@N«?í>@N«?$ðÇ    =ÀN²?í=ÀN²?$ðÇ>4n¾MžÇ>4n>éº=>4n?ê:>4n?í>4n?$ðÇ>4n?,ô> A‰¾MžÇ> A‰>éº=> A‰?ê:> A‰?í> A‰?$ðÇ> A‰?,ô>@N«?í>@N«?$ðÇ    =à[À<•çÉ=à[À?,ô>;<•çÉ>;=åÈ—>;>ñg>;?,ô>pbN>s¹>ˆ7¸>‰’ê>ØX}<•çÉ>è_>éº=>øe˜<•çÉ>øe˜>éº=    >4n<•çÉ>4n?,ô> A‰<•çÉ> A‰?,ô>4n<•çÉ>4n>éº=> A‰<•çÉ> A‰>© > A‰>éº=>€4n>É­!>€4n>Ù³¯> A>Ù³¯> A>éº=>ÀN¥>Ù³¯>ÐU2>éº=>à[Ã>É­!>ðbN<•çÉ>ðbN>© >ðbN>Ù³¯?4n<•çÉ?4n>© ?>D>É­!?>D>Ù³¯?(DÒ>Ù³¯?(DÒ>éº=?8K_>Ù³¯?@N¥>éº=?HQí>É­!?PU6<•çÉ?PU6>© ?PU6>Ù³¯?XXy<•çÉ?XXy>©   >4n<•çÉ>4n>éº=> A<•çÉ> A>© > A>éº=>€4n>É­!>€4n>Ù³¯> A‰>Ù³¯> A‰>éº=>ÀN¨>Ù³¯>ÐU6>éº=>à[Ã>É­!>ðbN<•çÉ>ðbN>© >ðbN>Ù³¯?4o<•çÉ?4o>©   =ÀN¥>S ž=ÀN¥>‰’ê>4t=åÈ—>4t>S ž>4t>‰’ê>4t>¹¦“> A‰=åÈ—> A‰>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>€4q<•çÉ>€4q=K(R>€4q>Ù³¯>€4q>éº=>°H<•çÉ>°H=K(R>°H>Ù³¯>°H>éº=>ÐU6=K(R>ÐU6=¥®_>ÐU6>É­!>ÐU6>Ù³¯>à[À=åÈ—>à[À>¹¦“>ðbQ=åÈ—>ðbQ>S ž>ðbQ>‰’ê>ðbQ>¹¦“?4o>S ž?4o>‰’ê    =à[À¾MžÇ=à[À>éº=>;¾MžÇ>;=åÈ—>;>¹¦“>;>éº=>PU2=K(R>PU2>Ù³¯>ˆ7¸<•çÉ>ˆ7¸=K(R>ˆ7¸>Ù³¯>ˆ7¸>éº=>¸Ka<•çÉ>¸Ka=K(R>¸Ka>Ù³¯>¸Ka>éº=>ØX}=K(R>ØX}=¥®_>ØX}>É­!>ØX}>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜=åÈ—>øe˜>S ž>øe˜>‰’ê>øe˜>¹¦“?6>S ž?6>‰’ê    =à[À>S ž=à[À>‰’ê>:û=åÈ—>:û>S ž>:û>‰’ê>:û>¹¦“>0H=åÈ—>0H>¹¦“>PU2=K(R>PU2=¥®_>PU2>É­!>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ=K(R>ˆ7µ>Ù³¯>ˆ7µ>éº=>¸K^<•çÉ>¸K^=K(R>¸K^>Ù³¯>¸K^>éº=>ØX}=K(R>ØX}>Ù³¯>øe•¾MžÇ>øe•=åÈ—>øe•>¹¦“>øe•>éº=?6¾MžÇ?6>éº=    = Aˆ<•çÉ= Aˆ>éº==à[À<•çÉ=à[À>‰’ê=à[À>éº=>;>© >;>¹¦“>PU2>É­!>PU2>Ù³¯>ˆ7¸>Ù³¯>ˆ7¸>éº=>¸Ka>Ù³¯>¸Ka>éº=  =ÀN²=åÈ—=ÀN²>¹¦“>4n=K(R>4n=¥®_>4n=åÈ—>4n>™™x>4n>© >4n>¹¦“>4n>É­!>4n>Ù³¯> A‰=K(R> A‰>™™x> A‰>Ù³¯>@N¥>‰’ê>@N¥>™™x>`[Ç<•çÉ>`[Ç=K(R>`[Ç>Ù³¯>`[Ç>éº=> A<•çÉ> A=K(R> A>Ù³¯> A>éº=>°H>S ž>°H>s¹>ÀN¨=K(R>ÀN¨>S ž>ÀN¨>Ù³¯>ÐU2=K(R>ÐU2=¥®_>ÐU2=åÈ—>ÐU2>ñg>ÐU2>2þ‚>ÐU2>S ž>ÐU2>¹¦“>ÐU2>É­!>ÐU2>Ù³¯>à[Ã=åÈ—>à[Ã>ñg>à[Ã>¹¦“'$$    '""#  !!&&%%=€4n>Ù³¯=€4n>éº=> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥?,ô>:ÿ>Ù³¯>:ÿ>éº=>4n>ñg>4n>éº=> A=K(R> A>ñg> A>éº=>@N¥=¥®_>`[À<•çÉ>€4n=K(R> A‰<•çÉ> A‰=K(R>ÀN¨=K(R>ÀN¨=¥®_>ðbN<•çÉ>ðbN>ñg>ðbN>éº=?4o<•çÉ?4o>éº=   =€4n>éº==ÀN²>éº=>€4n<•çÉ>€4n=¥®_>ÐU2>éº=>à[Ã>éº==ÀN¥>éº=>4t>éº=>€4n<•çÉ>€4n=åÈ—>ÀN¥>¹¦“>ÀN¥>éº=?4o<•çÉ?4o=åÈ—? A‹>éº=?(DÐ>éº=  =ÀN¥<•çÉ=ÀN¥>éº=>4t<•çÉ>4t>éº=>à[À<•çÉ>à[À>éº=>ðbQ<•çÉ>ðbQ>éº==€4n>éº==ÀN²>éº=>4n¾MžÇ> A‰¾MžÇ>€4n<•çÉ>€4n=¥®_>ÐU2>éº=>à[Ã>éº==ÀN¥<•çÉ=ÀN¥>Ù³¯=ÀN¥>éº=> A‰=K(R>ÐU6>Ù³¯>ðbQ<•çÉ>ðbQ=K(R>ðbQ>éº=>:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>F¾MžÇ>˜>F=åÈ—>˜>F>2þ‚>˜>F>Ù³¯>˜>F>ùÀÊ>˜>F?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7¸½šÔµ>ˆ7¸¼U;>ˆ7¸?í>ˆ7¸?,ô>˜>F>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N«>Ù³¯>@N«?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê:   dx-4.4.4/fonts/roman_dser.dx0000644000076500000240000024235607120231720012702 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 10 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 80 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 11 msb ieee data 152 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 320 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 36 msb ieee data 416 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 34 msb ieee data 704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 976 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 43 msb ieee data 1392 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 43 msb ieee data 1736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.782500 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2080 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2184 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2440 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2696 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2768 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2816 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2920 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2944 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 3008 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 32 msb ieee data 3032 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 34 msb ieee data 3288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 8 msb ieee data 3560 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 5 msb ieee data 3624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 37 msb ieee data 3664 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 37 msb ieee data 3960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 39 msb ieee data 4256 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 39 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 8 msb ieee data 4880 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 5 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 41 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 42 msb ieee data 5776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6112 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 21 msb ieee data 6288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6456 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 41 msb ieee data 7232 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 42 msb ieee data 7560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7896 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 7960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 8024 attribute "dep" string "positions" # object 81 class field component "positions" value 82 component "connections" value 8 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 84 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 85 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 83 class field component "positions" value 84 component "connections" value 85 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 87 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 88 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 86 class field component "positions" value 87 component "connections" value 88 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 90 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 91 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 89 class field component "positions" value 90 component "connections" value 91 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 93 class array type float rank 1 shape 2 items 27 msb ieee data 8240 attribute "dep" string "positions" # object 94 class array type int rank 1 shape 2 items 26 msb ieee data 8456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 92 class field component "positions" value 93 component "connections" value 94 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 96 class array type float rank 1 shape 2 items 48 msb ieee data 8664 attribute "dep" string "positions" # object 97 class array type int rank 1 shape 2 items 48 msb ieee data 9048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 95 class field component "positions" value 96 component "connections" value 97 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 99 class array type float rank 1 shape 2 items 11 msb ieee data 9432 attribute "dep" string "positions" # object 100 class array type int rank 1 shape 2 items 6 msb ieee data 9520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 98 class field component "positions" value 99 component "connections" value 100 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 102 class array type float rank 1 shape 2 items 34 msb ieee data 9568 attribute "dep" string "positions" # object 103 class array type int rank 1 shape 2 items 33 msb ieee data 9840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 101 class field component "positions" value 102 component "connections" value 103 attribute "char width" number 0.688600 attribute "series position" number 66.000000 # object 105 class array type float rank 1 shape 2 items 27 msb ieee data 10104 attribute "dep" string "positions" # object 106 class array type int rank 1 shape 2 items 28 msb ieee data 10320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 104 class field component "positions" value 105 component "connections" value 106 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 108 class array type float rank 1 shape 2 items 24 msb ieee data 10544 attribute "dep" string "positions" # object 109 class array type int rank 1 shape 2 items 22 msb ieee data 10736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 107 class field component "positions" value 108 component "connections" value 109 attribute "char width" number 0.688600 attribute "series position" number 68.000000 # object 111 class array type float rank 1 shape 2 items 16 msb ieee data 10912 attribute "dep" string "positions" # object 112 class array type int rank 1 shape 2 items 10 msb ieee data 11040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 110 class field component "positions" value 111 component "connections" value 112 attribute "char width" number 0.657300 attribute "series position" number 69.000000 # object 114 class array type float rank 1 shape 2 items 14 msb ieee data 11120 attribute "dep" string "positions" # object 115 class array type int rank 1 shape 2 items 8 msb ieee data 11232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 113 class field component "positions" value 114 component "connections" value 115 attribute "char width" number 0.626000 attribute "series position" number 70.000000 # object 117 class array type float rank 1 shape 2 items 32 msb ieee data 11296 attribute "dep" string "positions" # object 118 class array type int rank 1 shape 2 items 30 msb ieee data 11552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 116 class field component "positions" value 117 component "connections" value 118 attribute "char width" number 0.719900 attribute "series position" number 71.000000 # object 120 class array type float rank 1 shape 2 items 18 msb ieee data 11792 attribute "dep" string "positions" # object 121 class array type int rank 1 shape 2 items 9 msb ieee data 11936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 119 class field component "positions" value 120 component "connections" value 121 attribute "char width" number 0.751200 attribute "series position" number 72.000000 # object 123 class array type float rank 1 shape 2 items 8 msb ieee data 12008 attribute "dep" string "positions" # object 124 class array type int rank 1 shape 2 items 4 msb ieee data 12072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 122 class field component "positions" value 123 component "connections" value 124 attribute "char width" number 0.344300 attribute "series position" number 73.000000 # object 126 class array type float rank 1 shape 2 items 16 msb ieee data 12104 attribute "dep" string "positions" # object 127 class array type int rank 1 shape 2 items 14 msb ieee data 12232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 125 class field component "positions" value 126 component "connections" value 127 attribute "char width" number 0.469500 attribute "series position" number 74.000000 # object 129 class array type float rank 1 shape 2 items 18 msb ieee data 12344 attribute "dep" string "positions" # object 130 class array type int rank 1 shape 2 items 9 msb ieee data 12488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 128 class field component "positions" value 129 component "connections" value 130 attribute "char width" number 0.688600 attribute "series position" number 75.000000 # object 132 class array type float rank 1 shape 2 items 10 msb ieee data 12560 attribute "dep" string "positions" # object 133 class array type int rank 1 shape 2 items 6 msb ieee data 12640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 131 class field component "positions" value 132 component "connections" value 133 attribute "char width" number 0.563400 attribute "series position" number 76.000000 # object 135 class array type float rank 1 shape 2 items 15 msb ieee data 12688 attribute "dep" string "positions" # object 136 class array type int rank 1 shape 2 items 10 msb ieee data 12808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 134 class field component "positions" value 135 component "connections" value 136 attribute "char width" number 0.782500 attribute "series position" number 77.000000 # object 138 class array type float rank 1 shape 2 items 12 msb ieee data 12888 attribute "dep" string "positions" # object 139 class array type int rank 1 shape 2 items 7 msb ieee data 12984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 137 class field component "positions" value 138 component "connections" value 139 attribute "char width" number 0.719900 attribute "series position" number 78.000000 # object 141 class array type float rank 1 shape 2 items 36 msb ieee data 13040 attribute "dep" string "positions" # object 142 class array type int rank 1 shape 2 items 38 msb ieee data 13328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 140 class field component "positions" value 141 component "connections" value 142 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 144 class array type float rank 1 shape 2 items 22 msb ieee data 13632 attribute "dep" string "positions" # object 145 class array type int rank 1 shape 2 items 19 msb ieee data 13808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 143 class field component "positions" value 144 component "connections" value 145 attribute "char width" number 0.688600 attribute "series position" number 80.000000 # object 147 class array type float rank 1 shape 2 items 52 msb ieee data 13960 attribute "dep" string "positions" # object 148 class array type int rank 1 shape 2 items 54 msb ieee data 14376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 146 class field component "positions" value 147 component "connections" value 148 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 150 class array type float rank 1 shape 2 items 34 msb ieee data 14808 attribute "dep" string "positions" # object 151 class array type int rank 1 shape 2 items 31 msb ieee data 15080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 149 class field component "positions" value 150 component "connections" value 151 attribute "char width" number 0.688600 attribute "series position" number 82.000000 # object 153 class array type float rank 1 shape 2 items 28 msb ieee data 15328 attribute "dep" string "positions" # object 154 class array type int rank 1 shape 2 items 30 msb ieee data 15552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 152 class field component "positions" value 153 component "connections" value 154 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 156 class array type float rank 1 shape 2 items 12 msb ieee data 15792 attribute "dep" string "positions" # object 157 class array type int rank 1 shape 2 items 8 msb ieee data 15888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 155 class field component "positions" value 156 component "connections" value 157 attribute "char width" number 0.594700 attribute "series position" number 84.000000 # object 159 class array type float rank 1 shape 2 items 18 msb ieee data 15952 attribute "dep" string "positions" # object 160 class array type int rank 1 shape 2 items 15 msb ieee data 16096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 158 class field component "positions" value 159 component "connections" value 160 attribute "char width" number 0.751200 attribute "series position" number 85.000000 # object 162 class array type float rank 1 shape 2 items 9 msb ieee data 16216 attribute "dep" string "positions" # object 163 class array type int rank 1 shape 2 items 5 msb ieee data 16288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 161 class field component "positions" value 162 component "connections" value 163 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 165 class array type float rank 1 shape 2 items 13 msb ieee data 16328 attribute "dep" string "positions" # object 166 class array type int rank 1 shape 2 items 8 msb ieee data 16432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 164 class field component "positions" value 165 component "connections" value 166 attribute "char width" number 0.751200 attribute "series position" number 87.000000 # object 168 class array type float rank 1 shape 2 items 14 msb ieee data 16496 attribute "dep" string "positions" # object 169 class array type int rank 1 shape 2 items 7 msb ieee data 16608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 167 class field component "positions" value 168 component "connections" value 169 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 171 class array type float rank 1 shape 2 items 13 msb ieee data 16664 attribute "dep" string "positions" # object 172 class array type int rank 1 shape 2 items 8 msb ieee data 16768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 170 class field component "positions" value 171 component "connections" value 172 attribute "char width" number 0.657300 attribute "series position" number 89.000000 # object 174 class array type float rank 1 shape 2 items 10 msb ieee data 16832 attribute "dep" string "positions" # object 175 class array type int rank 1 shape 2 items 8 msb ieee data 16912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 173 class field component "positions" value 174 component "connections" value 175 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 177 class array type float rank 1 shape 2 items 6 msb ieee data 16976 attribute "dep" string "positions" # object 178 class array type int rank 1 shape 2 items 4 msb ieee data 17024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 176 class field component "positions" value 177 component "connections" value 178 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 180 class array type float rank 1 shape 2 items 2 msb ieee data 17056 attribute "dep" string "positions" # object 181 class array type int rank 1 shape 2 items 1 msb ieee data 17072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 179 class field component "positions" value 180 component "connections" value 181 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 183 class array type float rank 1 shape 2 items 6 msb ieee data 17080 attribute "dep" string "positions" # object 184 class array type int rank 1 shape 2 items 4 msb ieee data 17128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 182 class field component "positions" value 183 component "connections" value 184 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 186 class array type float rank 1 shape 2 items 7 msb ieee data 17160 attribute "dep" string "positions" # object 187 class array type int rank 1 shape 2 items 5 msb ieee data 17216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 185 class field component "positions" value 186 component "connections" value 187 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 189 class array type float rank 1 shape 2 items 2 msb ieee data 17256 attribute "dep" string "positions" # object 190 class array type int rank 1 shape 2 items 1 msb ieee data 17272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 188 class field component "positions" value 189 component "connections" value 190 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 192 class array type float rank 1 shape 2 items 7 msb ieee data 17280 attribute "dep" string "positions" # object 193 class array type int rank 1 shape 2 items 6 msb ieee data 17336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 191 class field component "positions" value 192 component "connections" value 193 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 195 class array type float rank 1 shape 2 items 30 msb ieee data 17384 attribute "dep" string "positions" # object 196 class array type int rank 1 shape 2 items 31 msb ieee data 17624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 194 class field component "positions" value 195 component "connections" value 196 attribute "char width" number 0.626000 attribute "series position" number 97.000000 # object 198 class array type float rank 1 shape 2 items 25 msb ieee data 17872 attribute "dep" string "positions" # object 199 class array type int rank 1 shape 2 items 23 msb ieee data 18072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 197 class field component "positions" value 198 component "connections" value 199 attribute "char width" number 0.657300 attribute "series position" number 98.000000 # object 201 class array type float rank 1 shape 2 items 24 msb ieee data 18256 attribute "dep" string "positions" # object 202 class array type int rank 1 shape 2 items 24 msb ieee data 18448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 200 class field component "positions" value 201 component "connections" value 202 attribute "char width" number 0.594700 attribute "series position" number 99.000000 # object 204 class array type float rank 1 shape 2 items 26 msb ieee data 18640 attribute "dep" string "positions" # object 205 class array type int rank 1 shape 2 items 24 msb ieee data 18848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 203 class field component "positions" value 204 component "connections" value 205 attribute "char width" number 0.657300 attribute "series position" number 100.000000 # object 207 class array type float rank 1 shape 2 items 24 msb ieee data 19040 attribute "dep" string "positions" # object 208 class array type int rank 1 shape 2 items 25 msb ieee data 19232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 206 class field component "positions" value 207 component "connections" value 208 attribute "char width" number 0.594700 attribute "series position" number 101.000000 # object 210 class array type float rank 1 shape 2 items 17 msb ieee data 19432 attribute "dep" string "positions" # object 211 class array type int rank 1 shape 2 items 14 msb ieee data 19568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 209 class field component "positions" value 210 component "connections" value 211 attribute "char width" number 0.406900 attribute "series position" number 102.000000 # object 213 class array type float rank 1 shape 2 items 44 msb ieee data 19680 attribute "dep" string "positions" # object 214 class array type int rank 1 shape 2 items 48 msb ieee data 20032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 212 class field component "positions" value 213 component "connections" value 214 attribute "char width" number 0.594700 attribute "series position" number 103.000000 # object 216 class array type float rank 1 shape 2 items 19 msb ieee data 20416 attribute "dep" string "positions" # object 217 class array type int rank 1 shape 2 items 14 msb ieee data 20568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 215 class field component "positions" value 216 component "connections" value 217 attribute "char width" number 0.688600 attribute "series position" number 104.000000 # object 219 class array type float rank 1 shape 2 items 11 msb ieee data 20680 attribute "dep" string "positions" # object 220 class array type int rank 1 shape 2 items 8 msb ieee data 20768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 218 class field component "positions" value 219 component "connections" value 220 attribute "char width" number 0.344300 attribute "series position" number 105.000000 # object 222 class array type float rank 1 shape 2 items 18 msb ieee data 20832 attribute "dep" string "positions" # object 223 class array type int rank 1 shape 2 items 17 msb ieee data 20976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 221 class field component "positions" value 222 component "connections" value 223 attribute "char width" number 0.344300 attribute "series position" number 106.000000 # object 225 class array type float rank 1 shape 2 items 17 msb ieee data 21112 attribute "dep" string "positions" # object 226 class array type int rank 1 shape 2 items 9 msb ieee data 21248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 224 class field component "positions" value 225 component "connections" value 226 attribute "char width" number 0.657300 attribute "series position" number 107.000000 # object 228 class array type float rank 1 shape 2 items 7 msb ieee data 21320 attribute "dep" string "positions" # object 229 class array type int rank 1 shape 2 items 4 msb ieee data 21376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 227 class field component "positions" value 228 component "connections" value 229 attribute "char width" number 0.344300 attribute "series position" number 108.000000 # object 231 class array type float rank 1 shape 2 items 30 msb ieee data 21408 attribute "dep" string "positions" # object 232 class array type int rank 1 shape 2 items 24 msb ieee data 21648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 230 class field component "positions" value 231 component "connections" value 232 attribute "char width" number 1.032900 attribute "series position" number 109.000000 # object 234 class array type float rank 1 shape 2 items 19 msb ieee data 21840 attribute "dep" string "positions" # object 235 class array type int rank 1 shape 2 items 14 msb ieee data 21992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 233 class field component "positions" value 234 component "connections" value 235 attribute "char width" number 0.688600 attribute "series position" number 110.000000 # object 237 class array type float rank 1 shape 2 items 28 msb ieee data 22104 attribute "dep" string "positions" # object 238 class array type int rank 1 shape 2 items 30 msb ieee data 22328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 236 class field component "positions" value 237 component "connections" value 238 attribute "char width" number 0.626000 attribute "series position" number 111.000000 # object 240 class array type float rank 1 shape 2 items 27 msb ieee data 22568 attribute "dep" string "positions" # object 241 class array type int rank 1 shape 2 items 24 msb ieee data 22784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 239 class field component "positions" value 240 component "connections" value 241 attribute "char width" number 0.657300 attribute "series position" number 112.000000 # object 243 class array type float rank 1 shape 2 items 26 msb ieee data 22976 attribute "dep" string "positions" # object 244 class array type int rank 1 shape 2 items 23 msb ieee data 23184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 242 class field component "positions" value 243 component "connections" value 244 attribute "char width" number 0.626000 attribute "series position" number 113.000000 # object 246 class array type float rank 1 shape 2 items 17 msb ieee data 23368 attribute "dep" string "positions" # object 247 class array type int rank 1 shape 2 items 13 msb ieee data 23504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 245 class field component "positions" value 246 component "connections" value 247 attribute "char width" number 0.532100 attribute "series position" number 114.000000 # object 249 class array type float rank 1 shape 2 items 28 msb ieee data 23608 attribute "dep" string "positions" # object 250 class array type int rank 1 shape 2 items 28 msb ieee data 23832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 248 class field component "positions" value 249 component "connections" value 250 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 252 class array type float rank 1 shape 2 items 12 msb ieee data 24056 attribute "dep" string "positions" # object 253 class array type int rank 1 shape 2 items 10 msb ieee data 24152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 251 class field component "positions" value 252 component "connections" value 253 attribute "char width" number 0.469500 attribute "series position" number 116.000000 # object 255 class array type float rank 1 shape 2 items 17 msb ieee data 24232 attribute "dep" string "positions" # object 256 class array type int rank 1 shape 2 items 14 msb ieee data 24368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 254 class field component "positions" value 255 component "connections" value 256 attribute "char width" number 0.688600 attribute "series position" number 117.000000 # object 258 class array type float rank 1 shape 2 items 9 msb ieee data 24480 attribute "dep" string "positions" # object 259 class array type int rank 1 shape 2 items 5 msb ieee data 24552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 257 class field component "positions" value 258 component "connections" value 259 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 261 class array type float rank 1 shape 2 items 13 msb ieee data 24592 attribute "dep" string "positions" # object 262 class array type int rank 1 shape 2 items 8 msb ieee data 24696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 260 class field component "positions" value 261 component "connections" value 262 attribute "char width" number 0.751200 attribute "series position" number 119.000000 # object 264 class array type float rank 1 shape 2 items 14 msb ieee data 24760 attribute "dep" string "positions" # object 265 class array type int rank 1 shape 2 items 7 msb ieee data 24872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 263 class field component "positions" value 264 component "connections" value 265 attribute "char width" number 0.626000 attribute "series position" number 120.000000 # object 267 class array type float rank 1 shape 2 items 16 msb ieee data 24928 attribute "dep" string "positions" # object 268 class array type int rank 1 shape 2 items 12 msb ieee data 25056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 266 class field component "positions" value 267 component "connections" value 268 attribute "char width" number 0.594700 attribute "series position" number 121.000000 # object 270 class array type float rank 1 shape 2 items 10 msb ieee data 25152 attribute "dep" string "positions" # object 271 class array type int rank 1 shape 2 items 8 msb ieee data 25232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 269 class field component "positions" value 270 component "connections" value 271 attribute "char width" number 0.563400 attribute "series position" number 122.000000 # object 273 class array type float rank 1 shape 2 items 35 msb ieee data 25296 attribute "dep" string "positions" # object 274 class array type int rank 1 shape 2 items 34 msb ieee data 25576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 272 class field component "positions" value 273 component "connections" value 274 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 276 class array type float rank 1 shape 2 items 2 msb ieee data 25848 attribute "dep" string "positions" # object 277 class array type int rank 1 shape 2 items 1 msb ieee data 25864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 275 class field component "positions" value 276 component "connections" value 277 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 279 class array type float rank 1 shape 2 items 35 msb ieee data 25872 attribute "dep" string "positions" # object 280 class array type int rank 1 shape 2 items 34 msb ieee data 26152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 278 class field component "positions" value 279 component "connections" value 280 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 282 class array type float rank 1 shape 2 items 20 msb ieee data 26424 attribute "dep" string "positions" # object 283 class array type int rank 1 shape 2 items 20 msb ieee data 26584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 281 class field component "positions" value 282 component "connections" value 283 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 285 class array type float rank 1 shape 2 items 12 msb ieee data 26744 attribute "dep" string "positions" # object 286 class array type int rank 1 shape 2 items 12 msb ieee data 26840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 284 class field component "positions" value 285 component "connections" value 286 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 83 member 61 position 61 value 86 member 62 position 62 value 89 member 63 position 63 value 92 member 64 position 64 value 95 member 65 position 65 value 98 member 66 position 66 value 101 member 67 position 67 value 104 member 68 position 68 value 107 member 69 position 69 value 110 member 70 position 70 value 113 member 71 position 71 value 116 member 72 position 72 value 119 member 73 position 73 value 122 member 74 position 74 value 125 member 75 position 75 value 128 member 76 position 76 value 131 member 77 position 77 value 134 member 78 position 78 value 137 member 79 position 79 value 140 member 80 position 80 value 143 member 81 position 81 value 146 member 82 position 82 value 149 member 83 position 83 value 152 member 84 position 84 value 155 member 85 position 85 value 158 member 86 position 86 value 161 member 87 position 87 value 164 member 88 position 88 value 167 member 89 position 89 value 170 member 90 position 90 value 173 member 91 position 91 value 176 member 92 position 92 value 179 member 93 position 93 value 182 member 94 position 94 value 185 member 95 position 95 value 188 member 96 position 96 value 191 member 97 position 97 value 194 member 98 position 98 value 197 member 99 position 99 value 200 member 100 position 100 value 203 member 101 position 101 value 206 member 102 position 102 value 209 member 103 position 103 value 212 member 104 position 104 value 215 member 105 position 105 value 218 member 106 position 106 value 221 member 107 position 107 value 224 member 108 position 108 value 227 member 109 position 109 value 230 member 110 position 110 value 233 member 111 position 111 value 236 member 112 position 112 value 239 member 113 position 113 value 242 member 114 position 114 value 245 member 115 position 115 value 248 member 116 position 116 value 251 member 117 position 117 value 254 member 118 position 118 value 257 member 119 position 119 value 260 member 120 position 120 value 263 member 121 position 121 value 266 member 122 position 122 value 269 member 123 position 123 value 272 member 124 position 124 value 275 member 125 position 125 value 278 member 126 position 126 value 281 member 127 position 127 value 284 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4n=K(R>4n?í> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰>Ù³¯> A‰?í> A‰?,ô>@N¥=K(R>@N¥?í >4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯  =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥=åÈ—=ÀN¥>ñg=ÀN¥?ã¬=ÀN¥?ê:>4n=åÈ—>4n>2þ‚>4n>éº=> A=K(R> A>ñg> A>Ù³¯> A>éº=> A?$ðÇ>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>© >ÐU2>¹¦“>ðbN=K(R>ðbN>™™x>ðbN>© >ðbN? æó>ðbN?$ðÇ?4o>™™x?4o?ã¬?4o?ê:?7¶=åÈ—?7¶>s¹?7¶? æó?7¶?ê:""##  ! !! =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥=åÈ—=ÀN¥>S ž>4t=K(R>4t=åÈ—>4t>S ž>4t>‰’ê> A‰=K(R> A‰>‰’ê>`[Ç<•çÉ>`[Ç>© >`[Ç?ã¬>`[Ç?ê:>€4n>Ù³¯>€4n>éº=>€4n?$ðÇ> A‰<•çÉ> A‰>© > A‰>É­!> A‰?,ô>ÀN¥=K(R>ÀN¥>éº=>ÀN¥?$ðÇ>ÐU2?ã¬>ÐU2?ê:>à[Ã=åÈ—>ðbQ=åÈ—?4o=åÈ—?4o>S ž?7¶=K(R?:ý=K(R?:ý>¹¦“?>D>Ù³¯? A‹<•çÉ? A‹>É­!? A‹>éº=?(DÐ<•çÉ?(DÐ>¹¦“?(DÐ>Ù³¯?(DÐ>éº=?0H=K(R?0H=¥®_?0H>É­!?0H>Ù³¯%!!$$))**&&""  ##''(  >4n>ùÀÊ>4n?$ðÇ> A‰?ã¬> A‰?í> A‰?,ô>@N¥?ê:>@N¥?$ðÇ=à[À>s¹=à[À>¹¦“>:û=¥®_>:û>s¹>:û>¹¦“>:û?ã¬>0H=¥®_>0H?ã¬>PU2½5tý>PU2¼U;>PU2?í>PU2?$ðÇ>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*    =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>pbN½5tý>pbN¼U;>pbN?í>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ?ã¬>˜>B=¥®_>˜>B>s¹>˜>B>¹¦“>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“   =ÀN²>É­!=ÀN²?ê:>€4q>™™x>€4q?,ô>ÐU2>É­!>ÐU2?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé>4n=K(R> A‰½šÔµ> A‰<•çÉ> A‰=¥®_>@N¥¼U;>@N¥=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R=€4l¾MžÇ? A‰?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n>™™x>4n>É­!>4n? æó> A>ñg> A? æó>@N¥=K(R>@N¥=¥®_>@N¥?í>@N¥?$ðÇ>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>°H<•çÉ>°H?,ô>ÐU2=K(R>ÐU2?$ðÇ>à[Ã=K(R>à[Ã=¥®_>à[Ã?í>à[Ã?$ðÇ>ðbN>ñg>ðbN? æó?4o>ñg?4o>™™x?4o>É­!?4o? æó?7¶>™™x?7¶>É­!   >0H<•çÉ>0H? æó>pbN?ê:>˜>B<•çÉ>˜>B?$ðÇ>¨DÐ<•çÉ>¨DÐ?,ô>è_<•çÉ=ÀN¥<•çÉ=ÀN¥=¥®_=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥? æó>4n=åÈ—>4n>S ž>4n>ùÀÊ>4n? æó>4n?í> A?ã¬> A?$ðÇ>@N¥=åÈ—>@N¥>‰’ê>€4n>™™x>€4n?,ô>°H<•çÉ>°H=K(R>ÀN¥>¹¦“>ÀN¥?,ô>ÐU2>¹¦“>à[Ã=K(R>à[Ã?$ðÇ>ðbN<•çÉ>ðbN>Ù³¯>ðbN?í>ðbN?$ðÇ?4o=K(R?4o=¥®_?4o>Ù³¯?4o>ùÀÊ?4o? æó?4o?í?7¶=åÈ—?7¶>2þ‚?7¶>ùÀÊ?7¶? æó   $$##  ! !!"=ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥?ã¬=ÀN¥? æó>4n=¥®_>4n>ñg>4n>S ž>4n>ùÀÊ>4n? æó>4n?í> A=K(R> A>2þ‚> A?ã¬> A?$ðÇ>€4n<•çÉ>€4n?,ô>:û>É­!>ÀN¥<•çÉ>ÀN¥>É­!>ÀN¥?,ô>à[Ã=K(R>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>© >ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>s¹?4o>™™x?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>s¹  $$##""&&%%  !! =€4}>S ž>:û<•çÉ>ÀN¥<•çÉ>ÀN¥?í>ÐU2<•çÉ>ÐU2?,ô?4o<•çÉ?:ý>S ž=ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥>¹¦“>4n=¥®_>4n>ñg>4n>S ž> A=K(R> A>2þ‚> A>Ù³¯> A?$ðÇ> A?,ô>€4n<•çÉ>€4n>éº=> A‰?$ðÇ>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>à[Ã=K(R>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>¹¦“>ðbN?,ô?4o=åÈ—?4o>S ž?4o>‰’ê?4o>¹¦“?7¶>S ž?7¶>‰’ê     =ÀN¥>S ž=ÀN¥>É­!>4n=åÈ—>4n>S ž>4n>s¹>4n>É­!>4n?ã¬> A=åÈ—> A>© > A?ã¬> A?ê:>@N¥=K(R>@N¥?ê:>`[À=K(R>`[À>É­!>`[À?$ðÇ>€4n?$ðÇ>:û<•çÉ> A‰>Ù³¯> A‰?,ô>°H<•çÉ>°H>Ù³¯>ÐU2=K(R>ÐU2>É­!>ÐU2?,ô>à[Ã=K(R>à[Ã>É­!>à[Ã? æó>ðbN=åÈ—>ðbN>© >ðbN?ã¬>ðbN?ê:>ðbN?$ðÇ?4o=åÈ—?4o>S ž?4o>s¹?4o>© ?4o? æó?4o?ê:?7¶>S ž?7¶>s¹%%&&   !!''(($$  ""##=ÀN¥>ùÀÊ=ÀN¥? æó=ÀN¥?,ô>4n?í>@N¥?$ðÇ>@N¥?,ô>€4n?$ðÇ>€4n?,ô>:û<•çÉ>:û>2þ‚> A‰<•çÉ> A‰>2þ‚> A‰>‰’ê>°H>‰’ê>°H>© >ÀN¥>© >ÐU2?ê:>ðbN?ê:?4o>ùÀÊ?4o?í?7¶?ê:?7¶?,ô  =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>© >4n>ùÀÊ>4n?ê:> A=K(R> A=¥®_> A>© > A>¹¦“> A>Ù³¯> A>ùÀÊ> A?ê:> A?$ðÇ>@N¥=K(R>@N¥>¹¦“>@N¥>Ù³¯>@N¥?$ðÇ>€4n<•çÉ>€4n>É­!>€4n?,ô>ÀN¥<•çÉ>ÀN¥>É­!>ÀN¥?,ô>à[Ã=K(R>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>© >ðbN>¹¦“>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>‰’ê?4o>© ?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>‰’ê ""**++%% ##$$ &&,,--))!!  ''(( =ÀN¥>éº==ÀN¥>ùÀÊ>4n=åÈ—>4n>ñg>4n>¹¦“>4n>éº=>4n>ùÀÊ>4n?ê:> A=K(R> A=åÈ—> A>2þ‚> A>¹¦“> A?ê:>@N¥>ñg>@N¥>™™x>@N¥?$ðÇ>`[À<•çÉ>`[À>™™x>`[À?$ðÇ>:û>‰’ê>:û?,ô> A‰<•çÉ> A‰>‰’ê>°H?,ô>ÀN¥=K(R>ÐU2=K(R>ÐU2>™™x>ÐU2?$ðÇ>à[Ã=åÈ—>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>2þ‚>ðbN>¹¦“>ðbN?ê:?4o>2þ‚?4o>™™x?4o>éº=?4o>ùÀÊ?4o?ê:?7¶>™™x?7¶>ùÀÊ$ &&((''""   !!%%##>4n=K(R>4n>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯>4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§?ã¬=ÀN§? æó>4t>ùÀÊ>4t? æó>4t?í> A‰?ã¬> A‰?$ðÇ>`[À?,ô>€4q=K(R>:ÿ<•çÉ>:ÿ=¥®_>:ÿ>s¹>:ÿ>© > A=K(R> A?,ô>°H>¹¦“>ÀN¨?$ðÇ>ÐU2>É­!>ÐU2>Ù³¯>ÐU2?í>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã>ùÀÊ>à[Ã? æó>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4h<•çÉ=ÀN¥<•çÉ> A>S ž>`[À<•çÉ> A‰?ê:> A‰?,ô>ÐU2<•çÉ>à[Ã>S ž?4o<•çÉ?7¶<•çÉ?>B<•çÉ  = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>¹¦“>PU9?,ô>è_ <•çÉ>è_ >¹¦“>è_ ?,ô?6=K(R?6>© ?6>É­!?6?$ðÇ? 9Z=K(R? 9Z=¥®_? 9Z>™™x? 9Z>© ? 9Z>É­!? 9Z>Ù³¯? 9Z?í? 9Z?$ðÇ?<¡=¥®_?<¡>ñg?<¡>s¹?<¡>™™x?<¡>Ù³¯?<¡>ùÀÊ?<¡? æó?<¡?í??ç>ñg??ç>s¹??ç>ùÀÊ??ç? æó !!     =ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n?$ðÇ> A<•çÉ> A?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý>ùÀÊ?:ý?,ô    = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9?,ô>ÈQì<•çÉ>ÈQì?,ô>è_ =K(R>è_ ?$ðÇ>øe•=K(R>øe•?$ðÇ?6=åÈ—?6?ê:? 9Z=åÈ—? 9Z>2þ‚? 9Z?ã¬? 9Z?ê:?<¡>2þ‚?<¡>‰’ê?<¡>Ù³¯?<¡?ã¬??ç>‰’ê??ç>Ù³¯    = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>¹¦“>PU9?,ô>ÈQì>s¹>ÈQì>¹¦“>ÈQì>ùÀÊ? 9Z<•çÉ? 9Z?,ô?<¡<•çÉ?<¡>S ž?<¡>ùÀÊ?<¡?,ô   =€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«<•çÉ>@N«>¹¦“>@N«?,ô>:û<•çÉ>ÀN¥>s¹>ÀN¥>¹¦“>ÀN¥>ùÀÊ?7¶?,ô?:ý>ùÀÊ?:ý?,ô   = A˜>‰’ê= A˜>Ù³¯=à[À>2þ‚=à[À>‰’ê=à[À>Ù³¯=à[À?ã¬>:û=åÈ—>:û>2þ‚>:û?ã¬>:û?ê:>0H=åÈ—>0H?ê:>PU2=K(R>PU2?$ðÇ>pbN=K(R>pbN?$ðÇ>˜>B<•çÉ>˜>B?,ô>¸K^<•çÉ>¸K^?,ô>ØX}>‰’ê>è_=K(R>è_?$ðÇ?6<•çÉ?6=åÈ—?6>‰’ê?6?ê:? 9Z<•çÉ? 9Z>‰’ê? 9Z>ùÀÊ? 9Z?,ô?$C.>‰’ê    =€4p<•çÉ=€4p?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥>¹¦“>@N¥?,ô>:û<•çÉ>:û?,ô>ðbQ<•çÉ>ðbQ?,ô?:ý<•çÉ?:ý>¹¦“?:ý?,ô?>D<•çÉ?>D?,ô?0H<•çÉ?0H?,ô    =€4n<•çÉ=€4n?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥?,ô>:û<•çÉ>:û?,ô=€4z=åÈ—=€4z>2þ‚=ÀN¥=K(R=ÀN¥>ñg=ÀN¥>S ž>4n>2þ‚> A‰<•çÉ>@N¥?,ô>`[À<•çÉ>€4n=K(R>:û=K(R>:û>ñg>:û?,ô> A>ñg> A?,ô>ÐU6?,ô  =@N§<•çÉ=@N§?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H>‰’ê>0H?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B>É­!>¨DÓ>É­!>è_ <•çÉ>è_ ?,ô? 9Z<•çÉ?<¡<•çÉ?<¡?,ô?$C-<•çÉ?$C-?,ô    =@N§<•çÉ=@N§?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H?,ô>ˆ7µ?,ô>øe˜<•çÉ?6<•çÉ?6>S ž =€4p<•çÉ=€4p?,ô> A‰<•çÉ> A‰?,ô>@N¥?,ô>€4n<•çÉ>ÀN¥<•çÉ>ÀN¥=åÈ—?4o<•çÉ?>D<•çÉ?>D?,ô? A‹<•çÉ? A‹?,ô?8K_<•çÉ?8K_?,ô    =€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«?í>@N«?,ô>€4n<•çÉ>ðbQ?,ô?:ý<•çÉ?:ý=¥®_?:ý?,ô?(DÒ?,ô   =ÀN³>™™x=ÀN³>É­!>4n>2þ‚>4n>™™x>4n>É­!>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n?$ðÇ> A<•çÉ> A?,ô>ÀN¥<•çÉ>ÀN¥?,ô>à[Ã=K(R>à[Ã?$ðÇ>ðbQ=K(R>ðbQ?$ðÇ?4o=åÈ—?4o?ê:?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>™™x?:ý>É­!?:ý?ã¬?>D>™™x?>D>É­!  ""##!!   = Aˆ<•çÉ= Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9>© >PU9?,ô>˜>B<•çÉ>è_ >© >è_ ?,ô?6>¹¦“?6?$ðÇ? 9Z>¹¦“? 9Z>É­!? 9Z?í? 9Z?$ðÇ?<¡>É­!?<¡>éº=?<¡? æó?<¡?í??ç>éº=??ç? æó    =ÀN³>™™x=ÀN³>É­!>4n>2þ‚>4n>™™x>4n>É­!>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«?ê:>`[À=K(R>`[À=¥®_>`[À=åÈ—>`[À?$ðÇ>€4n=K(R>€4n>2þ‚>€4n?$ðÇ> A<•çÉ> A>S ž> A?,ô>°H>S ž>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>2þ‚>à[Ã=K(R>à[Ã=åÈ—>à[Ã?$ðÇ>ðbQ½Úîé>ðbQ¼U;>ðbQ=K(R>ðbQ?$ðÇ?4o¾ „?4o½šÔµ?4o=åÈ—?4o?ê:?7¶½Úîé?7¶=åÈ—?7¶>2þ‚?7¶?ã¬?7¶?ê:?:ý¾ „?:ý½Úîé?:ý>2þ‚?:ý>™™x?:ý>É­!?:ý?ã¬?>D½šÔµ?>D½5tý?>D>™™x?>D>É­!  &&,,2233//))   ##''--..(($$ !!**001""%%++0=€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«<•çÉ>@N«>¹¦“>@N«?,ô>:û<•çÉ>°H>¹¦“>ÐU2>© >à[Ã>‰’ê>à[Ã>™™x>à[Ã>¹¦“>à[Ã?,ô?4o=K(R?4o>É­!?4o?$ðÇ?7¶<•çÉ?7¶=¥®_?7¶>É­!?7¶>Ù³¯?7¶?í?7¶?$ðÇ?:ý=K(R?:ý>Ù³¯?:ý>ùÀÊ?:ý? æó?:ý?í?>D<•çÉ?>D=K(R?>D>ùÀÊ?>D? æó? A‰=¥®_? A‰=åÈ—       !=ÀN¥<•çÉ=ÀN¥>S ž=ÀN¥?ã¬=ÀN¥?ê:>4n=åÈ—>4n>éº=> A>Ù³¯> A>éº=> A?$ðÇ>@N¥=K(R>`[À>É­!>`[À>Ù³¯>€4n?,ô>:û<•çÉ>°H?,ô>ÀN¥<•çÉ>ÐU2>© >ÐU2>¹¦“>à[Ã?$ðÇ>ðbN=K(R>ðbN>™™x>ðbN>© ?4o>™™x?4o?ê:?7¶=åÈ—?7¶>s¹?7¶>ùÀÊ?7¶?,ô    =€4p>ùÀÊ=€4p?,ô=ÀN§?,ô>@N¥<•çÉ>:ÿ<•çÉ>:ÿ?,ô> A<•çÉ> A?,ô>ÐU2<•çÉ?4o?,ô?7¶>ùÀÊ?7¶?,ô =€4p?,ô> A‰>S ž> A‰?,ô>@N¥=åÈ—>@N¥>S ž>@N¥?,ô>`[Ç=åÈ—>€4n=K(R>:û=K(R>:û?,ô>°H<•çÉ>ÐU2<•çÉ?4o=K(R?4o?,ô?:ý=åÈ—?>D>S ž?>D?,ô?0H?,ô  =4h?,ô=ÀN¥?,ô>4n?,ô>`[À?,ô> A‰<•çÉ> A‰=åÈ—>ÐU2?,ô?7¶?,ô?>B?,ô=4p?,ô>4t?,ô> A‰?,ô>€4n<•çÉ>€4n>2þ‚>€4n?,ô>ÀN¥?,ô>ÐU2?,ô?4o<•çÉ?4o>2þ‚?7¶?,ô? A‹?,ô?8K_?,ô  =4h<•çÉ=4h?,ô=ÀN¥<•çÉ=ÀN¥?,ô>4n?,ô>`[À<•çÉ>`[À?,ô>ÐU2<•çÉ>ÐU2?,ô?4o<•çÉ?7¶<•çÉ?7¶?,ô?>B<•çÉ?>B?,ô    =4h?,ô=ÀN¥?,ô>4n?,ô>`[À<•çÉ>`[À?,ô> A‰<•çÉ> A‰>© >°H<•çÉ>°H>© >à[Ã<•çÉ>à[Ã?,ô?:ý?,ô? A‹?,ô   =ÀN¥<•çÉ=ÀN¥>ùÀÊ=ÀN¥?,ô>4n<•çÉ>4n?,ô?4o<•çÉ?4o?,ô?7¶<•çÉ?7¶>S ž?7¶?,ô  =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n?ê:> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>@N¥?ã¬>@N¥?,ô= AŒ=åÈ—= AŒ>2þ‚=à[Î=K(R=à[Î=åÈ—=à[Î>2þ‚=à[Î>s¹=à[Î>¹¦“=à[Î>É­!>:û=K(R>:û>s¹>:û>¹¦“>:û>É­!>:û>Ù³¯>PU2<•çÉ>PU2>‰’ê>PU2>éº=>˜>B<•çÉ>¨DÓ>éº=>¸Ka=K(R>ÈQï>™™x>ÈQï>Ù³¯>ØX}=åÈ—>ØX}>© >ØX}>É­!>è_ =K(R>è_ =åÈ—>è_ >© >øe˜=K(R?6<•çÉ? 9X<•çÉ     = Aˆ?,ô>0H<•çÉ>0H?,ô>PU9<•çÉ>PU9=åÈ—>PU9>¹¦“>PU9?,ô>ˆ7µ=K(R>ˆ7µ>Ù³¯>¨DÓ<•çÉ>¨DÓ>éº=>ÈQì<•çÉ>ÈQì>éº=>è_ =K(R>è_ >Ù³¯>øe•=K(R>øe•>Ù³¯?6=åÈ—?6>¹¦“? 9Z=åÈ—? 9Z>S ž? 9Z>‰’ê? 9Z>¹¦“?<¡>S ž?<¡>‰’ê    =ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>S ž>4n>‰’ê>4n>¹¦“> A=åÈ—> A>¹¦“>@N¥=K(R>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:û<•çÉ>:û>éº=>°H<•çÉ>ÀN¥>éº=>à[Ã=K(R>à[Ã>© >à[Ã>Ù³¯>ðbN>™™x>ðbN>¹¦“?4o=åÈ—?4o>© ?4o>¹¦“    = Aˆ>S ž= Aˆ>‰’ê=à[À=åÈ—=à[À>S ž=à[À>‰’ê=à[À>¹¦“>;=åÈ—>;>¹¦“>0H=K(R>0H>Ù³¯>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¨DÐ<•çÉ>¨DÐ>éº=>¸K^?,ô>ÈQì=K(R>ÈQì>Ù³¯>è_<•çÉ>è_=åÈ—>è_>¹¦“>è_?,ô>øe˜<•çÉ>øe˜?,ô?<Ÿ<•çÉ    =ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>S ž>4n>‰’ê>4n>¹¦“> A=åÈ—> A>¹¦“>@N¥=K(R>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:û<•çÉ>:û>éº=>°H<•çÉ>ÀN¥>éº=>à[Ã=K(R>à[Ã>Ù³¯>ðbN>‰’ê>ðbN>¹¦“>ðbN>É­!?4o=åÈ—?4o>‰’ê?4o>©     =€4z<•çÉ=€4z>éº=> A‰<•çÉ> A‰?ê:>@N¥<•çÉ>@N¥?ê:>@N¥?$ðÇ>`[À?$ðÇ>€4n?,ô>:û<•çÉ>:û?í> A>éº=> A?ê:> A?$ðÇ> A?,ô>°H?í>°H?$ðÇ  = Aˆ½Úîé= Aˆ½šÔµ=à[À¾-‘¬=à[À¼U;=à[À=¥®_=à[À=åÈ—>;<•çÉ>;=K(R>;>2þ‚>;>‰’ê>;>© >0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>PU2¾MžÇ>PU2<•çÉ>PU2>2þ‚>PU2>Ù³¯>pbN¼U;>pbN<•çÉ>ˆ7µ>ñg>ˆ7µ>éº=>¨DÐ>ñg>¨DÐ>éº=>ÈQì¾MžÇ>ÈQì¼U;>ÈQì<•çÉ>ÈQì>2þ‚>ÈQì>Ù³¯>ØXy>S ž>ØXy>s¹>ØXy>¹¦“>ØXy>É­!>è_>‰’ê>è_>© >è_>Ù³¯>øe˜¾-‘¬>øe˜½5tý>øe˜¼U;?6½Úîé?6½šÔµ?6>Ù³¯?6>éº= ""##!!  !$$++**$ &&)''))((%%=€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«<•çÉ>@N«>¹¦“>@N«?,ô>€4n>Ù³¯>:û<•çÉ>°H>éº=>ÐU2<•çÉ>ÐU2>éº=>ðbQ>Ù³¯?4o<•çÉ?4o>¹¦“?4o>Ù³¯?7¶<•çÉ?7¶>¹¦“? A‰<•çÉ    =€4n<•çÉ=€4n>éº=>4n?$ðÇ> A‰<•çÉ> A‰>éº=> A‰?í> A‰?,ô>@N¥<•çÉ>@N¥>éº=>@N¥?$ðÇ>:û<•çÉ  = Aˆ¾-‘¬= Aˆ¾ „=à[À¾MžÇ=à[À¾-‘¬=à[À½Úîé>:û¾ „>:û>éº=>0H¾MžÇ>PU2¾-‘¬>PU2?$ðÇ>pbN¾-‘¬>pbN½Úîé>pbN>éº=>pbN?í>pbN?,ô>ˆ7µ½Úîé>ˆ7µ>éº=>ˆ7µ?$ðÇ   =€4l<•çÉ=€4l?,ô> A‰<•çÉ> A‰?,ô>@N«<•çÉ>@N«>ñg>@N«?,ô>:û<•çÉ> A>‰’ê>°H>‰’ê>ÐU2<•çÉ>ÐU2>éº=?4o<•çÉ?4o>éº=?7¶<•çÉ?>D<•çÉ?>D>éº=     =€4n<•çÉ=€4n?,ô> A‰<•çÉ> A‰?,ô>@N¥<•çÉ>@N¥?,ô>:û<•çÉ=€4<•çÉ=€4>éº=> A‰<•çÉ> A‰>éº=>@N¥<•çÉ>@N¥>¹¦“>@N¥>éº=>€4q>Ù³¯>:û<•çÉ>°H>éº=>ÐU2<•çÉ>ÐU2>éº=>ðbQ>Ù³¯?4o<•çÉ?4o>¹¦“?4o>Ù³¯?7¶<•çÉ?7¶>¹¦“?>B>Ù³¯? A‰<•çÉ?0H>éº=?@N¦<•çÉ?@N¦>éº=?PU4>Ù³¯?XX{<•çÉ?XX{>¹¦“?XX{>Ù³¯?`[À<•çÉ?`[À>¹¦“?xe–<•çÉ    =€4l<•çÉ=€4l>éº=> A‰<•çÉ> A‰>éº=>@N«<•çÉ>@N«>¹¦“>@N«>éº=>€4n>Ù³¯>:û<•çÉ>°H>éº=>ÐU2<•çÉ>ÐU2>éº=>ðbQ>Ù³¯?4o<•çÉ?4o>¹¦“?4o>Ù³¯?7¶<•çÉ?7¶>¹¦“? A‰<•çÉ    =ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>S ž>4n>‰’ê>4n>¹¦“> A=åÈ—> A>¹¦“>@N¥=K(R>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:û<•çÉ>:û>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>à[Ã=K(R>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>¹¦“?4o=åÈ—?4o>S ž?4o>‰’ê?4o>¹¦“?7¶>S ž?7¶>‰’ê    = Aˆ¾MžÇ= Aˆ>éº=>0H¾MžÇ>0H>éº=>PU9¾MžÇ>PU9=åÈ—>PU9>¹¦“>PU9>éº=>ˆ7µ=K(R>ˆ7µ>Ù³¯>˜>B¾MžÇ>¨DÓ<•çÉ>¨DÓ>éº=>ÈQì<•çÉ>ÈQì>éº=>è_ =K(R>è_ >Ù³¯>øe•=K(R>øe•>Ù³¯?6=åÈ—?6>¹¦“? 9Z=åÈ—? 9Z>S ž? 9Z>‰’ê? 9Z>¹¦“?<¡>S ž?<¡>‰’ê    =€4p>S ž=€4p>‰’ê=ÀN§=åÈ—=ÀN§>S ž=ÀN§>‰’ê=ÀN§>¹¦“>4t=åÈ—>4t>¹¦“> A‰=K(R> A‰>Ù³¯>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=> A<•çÉ> A>éº=>°H¾MžÇ>ÀN¨=K(R>ÀN¨>Ù³¯>à[þMžÇ>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>éº=>ðbQ¾MžÇ>ðbQ>éº=?:û¾MžÇ    =€4p<•çÉ=€4p>éº=> A‰<•çÉ> A‰>éº=>@N¥<•çÉ>@N¥>‰’ê>@N¥>éº=>`[À>¹¦“>:ÿ<•çÉ>:ÿ>Ù³¯>°H>éº=>ÐU2>É­!>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã>éº=>ðbQ>É­!>ðbQ>Ù³¯  =ÀN²<•çÉ=ÀN²>ñg=ÀN²>© =ÀN²>¹¦“=ÀN²>É­!>4n=¥®_>4n>™™x>4n>© >4n>Ù³¯> A‰=K(R>@N¥>‰’ê>@N¥>™™x>@N¥>éº=>`[Ç<•çÉ> A>éº=>°H<•çÉ>°H>S ž>°H>s¹>ÀN¥>Ù³¯>ÐU2=K(R>ÐU2>2þ‚>ÐU2>S ž>ÐU2>É­!>à[Ã=¥®_>à[Ã>ñg>à[Ã>2þ‚>à[Ã>© >à[Ã>éº=    =€4z>éº=> A‰>ñg> A‰?,ô>@N¥=K(R>@N¥>ñg>@N¥?,ô>`[À=K(R>€4n<•çÉ> A<•çÉ> A>éº=>ÀN¥=K(R>ÐU6=åÈ—  =€4l>éº=> A‰=åÈ—> A‰>éº=>@N«=K(R>@N«=åÈ—>@N«>éº=>`[À=K(R>:û<•çÉ>°H<•çÉ>ÐU2>éº=>à[Ã=K(R?4o<•çÉ?4o=åÈ—?4o>éº=?7¶<•çÉ?7¶>éº=? A‰<•çÉ    =4‘>éº==ÀN§>éº=>4t>éº=>`[À>éº=>:ÿ<•çÉ>:ÿ=¥®_>°H>éº=>ðbQ>éº=?7¶>éº==4p>éº=>4t>éº=> A‰>éº=>€4n<•çÉ>€4n=åÈ—>€4n>éº=>ÀN¥>éº=>ÐU2>éº=?4o<•çÉ?4o=åÈ—?7¶>éº=? A‹>éº=?8K_>éº=  =€4}<•çÉ=€4}>éº=>4n<•çÉ>4n>éº=> A>éº=>€4n<•çÉ>€4n>éº=>ÀN¥<•çÉ>ÀN¥>éº=>ðbN<•çÉ?4o<•çÉ?4o>éº=?:ý<•çÉ?:ý>éº=    =@NÀ¾-‘¬=@NÀ>éº== Aˆ¾MžÇ= Aˆ¾ „=à[À¾MžÇ=à[À¾-‘¬=à[À>éº=>;>éº=>0H¾-‘¬>pbN½Úîé>pbN>éº=>˜>B<•çÉ>˜>B=¥®_>¸K^>éº=>øe˜>éº=? 9Z>éº=    =ÀN§<•çÉ=ÀN§>© =ÀN§>éº=>4t<•çÉ>4t>éº=>à[Ã<•çÉ>à[Ã>éº=>ðbQ<•çÉ>ðbQ>ñg>ðbQ>éº=  >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/fonts/roman_ext.dx0000644000076500000240000041547707120232020012545 00000000000000object 1 class field attribute "char width" number 0 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.525000 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 6 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 5 msb ieee data 48 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.249900 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 4 msb ieee data 88 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 2 msb ieee data 120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.464100 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 136 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.714000 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 24 msb ieee data 232 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 21 msb ieee data 424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.678300 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 592 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.821100 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 34 msb ieee data 1008 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 33 msb ieee data 1280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.892500 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 1544 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 1600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.249900 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 10 msb ieee data 1648 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 9 msb ieee data 1728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.428400 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 10 msb ieee data 1800 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 9 msb ieee data 1880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.428400 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 1952 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.535500 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2024 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.821100 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2072 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 7 msb ieee data 2128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.249900 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2184 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.821100 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2208 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.249900 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2272 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.821100 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 16 msb ieee data 2296 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 16 msb ieee data 2424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.678300 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 4 msb ieee data 2552 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 3 msb ieee data 2584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.357000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 14 msb ieee data 2608 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 13 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.678300 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 15 msb ieee data 2824 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 14 msb ieee data 2944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.678300 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 4 msb ieee data 3056 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 3 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.714000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 17 msb ieee data 3112 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 16 msb ieee data 3248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.678300 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 22 msb ieee data 3376 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 22 msb ieee data 3552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.642600 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 3 msb ieee data 3728 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 2 msb ieee data 3752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.678300 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 28 msb ieee data 3768 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 28 msb ieee data 3992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.678300 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 22 msb ieee data 4216 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 22 msb ieee data 4392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.642600 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 4568 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 4632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.249900 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 4696 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 11 msb ieee data 4784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.249900 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 4872 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 4896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.749700 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 4912 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.821100 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 4960 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 4984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.749700 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 18 msb ieee data 5000 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 17 msb ieee data 5144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.606900 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 5280 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 5664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.928200 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 5 msb ieee data 6048 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 3 msb ieee data 6088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.749700 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 18 msb ieee data 6112 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 18 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.678300 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 18 msb ieee data 6400 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 17 msb ieee data 6544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.714000 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 12 msb ieee data 6680 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 12 msb ieee data 6776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.678300 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 6 msb ieee data 6872 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 4 msb ieee data 6920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.642600 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 5 msb ieee data 6952 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 3 msb ieee data 6992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.642600 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 20 msb ieee data 7016 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 19 msb ieee data 7176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.714000 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 6 msb ieee data 7328 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 3 msb ieee data 7376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.678300 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 2 msb ieee data 7400 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 1 msb ieee data 7416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.178500 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 10 msb ieee data 7424 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 9 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.535500 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 6 msb ieee data 7576 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 3 msb ieee data 7624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.678300 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 3 msb ieee data 7648 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 2 msb ieee data 7672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.606900 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 5 msb ieee data 7688 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 4 msb ieee data 7728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.749700 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 4 msb ieee data 7760 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 3 msb ieee data 7792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.678300 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 20 msb ieee data 7816 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 20 msb ieee data 7976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.749700 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 11 msb ieee data 8136 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 10 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.678300 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 22 msb ieee data 8304 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 21 msb ieee data 8480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.749700 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 13 msb ieee data 8648 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 11 msb ieee data 8752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.678300 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 20 msb ieee data 8840 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 19 msb ieee data 9000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.678300 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 4 msb ieee data 9152 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 2 msb ieee data 9184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.678300 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 10 msb ieee data 9200 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 9 msb ieee data 9280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.678300 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 3 msb ieee data 9352 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 2 msb ieee data 9376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.749700 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 5 msb ieee data 9392 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 4 msb ieee data 9432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.892500 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 4 msb ieee data 9464 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 2 msb ieee data 9496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.678300 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 4 msb ieee data 9512 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 3 msb ieee data 9544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.749700 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 4 msb ieee data 9568 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 3 msb ieee data 9600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.678300 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 9624 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 9672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.428400 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 9704 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.678300 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 9728 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 9776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.428400 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 9808 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 9864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.535500 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 9904 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 9920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.749700 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 9928 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 9984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.249900 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 16 msb ieee data 10032 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 14 msb ieee data 10160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.606900 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 16 msb ieee data 10272 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 14 msb ieee data 10400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.606900 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 14 msb ieee data 10512 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 13 msb ieee data 10624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.606900 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 16 msb ieee data 10728 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 14 msb ieee data 10856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.606900 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 16 msb ieee data 10968 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 16 msb ieee data 11096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.606900 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 7 msb ieee data 11224 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 5 msb ieee data 11280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.464100 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 21 msb ieee data 11320 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 19 msb ieee data 11488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.606900 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 9 msb ieee data 11640 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 7 msb ieee data 11712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.571200 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 6 msb ieee data 11768 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 5 msb ieee data 11816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.249900 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 9 msb ieee data 11856 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 8 msb ieee data 11928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.392700 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 6 msb ieee data 11992 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 3 msb ieee data 12040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.571200 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 2 msb ieee data 12064 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 1 msb ieee data 12080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.178500 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 15 msb ieee data 12088 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 13 msb ieee data 12208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.963900 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 9 msb ieee data 12312 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 7 msb ieee data 12384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.571200 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 16 msb ieee data 12440 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 16 msb ieee data 12568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.642600 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 16 msb ieee data 12696 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 14 msb ieee data 12824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.606900 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 16 msb ieee data 12936 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 14 msb ieee data 13064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.606900 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 7 msb ieee data 13176 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 5 msb ieee data 13232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.464100 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 17 msb ieee data 13272 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 16 msb ieee data 13408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.571200 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 7 msb ieee data 13536 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 5 msb ieee data 13592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.464100 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 9 msb ieee data 13632 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 7 msb ieee data 13704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.571200 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 3 msb ieee data 13760 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 2 msb ieee data 13784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.606900 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 5 msb ieee data 13800 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 4 msb ieee data 13840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.749700 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 4 msb ieee data 13872 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 2 msb ieee data 13904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.571200 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 7 msb ieee data 13920 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 6 msb ieee data 13976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.642600 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 4 msb ieee data 14024 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 3 msb ieee data 14056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.571200 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 14080 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 14360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.357000 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 14632 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 14648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.178500 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 14656 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 14936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.357000 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 15208 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 15368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.821100 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 15528 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 15624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.464100 attribute "series position" number 127.000000 # object 289 class array type float rank 1 shape 2 items 25 msb ieee data 15720 attribute "dep" string "positions" # object 290 class array type int rank 1 shape 2 items 23 msb ieee data 15920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 288 class field component "positions" value 289 component "connections" value 290 attribute "char width" number 0.714000 attribute "series position" number 128.000000 # object 292 class array type float rank 1 shape 2 items 17 msb ieee data 16104 attribute "dep" string "positions" # object 293 class array type int rank 1 shape 2 items 15 msb ieee data 16240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 291 class field component "positions" value 292 component "connections" value 293 attribute "char width" number 0.571200 attribute "series position" number 129.000000 # object 295 class array type float rank 1 shape 2 items 19 msb ieee data 16360 attribute "dep" string "positions" # object 296 class array type int rank 1 shape 2 items 19 msb ieee data 16512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 294 class field component "positions" value 295 component "connections" value 296 attribute "char width" number 0.606900 attribute "series position" number 130.000000 # object 298 class array type float rank 1 shape 2 items 21 msb ieee data 16664 attribute "dep" string "positions" # object 299 class array type int rank 1 shape 2 items 19 msb ieee data 16832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 297 class field component "positions" value 298 component "connections" value 299 attribute "char width" number 0.606900 attribute "series position" number 131.000000 # object 301 class array type float rank 1 shape 2 items 24 msb ieee data 16984 attribute "dep" string "positions" # object 302 class array type int rank 1 shape 2 items 22 msb ieee data 17176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 300 class field component "positions" value 301 component "connections" value 302 attribute "char width" number 0.606900 attribute "series position" number 132.000000 # object 304 class array type float rank 1 shape 2 items 19 msb ieee data 17352 attribute "dep" string "positions" # object 305 class array type int rank 1 shape 2 items 17 msb ieee data 17504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 303 class field component "positions" value 304 component "connections" value 305 attribute "char width" number 0.606900 attribute "series position" number 133.000000 # object 307 class array type float rank 1 shape 2 items 20 msb ieee data 17640 attribute "dep" string "positions" # object 308 class array type int rank 1 shape 2 items 18 msb ieee data 17800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 306 class field component "positions" value 307 component "connections" value 308 attribute "char width" number 0.606900 attribute "series position" number 134.000000 # object 310 class array type float rank 1 shape 2 items 21 msb ieee data 17944 attribute "dep" string "positions" # object 311 class array type int rank 1 shape 2 items 19 msb ieee data 18112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 309 class field component "positions" value 310 component "connections" value 311 attribute "char width" number 0.606900 attribute "series position" number 135.000000 # object 313 class array type float rank 1 shape 2 items 21 msb ieee data 18264 attribute "dep" string "positions" # object 314 class array type int rank 1 shape 2 items 21 msb ieee data 18432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 312 class field component "positions" value 313 component "connections" value 314 attribute "char width" number 0.606900 attribute "series position" number 136.000000 # object 316 class array type float rank 1 shape 2 items 24 msb ieee data 18600 attribute "dep" string "positions" # object 317 class array type int rank 1 shape 2 items 24 msb ieee data 18792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 315 class field component "positions" value 316 component "connections" value 317 attribute "char width" number 0.606900 attribute "series position" number 137.000000 # object 319 class array type float rank 1 shape 2 items 19 msb ieee data 18984 attribute "dep" string "positions" # object 320 class array type int rank 1 shape 2 items 19 msb ieee data 19136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 318 class field component "positions" value 319 component "connections" value 320 attribute "char width" number 0.606900 attribute "series position" number 138.000000 # object 322 class array type float rank 1 shape 2 items 10 msb ieee data 19288 attribute "dep" string "positions" # object 323 class array type int rank 1 shape 2 items 9 msb ieee data 19368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 321 class field component "positions" value 322 component "connections" value 323 attribute "char width" number 0.374850 attribute "series position" number 139.000000 # object 325 class array type float rank 1 shape 2 items 7 msb ieee data 19440 attribute "dep" string "positions" # object 326 class array type int rank 1 shape 2 items 6 msb ieee data 19496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 324 class field component "positions" value 325 component "connections" value 326 attribute "char width" number 0.374850 attribute "series position" number 140.000000 # object 328 class array type float rank 1 shape 2 items 5 msb ieee data 19544 attribute "dep" string "positions" # object 329 class array type int rank 1 shape 2 items 4 msb ieee data 19584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 327 class field component "positions" value 328 component "connections" value 329 attribute "char width" number 0.294525 attribute "series position" number 141.000000 # object 331 class array type float rank 1 shape 2 items 13 msb ieee data 19616 attribute "dep" string "positions" # object 332 class array type int rank 1 shape 2 items 11 msb ieee data 19720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 330 class field component "positions" value 331 component "connections" value 332 attribute "char width" number 0.749700 attribute "series position" number 142.000000 # object 334 class array type float rank 1 shape 2 items 8 msb ieee data 19808 attribute "dep" string "positions" # object 335 class array type int rank 1 shape 2 items 7 msb ieee data 19872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 333 class field component "positions" value 334 component "connections" value 335 attribute "char width" number 0.749700 attribute "series position" number 143.000000 # object 337 class array type float rank 1 shape 2 items 9 msb ieee data 19928 attribute "dep" string "positions" # object 338 class array type int rank 1 shape 2 items 7 msb ieee data 20000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 336 class field component "positions" value 337 component "connections" value 338 attribute "char width" number 0.642600 attribute "series position" number 144.000000 # object 340 class array type float rank 1 shape 2 items 29 msb ieee data 20056 attribute "dep" string "positions" # object 341 class array type int rank 1 shape 2 items 27 msb ieee data 20288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 339 class field component "positions" value 340 component "connections" value 341 attribute "char width" number 0.919275 attribute "series position" number 145.000000 # object 343 class array type float rank 1 shape 2 items 9 msb ieee data 20504 attribute "dep" string "positions" # object 344 class array type int rank 1 shape 2 items 6 msb ieee data 20576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 342 class field component "positions" value 343 component "connections" value 344 attribute "char width" number 0.865725 attribute "series position" number 146.000000 # object 346 class array type float rank 1 shape 2 items 25 msb ieee data 20624 attribute "dep" string "positions" # object 347 class array type int rank 1 shape 2 items 25 msb ieee data 20824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 345 class field component "positions" value 346 component "connections" value 347 attribute "char width" number 0.749700 attribute "series position" number 147.000000 # object 349 class array type float rank 1 shape 2 items 24 msb ieee data 21024 attribute "dep" string "positions" # object 350 class array type int rank 1 shape 2 items 24 msb ieee data 21216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 348 class field component "positions" value 349 component "connections" value 350 attribute "char width" number 0.642600 attribute "series position" number 148.000000 # object 352 class array type float rank 1 shape 2 items 19 msb ieee data 21408 attribute "dep" string "positions" # object 353 class array type int rank 1 shape 2 items 19 msb ieee data 21560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 351 class field component "positions" value 352 component "connections" value 353 attribute "char width" number 0.642600 attribute "series position" number 149.000000 # object 355 class array type float rank 1 shape 2 items 14 msb ieee data 21712 attribute "dep" string "positions" # object 356 class array type int rank 1 shape 2 items 12 msb ieee data 21824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 354 class field component "positions" value 355 component "connections" value 356 attribute "char width" number 0.571200 attribute "series position" number 150.000000 # object 358 class array type float rank 1 shape 2 items 12 msb ieee data 21920 attribute "dep" string "positions" # object 359 class array type int rank 1 shape 2 items 10 msb ieee data 22016 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 357 class field component "positions" value 358 component "connections" value 359 attribute "char width" number 0.571200 attribute "series position" number 151.000000 # object 361 class array type float rank 1 shape 2 items 15 msb ieee data 22096 attribute "dep" string "positions" # object 362 class array type int rank 1 shape 2 items 14 msb ieee data 22216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 360 class field component "positions" value 361 component "connections" value 362 attribute "char width" number 0.642600 attribute "series position" number 152.000000 # object 364 class array type float rank 1 shape 2 items 28 msb ieee data 22328 attribute "dep" string "positions" # object 365 class array type int rank 1 shape 2 items 28 msb ieee data 22552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 363 class field component "positions" value 364 component "connections" value 365 attribute "char width" number 0.749700 attribute "series position" number 153.000000 # object 367 class array type float rank 1 shape 2 items 18 msb ieee data 22776 attribute "dep" string "positions" # object 368 class array type int rank 1 shape 2 items 17 msb ieee data 22920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 366 class field component "positions" value 367 component "connections" value 368 attribute "char width" number 0.678300 attribute "series position" number 154.000000 # object 370 class array type float rank 1 shape 2 items 16 msb ieee data 23056 attribute "dep" string "positions" # object 371 class array type int rank 1 shape 2 items 14 msb ieee data 23184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 369 class field component "positions" value 370 component "connections" value 371 attribute "char width" number 0.606900 attribute "series position" number 155.000000 # object 373 class array type float rank 1 shape 2 items 16 msb ieee data 23296 attribute "dep" string "positions" # object 374 class array type int rank 1 shape 2 items 14 msb ieee data 23424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 372 class field component "positions" value 373 component "connections" value 374 attribute "char width" number 0.562275 attribute "series position" number 156.000000 # object 376 class array type float rank 1 shape 2 items 8 msb ieee data 23536 attribute "dep" string "positions" # object 377 class array type int rank 1 shape 2 items 5 msb ieee data 23600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 375 class field component "positions" value 376 component "connections" value 377 attribute "char width" number 0.749700 attribute "series position" number 157.000000 # object 379 class array type float rank 1 shape 2 items 19 msb ieee data 23640 attribute "dep" string "positions" # object 380 class array type int rank 1 shape 2 items 16 msb ieee data 23792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 378 class field component "positions" value 379 component "connections" value 380 attribute "char width" number 0.535500 attribute "series position" number 158.000000 # object 382 class array type float rank 1 shape 2 items 10 msb ieee data 23920 attribute "dep" string "positions" # object 383 class array type int rank 1 shape 2 items 8 msb ieee data 24000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 381 class field component "positions" value 382 component "connections" value 383 attribute "char width" number 0.535500 attribute "series position" number 159.000000 # object 385 class array type float rank 1 shape 2 items 19 msb ieee data 24064 attribute "dep" string "positions" # object 386 class array type int rank 1 shape 2 items 17 msb ieee data 24216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 384 class field component "positions" value 385 component "connections" value 386 attribute "char width" number 0.606900 attribute "series position" number 160.000000 # object 388 class array type float rank 1 shape 2 items 5 msb ieee data 24352 attribute "dep" string "positions" # object 389 class array type int rank 1 shape 2 items 4 msb ieee data 24392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 387 class field component "positions" value 388 component "connections" value 389 attribute "char width" number 0.294525 attribute "series position" number 161.000000 # object 391 class array type float rank 1 shape 2 items 19 msb ieee data 24424 attribute "dep" string "positions" # object 392 class array type int rank 1 shape 2 items 19 msb ieee data 24576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 390 class field component "positions" value 391 component "connections" value 392 attribute "char width" number 0.642600 attribute "series position" number 162.000000 # object 394 class array type float rank 1 shape 2 items 12 msb ieee data 24728 attribute "dep" string "positions" # object 395 class array type int rank 1 shape 2 items 10 msb ieee data 24824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 393 class field component "positions" value 394 component "connections" value 395 attribute "char width" number 0.571200 attribute "series position" number 163.000000 # object 397 class array type float rank 1 shape 2 items 27 msb ieee data 24904 attribute "dep" string "positions" # object 398 class array type int rank 1 shape 2 items 25 msb ieee data 25120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 396 class field component "positions" value 397 component "connections" value 398 attribute "char width" number 0.571200 attribute "series position" number 164.000000 # object 400 class array type float rank 1 shape 2 items 22 msb ieee data 25320 attribute "dep" string "positions" # object 401 class array type int rank 1 shape 2 items 21 msb ieee data 25496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 399 class field component "positions" value 400 component "connections" value 401 attribute "char width" number 0.678300 attribute "series position" number 165.000000 # object 403 class array type float rank 1 shape 2 items 18 msb ieee data 25664 attribute "dep" string "positions" # object 404 class array type int rank 1 shape 2 items 15 msb ieee data 25808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 402 class field component "positions" value 403 component "connections" value 404 attribute "char width" number 0.642600 attribute "series position" number 166.000000 # object 406 class array type float rank 1 shape 2 items 18 msb ieee data 25928 attribute "dep" string "positions" # object 407 class array type int rank 1 shape 2 items 17 msb ieee data 26072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 405 class field component "positions" value 406 component "connections" value 407 attribute "char width" number 0.660450 attribute "series position" number 167.000000 # object 409 class array type float rank 1 shape 2 items 18 msb ieee data 26208 attribute "dep" string "positions" # object 410 class array type int rank 1 shape 2 items 17 msb ieee data 26352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 408 class field component "positions" value 409 component "connections" value 410 attribute "char width" number 0.606900 attribute "series position" number 168.000000 # object 412 class array type float rank 1 shape 2 items 6 msb ieee data 26488 attribute "dep" string "positions" # object 413 class array type int rank 1 shape 2 items 5 msb ieee data 26536 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 411 class field component "positions" value 412 component "connections" value 413 attribute "char width" number 0.249900 attribute "series position" number 173.000000 # object 415 class array type float rank 1 shape 2 items 8 msb ieee data 26576 attribute "dep" string "positions" # object 416 class array type int rank 1 shape 2 items 8 msb ieee data 26640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 414 class field component "positions" value 415 component "connections" value 416 attribute "char width" number 0.392700 attribute "series position" number 174.000000 # object 418 class array type float rank 1 shape 2 items 8 msb ieee data 26704 attribute "dep" string "positions" # object 419 class array type int rank 1 shape 2 items 8 msb ieee data 26768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 417 class field component "positions" value 418 component "connections" value 419 attribute "char width" number 0.392700 attribute "series position" number 175.000000 # object 421 class array type float rank 1 shape 2 items 18 msb ieee data 26832 attribute "dep" string "positions" # object 422 class array type int rank 1 shape 2 items 17 msb ieee data 26976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 420 class field component "positions" value 421 component "connections" value 422 attribute "char width" number 0.705075 attribute "series position" number 187.000000 # object 424 class array type float rank 1 shape 2 items 10 msb ieee data 27112 attribute "dep" string "positions" # object 425 class array type int rank 1 shape 2 items 9 msb ieee data 27192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 423 class field component "positions" value 424 component "connections" value 425 attribute "char width" number 0.705075 attribute "series position" number 191.000000 # object 427 class array type float rank 1 shape 2 items 5 msb ieee data 27264 attribute "dep" string "positions" # object 428 class array type int rank 1 shape 2 items 3 msb ieee data 27304 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 426 class field component "positions" value 427 component "connections" value 428 attribute "char width" number 0.749700 attribute "series position" number 192.000000 # object 430 class array type float rank 1 shape 2 items 18 msb ieee data 27328 attribute "dep" string "positions" # object 431 class array type int rank 1 shape 2 items 18 msb ieee data 27472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 429 class field component "positions" value 430 component "connections" value 431 attribute "char width" number 0.678300 attribute "series position" number 193.000000 # object 433 class array type float rank 1 shape 2 items 3 msb ieee data 27616 attribute "dep" string "positions" # object 434 class array type int rank 1 shape 2 items 2 msb ieee data 27640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 432 class field component "positions" value 433 component "connections" value 434 attribute "char width" number 0.606900 attribute "series position" number 194.000000 # object 436 class array type float rank 1 shape 2 items 3 msb ieee data 27656 attribute "dep" string "positions" # object 437 class array type int rank 1 shape 2 items 3 msb ieee data 27680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 435 class field component "positions" value 436 component "connections" value 437 attribute "char width" number 0.749700 attribute "series position" number 195.000000 # object 439 class array type float rank 1 shape 2 items 6 msb ieee data 27704 attribute "dep" string "positions" # object 440 class array type int rank 1 shape 2 items 4 msb ieee data 27752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 438 class field component "positions" value 439 component "connections" value 440 attribute "char width" number 0.642600 attribute "series position" number 196.000000 # object 442 class array type float rank 1 shape 2 items 4 msb ieee data 27784 attribute "dep" string "positions" # object 443 class array type int rank 1 shape 2 items 3 msb ieee data 27816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 441 class field component "positions" value 442 component "connections" value 443 attribute "char width" number 0.678300 attribute "series position" number 197.000000 # object 445 class array type float rank 1 shape 2 items 6 msb ieee data 27840 attribute "dep" string "positions" # object 446 class array type int rank 1 shape 2 items 3 msb ieee data 27888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 444 class field component "positions" value 445 component "connections" value 446 attribute "char width" number 0.678300 attribute "series position" number 198.000000 # object 448 class array type float rank 1 shape 2 items 22 msb ieee data 27912 attribute "dep" string "positions" # object 449 class array type int rank 1 shape 2 items 21 msb ieee data 28088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 447 class field component "positions" value 448 component "connections" value 449 attribute "char width" number 0.749700 attribute "series position" number 199.000000 # object 451 class array type float rank 1 shape 2 items 2 msb ieee data 28256 attribute "dep" string "positions" # object 452 class array type int rank 1 shape 2 items 1 msb ieee data 28272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 450 class field component "positions" value 451 component "connections" value 452 attribute "char width" number 0.178500 attribute "series position" number 200.000000 # object 454 class array type float rank 1 shape 2 items 6 msb ieee data 28280 attribute "dep" string "positions" # object 455 class array type int rank 1 shape 2 items 3 msb ieee data 28328 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 453 class field component "positions" value 454 component "connections" value 455 attribute "char width" number 0.678300 attribute "series position" number 201.000000 # object 457 class array type float rank 1 shape 2 items 3 msb ieee data 28352 attribute "dep" string "positions" # object 458 class array type int rank 1 shape 2 items 2 msb ieee data 28376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 456 class field component "positions" value 457 component "connections" value 458 attribute "char width" number 0.749700 attribute "series position" number 202.000000 # object 460 class array type float rank 1 shape 2 items 5 msb ieee data 28392 attribute "dep" string "positions" # object 461 class array type int rank 1 shape 2 items 4 msb ieee data 28432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 459 class field component "positions" value 460 component "connections" value 461 attribute "char width" number 0.749700 attribute "series position" number 203.000000 # object 463 class array type float rank 1 shape 2 items 4 msb ieee data 28464 attribute "dep" string "positions" # object 464 class array type int rank 1 shape 2 items 3 msb ieee data 28496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 462 class field component "positions" value 463 component "connections" value 464 attribute "char width" number 0.678300 attribute "series position" number 204.000000 # object 466 class array type float rank 1 shape 2 items 6 msb ieee data 28520 attribute "dep" string "positions" # object 467 class array type int rank 1 shape 2 items 3 msb ieee data 28568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 465 class field component "positions" value 466 component "connections" value 467 attribute "char width" number 0.678300 attribute "series position" number 205.000000 # object 469 class array type float rank 1 shape 2 items 20 msb ieee data 28592 attribute "dep" string "positions" # object 470 class array type int rank 1 shape 2 items 20 msb ieee data 28752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 468 class field component "positions" value 469 component "connections" value 470 attribute "char width" number 0.749700 attribute "series position" number 206.000000 # object 472 class array type float rank 1 shape 2 items 4 msb ieee data 28912 attribute "dep" string "positions" # object 473 class array type int rank 1 shape 2 items 3 msb ieee data 28944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 471 class field component "positions" value 472 component "connections" value 473 attribute "char width" number 0.678300 attribute "series position" number 207.000000 # object 475 class array type float rank 1 shape 2 items 11 msb ieee data 28968 attribute "dep" string "positions" # object 476 class array type int rank 1 shape 2 items 10 msb ieee data 29056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 474 class field component "positions" value 475 component "connections" value 476 attribute "char width" number 0.678300 attribute "series position" number 208.000000 # object 478 class array type float rank 1 shape 2 items 5 msb ieee data 29136 attribute "dep" string "positions" # object 479 class array type int rank 1 shape 2 items 4 msb ieee data 29176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 477 class field component "positions" value 478 component "connections" value 479 attribute "char width" number 0.678300 attribute "series position" number 209.000000 # object 481 class array type float rank 1 shape 2 items 4 msb ieee data 29208 attribute "dep" string "positions" # object 482 class array type int rank 1 shape 2 items 2 msb ieee data 29240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 480 class field component "positions" value 481 component "connections" value 482 attribute "char width" number 0.678300 attribute "series position" number 210.000000 # object 484 class array type float rank 1 shape 2 items 16 msb ieee data 29256 attribute "dep" string "positions" # object 485 class array type int rank 1 shape 2 items 15 msb ieee data 29384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 483 class field component "positions" value 484 component "connections" value 485 attribute "char width" number 0.678300 attribute "series position" number 211.000000 # object 487 class array type float rank 1 shape 2 items 18 msb ieee data 29504 attribute "dep" string "positions" # object 488 class array type int rank 1 shape 2 items 17 msb ieee data 29648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 486 class field component "positions" value 487 component "connections" value 488 attribute "char width" number 0.678300 attribute "series position" number 212.000000 # object 490 class array type float rank 1 shape 2 items 4 msb ieee data 29784 attribute "dep" string "positions" # object 491 class array type int rank 1 shape 2 items 2 msb ieee data 29816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 489 class field component "positions" value 490 component "connections" value 491 attribute "char width" number 0.678300 attribute "series position" number 213.000000 # object 493 class array type float rank 1 shape 2 items 16 msb ieee data 29832 attribute "dep" string "positions" # object 494 class array type int rank 1 shape 2 items 14 msb ieee data 29960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 492 class field component "positions" value 493 component "connections" value 494 attribute "char width" number 0.821100 attribute "series position" number 214.000000 # object 496 class array type float rank 1 shape 2 items 16 msb ieee data 30072 attribute "dep" string "positions" # object 497 class array type int rank 1 shape 2 items 15 msb ieee data 30200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 495 class field component "positions" value 496 component "connections" value 497 attribute "char width" number 0.678300 attribute "series position" number 215.000000 # object 499 class array type float rank 1 shape 2 items 21 msb ieee data 30320 attribute "dep" string "positions" # object 500 class array type int rank 1 shape 2 items 20 msb ieee data 30488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 498 class field component "positions" value 499 component "connections" value 500 attribute "char width" number 0.714000 attribute "series position" number 216.000000 # object 502 class array type float rank 1 shape 2 items 26 msb ieee data 30648 attribute "dep" string "positions" # object 503 class array type int rank 1 shape 2 items 25 msb ieee data 30856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 501 class field component "positions" value 502 component "connections" value 503 attribute "char width" number 0.678300 attribute "series position" number 217.000000 # object 505 class array type float rank 1 shape 2 items 14 msb ieee data 31056 attribute "dep" string "positions" # object 506 class array type int rank 1 shape 2 items 13 msb ieee data 31168 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 504 class field component "positions" value 505 component "connections" value 506 attribute "char width" number 0.749700 attribute "series position" number 218.000000 # object 508 class array type float rank 1 shape 2 items 22 msb ieee data 31272 attribute "dep" string "positions" # object 509 class array type int rank 1 shape 2 items 22 msb ieee data 31448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 507 class field component "positions" value 508 component "connections" value 509 attribute "char width" number 0.606900 attribute "series position" number 219.000000 # object 511 class array type float rank 1 shape 2 items 16 msb ieee data 31624 attribute "dep" string "positions" # object 512 class array type int rank 1 shape 2 items 15 msb ieee data 31752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 510 class field component "positions" value 511 component "connections" value 512 attribute "char width" number 0.535500 attribute "series position" number 220.000000 # object 514 class array type float rank 1 shape 2 items 20 msb ieee data 31872 attribute "dep" string "positions" # object 515 class array type int rank 1 shape 2 items 19 msb ieee data 32032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 513 class field component "positions" value 514 component "connections" value 515 attribute "char width" number 0.571200 attribute "series position" number 221.000000 # object 517 class array type float rank 1 shape 2 items 16 msb ieee data 32184 attribute "dep" string "positions" # object 518 class array type int rank 1 shape 2 items 15 msb ieee data 32312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 516 class field component "positions" value 517 component "connections" value 518 attribute "char width" number 0.714000 attribute "series position" number 222.000000 # object 520 class array type float rank 1 shape 2 items 25 msb ieee data 32432 attribute "dep" string "positions" # object 521 class array type int rank 1 shape 2 items 25 msb ieee data 32632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 519 class field component "positions" value 520 component "connections" value 521 attribute "char width" number 0.821100 attribute "series position" number 223.000000 # object 523 class array type float rank 1 shape 2 items 8 msb ieee data 32832 attribute "dep" string "positions" # object 524 class array type int rank 1 shape 2 items 7 msb ieee data 32896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 522 class field component "positions" value 523 component "connections" value 524 attribute "char width" number 0.392700 attribute "series position" number 224.000000 # object 526 class array type float rank 1 shape 2 items 15 msb ieee data 32952 attribute "dep" string "positions" # object 527 class array type int rank 1 shape 2 items 13 msb ieee data 33072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 525 class field component "positions" value 526 component "connections" value 527 attribute "char width" number 0.678300 attribute "series position" number 225.000000 # object 529 class array type float rank 1 shape 2 items 7 msb ieee data 33176 attribute "dep" string "positions" # object 530 class array type int rank 1 shape 2 items 5 msb ieee data 33232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 528 class field component "positions" value 529 component "connections" value 530 attribute "char width" number 0.642600 attribute "series position" number 226.000000 # object 532 class array type float rank 1 shape 2 items 17 msb ieee data 33272 attribute "dep" string "positions" # object 533 class array type int rank 1 shape 2 items 15 msb ieee data 33408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 531 class field component "positions" value 532 component "connections" value 533 attribute "char width" number 0.856800 attribute "series position" number 227.000000 # object 535 class array type float rank 1 shape 2 items 11 msb ieee data 33528 attribute "dep" string "positions" # object 536 class array type int rank 1 shape 2 items 10 msb ieee data 33616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 534 class field component "positions" value 535 component "connections" value 536 attribute "char width" number 0.642600 attribute "series position" number 228.000000 # object 538 class array type float rank 1 shape 2 items 24 msb ieee data 33696 attribute "dep" string "positions" # object 539 class array type int rank 1 shape 2 items 23 msb ieee data 33888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 537 class field component "positions" value 538 component "connections" value 539 attribute "char width" number 0.571200 attribute "series position" number 229.000000 # object 541 class array type float rank 1 shape 2 items 16 msb ieee data 34072 attribute "dep" string "positions" # object 542 class array type int rank 1 shape 2 items 16 msb ieee data 34200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 540 class field component "positions" value 541 component "connections" value 542 attribute "char width" number 0.571200 attribute "series position" number 230.000000 # object 544 class array type float rank 1 shape 2 items 10 msb ieee data 34328 attribute "dep" string "positions" # object 545 class array type int rank 1 shape 2 items 7 msb ieee data 34408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 543 class field component "positions" value 544 component "connections" value 545 attribute "char width" number 0.821100 attribute "series position" number 231.000000 # object 547 class array type float rank 1 shape 2 items 17 msb ieee data 34464 attribute "dep" string "positions" # object 548 class array type int rank 1 shape 2 items 17 msb ieee data 34600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 546 class field component "positions" value 547 component "connections" value 548 attribute "char width" number 0.714000 attribute "series position" number 232.000000 # object 550 class array type float rank 1 shape 2 items 17 msb ieee data 34736 attribute "dep" string "positions" # object 551 class array type int rank 1 shape 2 items 16 msb ieee data 34872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 549 class field component "positions" value 550 component "connections" value 551 attribute "char width" number 0.714000 attribute "series position" number 233.000000 # object 553 class array type float rank 1 shape 2 items 6 msb ieee data 35000 attribute "dep" string "positions" # object 554 class array type int rank 1 shape 2 items 4 msb ieee data 35048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 552 class field component "positions" value 553 component "connections" value 554 attribute "char width" number 0.749700 attribute "series position" number 234.000000 # object 556 class array type float rank 1 shape 2 items 15 msb ieee data 35080 attribute "dep" string "positions" # object 557 class array type int rank 1 shape 2 items 14 msb ieee data 35200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 555 class field component "positions" value 556 component "connections" value 557 attribute "char width" number 0.749700 attribute "series position" number 235.000000 # object 559 class array type float rank 1 shape 2 items 20 msb ieee data 35312 attribute "dep" string "positions" # object 560 class array type int rank 1 shape 2 items 19 msb ieee data 35472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 558 class field component "positions" value 559 component "connections" value 560 attribute "char width" number 0.749700 attribute "series position" number 236.000000 # object 562 class array type float rank 1 shape 2 items 12 msb ieee data 35624 attribute "dep" string "positions" # object 563 class array type int rank 1 shape 2 items 10 msb ieee data 35720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 561 class field component "positions" value 562 component "connections" value 563 attribute "char width" number 0.749700 attribute "series position" number 237.000000 # object 565 class array type float rank 1 shape 2 items 18 msb ieee data 35800 attribute "dep" string "positions" # object 566 class array type int rank 1 shape 2 items 16 msb ieee data 35944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 564 class field component "positions" value 565 component "connections" value 566 attribute "char width" number 0.892500 attribute "series position" number 238.000000 # object 568 class array type float rank 1 shape 2 items 20 msb ieee data 36072 attribute "dep" string "positions" # object 569 class array type int rank 1 shape 2 items 19 msb ieee data 36232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 567 class field component "positions" value 568 component "connections" value 569 attribute "char width" number 0.785400 attribute "series position" number 239.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 288 member 129 position 129 value 291 member 130 position 130 value 294 member 131 position 131 value 297 member 132 position 132 value 300 member 133 position 133 value 303 member 134 position 134 value 306 member 135 position 135 value 309 member 136 position 136 value 312 member 137 position 137 value 315 member 138 position 138 value 318 member 139 position 139 value 321 member 140 position 140 value 324 member 141 position 141 value 327 member 142 position 142 value 330 member 143 position 143 value 333 member 144 position 144 value 336 member 145 position 145 value 339 member 146 position 146 value 342 member 147 position 147 value 345 member 148 position 148 value 348 member 149 position 149 value 351 member 150 position 150 value 354 member 151 position 151 value 357 member 152 position 152 value 360 member 153 position 153 value 363 member 154 position 154 value 366 member 155 position 155 value 369 member 156 position 156 value 372 member 157 position 157 value 375 member 158 position 158 value 378 member 159 position 159 value 381 member 160 position 160 value 384 member 161 position 161 value 387 member 162 position 162 value 390 member 163 position 163 value 393 member 164 position 164 value 396 member 165 position 165 value 399 member 166 position 166 value 402 member 167 position 167 value 405 member 168 position 168 value 408 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 411 member 174 position 174 value 414 member 175 position 175 value 417 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 420 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 423 member 192 position 192 value 426 member 193 position 193 value 429 member 194 position 194 value 432 member 195 position 195 value 435 member 196 position 196 value 438 member 197 position 197 value 441 member 198 position 198 value 444 member 199 position 199 value 447 member 200 position 200 value 450 member 201 position 201 value 453 member 202 position 202 value 456 member 203 position 203 value 459 member 204 position 204 value 462 member 205 position 205 value 465 member 206 position 206 value 468 member 207 position 207 value 471 member 208 position 208 value 474 member 209 position 209 value 477 member 210 position 210 value 480 member 211 position 211 value 483 member 212 position 212 value 486 member 213 position 213 value 489 member 214 position 214 value 492 member 215 position 215 value 495 member 216 position 216 value 498 member 217 position 217 value 501 member 218 position 218 value 504 member 219 position 219 value 507 member 220 position 220 value 510 member 221 position 221 value 513 member 222 position 222 value 516 member 223 position 223 value 519 member 224 position 224 value 522 member 225 position 225 value 525 member 226 position 226 value 528 member 227 position 227 value 531 member 228 position 228 value 534 member 229 position 229 value 537 member 230 position 230 value 540 member 231 position 231 value 543 member 232 position 232 value 546 member 233 position 233 value 549 member 234 position 234 value 552 member 235 position 235 value 555 member 236 position 236 value 558 member 237 position 237 value 561 member 238 position 238 value 564 member 239 position 239 value 567 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end =¥`B=M=ç†Â=ç†Â=„M=ç†Â>g†Â=ç†Â?-¥>Ö¡=M=¥`B>ç†Â=¥`B?-¥>­¥>ç†Â>­¥?-¥=¥`B>Fs‚=ç†Â¾g†Â=ç†Â>Æs‚>q¾g†Â>­¥?N¸R?oi>Fs‚?oi?N¸R?´9>Æs‚=¥`B=Æs=¥`B?M=¥`B?Ö¡=ç†Â>ç†Â>Ö¡=M>Ö¡>Öý">Ö¡?%`B>Vý">Æs‚>xb¾M>xb>xb?-¥>xb?N¸R>¾.²¾M>¾.²>¾.²?-¥>¾.²?N¸R>θR>¥`B>ïË’=M>ïË’>”Ö¡>ïË’?%`B?*˜>„M?oi=Æs?oi>Fs‚?oi?Ö¡    =¥`B=¥`B?M=¥`B?Ö¡=ç†Â?%`B>Ö¡>ç†Â>5éâ?-¥>Vý">ç†Â>xb?-¥>Œ‘Ñ>øf>q? ‘Ñ>q?q>q?%`B>θR?q>ßAò=„M>ßAò>M>ïË’>Fs‚?*™?*™?q?oi>g†Â?´9?ù >g†Â?ù ?%`B?!=Ù=M?)‚ª=Æs?)‚ª>%`B?)‚ª?-¥   =¥`B>M=¥`B>Fs‚=ç†Â=„M=ç†Â>„M>Ö¡=M>Ö¡>”Ö¡>Vý">xb?M>xb?Ö¡>Œ‘Ñ>Öý">Œ‘Ñ?%`B>­¥>­¥>¥`B>­¥?-¥>¾.²>Öý">θR=M>θR>ç†Â>θR?%`B>ßAò?M>ßAò?Ö¡>ïË’=Æs?*™=Æs?oi>Fs‚?´9=M?ù >µéâ?!=Ù?!=Ù>Öý"?)‚«>ç†Â?1Çz?1Çz>ç†Â?: J=M?: J=„M?: J>Æs‚?: J>Öý" !!   =¥`B>øf=¥`B?%`B=ç†Â?M=ç†Â?q=ç†Â?-¥>Ö¡?Ö¡>Ö¡?%`B=¥`B>g†Â=¥`B>µéâ=ç†Â=„M=ç†Â?M>5é⽄M>5éâ?%`B>xb¾%`B>xb?>.³>q¾g†Â>q?N¸R =¥`B¾g†Â=¥`B?N¸R>Ö¡¾%`B>Ö¡?>.³>Vý"½„M>Vý"?%`B>Œ‘Ñ=„M>Œ‘Ñ?M>q>g†Â>q>µéâ =¥`B>Æs‚=¥`B?Ö¡>xb>”Ö¡>xb?-¥>θR>Æs‚>θR?Ö¡=¥`B>”Ö¡>¾.²>¾.²?Ö¡?)‚ª>”Ö¡=¥`B¾M=¥`B=M=ç†Â½Æs=ç†Â=ç†Â=„M>Ö¡½Lü>Ö¡=M=¥`B>”Ö¡?)‚ª>”Ö¡=¥`B=M=ç†Â=ç†Â=„M>Ö¡=M=¥`B¾g†Â?)‚ª?N¸R=¥`B>”Ö¡=¥`B>Æs‚=ç†Â>M=ç†Â? ‘Ñ>5éâ=M>5éâ?%`B>Œ‘Ñ>Œ‘Ñ?-¥>­¥>­¥?-¥>ßAò=M>ßAò?%`B?*˜>M?*˜? ‘Ñ?oi>”Ö¡?oi>Æs‚  =¥`B? ‘Ñ>Ö¡?Ö¡>xb>xb?-¥=¥`B=ç†Â?M=ç†Â? ‘Ñ>Ö¡?q>5éâ?%`B>xb?-¥>¾.²?-¥>θR>¥`B>ßAò?%`B>ïË’>Öý">ïË’?q?*˜>øf?*˜? ‘Ñ?oi  =¥`B>M=ç†Â=„M>Ö¡=M>Ö¡?-¥>xb>q>Öý">­¥>θR>Öý">ßAò=M>ïË’>Æs‚?*˜=Æs?*˜>µéâ?*˜?-¥?oi>Fs‚?oi>„M   =¥`B>g†Â>θR>θR?-¥?´9>g†Â=¥`B>M=ç†Â=„M=ç†Â>Æs‚>Ö¡=M>Ö¡>Öý">Ö¡?-¥>xb>xb>ç†Â>­¥>­¥>ç†Â>ßAò=M>ßAò>Öý">ïË’?-¥?*˜=Æs?*˜>µéâ?oi>Fs‚?oi>„M   =¥`B>g†Â=¥`B>Æs‚=ç†Â=Æs=ç†Â>¥`B=ç†Â? ‘Ñ>5éâ=M>5éâ>Æs‚>5éâ?%`B>Œ‘Ñ>Œ‘Ñ>Öý">Œ‘Ñ?-¥>q>q>Öý">­¥?-¥>θR=M>θR>Æs‚>ßAò?%`B>ïË’=Æs>ïË’>¥`B>ïË’?Ö¡?*™>Fs‚?*™>g†Â   =¥`B?-¥>Vý"?oi?-¥=¥`B>M=¥`B>g†Â=ç†Â=„M=ç†Â>”Ö¡=ç†Â?M=ç†Â?Ö¡>Ö¡=M>Ö¡>ç†Â>Ö¡?%`B>5éâ>µéâ>Vý">Öý">xb>xb?-¥>Œ‘Ñ>Æs‚>­¥>Æs‚>¾.²>¾.²?-¥>θR>Öý">ßAò>µéâ>ïË’=M>ïË’>ç†Â>ïË’?%`B?*˜=„M?*˜>”Ö¡?*˜?M?*˜?Ö¡?oi>M?oi>g†Â     =¥`B>ç†Â=¥`B>øf=ç†Â=Æs=ç†Â>µéâ=ç†Â?Ö¡>Ö¡=M>5éâ>”Ö¡>5éâ?%`B>xb>Œ‘Ñ>„M>Œ‘Ñ?-¥>q>q>„M>q?-¥>θR=M>θR>”Ö¡>θR?%`B>ïË’>M>ïË’>µéâ>ïË’?Ö¡?*˜>”Ö¡?*˜>ç†Â   =¥`B=M=¥`B>Öý"=ç†Â=ç†Â=„M=ç†Â>Æs‚=ç†Â>ç†Â>Ö¡=M>Ö¡>Öý"=¥`B¾M=¥`B=M=¥`B>Öý"=ç†Â½Æs=ç†Â=ç†Â=„M=ç†Â>Æs‚=ç†Â>ç†Â>Ö¡½Lü>Ö¡=M>Ö¡>Öý"   =¥`B>”Ö¡?ù ?ù ?Ö¡=¥`B>Fs‚=¥`B>Æs‚?)‚ª>Fs‚?)‚ª>Æs‚=¥`B=¥`B?Ö¡?ù >”Ö¡=¥`B?M=¥`B? ‘Ñ=ç†Â?q>Ö¡?%`B>Vý"?-¥>xb=M>Œ‘Ñ>Œ‘Ñ=„M>Œ‘Ñ>g†Â>Œ‘Ñ>¥`B>q=M>­¥?-¥>θR>Æs‚>θR?%`B>ßAò>Öý">ßAò?q>ïË’>øf>ïË’? ‘Ñ   =¥`B>”Ö¡=¥`B>Æs‚=ç†Â>Fs‚=ç†Â>øf>Ö¡>M>Ö¡? ‘Ñ>Vý"=„M>Vý"?q>xb>„M>xb>µéâ>Œ‘Ñ=M>Œ‘Ñ>Fs‚>Œ‘Ñ>„M>Œ‘Ñ>µéâ>Œ‘Ñ>ç†Â>Œ‘Ñ?%`B>q>Fs‚>q>ç†Â>q>øf>­¥>%`B>¾.²>¾.²?M>¾.²?-¥>ßAò>%`B>ïË’>ïË’?M>ïË’?-¥?*™>Fs‚?oi>Fs‚?oi>„M?oi>øf?´9=M?´9>Fs‚?´9>„M?´9>Öý"?´9?M?´9?%`B?ù >%`B?ù ?M?!=Ù=„M?!=Ù?q?)‚«=Æs?)‚«>%`B?1Çz? ‘Ñ?: J>g†Â?: J>øf?BQ>¥`B?BQ>Æs‚"   #%%**,,..//--++(($$ '')&!! %=¥`B>5éâ>g†Â>­¥?-¥?*™>g†Â?ù =¥`B=¥`B>µéâ=¥`B?-¥>¾.²>¾.²>µéâ>¾.²?-¥>ïË’=M>ïË’>¥`B>ïË’>Æs‚>ïË’?%`B?*˜=„M?*˜>”Ö¡?*˜>Öý"?*˜?q?oi>M?oi>g†Â?oi>øf?oi? ‘Ñ    =¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M  =¥`B=¥`B?-¥>q>q?-¥>θR=M>θR?%`B>ïË’=Æs>ïË’?Ö¡?*˜>%`B?*˜?M?oi>„M?oi>Öý" =¥`B=¥`B>µéâ=¥`B?-¥>­¥>µéâ?*™?*™?-¥=¥`B=¥`B>µéâ=¥`B?-¥>­¥>µéâ?*™?-¥=¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR>„M>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9>„M?´9?M   =¥`B=¥`B>µéâ=¥`B?-¥?oi?oi>µéâ?oi?-¥=¥`B=¥`B?-¥=¥`B>%`B=¥`B>g†Â=ç†Â=„M>Ö¡=M>Vý">Œ‘Ñ>­¥=M>¾.²=„M>θR>%`B>θR?-¥ =¥`B=¥`B>g†Â=¥`B?-¥>xb>Æs‚?oi?oi?-¥=¥`B=¥`B?-¥>ïË’=¥`B=¥`B?-¥>­¥?ù ?ù ?-¥=¥`B=¥`B?-¥?oi?oi?-¥=¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M?ù >„M?ù >Öý"   =¥`B=¥`B>¥`B=¥`B?-¥>¾.²>¥`B>¾.²?-¥>ïË’>µéâ>ïË’?%`B?*˜>Æs‚?*˜?q?oi>ç†Â?oi? ‘Ñ =¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>¾.²>M>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9½„M?´9>%`B?´9?M?ù >„M?ù >Öý"   =¥`B=¥`B>µéâ=¥`B?-¥>q>µéâ>¾.²>µéâ>¾.²?-¥>ïË’>Æs‚>ïË’?%`B?*˜>Öý"?*˜?q?oi?oi>øf?oi? ‘Ñ  =¥`B=Æs=¥`B?M=¥`B?Ö¡=ç†Â>ç†Â>Ö¡=M>Ö¡>Öý">Ö¡?%`B>Vý">Æs‚>xb>xb?-¥>¾.²>¾.²?-¥>θR>¥`B>ïË’=M>ïË’>”Ö¡>ïË’?%`B?*˜>„M?oi=Æs?oi>Fs‚?oi?Ö¡   =¥`B?-¥>q>q?-¥?oi?-¥=¥`B>Fs‚=¥`B?-¥=ç†Â=Æs>5éâ=M>Œ‘Ñ>­¥>ßAò=M?*˜=Æs?oi>Fs‚?oi?-¥ =¥`B?-¥>­¥?ù ?-¥=¥`B?-¥>xb>θR?-¥?´9?: J?-¥=¥`B=¥`B?-¥?oi?oi?-¥=¥`B?-¥>­¥>­¥>µéâ?ù ?-¥=¥`B=¥`B?-¥?oi?oi?-¥=¥`B¾g†Â=¥`B?N¸R=ç†Â¾g†Â=ç†Â?N¸R>q¾g†Â>q?N¸R=¥`B?-¥?oi½Æs=¥`B¾g†Â=¥`B?N¸R>Œ‘Ѿg†Â>Œ‘Ñ?N¸R>q¾g†Â>q?N¸R=¥`B>Æs‚>5éâ>øf>xb>xb? ‘Ñ>xb?Ö¡>q>øf>θR>Æs‚=¥`B½„M?ù ½„M=¥`B?M=¥`B?Ö¡=ç†Â>øf=ç†Â? ‘Ñ=ç†Â?%`B>Ö¡?M>Ö¡?-¥=¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â   =¥`B=¥`B=Æs=¥`B>µéâ=¥`B?-¥>Ö¡=M>Ö¡>Öý">Vý">Vý">ç†Â>q>q>ç†Â>¾.²=M>¾.²>Öý">ßAò=Æs>ßAò>µéâ>ïË’>Fs‚>ïË’>„M  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’?-¥   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ßAò>Æs‚>ïË’=Æs>ïË’>„M>ïË’>¥`B  =¥`B>ç†Â>5éâ>5éâ? ‘Ñ>Vý"?%`B>Œ‘Ñ?-¥>q>ç†Â>­¥?-¥=¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ¾Fs‚>5éâ=M>5éâ>Öý">xb¾g†Â>xb>xb>ç†Â>­¥¾g†Â>­¥>­¥>ç†Â>θR¾Fs‚>θR=M>θR>Öý">ßAò¾%`B>ïË’½„M>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â   =¥`B=¥`B>¥`B=¥`B?-¥>5éâ>Öý">xb>ç†Â>­¥>ç†Â>θR>Öý">ßAò>ßAò>¥`B=¥`B?-¥=ç†Â=ç†Â>ç†Â=ç†Â?%`B=ç†Â?5éâ>Ö¡?-¥=¥`B¾g†Â>Ö¡¾g†Â>Vý"¾Fs‚>Vý"?-¥>xb½Æs>xb>ç†Â>xb?%`B>xb?5éâ>Œ‘Ñ?-¥=¥`B=¥`B>M=¥`B?-¥>Vý">„M>θR>ç†Â>ßAò=¥`B=¥`B?-¥=¥`B=¥`B>¥`B=¥`B>ç†Â>5éâ>Öý">xb>ç†Â>­¥>ç†Â>θR>Öý">ßAò>ßAò>¥`B?oi>Öý"?ù >ç†Â?1Çz>ç†Â?BQ>Öý"?J•ì?J•ì>¥`B  =¥`B=¥`B>¥`B=¥`B>ç†Â>5éâ>Öý">xb>ç†Â>­¥>ç†Â>θR>Öý">ßAò>ßAò>¥`B=¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ?*™>Fs‚?*™>„M  =¥`B¾g†Â=¥`B=Æs=¥`B>µéâ=¥`B>ç†Â>Ö¡=M>Ö¡>Öý">Vý">Vý">ç†Â>q>q>ç†Â>¾.²=M>¾.²>Öý">ßAò=Æs>ßAò>µéâ>ïË’>Fs‚>ïË’>„M  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’¾g†Â>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â   =¥`B=¥`B>„M=¥`B>ç†Â=ç†Â>µéâ>5éâ>Öý">xb>ç†Â>­¥>ç†Â=¥`B=Æs=¥`B>µéâ=ç†Â=M=ç†Â>”Ö¡=ç†Â>Öý">5éâ>„M>Vý">Vý">ç†Â>q>q>ç†Â>­¥>g†Â>θR=M>θR>Fs‚>θR>Öý">ßAò=Æs>ßAò>M>ßAò>µéâ   =¥`B>ç†Â>5éâ>M>5éâ?-¥>Vý"=M>Œ‘Ñ>q>ç†Â>­¥=¥`B>M=¥`B>ç†Â=ç†Â=M>5éâ>Œ‘Ñ>­¥=M>ßAò>ßAò>M>ßAò>ç†Â=¥`B>ç†Â>Œ‘Ñ>ïË’>ç†Â=¥`B>ç†Â>Vý">­¥>ç†Â>ïË’?ù >ç†Â=¥`B=¥`B>ç†Â>ßAò>ßAò>ç†Â=¥`B¾g†Â=ç†Â¾g†Â=ç†Â>ç†Â>5éâ¾Fs‚>xb¾M>q?*˜>ç†Â=¥`B=¥`B>ç†Â>ßAò>ßAò>ç†Â=¥`B>”Ö¡=ç†Â½Æs=ç†Â½Lü=ç†Â?q=ç†Â?-¥>Ö¡¾%`B>Ö¡¾M>Ö¡½„M>Ö¡=M>Ö¡>„M>Ö¡>¥`B>Ö¡? ‘Ñ>Ö¡?%`B>Ö¡?5éâ>Ö¡?>.³>5éâ¾Fs‚>5éâ>5éâ=„M>5éâ?M>5éâ?Ö¡>5éâ?Fs€>Vý"=M>Vý">M>Vý">Fs‚>Vý">g†Â>Vý">µéâ>Vý">Æs‚>Vý">ç†Â>Vý"? ‘Ñ>xb¾g†Â>xb=Æs>xb>%`B>xb>Öý">xb>øf>xb?N¸R"   !!  =¥`B¾g†Â=¥`B?N¸R=¥`B¾g†Â=¥`B=Æs=¥`B>%`B=¥`B>Öý"=¥`B>øf=¥`B?N¸R=ç†Â=M=ç†Â>M=ç†Â>Fs‚=ç†Â>g†Â=ç†Â>µéâ=ç†Â>Æs‚=ç†Â>ç†Â=ç†Â? ‘Ñ>Ö¡¾Fs‚>Ö¡>Ö¡=„M>Ö¡?M>Ö¡?Ö¡>Ö¡?Fs€>5éâ¾%`B>5éâ¾M>5é⽄M>5éâ=M>5éâ>„M>5éâ>¥`B>5éâ? ‘Ñ>5éâ?%`B>5éâ?5éâ>5éâ?>.³>Vý"½Æs>Vý"½Lü>Vý"?q>Vý"?-¥>xb>”Ö¡!!    "" =¥`B>Fs‚=¥`B>„M=ç†Â>¥`B=ç†Â>µéâ>5éâ>µéâ>5éâ>Æs‚>xb>µéâ>xb>Æs‚>q>¥`B>q>µéâ>ßAò>g†Â>ßAò>„M?*™>Fs‚?*™>g†Â?´9>Fs‚?´9>g†Â?!=Ù>g†Â?!=Ù>„M?)‚ª>¥`B?)‚ª>Æs‚  =¥`B?M=¥`B?Ö¡=ç†Â>ç†Â=ç†Â?%`B>5éâ>Öý">5éâ?-¥>xb>Öý">xb?-¥>q>ç†Â>q?%`B>­¥?M>­¥?Ö¡ =¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M>q>q½M>±Çz½Fs‚>¾.²½„M>¾.²½Æs>±Çz½ç†Â>´9½ç†Â  =¥`B>M=¥`B>ç†Â=ç†Â=M>5éâ>Œ‘Ñ>­¥=M>ßAò>ßAò>M>ßAò>ç†Â>5éâ? ‘Ñ>Vý"?M>Vý"?Ö¡>xb? ‘Ñ>”Ö¡? ‘Ñ>¥`B?M>¥`B?Ö¡>µéâ? ‘Ñ  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ßAò>Æs‚>ïË’=Æs>ïË’>„M>ïË’>¥`B>oË’?M>q? =>­¥? =  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â>N¸R?M>Œ‘Ñ? =>”Ö¡?Åm>q? =>ÂQ?M   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â>N¸R? ‘Ñ>oË’?M>oË’?Ö¡>ˆoi? ‘Ñ>¡=Ù? ‘Ñ>±Çz?M>±Çz?Ö¡>ÂQ? ‘Ñ   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â>oË’? =>ˆoi? =>­¥?M   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â>„M? ‘Ñ>”Ö¡?M>”Ö¡?Ö¡>¥`B? ‘Ñ   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ>Œ‘Ñ>Œ‘ѽM>¡=Ù½Fs‚>­¥½„M>­¥½Æs>¡=Ù½ç†Â>€*™½ç†Â  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ßAò>Æs‚>ïË’=Æs>ïË’>„M>ïË’>¥`B>N¸R?M>Œ‘Ñ? =>”Ö¡?Åm>q? =>ÂQ?M  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ßAò>Æs‚>ïË’=Æs>ïË’>„M>ïË’>¥`B>Vý"? ‘Ñ>xb?M>xb?Ö¡>Œ‘Ñ? ‘Ñ>¡=Ù? ‘Ñ>±Çz?M>±Çz?Ö¡>ÂQ? ‘Ñ  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ßAò>Æs‚>ïË’=Æs>ïË’>„M>ïË’>¥`B>oË’? =>´9? =>­¥?M  >-¥>-¥>ç†Â=¥`B? ‘Ñ=ç†Â?M=ç†Â?Ö¡>Ö¡? ‘Ñ>Fs‚? ‘Ñ>g†Â?M>g†Â?Ö¡>„M? ‘Ñ >-¥>-¥>ç†Â=¥`B?M>q? =>-¥?Åm>>.²? =>„M?M> ‘Ñ> ‘Ñ>ç†Â=¥`B? ==ç†Â? =>>.²?M=¥`B>5éâ>g†Â>­¥?-¥?*™>g†Â?ù >xb?>.³>Œ‘Ñ?5éâ>Œ‘Ñ?Fs€>q?>.³>¾.²?>.³>θR?5éâ>θR?Fs€>ßAò?>.³ =¥`B>5éâ>g†Â>­¥?-¥?*™>g†Â?ù >q?5éâ>­¥?>.³>¾.²?5éâ=¥`B=¥`B>µéâ=¥`B?-¥>­¥>µéâ?*™?*™?-¥>Œ‘Ñ?L§>xb?L§>-¥?5éâ>ç†Â>ç†Â>ç†Â>ç†Â=Æs>ç†Â>µéâ?;Í=M?;Í>Öý"?´9?´9>ç†Â?%`B?%`B>ç†Â?3Ø®=M?3Ø®>Öý"?: J>Æs‚?@?æ=Æs?@?æ>„M?@?æ>¥`B=¥`B>Fs‚=¥`B>„M=Öý"=Æs=Öý">µéâ>%`B=M>%`B>Öý">oË’>oË’>ç†Â>¡=Ù>¡=Ù>ç†Â>Ê•ê=M>Ê•ê>Öý">ç†Â>„M  >­¥>­¥>µéâ>­¥?-¥?Åm>µéâ?3Ø®?3Ø®?-¥=¥`B>5éâ>g†Â>©‚ª>g†Â=¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M?ù >„M?ù >Öý">ˆoi?5éâ>­¥?L§>µéâ?DbN>¾.²?L§>ãdZ?5éâ   =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ?*™>Fs‚?*™>„M>N¸R? ‘Ñ>oË’?M>oË’?Ö¡>ˆoi? ‘Ñ>¡=Ù? ‘Ñ>±Çz?M>±Çz?Ö¡>ÂQ? ‘Ñ  =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ?*™>Fs‚?*™>„M>oË’? =>ˆoi? =>­¥?M  =¥`B>M=¥`B>ç†Â=ç†Â=M>5éâ>Œ‘Ñ>­¥=M>ßAò>ßAò>M>ßAò>ç†Â>-¥?M>xb? =>„M?Åm>Œ‘Ñ? =>±Çz?M =¥`B>M=¥`B>ç†Â=ç†Â=M>5éâ>Œ‘Ñ>­¥=M>ßAò>ßAò>M>ßAò>ç†Â>€*™? =>´9? =>µéâ?M =¥`B¾g†Â=ç†Â¾g†Â=ç†Â>ç†Â>5éâ¾Fs‚>xb¾M>q?*˜>ç†Â>_Aò? ‘Ñ>€*™?M>€*™?Ö¡>´9? ‘Ñ>©‚ª? ‘Ñ>º J?M>º J?Ö¡>Ê•ê? ‘Ñ   =¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M?ù >„M?ù >Öý">xb?>.³>Œ‘Ñ?5éâ>Œ‘Ñ?Fs€>q?>.³>¾.²?>.³>θR?5éâ>θR?Fs€>ßAò?>.³   =¥`B>Fs‚=¥`B?-¥=ç†Â=Æs>5éâ=M>Œ‘Ñ>­¥>ßAò=M?*˜=Æs?oi>Fs‚?oi?-¥>Vý"?>.³>xb?5éâ>xb?Fs€>Œ‘Ñ?>.³>­¥?>.³>¾.²?5éâ>¾.²?Fs€>θR?>.³ =¥`B>Œ‘Ñ=¥`B>­¥=ç†Â>5éâ=ç†Â>ßAò>5éâ=ç†Â>5éâ?*™>xb=¥`B>xb?oi>­¥=¥`B>­¥?oi>θR=ç†Â>θR?*™>ïË’>5éâ>ïË’>ßAò>N¸R>ÂQ? =  =øb>¥`B>N¸R=„M>ˆoi?´9>˜ù ?%`B>º J?-¥>¾.²>¥`B>ÛŠ?-¥>>.²=%`B>q=øb=¥`B=%`B=¥`B=¥`B=øb=ç†Â>q=ç†Â>©‚ª>µéâ =¥`B?-¥>­¥>­¥>µéâ?ù ?-¥>„M=¥`B>Öý"=¥`B>5éâ>ÂQ?*™>ÂQ=¥`B=¥`B>¥`B=¥`B?-¥>xb>¥`B>xb?-¥>­¥>µéâ>­¥?%`B>¾.²>Æs‚>¾.²?q>θR>ç†Â>θR? ‘Ñ>_Aò>xb>´9=g†Â>´9>”Ö¡>˜ù <Æs‚>¡=Ù<M>­¥>±Çz>xb>º J   >M>ç†Â>N¸R=ç†Â>xb?´9>Œ‘Ñ?%`B>­¥?-¥>µéâ>ç†Â>θR?-¥>%`B=M>M=¥`B =¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’>ïË’=Æs>ïË’>µéâ>ïË’>ç†Â>oË’?M>q? =>­¥? =   >Ö¡>Ö¡>ç†Â=¥`B?M>q? =>>.²? ==¥`B>Fs‚=¥`B>„M=ç†Â=Æs=ç†Â>µéâ>5éâ=M>5éâ>Öý">xb>xb>ç†Â>­¥>­¥>ç†Â>θR=M>θR>Öý">ïË’=Æs>ïË’>µéâ?*™>Fs‚?*™>„M>oË’?M>q? =>­¥? =  =¥`B>M=¥`B>ç†Â=ç†Â=M>5éâ>Œ‘Ñ>­¥=M>ßAò>ßAò>M>ßAò>ç†Â>N¸R?M>Œ‘Ñ? =>q? = =¥`B=¥`B>¥`B=¥`B>ç†Â>5éâ>Öý">xb>ç†Â>­¥>ç†Â>θR>Öý">ßAò>ßAò>¥`B=¥`B?^5=Öý"?£=Öý"?çÕ>Ö¡?çÕ>Ö¡?,¥>Fs‚?çÕ>Fs‚?,¥>g†Â?Åm>g†Â? =>”Ö¡?^5>”Ö¡?£>©‚ª>ü2Ê>©‚ª?^5>¾.²>ü2Ê>¾.²?^5>ÒÚº?^5>ÒÚº?£>ßAò?çÕ  =¥`B=¥`B?-¥?oi?oi?-¥>M?3Ø®>q?<~>q?DbN>Fs‚?DbN>Fs‚?L§>xb?DbN>xb?L§>Œ‘Ñ?@?æ>Œ‘Ñ?H„¶>­¥?3Ø®>­¥?<~>ÂQ?+“Þ>ÂQ?3Ø®>Öý"?+“Þ>Öý"?3Ø®>ë©*?3Ø®>ë©*?<~>øf?DbN  =Æs>„M=Æs>¥`B>M>%`B>M>Öý">Fs‚=Æs>Fs‚>øf>„M=„M>„M?M>µéâ=„M>µéâ?M>Öý"=Æs>Öý">øf>øf=„M>øf>%`B>øf>Öý">øf?M=¥`B?*™   =Æs>„M=Æs>¥`B>M>%`B>M>Öý">Fs‚=Æs>Fs‚>øf>„M=„M>„M?M>µéâ=„M>µéâ?M>Öý"=Æs>Öý">øf>øf>%`B>øf>Öý"?M>„M?M>¥`B=¥`B?*™  >ïË’>%`B>ïË’>M>ßAò=„M>θR=Lù>­¥>q?%`B>Œ‘Ñ?-¥>Œ‘Ñ?q>Œ‘Ñ>熿>Œ‘Ñ>µéâ>xb?%`B>Vý">Ö¡>”Ö¡>Ö¡=Lù=ç†Â>„M=ç†Â=„M=¥`B>Fs{=¥`B>M   =¥`B?%`B=ç†Â?q=ç†Â?-¥=ç†Â=ç†Â>ç†Â>Ö¡?%`B=¥`B>”Ö¡=ç†Â>”Ö¡>Fs‚=Æs>Fs‚>øf>%`B>”Ö¡>Fs‚>”Ö¡>Œ‘Ñ=Æs>Œ‘Ñ>øf=¥`B=Æs=¥`B>øf>%`B>”Ö¡>Fs‚>”Ö¡>%`B=Æs>%`B>øf>xb>”Ö¡>Œ‘Ñ>”Ö¡=¥`B=M=ç†Â>5éâ>xb=M>´9=ç†Â>©‚ª?´9>ÂQ?%`B>ãdZ?-¥?;Í?-¥?£?%`B>ˆoi>ÂQ>ˆoi>ÒÚº>”Ö¡>µéâ>”Ö¡>ßAò>¥`B>µéâ>¥`B>ßAò>±Çz>ÂQ>±Çz>ÒÚº  =¥`B=M=ç†Â>5éâ>xb=M>´9=ç†Â>©‚ª?´9>ÂQ?%`B>ãdZ?-¥?;Í?-¥?£?%`B =¥`B>5éâ>g†Â>­¥?-¥?*™>g†Â?ù =¥`B=¥`B>µéâ=¥`B?-¥>¾.²>¾.²>µéâ>¾.²?-¥>ïË’=M>ïË’>¥`B>ïË’>Æs‚>ïË’?%`B?*˜=„M?*˜>”Ö¡?*˜>Öý"?*˜?q?oi>M?oi>g†Â?oi>øf?oi? ‘Ñ    =¥`B=¥`B?-¥>ïË’?-¥=¥`B>­¥?-¥?ù =¥`B=¥`B>µéâ=¥`B?-¥>­¥>µéâ?*™?*™?-¥=¥`B=¥`B?-¥?oi?oi?-¥=¥`B=¥`B>µéâ=¥`B?-¥?oi?oi>µéâ?oi?-¥=¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>xb>µéâ>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ßAò>µéâ>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M?ù >„M?ù >Öý"    =¥`B=¥`B?-¥=¥`B=¥`B>g†Â=¥`B?-¥>xb>Æs‚?oi?oi?-¥=¥`B>­¥?-¥?ù =¥`B=¥`B?-¥>­¥?ù ?ù ?-¥=¥`B=¥`B?-¥?oi?oi?-¥=¥`B=¥`B?-¥>Vý">µéâ>θR>µéâ?oi?oi?-¥=¥`B>„M=¥`B>Öý"=ç†Â>%`B=ç†Â?M>Ö¡=Æs>Ö¡?Ö¡>Vý"=M>Vý"?%`B>Œ‘Ñ>Œ‘Ñ?-¥>θR>θR?-¥>ïË’=M>ïË’?%`B?oi=Æs?oi?Ö¡?´9>%`B?´9?M?ù >„M?ù >Öý"   =¥`B=¥`B?-¥?oi?oi?-¥=¥`B=¥`B>¥`B=¥`B?-¥>¾.²>¥`B>¾.²?-¥>ïË’>µéâ>ïË’?%`B?*˜>Æs‚?*˜?q?oi>ç†Â?oi? ‘Ñ =¥`B=¥`B?-¥>q>µéâ?oi?oi?-¥=¥`B?-¥>q>q?-¥?oi?-¥=¥`B?M=¥`B?Ö¡=ç†Â?%`B>Ö¡?-¥>Vý"?-¥>xb?%`B>Œ‘Ñ?Ö¡>q>q>ç†Â>­¥?Ö¡>¾.²?%`B>θR?-¥>ïË’?-¥?*˜?%`B?oi?M?oi?Ö¡ =¥`B>”Ö¡=¥`B>Æs‚=ç†Â>g†Â=ç†Â>ç†Â>Ö¡>Fs‚>Ö¡>øf>xb>%`B>xb?M>q>q?-¥>¾.²>%`B>¾.²?M>ïË’>Fs‚>ïË’>øf?*˜>g†Â?*˜>ç†Â?oi>”Ö¡?oi>Æs‚   =¥`B=¥`B?-¥?oi?oi?-¥=¥`B>øf=ç†Â>øf>Ö¡>ç†Â>5éâ>¥`B>Vý">„M>xb>g†Â>­¥>Fs‚>¾.²>¾.²?-¥>θR>Fs‚?*™>g†Â?oi>„M?´9>¥`B?ù >ç†Â?!=Ù>øf?)‚ª>øf =¥`B=¥`B>µéâ=¥`B>øf=ç†Â>g†Â=ç†Â?Ö¡>5éâ?%`B>Vý">Œ‘Ñ?-¥>­¥?-¥>θR>ßAò?%`B?*˜>g†Â?*˜?Ö¡?oi?oi>µéâ?oi>øf  =¥`B=Æs=¥`B>Fs‚=ç†Â=M=ç†Â>”Ö¡>Ö¡>µéâ>5éâ>Vý">Öý">xb>Œ‘Ñ>ç†Â>q=M>­¥>ç†Â>¾.²>Öý">θR>M>θR>µéâ>ïË’=Æs>ïË’>g†Â?*˜=M?oi?oi>µéâ?´9?´9>ç†Â  =¥`B¾g†Â=ç†Â=M>Ö¡>%`B>Ö¡>g†Â>5éâ=„M>5éâ>µéâ>Vý"=M>Vý">ç†Â>Œ‘Ñ>Œ‘Ñ?Ö¡>q>Æs‚>­¥>­¥?%`B>¾.²>µéâ>θR=M>θR>Æs‚>θR?-¥>ßAò=„M>ßAò>”Ö¡>ïË’>M>ïË’>g†Â>ïË’>Öý">ïË’?-¥?*˜>ç†Â?oi?M?oi?q   =¥`B>µéâ>Ö¡>Öý">Vý">ç†Â>xb¾g†Â>xb>ç†Â>Œ‘ѾM>q>Öý">­¥>­¥>Æs‚>¾.²>%`B>¾.²>”Ö¡?oi>”Ö¡?´9>µéâ?ù >ç†Â  =¥`B>%`B=¥`B>„M=ç†Â=„M=ç†Â>µéâ>Ö¡=M>5éâ>Öý">Vý">xb>ç†Â>xb?Ö¡>xb?%`B>Œ‘Ñ>Œ‘Ñ?M>Œ‘Ñ?-¥>­¥=M>­¥>ç†Â>­¥?-¥>θR=Æs>θR>Æs‚>θR?%`B>ßAò>Fs‚>ßAò>”Ö¡>ïË’?Ö¡   =¥`B=Æs=¥`B>%`B=ç†Â=M>Ö¡>g†Â>Ö¡>µéâ>Ö¡>Öý">5éâ>5éâ>”Ö¡>Vý">ç†Â>Œ‘Ñ>Œ‘Ñ>„M>q>ç†Â>­¥=M>¾.²>Öý">θR=Æs>θR>Æs‚   =¥`B>M=¥`B>Fs‚=ç†Â=„M=ç†Â>”Ö¡>5éâ¾%`B>5éâ>Vý"¾g†Â>Vý">Æs‚>Vý"?Ö¡>Vý"?q>xb? ‘Ñ>xb?%`B>Œ‘Ѿg†Â>Œ‘ѽ„M>q¾Fs‚>q¾M>q>ç†Â>q?-¥>­¥?M>ßAò?M    =¥`B>¥`B=ç†Â>Æs‚>5éâ>5éâ>ç†Â>xb>g†Â>xb>ç†Â>Œ‘Ñ>µéâ>Œ‘Ñ>Öý">q>µéâ>¾.²>Öý">ßAò¾g†Â>ßAò>ç†Â?*™>ç†Â?oi>M?´9>”Ö¡?´9>Æs‚  =¥`B>¥`B=ç†Â>Æs‚>5éâ>ç†Â>xb=Æs>xb>Fs‚>xb>ç†Â>Œ‘Ñ=M>Œ‘Ñ>µéâ>Œ‘Ñ>Öý">q>¾.²>θR? ‘Ñ>θR?q>ßAò=M>ßAò>ç†Â>ßAò?-¥?*™>M?*™>µéâ?*™?-¥?oi>Fs‚?´9>”Ö¡?´9?%`B?ù >ç†Â?ù ? ‘Ñ?)‚«>g†Â  =¥`B=M=¥`B=Æs=ç†Â=ç†Â>g†Â>5éâ>5éâ>ç†Â>xb=„M>Œ‘Ñ>M=¥`B>5éâ>„M>Vý">„M>Vý">ç†Â>xb>g†Â>Œ‘Ñ>Fs‚>Œ‘Ñ>”Ö¡>­¥=M>¾.²>θR>θR>Öý">ßAò=M>ïË’>ç†Â?*˜>ç†Â?oi>Öý"  =¥`B?-¥=ç†Â>Ö¡?-¥>Vý"?%`B>xb?q>q>ç†Â?*˜=¥`B¾g†Â>Vý"=„M>Vý">%`B>xb>¥`B>Œ‘Ñ>Œ‘Ñ>ç†Â>­¥>θR=M>ïË’=Æs?*™=M?*™=Æs?oi?oi>g†Â?ù ?ù >ç†Â?)‚ª=„M?1Çz>M  =¥`B=¥`B>ç†Â=ç†Â=Æs>Ö¡>„M>5éâ=M>5éâ>ç†Â>Œ‘Ñ=Æs>¾.²>Fs‚>ßAò>”Ö¡>ïË’>µéâ?*™>ç†Â =¥`B=M=¥`B=Æs=ç†Â>%`B>Ö¡½Lü>Ö¡>¥`B>Ö¡>Æs‚>5éâ¾g†Â>5éâ>Fs‚>5éâ>ç†Â>Vý">„M>Vý"?Ö¡>Vý"?q>xb¾g†Â>xb>øf>xb? ‘Ñ>xb?%`B>Œ‘ѽÆs>q¾Fs‚>q¾M>q>g†Â>q?-¥>­¥?M>¾.²>g†Â>ßAò?M    =¥`B>%`B=¥`B>„M=ç†Â=„M=ç†Â>µéâ>Ö¡=M>5éâ>Öý">Vý">xb>ç†Â>Œ‘Ñ>q>ç†Â>­¥=M>¾.²>Öý">θR=Æs>θR>Æs‚>ßAò>Fs‚>ßAò>”Ö¡  =¥`B>µéâ>Ö¡>Öý">5éâ>xb>ç†Â>q>ç†Â>ïË’>ç†Â?*™>„M?oi=Æs?´9?)‚ª>ç†Â =¥`B¾g†Â>Vý">%`B>Vý">„M>xb=„M>xb>µéâ>Œ‘Ñ=M>q>Öý">­¥>¾.²>ç†Â>θR>ßAò>ç†Â>ïË’=M?*™>Öý"?oi=Æs?oi>Æs‚?´9>Fs‚?´9>”Ö¡  =¥`B>%`B=¥`B>„M=ç†Â=„M=ç†Â>µéâ>Ö¡=M>5éâ>Öý">Vý">xb>ç†Â>Œ‘Ñ>q>ç†Â>­¥=M>¾.²>Öý">θR=Æs>θR>Æs‚>ßAò>Fs‚>ßAò>”Ö¡?´9>ç†Â  =¥`B>µéâ>Ö¡>Öý">xb>ç†Â>Œ‘Ñ>¾.²>ç†Â?ù >ç†Â=¥`B>¥`B=ç†Â>Æs‚>5éâ>ç†Â>Vý"=„M>Vý">%`B>xb>ç†Â>Œ‘Ñ>Œ‘Ñ>µéâ>Œ‘Ñ>Öý">­¥>ßAò=M?*™=Æs?´9>g†Â?ù >µéâ?ù >ç†Â =¥`B>M=¥`B>g†Â=ç†Â=„M=ç†Â>¥`B>Ö¡=M>5éâ¾g†Â>5éâ>Æs‚>Vý">xb>Öý">Œ‘Ñ=Æs>q>­¥>„M>θR=M>θR>Æs‚>ïË’>ç†Â?*™=Æs?oi>ç†Â?´9>Fs‚?ù >”Ö¡?ù >Æs‚  =¥`B¾g†Â=ç†Â¾%`B=ç†Â>ç†Â>5é⽄M>5éâ>ç†Â>xb>Æs‚>ßAò¾%`B?*™¾g†Â?*™>”Ö¡?´9¾g†Â?´9>Æs‚?ù >ç†Â =¥`B>¥`B=ç†Â>Æs‚>5éâ>ç†Â>xb=Æs>xb>Fs‚>xb>ç†Â>Œ‘Ñ=M>Œ‘Ñ>µéâ>Œ‘Ñ>Öý">q¾g†Â>­¥>θR?*™=M?´9=Æs?´9?-¥?!=Ù>Fs‚?1Çz>µéâ?: J>ç†Â  =¥`B>M=¥`B>g†Â=ç†Â=M=ç†Â>¥`B>Ö¡>5éâ>Öý">Vý">xb>ç†Â>Œ‘Ñ=M>­¥>M>¾.²=M>¾.²>„M>θR>ïË’?oi=M?´9>ç†Â?ù >M?ù >Öý"?!=Ù>g†Â?!=Ù>¥`B dx-4.4.4/fonts/roman_s.dx0000644000076500000240000021456207120232135012206 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 6 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 5 msb ieee data 48 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 4 msb ieee data 88 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 2 msb ieee data 120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.500800 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 136 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 24 msb ieee data 232 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 21 msb ieee data 424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 592 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 34 msb ieee data 1008 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 33 msb ieee data 1280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 1544 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 1600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 10 msb ieee data 1648 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 9 msb ieee data 1728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 10 msb ieee data 1800 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 9 msb ieee data 1880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 1952 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2024 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2072 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 7 msb ieee data 2128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2184 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2208 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2272 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 16 msb ieee data 2296 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 16 msb ieee data 2424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 4 msb ieee data 2552 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 3 msb ieee data 2584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 14 msb ieee data 2608 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 13 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 15 msb ieee data 2824 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 14 msb ieee data 2944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 4 msb ieee data 3056 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 3 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 17 msb ieee data 3112 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 16 msb ieee data 3248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 22 msb ieee data 3376 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 22 msb ieee data 3552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 3 msb ieee data 3728 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 2 msb ieee data 3752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 28 msb ieee data 3768 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 28 msb ieee data 3992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 22 msb ieee data 4216 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 22 msb ieee data 4392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 4568 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 4632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 4696 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 11 msb ieee data 4784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 4872 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 4896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 4912 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 4960 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 4984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 18 msb ieee data 5000 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 17 msb ieee data 5144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 5280 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 5664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 5 msb ieee data 6048 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 3 msb ieee data 6088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.563400 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 18 msb ieee data 6112 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 18 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.657300 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 18 msb ieee data 6400 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 17 msb ieee data 6544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 12 msb ieee data 6680 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 12 msb ieee data 6776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.657300 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 6 msb ieee data 6872 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 4 msb ieee data 6920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.594700 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 5 msb ieee data 6952 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 3 msb ieee data 6992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.563400 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 20 msb ieee data 7016 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 19 msb ieee data 7176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.657300 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 6 msb ieee data 7328 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 3 msb ieee data 7376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.688600 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 2 msb ieee data 7400 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 1 msb ieee data 7416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.250400 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 10 msb ieee data 7424 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 9 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.500800 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 6 msb ieee data 7576 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 3 msb ieee data 7624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.657300 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 3 msb ieee data 7648 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 2 msb ieee data 7672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.532100 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 5 msb ieee data 7688 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 4 msb ieee data 7728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.751200 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 4 msb ieee data 7760 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 3 msb ieee data 7792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.688600 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 20 msb ieee data 7816 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 20 msb ieee data 7976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 11 msb ieee data 8136 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 10 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.657300 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 22 msb ieee data 8304 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 21 msb ieee data 8480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 13 msb ieee data 8648 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 11 msb ieee data 8752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.657300 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 20 msb ieee data 8840 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 19 msb ieee data 9000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 4 msb ieee data 9152 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 2 msb ieee data 9184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.500800 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 10 msb ieee data 9200 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 9 msb ieee data 9280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.688600 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 3 msb ieee data 9352 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 2 msb ieee data 9376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.563400 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 5 msb ieee data 9392 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 4 msb ieee data 9432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.751200 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 4 msb ieee data 9464 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 2 msb ieee data 9496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 4 msb ieee data 9512 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 3 msb ieee data 9544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.563400 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 4 msb ieee data 9568 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 3 msb ieee data 9600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 9624 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 9672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 9704 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 9728 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 9776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 9808 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 9864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 9904 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 9920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 9928 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 9984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 16 msb ieee data 10032 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 14 msb ieee data 10160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.594700 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 16 msb ieee data 10272 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 14 msb ieee data 10400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.594700 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 14 msb ieee data 10512 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 13 msb ieee data 10624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.563400 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 16 msb ieee data 10728 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 14 msb ieee data 10856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.594700 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 16 msb ieee data 10968 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 16 msb ieee data 11096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 7 msb ieee data 11224 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 5 msb ieee data 11280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.375600 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 21 msb ieee data 11320 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 19 msb ieee data 11488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.594700 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 9 msb ieee data 11640 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 7 msb ieee data 11712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.594700 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 6 msb ieee data 11768 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 5 msb ieee data 11816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.250400 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 9 msb ieee data 11856 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 8 msb ieee data 11928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.313000 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 6 msb ieee data 11992 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 3 msb ieee data 12040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.532100 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 2 msb ieee data 12064 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 1 msb ieee data 12080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.250400 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 15 msb ieee data 12088 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 13 msb ieee data 12208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.939000 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 9 msb ieee data 12312 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 7 msb ieee data 12384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.594700 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 16 msb ieee data 12440 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 16 msb ieee data 12568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.594700 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 16 msb ieee data 12696 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 14 msb ieee data 12824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.594700 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 16 msb ieee data 12936 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 14 msb ieee data 13064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.594700 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 7 msb ieee data 13176 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 5 msb ieee data 13232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.406900 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 17 msb ieee data 13272 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 16 msb ieee data 13408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 7 msb ieee data 13536 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 5 msb ieee data 13592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.375600 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 9 msb ieee data 13632 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 7 msb ieee data 13704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.594700 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 3 msb ieee data 13760 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 2 msb ieee data 13784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.500800 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 5 msb ieee data 13800 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 4 msb ieee data 13840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.688600 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 4 msb ieee data 13872 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 2 msb ieee data 13904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.532100 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 7 msb ieee data 13920 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 6 msb ieee data 13976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 4 msb ieee data 14024 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 3 msb ieee data 14056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.532100 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 14080 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 14360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 14632 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 14648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 14656 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 14936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 15208 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 15368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 15528 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 15624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4n=K(R> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰?,ô>@N¥=K(R>4n>éº=>4n?,ô>ÀN¥>éº=>ÀN¥?,ô=ÀN¥>S ž>4n¾MžÇ>4n>É­!> A‰¾MžÇ>°H?M*?7¶>S ž?7¶?M*?:ý>É­!=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=> A=K(R> A>Ù³¯> A?$ðÇ>`[À>É­!>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>© >ðbN=K(R>ðbN>™™x>ðbN?$ðÇ?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:    =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>ñg=ÀN¥>S ž>4n=¥®_>4n>‰’ê> A=K(R> A>™™x>`[À<•çÉ>€4q?ã¬>€4q?ê:>:û>Ù³¯>:û?$ðÇ>°H<•çÉ>°H>© >°H?,ô>ÀN¥>Ù³¯>ÐU2=K(R>ÐU2>éº=>ÐU2?$ðÇ>à[À?ã¬>à[À?ê:>ðbN=åÈ—?4n=åÈ—?7µ>S ž?:û=K(R?>D>¹¦“? A‹<•çÉ? A‹>Ù³¯?(DÒ>éº=?0H<•çÉ?0H>éº=?8K_=K(R?8K_=¥®_?8K_>É­!?8K_>Ù³¯ !!   >4n>ùÀÊ>4n?$ðÇ> A‰?ã¬> A‰?í> A‰?,ô>@N¥?ê:>@N¥?$ðÇ=à[À>s¹=à[À>¹¦“>:û=¥®_>:û?ã¬>PU2½5tý>PU2?$ðÇ>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M* =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>pbN½5tý>pbN?$ðÇ>˜>B=¥®_>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“ =ÀN²>É­!=ÀN²?ê:>€4q>™™x>€4q?,ô>ÐU2>É­!>ÐU2?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé>4n=K(R> A‰½šÔµ> A‰<•çÉ> A‰=¥®_>@N¥¼U;>@N¥=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R=€4l¾MžÇ? A‰?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n? æó>@N¥=K(R>@N¥?$ðÇ>:û<•çÉ>:û?,ô>°H<•çÉ>°H?,ô>à[Ã=K(R>à[Ã?$ðÇ?4o>ñg?4o? æó?7¶>™™x?7¶>É­!  >pbN? æó>˜>B?ê:>ÈQì<•çÉ>ÈQì?,ô=ÀN¥<•çÉ>4n?ã¬>4n? æó> A?í>@N¥?$ðÇ>€4n?,ô>ÀN¥?,ô>ÐU2>© >à[Ã?$ðÇ>ðbN>Ù³¯>ðbN?í?4o>ùÀÊ?4o? æó?7¶<•çÉ  =ÀN¥>ñg>4n=¥®_> A=K(R> A?,ô>€4n<•çÉ> A‰>Ù³¯>°H<•çÉ>ÐU2>Ù³¯>à[Ã=K(R>ðbN>É­!?4o=åÈ—?4o>¹¦“?4o?,ô?7¶>S ž?7¶>‰’ê   = Aˆ>s¹>ÈQì<•çÉ>ÈQì?,ô? 9Z>s¹=ÀN¥>ñg>4n=¥®_>4n>É­!> A=K(R> A>Ù³¯> A?,ô>€4n<•çÉ>€4n>éº=>°H<•çÉ>°H>éº=>à[Ã=K(R>à[Ã>Ù³¯>ðbN?,ô?4o=åÈ—?4o>¹¦“?7¶>S ž?7¶>‰’ê   =à[À>s¹=à[À>É­!>;=åÈ—>;>© >;? æó>PU2=K(R>PU2>É­!>PU2?$ðÇ>˜>B<•çÉ>˜>B>Ù³¯>˜>B?,ô>¨DÐ<•çÉ>¨DÐ>Ù³¯>¸K^?,ô>ØXy=K(R>ØXy>É­!>è_?$ðÇ>øe˜=åÈ—>øe˜>© >øe˜?ê:?6>S ž?6>s¹   =ÀN¥?,ô>`[À<•çÉ?7¶?,ô=ÀN¥>ñg=ÀN¥>s¹>4n=¥®_>4n>™™x>4n?ã¬>4n?ê:> A=K(R> A>éº=> A?$ðÇ>@N¥>¹¦“>`[À>Ù³¯>€4n<•çÉ>€4n?,ô>:û>É­!>°H>É­!>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>Ù³¯>à[Ã>¹¦“>ðbN=K(R>ðbN>éº=>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o?ã¬?4o?ê:?7¶>ñg?7¶>s¹     =à[À>éº==à[À>ùÀÊ>:û=åÈ—>:û>¹¦“>:û?ê:>0H=K(R>PU2>™™x>PU2?$ðÇ>ˆ7µ<•çÉ>˜>B>‰’ê>˜>B?,ô>¨DÓ<•çÉ>¨DÓ>‰’ê>¨DÓ?,ô>ØX}=K(R>ØX}>™™x>ØX}?$ðÇ>øe•>ñg>øe•>¹¦“>øe•?ê:?6>™™x?6>éº=   >4n=K(R>4n>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯   >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§?ã¬=ÀN§? æó>4t?í> A‰?$ðÇ>`[À?,ô>€4q=K(R>:ÿ<•çÉ>:ÿ=¥®_>:ÿ>s¹>:ÿ>© > A=K(R>°H?,ô>ÐU2>É­!>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4‘<•çÉ>4t>s¹>:ÿ?,ô>à[Ã>s¹?7¶<•çÉ=à[À<•çÉ=à[À>¹¦“=à[À?,ô>ÈQì<•çÉ>ÈQì>¹¦“>ÈQì?,ô>øe•=K(R>øe•>© >øe•>É­!>øe•?$ðÇ?6=¥®_?6>™™x?6>Ù³¯?6?í? 9Z>ñg? 9Z>s¹? 9Z>ùÀÊ? 9Z? æó    =ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n?ã¬> A=åÈ—> A?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>ðbN=K(R>ðbN?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?㬠 =à[À<•çÉ=à[À?,ô>¨DÓ<•çÉ>¨DÓ?,ô>ØX}=K(R>ØX}?$ðÇ>øe•=åÈ—>øe•?ê:?6>2þ‚?6?ã¬? 9Z>‰’ê? 9Z>Ù³¯ =ÀN§<•çÉ=ÀN§>¹¦“=ÀN§?,ô>°H>¹¦“?4o<•çÉ?4o?,ô= AŒ<•çÉ= AŒ>¹¦“= AŒ?,ô>¨DÓ>¹¦“>øe˜?,ô=ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n?ã¬> A=åÈ—> A?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2>‰’ê>ÐU2?,ô>ðbN=K(R>ðbN?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý>‰’ê?:ý?㬠  >4n<•çÉ>4n>¹¦“>4n?,ô?:ý<•çÉ?:ý>¹¦“?:ý?,ô>4n<•çÉ>4n?,ô=ÀN§>2þ‚=ÀN§>s¹>4t=¥®_> A‰=K(R>`[À<•çÉ>:ÿ<•çÉ>°H=K(R>ÀN¨=¥®_>ÐU2>2þ‚>ÐU2?,ô =à[À<•çÉ=à[À>s¹=à[À?,ô>ˆ7µ>É­!? 9Z<•çÉ? 9Z?,ô= AŒ<•çÉ= AŒ?,ô>è_ <•çÉ>4t<•çÉ>4t?,ô>ÀN¥<•çÉ? A‹<•çÉ? A‹?,ô>4n<•çÉ>4n?,ô?:ý<•çÉ?:ý?,ô=ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯   =à[À<•çÉ=à[À>© =à[À?,ô>ÈQì>© >ÈQì?,ô>øe•>¹¦“>øe•?$ðÇ?6>É­!?6?í? 9Z>éº=? 9Z? æó =ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÀN¥>ñg>ÐU2<•çÉ>ÐU2?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý½5tý?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯   =à[À<•çÉ=à[À>¹¦“=à[À?,ô>¨DÓ>¹¦“>ÈQì>¹¦“>ÈQì?,ô>øe•>É­!>øe•?$ðÇ?6>Ù³¯?6?í? 9Z<•çÉ? 9Z>ùÀÊ? 9Z? æó  =ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=> A=K(R> A>Ù³¯> A?$ðÇ>`[À>É­!>€4n<•çÉ>€4n?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>© >ðbN=K(R>ðbN>™™x>ðbN?$ðÇ?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:   =4p?,ô>€4q<•çÉ>€4q?,ô>ðbQ?,ô>4n>S ž>4n?,ô> A‰=åÈ—>`[À=K(R> A<•çÉ>ÀN¥<•çÉ>ðbQ=K(R?7¶=åÈ—?:ý>S ž?:ý?,ô =4‘?,ô>:ÿ<•çÉ?7¶?,ô=€4p?,ô>`[Ç<•çÉ>ÀN¥?,ô?7¶<•çÉ?0H?,ô=ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô=4‘?,ô>:ÿ<•çÉ>:ÿ>¹¦“?7¶?,ô=ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n?ê:> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>@N¥?ã¬>@N¥?,ô=à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜<•çÉ>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   =à[À<•çÉ=à[À=åÈ—=à[À>¹¦“=à[À?,ô>0H=K(R>0H>Ù³¯>pbN<•çÉ>pbN>éº=>¨DÐ<•çÉ>¨DÐ>éº=>ÈQì=K(R>ÈQì>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜>S ž>øe˜>‰’ê  =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>ðbQ=åÈ—>ðbQ>¹¦“  =à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜<•çÉ>øe˜=åÈ—>øe˜>¹¦“>øe˜?,ô   =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>à[Ã>É­!>ðbQ=åÈ—>ðbQ>‰’ê>ðbQ>©   =€4n>éº=> A‰<•çÉ> A‰? æó>@N¥?$ðÇ>€4n?,ô>:û>éº=> A?,ô=à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2¾-‘¬>PU2=K(R>PU2>Ù³¯>ˆ7µ¾MžÇ>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^¾MžÇ>¸K^<•çÉ>¸K^>éº=>ØXy¾-‘¬>ØXy=K(R>ØXy>Ù³¯>è_¾ „>øe˜½5tý>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   >4t<•çÉ>4t>© >4t?,ô>`[À>Ù³¯>:ÿ>éº=>ÀN¨>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© =ÀN«?,ô>4n<•çÉ>4n>éº=>4n?$ðÇ>4n?4÷U> A?,ô=€4l¾MžÇ>4n¾MžÇ>@N¥¾-‘¬>@N¥?,ô>`[À½šÔµ>`[À>éº=>`[À?$ðÇ>`[À?4÷U>€4n?,ô=ÀN²<•çÉ=ÀN²>ñg=ÀN²?,ô>`[Ç>‰’ê>ÐU2>éº=>à[Ã<•çÉ>4n<•çÉ>4n?,ô>4n<•çÉ>4n>© >4n>éº=>`[Ç>Ù³¯>:û>éº=>ÀN¥>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© ?:û>Ù³¯? A‰>éº=?8K_>éº=?HQí>Ù³¯?PU4<•çÉ?PU4>©   >4t<•çÉ>4t>© >4t>éº=>`[À>Ù³¯>:ÿ>éº=>ÀN¨>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>ðbQ=åÈ—>ðbQ>¹¦“?4o>S ž?4o>‰’ê  =à[À¾MžÇ=à[À=åÈ—=à[À>¹¦“=à[À>éº=>0H=K(R>0H>Ù³¯>pbN<•çÉ>pbN>éº=>¨DÐ<•çÉ>¨DÐ>éº=>ÈQì=K(R>ÈQì>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜>S ž>øe˜>‰’ê  =à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜¾MžÇ>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   = A‹<•çÉ= A‹>‰’ê= A‹>éº==à[À>¹¦“>0H>Ù³¯>pbN>éº=>¨DÓ>éº==ÀN²=åÈ—=ÀN²>¹¦“>4n=K(R>4n>™™x>4n>Ù³¯>@N¥>‰’ê>`[Ç<•çÉ>`[Ç>éº=> A<•çÉ> A>éº=>°H>s¹>ÐU2=K(R>ÐU2>S ž>ÐU2>Ù³¯>à[Ã=åÈ—>à[Ã>ñg>à[Ã>¹¦“   =€4n>éº=> A‰>ñg> A‰?,ô>@N¥=K(R>€4n<•çÉ>:û>éº=> A<•çÉ>4t>ñg>4t>éº=> A‰=K(R>`[À<•çÉ> A<•çÉ>ÀN¨=K(R>ðbQ<•çÉ>ðbQ>ñg>ðbQ>éº==€4p>éº=>€4q<•çÉ>à[Ã>éº==ÀN³>éº=>`[À<•çÉ>°H>éº=>ðbQ<•çÉ?>D>éº==ÀN²<•çÉ=ÀN²>éº=>à[Ã<•çÉ>à[Ã>éº==@N§¾MžÇ= AŒ¾MžÇ= AŒ>éº=>:û¾-‘¬>PU2½Úîé>ˆ7µ<•çÉ>è_ >éº==ÀN²<•çÉ=ÀN²>éº=>à[Ã<•çÉ>à[Ã>éº=>:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/fonts/roman_sfix.dx0000644000076500000240000022305706701436522012726 00000000000000object 1 class field attribute "char width" number 0.665517 # object 2 class field attribute "char width" number 0.665517 # object 3 class field attribute "char width" number 0.665517 # object 4 class field attribute "char width" number 0.665517 # object 5 class field attribute "char width" number 0.665517 # object 6 class field attribute "char width" number 0.665517 # object 7 class field attribute "char width" number 0.665517 # object 8 class field attribute "char width" number 0.665517 # object 9 class field attribute "char width" number 0.665517 # object 10 class field attribute "char width" number 0.665517 # object 11 class field attribute "char width" number 0.665517 # object 12 class field attribute "char width" number 0.665517 # object 13 class field attribute "char width" number 0.665517 # object 14 class field attribute "char width" number 0.665517 # object 15 class field attribute "char width" number 0.665517 # object 16 class field attribute "char width" number 0.665517 # object 17 class field attribute "char width" number 0.665517 # object 18 class field attribute "char width" number 0.665517 # object 19 class field attribute "char width" number 0.665517 # object 20 class field attribute "char width" number 0.665517 # object 21 class field attribute "char width" number 0.665517 # object 22 class field attribute "char width" number 0.665517 # object 23 class field attribute "char width" number 0.665517 # object 24 class field attribute "char width" number 0.665517 # object 25 class field attribute "char width" number 0.665517 # object 26 class field attribute "char width" number 0.665517 # object 27 class field attribute "char width" number 0.665517 # object 28 class field attribute "char width" number 0.665517 # object 29 class field attribute "char width" number 0.665517 # object 30 class field attribute "char width" number 0.665517 # object 31 class field attribute "char width" number 0.665517 # object 32 class field attribute "char width" number 0.665517 # object 33 class field attribute "char width" number 0.665517 # object 35 class array type float rank 1 shape 3 items 386 data follows 0.11379 0.413793 0 0.320683 0.206897 0 0.320683 0.413793 0 0.11379 0.206897 0 0.265517 0.724138 0 0.265517 0.241379 0 0.265517 0.068966 0 0.231034 0.034483 0 0.265517 0 0 0.3 0.034483 0 0.127586 0.724138 0 0.127586 0.482759 0 0.403448 0.724138 0 0.403448 0.482759 0 0.3 0.862069 0 0.058621 -0.241379 0 0.506897 0.862069 0 0.265517 -0.241379 0 0.058621 0.413793 0 0.541379 0.413793 0 0.024138 0.206897 0 0.506897 0.206897 0 0.196552 0.862069 0 0.196552 -0.137931 0 0.334483 0.862069 0 0.334483 -0.137931 0 0.506897 0.62069 0 0.437931 0.689655 0 0.334483 0.724138 0 0.196552 0.724138 0 0.093103 0.689655 0 0.024138 0.62069 0 0.024138 0.551724 0 0.058621 0.482759 0 0.093103 0.448276 0 0.162069 0.413793 0 0.368966 0.344828 0 0.437931 0.310345 0 0.472414 0.275862 0 0.506897 0.103448 0 0.437931 0.034483 0 0.334483 0 0 0.196552 0 0 0.093103 0.034483 0 0.024138 0.103448 0 0.575862 0.724138 0 -0.044828 0 0 0.196552 0.655172 0 0.196552 0.586207 0 0.162069 0.517241 0 0.093103 0.482759 0 0.024138 0.482759 0 -0.044828 0.551724 0 -0.044828 0.62069 0 -0.010345 0.689655 0 0.058621 0.724138 0 0.196552 0.689655 0 0.3 0.655172 0 0.403448 0.655172 0 0.506897 0.689655 0 0.437931 0.241379 0 0.368966 0.206897 0 0.334483 0.137931 0 0.334483 0.068966 0 0.403448 0 0 0.472414 0 0 0.541379 0.034483 0 0.575862 0.103448 0 0.575862 0.172414 0 0.506897 0.241379 0 0.610345 0.413793 0 0.610345 0.448276 0 0.575862 0.482759 0 0.541379 0.482759 0 0.506897 0.448276 0 0.472414 0.37931 0 0.403448 0.206897 0 0.334483 0.103448 0 0.265517 0.034483 0 0.058621 0 0 -0.010345 0.034483 0 -0.044828 0.068966 0 -0.07931 0.137931 0 -0.07931 0.206897 0 -0.044828 0.275862 0 -0.010345 0.310345 0 0.231034 0.448276 0 0.265517 0.482759 0 0.3 0.551724 0 0.3 0.62069 0 0.265517 0.689655 0 0.127586 0.689655 0 0.093103 0.62069 0 0.093103 0.551724 0 0.127586 0.448276 0 0.196552 0.344828 0 0.368966 0.103448 0 0.506897 0 0 0.575862 0 0 0.610345 0.034483 0 0.610345 0.068966 0 0.265517 0.655172 0 0.231034 0.689655 0 0.3 0.689655 0 0.265517 0.551724 0 0.231034 0.517241 0 0.403448 0.862069 0 0.334483 0.793103 0 0.196552 0.551724 0 0.162069 0.37931 0 0.162069 0.241379 0 0.196552 0.068966 0 0.265517 -0.068966 0 0.334483 -0.172414 0 0.403448 -0.241379 0 0.127586 0.862069 0 0.196552 0.793103 0 0.334483 0.551724 0 0.368966 0.37931 0 0.368966 0.241379 0 0.196552 -0.172414 0 0.127586 -0.241379 0 0.265517 0.310345 0 0.437931 0.413793 0 0.437931 0.62069 0 0.093103 0.413793 0 0.265517 0.62069 0 -0.044828 0.310345 0 0.575862 0.310345 0 0.3 -0.034483 0 0.265517 -0.103448 0 0.231034 -0.137931 0 0.575862 0.862069 0 -0.044828 -0.241379 0 0.231034 0.724138 0 0.058621 0.586207 0 0.024138 0.413793 0 0.024138 0.310345 0 0.058621 0.137931 0 0.127586 0.034483 0 0.231034 0 0 0.3 0 0 0.403448 0.034483 0 0.472414 0.137931 0 0.506897 0.310345 0 0.506897 0.413793 0 0.472414 0.586207 0 0.403448 0.689655 0 0.3 0.724138 0 0.127586 0.586207 0 0.196552 0.62069 0 0.058621 0.551724 0 0.093103 0.655172 0 0.437931 0.655172 0 0.472414 0.517241 0 0.437931 0.448276 0 0.024138 0 0 0.093103 0.724138 0 0.472414 0.724138 0 0.265517 0.448276 0 0.368966 0.448276 0 0.506897 0.275862 0 0.472414 0.103448 0 0.058621 0.068966 0 0.024138 0.137931 0 0.368966 0.724138 0 0.024138 0.241379 0 0.541379 0.241379 0 0.368966 0 0 0.437931 0.724138 0 0.196552 0.482759 0 0.3 0.482759 0 0.403448 0.448276 0 0.472414 0.62069 0 0.162069 0.689655 0 0.093103 0.586207 0 0.058621 0.241379 0 0.093103 0.103448 0 0.162069 0.034483 0 0.472414 0.344828 0 0.403448 0.413793 0 0.3 0.448276 0 0.093103 0.344828 0 0.506897 0.724138 0 0.162069 0 0 0.024138 0.724138 0 0.058621 0.62069 0 0.162069 0.448276 0 0.3 0.413793 0 0.403448 0.37931 0 0.472414 0.310345 0 0.506897 0.137931 0 0.472414 0.068966 0 0.058621 0.310345 0 0.127586 0.37931 0 0.231034 0.413793 0 0.437931 0.482759 0 0.472414 0.551724 0 0.472414 0.482759 0 0.437931 0.37931 0 0.368966 0.310345 0 0.265517 0.275862 0 0.231034 0.275862 0 0.127586 0.310345 0 0.058621 0.37931 0 0.024138 0.517241 0 0.368966 0.689655 0 0.437931 0.137931 0 0.368966 0.034483 0 0.058621 0.103448 0 0.265517 0.413793 0 0.541379 0.62069 0 0.541379 0 0 -0.044828 0.413793 0 0.575862 0.413793 0 -0.044828 0.206897 0 0.575862 0.206897 0 -0.010345 0.62069 0 0.541379 0.310345 0 -0.010345 0 0 0.265517 0.344828 0 0.403448 0.517241 0 0.231034 0.551724 0 0.093103 0.37931 0 0.093103 0.275862 0 0.127586 0.206897 0 0.196552 0.172414 0 0.3 0.172414 0 0.403448 0.275862 0 0.162069 0.482759 0 0.127586 0.275862 0 0.162069 0.206897 0 0.437931 0.551724 0 0.472414 0.172414 0 0.541379 0.172414 0 0.610345 0.241379 0 0.644828 0.344828 0 0.644828 0.413793 0 0.610345 0.517241 0 0.575862 0.586207 0 0.506897 0.655172 0 0.058621 0.655172 0 -0.010345 0.586207 0 -0.044828 0.517241 0 -0.07931 0.413793 0 -0.07931 0.310345 0 -0.010345 0.137931 0 0.506897 0.068966 0 0.541379 0.103448 0 0.437931 0.275862 0 0.437931 0.206897 0 0.093103 0.241379 0 0.472414 0.655172 0 0.506897 0.586207 0 0.506897 0.517241 0 0.472414 0.448276 0 0.334483 0.37931 0 0.024138 0.37931 0 0.437931 0.344828 0 0.541379 0.551724 0 0.024138 0.448276 0 0.024138 0.275862 0 0.058621 0.172414 0 0.437931 0.103448 0 0.541379 0.275862 0 0.368966 0.275862 0 0.506897 0.37931 0 0.403448 0.172414 0 0.368966 0.068966 0 0.334483 0.034483 0 0.093103 0.068966 0 0.196552 0.413793 0 -0.010345 0.724138 0 0.541379 0.724138 0 -0.010345 0.448276 0 -0.010345 0.275862 0 0.024138 0.172414 0 0.506897 0.172414 0 0.541379 0.448276 0 0.506897 0.551724 0 0.506897 0.482759 0 0.472414 0.413793 0 0.334483 0.344828 0 0.024138 0.344828 0 0.3 0.137931 0 0.506897 -0.068966 0 0.265517 0.37931 0 -0.07931 0.724138 0 0.093103 0 0 0.437931 0 0 0.610345 0.724138 0 0.162069 0.862069 0 0.162069 -0.241379 0 0.196552 -0.241379 0 0.506897 -0.103448 0 0.334483 -0.241379 0 0.368966 0.862069 0 0.368966 -0.241379 0 0.196552 0.517241 0 0.334483 0.517241 0 0.265517 0.586207 0 -0.010345 -0.068966 0 0.541379 -0.068966 0 0.231034 0.62069 0 0.265517 0.517241 0 0.334483 0.482759 0 0.231034 0.482759 0 0.058621 0.275862 0 0.058621 0.206897 0 0.472414 0.206897 0 0.472414 -0.068966 0 0.437931 -0.172414 0 0.403448 -0.206897 0 0.231034 -0.241379 0 0.162069 -0.206897 0 0.196552 0.448276 0 0.368966 0.482759 0 0.265517 0.758621 0 0.3 0.758621 0 0.3 -0.103448 0 0.265517 -0.206897 0 0.093103 0.137931 0 0 0.482759 0 0 0 0 0 0.344828 0 0.072414 0.448276 0 0.12069 0.482759 0 0.193103 0.482759 0 0.241379 0.448276 0 0.337931 0.448276 0 0.386207 0.482759 0 0.458621 0.482759 0 0.531034 0.344828 0 0.531034 0 0 0.472414 -0.241379 0 0.162069 0.275862 0 0.196552 0.37931 0 0.196552 0.275862 0 0.265517 0.137931 0 -0.010345 0.482759 0 0.127586 0 0 0.127586 -0.206897 0 0.024138 -0.241379 0 0.265517 0.827586 0 0.231034 0.793103 0 0.231034 0.586207 0 0.231034 0.344828 0 0.231034 0.758621 0 0.3 0.586207 0 0.334483 0.448276 0 0.3 0.37931 0 0.162069 0.310345 0 0.3 0.241379 0 0.334483 0.172414 0 0.231034 -0.068966 0 0.3 0.206897 0 0.196552 -0.034483 0 0.196552 -0.103448 0 0.231034 -0.172414 0 0.265517 0.862069 0 0.3 0.793103 0 0.334483 0.655172 0 0.3 0.344828 0 0.231034 0.37931 0 0.231034 0.241379 0 0.196552 0.103448 0 0.3 -0.068966 0 0.3 -0.137931 0 0.3 0.275862 0 0.231034 0.206897 0 0.231034 0.137931 0 0.334483 -0.034483 0 0.334483 -0.103448 0 0.3 -0.172414 0 -0.010345 0.37931 0 0.127586 0.413793 0 0.334483 0.275862 0 0.403448 0.241379 0 0.472414 0.241379 0 0.575862 0.344828 0 -0.010345 0.344828 0 0.334483 0.241379 0 0.127586 0.62069 0 0.127586 0.551724 0 0.403448 0.551724 0 0.403448 0.62069 0 attribute "dep" string "positions" # object 36 class array type int rank 1 shape 2 items 5 data follows 4 5 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 34 class field component "positions" value 35 component "connections" value 36 attribute "char width" number 0.665517 # object 38 class array type int rank 1 shape 2 items 2 data follows 10 11 12 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 37 class field component "positions" value 35 component "connections" value 38 attribute "char width" number 0.665517 # object 40 class array type int rank 1 shape 2 items 4 data follows 14 15 16 17 18 19 20 21 attribute "element type" string "lines" attribute "ref" string "positions" # object 39 class field component "positions" value 35 component "connections" value 40 attribute "char width" number 0.665517 # object 42 class array type int rank 1 shape 2 items 21 data follows 22 23 24 25 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 21 21 39 39 40 40 41 41 42 42 43 43 44 attribute "element type" string "lines" attribute "ref" string "positions" # object 41 class field component "positions" value 35 component "connections" value 42 attribute "char width" number 0.665517 # object 44 class array type int rank 1 shape 2 items 26 data follows 45 46 10 47 47 48 48 49 49 50 50 51 51 52 52 53 53 54 54 55 55 10 10 56 56 57 57 58 58 59 59 45 60 61 61 62 62 63 63 64 64 65 65 66 66 67 67 68 68 69 69 60 attribute "element type" string "lines" attribute "ref" string "positions" # object 43 class field component "positions" value 35 component "connections" value 44 attribute "char width" number 0.665517 # object 46 class array type int rank 1 shape 2 items 33 data follows 70 71 71 72 72 73 73 74 74 75 75 76 76 77 77 78 78 42 42 79 79 80 80 81 81 82 82 83 83 84 84 85 85 86 86 87 87 88 88 89 89 90 90 29 29 91 91 92 92 93 93 94 94 95 95 96 96 40 40 97 97 98 98 99 99 100 attribute "element type" string "lines" attribute "ref" string "positions" # object 45 class field component "positions" value 35 component "connections" value 46 attribute "char width" number 0.665517 # object 48 class array type int rank 1 shape 2 items 6 data follows 101 102 102 4 4 103 103 89 89 104 104 105 attribute "element type" string "lines" attribute "ref" string "positions" # object 47 class field component "positions" value 35 component "connections" value 48 attribute "char width" number 0.665517 # object 50 class array type int rank 1 shape 2 items 9 data follows 106 107 107 90 90 108 108 109 109 110 110 111 111 112 112 113 113 114 attribute "element type" string "lines" attribute "ref" string "positions" # object 49 class field component "positions" value 35 component "connections" value 50 attribute "char width" number 0.665517 # object 52 class array type int rank 1 shape 2 items 9 data follows 115 116 116 90 90 117 117 118 118 119 119 63 63 112 112 120 120 121 attribute "element type" string "lines" attribute "ref" string "positions" # object 51 class field component "positions" value 35 component "connections" value 52 attribute "char width" number 0.665517 # object 54 class array type int rank 1 shape 2 items 3 data follows 4 122 92 123 124 125 attribute "element type" string "lines" attribute "ref" string "positions" # object 53 class field component "positions" value 35 component "connections" value 54 attribute "char width" number 0.665517 # object 56 class array type int rank 1 shape 2 items 2 data follows 126 8 127 128 attribute "element type" string "lines" attribute "ref" string "positions" # object 55 class field component "positions" value 35 component "connections" value 56 attribute "char width" number 0.665517 # object 58 class array type int rank 1 shape 2 items 7 data follows 9 8 8 7 7 6 6 9 9 129 129 130 130 131 attribute "element type" string "lines" attribute "ref" string "positions" # object 57 class field component "positions" value 35 component "connections" value 58 attribute "char width" number 0.665517 # object 60 class array type int rank 1 shape 2 items 1 data follows 127 128 attribute "element type" string "lines" attribute "ref" string "positions" # object 59 class field component "positions" value 35 component "connections" value 60 attribute "char width" number 0.665517 # object 62 class array type int rank 1 shape 2 items 4 data follows 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 61 class field component "positions" value 35 component "connections" value 62 attribute "char width" number 0.665517 # object 64 class array type int rank 1 shape 2 items 1 data follows 132 133 attribute "element type" string "lines" attribute "ref" string "positions" # object 63 class field component "positions" value 35 component "connections" value 64 attribute "char width" number 0.665517 # object 66 class array type int rank 1 shape 2 items 16 data follows 134 91 91 135 135 136 136 137 137 138 138 139 139 140 140 141 141 142 142 143 143 144 144 145 145 146 146 147 147 148 148 134 attribute "element type" string "lines" attribute "ref" string "positions" # object 65 class field component "positions" value 35 component "connections" value 66 attribute "char width" number 0.665517 # object 68 class array type int rank 1 shape 2 items 3 data follows 149 150 150 148 148 141 attribute "element type" string "lines" attribute "ref" string "positions" # object 67 class field component "positions" value 35 component "connections" value 68 attribute "char width" number 0.665517 # object 70 class array type int rank 1 shape 2 items 13 data follows 151 135 135 152 152 91 91 29 29 28 28 147 147 153 153 146 146 154 154 155 155 36 36 156 156 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 69 class field component "positions" value 35 component "connections" value 70 attribute "char width" number 0.665517 # object 72 class array type int rank 1 shape 2 items 14 data follows 157 158 158 159 159 160 160 123 123 75 75 161 161 21 21 162 162 142 142 141 141 42 42 43 43 163 163 164 attribute "element type" string "lines" attribute "ref" string "positions" # object 71 class field component "positions" value 35 component "connections" value 72 attribute "char width" number 0.665517 # object 74 class array type int rank 1 shape 2 items 3 data follows 165 166 166 167 165 168 attribute "element type" string "lines" attribute "ref" string "positions" # object 73 class field component "positions" value 35 component "connections" value 74 attribute "char width" number 0.665517 # object 76 class array type int rank 1 shape 2 items 16 data follows 169 157 157 18 18 34 34 170 170 171 171 172 172 75 75 161 161 21 21 162 162 142 142 141 141 42 42 43 43 163 163 164 attribute "element type" string "lines" attribute "ref" string "positions" # object 75 class field component "positions" value 35 component "connections" value 76 attribute "char width" number 0.665517 # object 78 class array type int rank 1 shape 2 items 22 data follows 173 27 27 28 28 4 4 174 174 175 175 18 18 176 176 177 177 178 178 8 8 141 141 142 142 162 162 21 21 69 69 179 179 180 180 181 181 159 159 35 35 182 182 176 attribute "element type" string "lines" attribute "ref" string "positions" # object 77 class field component "positions" value 35 component "connections" value 78 attribute "char width" number 0.665517 # object 80 class array type int rank 1 shape 2 items 2 data follows 183 184 185 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 79 class field component "positions" value 35 component "connections" value 80 attribute "char width" number 0.665517 # object 82 class array type int rank 1 shape 2 items 28 data follows 29 30 30 186 186 151 151 50 50 187 187 188 188 189 189 190 190 69 69 191 191 192 192 40 40 41 41 42 42 43 43 163 163 164 164 166 166 193 193 194 194 195 195 160 160 196 196 197 197 173 173 27 27 28 28 29 attribute "element type" string "lines" attribute "ref" string "positions" # object 81 class field component "positions" value 35 component "connections" value 82 attribute "char width" number 0.665517 # object 84 class array type int rank 1 shape 2 items 22 data follows 198 199 199 200 200 201 201 202 202 203 203 204 204 51 51 205 205 186 186 91 91 134 134 4 4 206 206 124 124 198 198 190 190 207 207 208 208 8 8 42 42 43 43 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 83 class field component "positions" value 35 component "connections" value 84 attribute "char width" number 0.665517 # object 86 class array type int rank 1 shape 2 items 8 data follows 87 86 86 210 210 181 181 87 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 85 class field component "positions" value 35 component "connections" value 86 attribute "char width" number 0.665517 # object 88 class array type int rank 1 shape 2 items 11 data follows 87 86 86 210 210 181 181 87 9 8 8 7 7 6 6 9 9 129 129 130 130 131 attribute "element type" string "lines" attribute "ref" string "positions" # object 87 class field component "positions" value 35 component "connections" value 88 attribute "char width" number 0.665517 # object 90 class array type int rank 1 shape 2 items 2 data follows 211 85 85 212 attribute "element type" string "lines" attribute "ref" string "positions" # object 89 class field component "positions" value 35 component "connections" value 90 attribute "char width" number 0.665517 # object 92 class array type int rank 1 shape 2 items 2 data follows 213 214 215 216 attribute "element type" string "lines" attribute "ref" string "positions" # object 91 class field component "positions" value 35 component "connections" value 92 attribute "char width" number 0.665517 # object 94 class array type int rank 1 shape 2 items 2 data follows 217 218 218 219 attribute "element type" string "lines" attribute "ref" string "positions" # object 93 class field component "positions" value 35 component "connections" value 94 attribute "char width" number 0.665517 # object 96 class array type int rank 1 shape 2 items 17 data follows 151 135 135 152 152 91 91 29 29 28 28 147 147 153 153 146 146 154 154 155 155 180 180 220 220 5 6 7 7 8 8 9 9 6 attribute "element type" string "lines" attribute "ref" string "positions" # object 95 class field component "positions" value 35 component "connections" value 96 attribute "char width" number 0.665517 # object 98 class array type int rank 1 shape 2 items 48 data follows 155 221 221 117 117 222 222 49 49 11 11 223 223 224 224 225 225 226 226 227 227 61 61 228 222 229 229 194 194 230 230 231 231 226 232 228 228 76 76 233 233 234 234 235 235 236 236 237 237 238 238 239 239 240 240 27 27 28 28 134 134 91 91 241 241 242 242 243 243 244 244 245 245 215 215 246 246 163 163 139 139 140 140 41 41 40 40 247 247 248 197 249 249 250 250 233 attribute "element type" string "lines" attribute "ref" string "positions" # object 97 class field component "positions" value 35 component "connections" value 98 attribute "char width" number 0.665517 # object 100 class array type int rank 1 shape 2 items 3 data follows 4 219 4 212 251 60 attribute "element type" string "lines" attribute "ref" string "positions" # object 99 class field component "positions" value 35 component "connections" value 100 attribute "char width" number 0.665517 # object 102 class array type int rank 1 shape 2 items 18 data follows 185 156 185 28 28 27 27 252 252 253 253 254 254 255 255 123 123 256 257 256 256 258 258 190 190 69 69 191 191 192 192 40 40 41 41 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 101 class field component "positions" value 35 component "connections" value 102 attribute "char width" number 0.665517 # object 104 class array type int rank 1 shape 2 items 17 data follows 259 26 26 27 27 165 165 134 134 174 174 92 92 151 151 260 260 261 261 262 262 177 177 178 178 140 140 168 168 40 40 39 39 234 attribute "element type" string "lines" attribute "ref" string "positions" # object 103 class field component "positions" value 35 component "connections" value 104 attribute "char width" number 0.665517 # object 106 class array type int rank 1 shape 2 items 12 data follows 185 156 185 4 4 206 206 124 124 197 197 74 74 161 161 233 233 263 263 208 208 8 8 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 105 class field component "positions" value 35 component "connections" value 106 attribute "char width" number 0.665517 # object 108 class array type int rank 1 shape 2 items 4 data follows 55 79 55 183 204 256 79 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 107 class field component "positions" value 35 component "connections" value 108 attribute "char width" number 0.665517 # object 110 class array type int rank 1 shape 2 items 3 data follows 55 79 55 183 204 256 attribute "element type" string "lines" attribute "ref" string "positions" # object 109 class field component "positions" value 35 component "connections" value 110 attribute "char width" number 0.665517 # object 112 class array type int rank 1 shape 2 items 19 data follows 259 26 26 27 27 165 165 134 134 174 174 92 92 151 151 260 260 261 261 262 262 177 177 178 178 140 140 168 168 40 40 39 39 234 234 264 265 264 attribute "element type" string "lines" attribute "ref" string "positions" # object 111 class field component "positions" value 35 component "connections" value 112 attribute "char width" number 0.665517 # object 114 class array type int rank 1 shape 2 items 3 data follows 185 156 183 97 257 266 attribute "element type" string "lines" attribute "ref" string "positions" # object 113 class field component "positions" value 35 component "connections" value 114 attribute "char width" number 0.665517 # object 116 class array type int rank 1 shape 2 items 1 data follows 4 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 115 class field component "positions" value 35 component "connections" value 116 attribute "char width" number 0.665517 # object 118 class array type int rank 1 shape 2 items 9 data follows 12 267 267 268 268 269 269 8 8 42 42 139 139 270 270 262 262 176 attribute "element type" string "lines" attribute "ref" string "positions" # object 117 class field component "positions" value 35 component "connections" value 118 attribute "char width" number 0.665517 # object 120 class array type int rank 1 shape 2 items 3 data follows 185 156 183 166 271 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 119 class field component "positions" value 35 component "connections" value 120 attribute "char width" number 0.665517 # object 122 class array type int rank 1 shape 2 items 2 data follows 55 79 79 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 121 class field component "positions" value 35 component "connections" value 122 attribute "char width" number 0.665517 # object 124 class array type int rank 1 shape 2 items 4 data follows 272 219 272 8 273 8 273 212 attribute "element type" string "lines" attribute "ref" string "positions" # object 123 class field component "positions" value 35 component "connections" value 124 attribute "char width" number 0.665517 # object 126 class array type int rank 1 shape 2 items 3 data follows 185 156 185 97 183 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 125 class field component "positions" value 35 component "connections" value 126 attribute "char width" number 0.665517 # object 128 class array type int rank 1 shape 2 items 20 data follows 29 91 91 186 186 32 32 274 274 275 275 276 276 209 209 139 139 42 42 41 41 142 142 162 162 277 277 264 264 278 278 279 279 173 173 147 147 28 28 29 attribute "element type" string "lines" attribute "ref" string "positions" # object 127 class field component "positions" value 35 component "connections" value 128 attribute "char width" number 0.665517 # object 130 class array type int rank 1 shape 2 items 10 data follows 185 156 185 28 28 27 27 252 252 253 253 280 280 281 281 199 199 282 282 283 attribute "element type" string "lines" attribute "ref" string "positions" # object 129 class field component "positions" value 35 component "connections" value 130 attribute "char width" number 0.665517 # object 132 class array type int rank 1 shape 2 items 21 data follows 29 91 91 186 186 32 32 274 274 275 275 276 276 209 209 139 139 42 42 41 41 142 142 162 162 277 277 264 264 278 278 279 279 173 173 147 147 28 28 29 284 285 attribute "element type" string "lines" attribute "ref" string "positions" # object 131 class field component "positions" value 35 component "connections" value 132 attribute "char width" number 0.665517 # object 134 class array type int rank 1 shape 2 items 11 data follows 185 156 185 28 28 27 27 252 252 253 253 254 254 255 255 123 123 256 256 257 286 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 133 class field component "positions" value 35 component "connections" value 134 attribute "char width" number 0.665517 # object 136 class array type int rank 1 shape 2 items 19 data follows 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 21 21 39 39 40 40 41 41 42 42 43 43 44 attribute "element type" string "lines" attribute "ref" string "positions" # object 135 class field component "positions" value 35 component "connections" value 136 attribute "char width" number 0.665517 # object 138 class array type int rank 1 shape 2 items 2 data follows 4 8 185 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 137 class field component "positions" value 35 component "connections" value 138 attribute "char width" number 0.665517 # object 140 class array type int rank 1 shape 2 items 9 data follows 185 20 20 209 209 139 139 140 140 141 141 142 142 162 162 21 21 183 attribute "element type" string "lines" attribute "ref" string "positions" # object 139 class field component "positions" value 35 component "connections" value 140 attribute "char width" number 0.665517 # object 142 class array type int rank 1 shape 2 items 2 data follows 272 8 273 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 141 class field component "positions" value 35 component "connections" value 142 attribute "char width" number 0.665517 # object 144 class array type int rank 1 shape 2 items 4 data follows 287 288 4 288 4 289 290 289 attribute "element type" string "lines" attribute "ref" string "positions" # object 143 class field component "positions" value 35 component "connections" value 144 attribute "char width" number 0.665517 # object 146 class array type int rank 1 shape 2 items 2 data follows 185 97 183 156 attribute "element type" string "lines" attribute "ref" string "positions" # object 145 class field component "positions" value 35 component "connections" value 146 attribute "char width" number 0.665517 # object 148 class array type int rank 1 shape 2 items 3 data follows 272 286 286 8 273 286 attribute "element type" string "lines" attribute "ref" string "positions" # object 147 class field component "positions" value 35 component "connections" value 148 attribute "char width" number 0.665517 # object 150 class array type int rank 1 shape 2 items 3 data follows 183 156 185 183 156 97 attribute "element type" string "lines" attribute "ref" string "positions" # object 149 class field component "positions" value 35 component "connections" value 150 attribute "char width" number 0.665517 # object 152 class array type int rank 1 shape 2 items 4 data follows 291 292 22 293 291 106 292 114 attribute "element type" string "lines" attribute "ref" string "positions" # object 151 class field component "positions" value 35 component "connections" value 152 attribute "char width" number 0.665517 # object 154 class array type int rank 1 shape 2 items 1 data follows 185 294 attribute "element type" string "lines" attribute "ref" string "positions" # object 153 class field component "positions" value 35 component "connections" value 154 attribute "char width" number 0.665517 # object 156 class array type int rank 1 shape 2 items 4 data follows 24 295 296 297 115 296 121 297 attribute "element type" string "lines" attribute "ref" string "positions" # object 155 class field component "positions" value 35 component "connections" value 156 attribute "char width" number 0.665517 # object 158 class array type int rank 1 shape 2 items 5 data follows 298 126 126 299 125 300 300 123 300 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 157 class field component "positions" value 35 component "connections" value 158 attribute "char width" number 0.665517 # object 160 class array type int rank 1 shape 2 items 1 data follows 301 302 attribute "element type" string "lines" attribute "ref" string "positions" # object 159 class field component "positions" value 35 component "connections" value 160 attribute "char width" number 0.665517 # object 162 class array type int rank 1 shape 2 items 6 data follows 148 90 90 303 303 222 222 304 304 88 88 300 attribute "element type" string "lines" attribute "ref" string "positions" # object 161 class field component "positions" value 35 component "connections" value 162 attribute "char width" number 0.665517 # object 164 class array type int rank 1 shape 2 items 14 data follows 198 65 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 163 class field component "positions" value 35 component "connections" value 164 attribute "char width" number 0.665517 # object 166 class array type int rank 1 shape 2 items 14 data follows 55 79 204 94 94 170 170 171 171 160 160 199 199 38 38 309 309 263 263 208 208 141 141 42 42 139 139 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 165 class field component "positions" value 35 component "connections" value 166 attribute "char width" number 0.665517 # object 168 class array type int rank 1 shape 2 items 13 data follows 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 167 class field component "positions" value 35 component "connections" value 168 attribute "char width" number 0.665517 # object 170 class array type int rank 1 shape 2 items 14 data follows 158 65 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 169 class field component "positions" value 35 component "connections" value 170 attribute "char width" number 0.665517 # object 172 class array type int rank 1 shape 2 items 16 data follows 307 38 38 179 179 123 123 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 171 class field component "positions" value 35 component "connections" value 172 attribute "char width" number 0.665517 # object 174 class array type int rank 1 shape 2 items 5 data follows 169 165 165 103 103 300 300 8 229 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 173 class field component "positions" value 35 component "connections" value 174 attribute "char width" number 0.665517 # object 176 class array type int rank 1 shape 2 items 19 data follows 198 310 310 311 311 312 312 295 295 313 313 314 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 175 class field component "positions" value 35 component "connections" value 176 attribute "char width" number 0.665517 # object 178 class array type int rank 1 shape 2 items 7 data follows 157 288 182 315 315 87 87 316 316 155 155 179 179 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 177 class field component "positions" value 35 component "connections" value 178 attribute "char width" number 0.665517 # object 180 class array type int rank 1 shape 2 items 5 data follows 134 90 90 148 148 317 317 134 87 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 179 class field component "positions" value 35 component "connections" value 180 attribute "char width" number 0.665517 # object 182 class array type int rank 1 shape 2 items 8 data follows 4 103 103 28 28 318 318 4 171 319 319 320 320 293 293 121 attribute "element type" string "lines" attribute "ref" string "positions" # object 181 class field component "positions" value 35 component "connections" value 182 attribute "char width" number 0.665517 # object 184 class array type int rank 1 shape 2 items 3 data follows 157 288 196 321 202 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 183 class field component "positions" value 35 component "connections" value 184 attribute "char width" number 0.665517 # object 186 class array type int rank 1 shape 2 items 1 data follows 4 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 185 class field component "positions" value 35 component "connections" value 186 attribute "char width" number 0.665517 # object 188 class array type int rank 1 shape 2 items 13 data follows 322 323 324 325 325 326 326 327 327 328 328 220 220 8 220 329 329 330 330 331 331 74 74 332 332 333 attribute "element type" string "lines" attribute "ref" string "positions" # object 187 class field component "positions" value 35 component "connections" value 188 attribute "char width" number 0.665517 # object 190 class array type int rank 1 shape 2 items 7 data follows 50 288 182 315 315 87 87 316 316 155 155 179 179 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 189 class field component "positions" value 35 component "connections" value 190 attribute "char width" number 0.665517 # object 192 class array type int rank 1 shape 2 items 16 data follows 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 162 21 21 161 161 75 75 172 172 305 305 306 attribute "element type" string "lines" attribute "ref" string "positions" # object 191 class field component "positions" value 35 component "connections" value 192 attribute "char width" number 0.665517 # object 194 class array type int rank 1 shape 2 items 14 data follows 33 15 204 94 94 170 170 171 171 160 160 199 199 38 38 309 309 263 263 208 208 141 141 42 42 139 139 209 attribute "element type" string "lines" attribute "ref" string "positions" # object 193 class field component "positions" value 35 component "connections" value 194 attribute "char width" number 0.665517 # object 196 class array type int rank 1 shape 2 items 14 data follows 198 334 75 172 172 305 305 306 306 187 187 223 223 307 307 308 308 177 177 178 178 140 140 41 41 142 142 162 attribute "element type" string "lines" attribute "ref" string "positions" # object 195 class field component "positions" value 35 component "connections" value 196 attribute "char width" number 0.665517 # object 198 class array type int rank 1 shape 2 items 5 data follows 229 184 335 336 336 159 159 305 305 196 attribute "element type" string "lines" attribute "ref" string "positions" # object 197 class field component "positions" value 35 component "connections" value 198 attribute "char width" number 0.665517 # object 200 class array type int rank 1 shape 2 items 16 data follows 75 155 155 305 305 306 306 94 94 223 223 203 203 337 337 119 119 250 250 143 143 162 162 40 40 41 41 140 140 139 139 177 attribute "element type" string "lines" attribute "ref" string "positions" # object 199 class field component "positions" value 35 component "connections" value 200 attribute "char width" number 0.665517 # object 202 class array type int rank 1 shape 2 items 5 data follows 4 338 338 9 9 168 168 289 229 13 attribute "element type" string "lines" attribute "ref" string "positions" # object 201 class field component "positions" value 35 component "connections" value 202 attribute "char width" number 0.665517 # object 204 class array type int rank 1 shape 2 items 7 data follows 50 321 321 139 139 42 42 141 141 208 208 143 198 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 203 class field component "positions" value 35 component "connections" value 204 attribute "char width" number 0.665517 # object 206 class array type int rank 1 shape 2 items 2 data follows 33 8 198 8 attribute "element type" string "lines" attribute "ref" string "positions" # object 205 class field component "positions" value 35 component "connections" value 206 attribute "char width" number 0.665517 # object 208 class array type int rank 1 shape 2 items 4 data follows 339 340 87 340 87 64 73 64 attribute "element type" string "lines" attribute "ref" string "positions" # object 207 class field component "positions" value 35 component "connections" value 208 attribute "char width" number 0.665517 # object 210 class array type int rank 1 shape 2 items 2 data follows 50 65 198 288 attribute "element type" string "lines" attribute "ref" string "positions" # object 209 class field component "positions" value 35 component "connections" value 210 attribute "char width" number 0.665517 # object 212 class array type int rank 1 shape 2 items 6 data follows 33 8 198 8 8 23 23 341 341 15 15 342 attribute "element type" string "lines" attribute "ref" string "positions" # object 211 class field component "positions" value 35 component "connections" value 212 attribute "char width" number 0.665517 # object 214 class array type int rank 1 shape 2 items 3 data follows 198 288 50 198 288 65 attribute "element type" string "lines" attribute "ref" string "positions" # object 213 class field component "positions" value 35 component "connections" value 214 attribute "char width" number 0.665517 # object 216 class array type int rank 1 shape 2 items 34 data follows 24 343 343 344 344 29 29 47 47 345 345 104 104 171 171 188 188 346 343 347 347 102 102 126 126 348 348 299 299 349 349 350 350 351 351 352 352 353 353 77 77 9 9 8 8 354 354 131 131 320 202 355 355 284 284 6 6 7 7 356 356 357 357 358 358 320 320 295 attribute "element type" string "lines" attribute "ref" string "positions" # object 215 class field component "positions" value 35 component "connections" value 216 attribute "char width" number 0.665517 # object 218 class array type int rank 1 shape 2 items 1 data follows 359 17 attribute "element type" string "lines" attribute "ref" string "positions" # object 217 class field component "positions" value 35 component "connections" value 218 attribute "char width" number 0.665517 # object 220 class array type int rank 1 shape 2 items 34 data follows 22 343 343 360 360 28 28 361 361 348 348 104 104 306 306 195 195 362 343 318 318 103 103 126 126 345 345 298 298 315 315 363 363 200 200 364 364 226 226 365 365 7 7 8 8 366 366 367 367 320 368 369 369 370 370 6 6 9 9 371 371 372 372 373 373 320 320 293 attribute "element type" string "lines" attribute "ref" string "positions" # object 219 class field component "positions" value 35 component "connections" value 220 attribute "char width" number 0.665517 # object 222 class array type int rank 1 shape 2 items 20 data follows 215 84 84 374 374 18 18 375 375 336 336 376 376 377 377 378 378 264 264 379 84 380 380 204 204 194 194 95 95 381 381 76 76 309 309 167 167 379 379 214 attribute "element type" string "lines" attribute "ref" string "positions" # object 221 class field component "positions" value 35 component "connections" value 222 attribute "char width" number 0.665517 # object 224 class array type int rank 1 shape 2 items 12 data follows 134 174 174 382 382 383 383 229 229 86 86 181 181 316 316 384 384 385 385 206 206 148 148 134 attribute "element type" string "lines" attribute "ref" string "positions" # object 223 class field component "positions" value 35 component "connections" value 224 attribute "char width" number 0.665517 # object 225 class field attribute "char width" number 0.665517 # object 226 class field attribute "char width" number 0.665517 # object 227 class field attribute "char width" number 0.665517 # object 228 class field attribute "char width" number 0.665517 # object 229 class field attribute "char width" number 0.665517 # object 230 class field attribute "char width" number 0.665517 # object 231 class field attribute "char width" number 0.665517 # object 232 class field attribute "char width" number 0.665517 # object 233 class field attribute "char width" number 0.665517 # object 234 class field attribute "char width" number 0.665517 # object 235 class field attribute "char width" number 0.665517 # object 236 class field attribute "char width" number 0.665517 # object 237 class field attribute "char width" number 0.665517 # object 238 class field attribute "char width" number 0.665517 # object 239 class field attribute "char width" number 0.665517 # object 240 class field attribute "char width" number 0.665517 # object 241 class field attribute "char width" number 0.665517 # object 242 class field attribute "char width" number 0.665517 # object 243 class field attribute "char width" number 0.665517 # object 244 class field attribute "char width" number 0.665517 # object 245 class field attribute "char width" number 0.665517 # object 246 class field attribute "char width" number 0.665517 # object 247 class field attribute "char width" number 0.665517 # object 248 class field attribute "char width" number 0.665517 # object 249 class field attribute "char width" number 0.665517 # object 250 class field attribute "char width" number 0.665517 # object 251 class field attribute "char width" number 0.665517 # object 252 class field attribute "char width" number 0.665517 # object 253 class field attribute "char width" number 0.665517 # object 254 class field attribute "char width" number 0.665517 # object 255 class field attribute "char width" number 0.665517 # object 256 class field attribute "char width" number 0.665517 # object 257 class field attribute "char width" number 0.665517 # object 258 class field attribute "char width" number 0.665517 # object 259 class field attribute "char width" number 0.665517 # object 260 class field attribute "char width" number 0.665517 # object 261 class field attribute "char width" number 0.665517 # object 262 class field attribute "char width" number 0.665517 # object 263 class field attribute "char width" number 0.665517 # object 264 class field attribute "char width" number 0.665517 # object 265 class field attribute "char width" number 0.665517 # object 266 class field attribute "char width" number 0.665517 # object 267 class field attribute "char width" number 0.665517 # object 268 class field attribute "char width" number 0.665517 # object 269 class field attribute "char width" number 0.665517 # object 270 class field attribute "char width" number 0.665517 # object 271 class field attribute "char width" number 0.665517 # object 272 class field attribute "char width" number 0.665517 # object 273 class field attribute "char width" number 0.665517 # object 274 class field attribute "char width" number 0.665517 # object 275 class field attribute "char width" number 0.665517 # object 276 class field attribute "char width" number 0.665517 # object 277 class field attribute "char width" number 0.665517 # object 278 class field attribute "char width" number 0.665517 # object 279 class field attribute "char width" number 0.665517 # object 280 class field attribute "char width" number 0.665517 # object 281 class field attribute "char width" number 0.665517 # object 282 class field attribute "char width" number 0.665517 # object 283 class field attribute "char width" number 0.665517 # object 284 class field attribute "char width" number 0.665517 # object 285 class field attribute "char width" number 0.665517 # object 286 class field attribute "char width" number 0.665517 # object 287 class field attribute "char width" number 0.665517 # object 288 class field attribute "char width" number 0.665517 # object 289 class field attribute "char width" number 0.665517 # object 290 class field attribute "char width" number 0.665517 # object 291 class field attribute "char width" number 0.665517 # object 292 class field attribute "char width" number 0.665517 # object 293 class field attribute "char width" number 0.665517 # object 294 class field attribute "char width" number 0.665517 # object 295 class field attribute "char width" number 0.665517 # object 296 class field attribute "char width" number 0.665517 # object 297 class field attribute "char width" number 0.665517 # object 298 class field attribute "char width" number 0.665517 # object 299 class field attribute "char width" number 0.665517 # object 300 class field attribute "char width" number 0.665517 # object 301 class field attribute "char width" number 0.665517 # object 302 class field attribute "char width" number 0.665517 # object 303 class field attribute "char width" number 0.665517 # object 304 class field attribute "char width" number 0.665517 # object 305 class field attribute "char width" number 0.665517 # object 306 class field attribute "char width" number 0.665517 # object 307 class field attribute "char width" number 0.665517 # object 308 class field attribute "char width" number 0.665517 # object 309 class field attribute "char width" number 0.665517 # object 310 class field attribute "char width" number 0.665517 # object 311 class field attribute "char width" number 0.665517 # object 312 class field attribute "char width" number 0.665517 # object 313 class field attribute "char width" number 0.665517 # object 314 class field attribute "char width" number 0.665517 # object 315 class field attribute "char width" number 0.665517 # object 316 class field attribute "char width" number 0.665517 # object 317 class field attribute "char width" number 0.665517 # object 318 class field attribute "char width" number 0.665517 # object 319 class field attribute "char width" number 0.665517 # object 320 class field attribute "char width" number 0.665517 # object 321 class field attribute "char width" number 0.665517 # object 322 class field attribute "char width" number 0.665517 # object 323 class field attribute "char width" number 0.665517 # object 324 class field attribute "char width" number 0.665517 # object 325 class field attribute "char width" number 0.665517 # object 326 class field attribute "char width" number 0.665517 # object 327 class field attribute "char width" number 0.665517 # object 328 class field attribute "char width" number 0.665517 # object 329 class field attribute "char width" number 0.665517 # object 330 class field attribute "char width" number 0.665517 # object 331 class field attribute "char width" number 0.665517 # object 332 class field attribute "char width" number 0.665517 # object 333 class field attribute "char width" number 0.665517 # object 334 class field attribute "char width" number 0.665517 # object 335 class field attribute "char width" number 0.665517 # object 336 class field attribute "char width" number 0.665517 # object 337 class field attribute "char width" number 0.665517 # object 338 class field attribute "char width" number 0.665517 # object 339 class field attribute "char width" number 0.665517 # object 340 class field attribute "char width" number 0.665517 # object 341 class field attribute "char width" number 0.665517 # object 342 class field attribute "char width" number 0.665517 # object 343 class field attribute "char width" number 0.665517 # object 344 class field attribute "char width" number 0.665517 # object 345 class field attribute "char width" number 0.665517 # object 346 class field attribute "char width" number 0.665517 # object 347 class field attribute "char width" number 0.665517 # object 348 class field attribute "char width" number 0.665517 # object 349 class field attribute "char width" number 0.665517 # object 350 class field attribute "char width" number 0.665517 # object 351 class field attribute "char width" number 0.665517 # object 352 class field attribute "char width" number 0.665517 # object "default" class group member 0 value 1 member 1 value 2 member 2 value 3 member 3 value 4 member 4 value 5 member 5 value 6 member 6 value 7 member 7 value 8 member 8 value 9 member 9 value 10 member 10 value 11 member 11 value 12 member 12 value 13 member 13 value 14 member 14 value 15 member 15 value 16 member 16 value 17 member 17 value 18 member 18 value 19 member 19 value 20 member 20 value 21 member 21 value 22 member 22 value 23 member 23 value 24 member 24 value 25 member 25 value 26 member 26 value 27 member 27 value 28 member 28 value 29 member 29 value 30 member 30 value 31 member 31 value 32 member 32 value 33 member 33 value 34 member 34 value 37 member 35 value 39 member 36 value 41 member 37 value 43 member 38 value 45 member 39 value 47 member 40 value 49 member 41 value 51 member 42 value 53 member 43 value 55 member 44 value 57 member 45 value 59 member 46 value 61 member 47 value 63 member 48 value 65 member 49 value 67 member 50 value 69 member 51 value 71 member 52 value 73 member 53 value 75 member 54 value 77 member 55 value 79 member 56 value 81 member 57 value 83 member 58 value 85 member 59 value 87 member 60 value 89 member 61 value 91 member 62 value 93 member 63 value 95 member 64 value 97 member 65 value 99 member 66 value 101 member 67 value 103 member 68 value 105 member 69 value 107 member 70 value 109 member 71 value 111 member 72 value 113 member 73 value 115 member 74 value 117 member 75 value 119 member 76 value 121 member 77 value 123 member 78 value 125 member 79 value 127 member 80 value 129 member 81 value 131 member 82 value 133 member 83 value 135 member 84 value 137 member 85 value 139 member 86 value 141 member 87 value 143 member 88 value 145 member 89 value 147 member 90 value 149 member 91 value 151 member 92 value 153 member 93 value 155 member 94 value 157 member 95 value 159 member 96 value 161 member 97 value 163 member 98 value 165 member 99 value 167 member 100 value 169 member 101 value 171 member 102 value 173 member 103 value 175 member 104 value 177 member 105 value 179 member 106 value 181 member 107 value 183 member 108 value 185 member 109 value 187 member 110 value 189 member 111 value 191 member 112 value 193 member 113 value 195 member 114 value 197 member 115 value 199 member 116 value 201 member 117 value 203 member 118 value 205 member 119 value 207 member 120 value 209 member 121 value 211 member 122 value 213 member 123 value 215 member 124 value 217 member 125 value 219 member 126 value 221 member 127 value 223 member 128 value 225 member 129 value 226 member 130 value 227 member 131 value 228 member 132 value 229 member 133 value 230 member 134 value 231 member 135 value 232 member 136 value 233 member 137 value 234 member 138 value 235 member 139 value 236 member 140 value 237 member 141 value 238 member 142 value 239 member 143 value 240 member 144 value 241 member 145 value 242 member 146 value 243 member 147 value 244 member 148 value 245 member 149 value 246 member 150 value 247 member 151 value 248 member 152 value 249 member 153 value 250 member 154 value 251 member 155 value 252 member 156 value 253 member 157 value 254 member 158 value 255 member 159 value 256 member 160 value 257 member 161 value 258 member 162 value 259 member 163 value 260 member 164 value 261 member 165 value 262 member 166 value 263 member 167 value 264 member 168 value 265 member 169 value 266 member 170 value 267 member 171 value 268 member 172 value 269 member 173 value 270 member 174 value 271 member 175 value 272 member 176 value 273 member 177 value 274 member 178 value 275 member 179 value 276 member 180 value 277 member 181 value 278 member 182 value 279 member 183 value 280 member 184 value 281 member 185 value 282 member 186 value 283 member 187 value 284 member 188 value 285 member 189 value 286 member 190 value 287 member 191 value 288 member 192 value 289 member 193 value 290 member 194 value 291 member 195 value 292 member 196 value 293 member 197 value 294 member 198 value 295 member 199 value 296 member 200 value 297 member 201 value 298 member 202 value 299 member 203 value 300 member 204 value 301 member 205 value 302 member 206 value 303 member 207 value 304 member 208 value 305 member 209 value 306 member 210 value 307 member 211 value 308 member 212 value 309 member 213 value 310 member 214 value 311 member 215 value 312 member 216 value 313 member 217 value 314 member 218 value 315 member 219 value 316 member 220 value 317 member 221 value 318 member 222 value 319 member 223 value 320 member 224 value 321 member 225 value 322 member 226 value 323 member 227 value 324 member 228 value 325 member 229 value 326 member 230 value 327 member 231 value 328 member 232 value 329 member 233 value 330 member 234 value 331 member 235 value 332 member 236 value 333 member 237 value 334 member 238 value 335 member 239 value 336 member 240 value 337 member 241 value 338 member 242 value 339 member 243 value 340 member 244 value 341 member 245 value 342 member 246 value 343 member 247 value 344 member 248 value 345 member 249 value 346 member 250 value 347 member 251 value 348 member 252 value 349 member 253 value 350 member 254 value 351 member 255 value 352 attribute "name" string "default" attribute "font ascent" number 0.758621 attribute "font descent" number 0.241379 # end dx-4.4.4/fonts/roman_tser.dx0000644000076500000240000030143607120242305012716 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 22 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 22 msb ieee data 176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 10 msb ieee data 352 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 10 msb ieee data 432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 512 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 49 msb ieee data 608 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 46 msb ieee data 1000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 1368 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 58 msb ieee data 1784 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 58 msb ieee data 2248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 15 msb ieee data 2712 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 16 msb ieee data 2832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 22 msb ieee data 2960 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 21 msb ieee data 3136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 22 msb ieee data 3304 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 21 msb ieee data 3480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 18 msb ieee data 3648 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 21 msb ieee data 3792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 8 msb ieee data 3960 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 8 msb ieee data 4024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.782500 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 15 msb ieee data 4088 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 16 msb ieee data 4208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 4 msb ieee data 4336 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 4 msb ieee data 4368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.782500 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 12 msb ieee data 4400 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 12 msb ieee data 4496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.344300 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 4 msb ieee data 4592 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 4 msb ieee data 4624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.719900 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 40 msb ieee data 4656 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 40 msb ieee data 4976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 18 msb ieee data 5296 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 10 msb ieee data 5440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 49 msb ieee data 5520 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 48 msb ieee data 5912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 63 msb ieee data 6296 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 60 msb ieee data 6800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 18 msb ieee data 7280 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 10 msb ieee data 7424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 42 msb ieee data 7504 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 41 msb ieee data 7840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 58 msb ieee data 8168 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 57 msb ieee data 8632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 31 msb ieee data 9088 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 29 msb ieee data 9336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 58 msb ieee data 9568 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 59 msb ieee data 10032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 58 msb ieee data 10504 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 57 msb ieee data 10968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 24 msb ieee data 11424 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 24 msb ieee data 11616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 27 msb ieee data 11808 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 28 msb ieee data 12024 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 12248 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 12272 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 8 msb ieee data 12288 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 8 msb ieee data 12352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.782500 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 12416 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 12440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 41 msb ieee data 12456 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 40 msb ieee data 12784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.594700 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 13104 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 13488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 21 msb ieee data 13872 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 12 msb ieee data 14040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 56 msb ieee data 14136 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 44 msb ieee data 14584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.688600 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 31 msb ieee data 14936 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 31 msb ieee data 15184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 46 msb ieee data 15432 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 34 msb ieee data 15800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.688600 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 53 msb ieee data 16072 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 31 msb ieee data 16496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.657300 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 45 msb ieee data 16744 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 26 msb ieee data 17104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.626000 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 46 msb ieee data 17312 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 40 msb ieee data 17680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.719900 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 54 msb ieee data 18000 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 27 msb ieee data 18432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.751200 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 26 msb ieee data 18648 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 13 msb ieee data 18856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.375600 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 34 msb ieee data 18960 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 27 msb ieee data 19232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.375000 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 43 msb ieee data 19448 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 23 msb ieee data 19792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.688600 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 34 msb ieee data 19976 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 18 msb ieee data 20248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.563400 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 35 msb ieee data 20392 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 21 msb ieee data 20672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.813800 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 19 msb ieee data 20840 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 13 msb ieee data 20992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.751200 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 44 msb ieee data 21096 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 44 msb ieee data 21448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 42 msb ieee data 21800 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 29 msb ieee data 22136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.688600 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 63 msb ieee data 22368 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 61 msb ieee data 22872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 59 msb ieee data 23360 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 44 msb ieee data 23832 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.688600 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 37 msb ieee data 24184 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 38 msb ieee data 24480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 34 msb ieee data 24784 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 19 msb ieee data 25056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.626000 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 31 msb ieee data 25208 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 23 msb ieee data 25456 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.751200 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 19 msb ieee data 25640 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 12 msb ieee data 25792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.626000 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 27 msb ieee data 25888 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 21 msb ieee data 26104 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.751200 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 30 msb ieee data 26272 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 18 msb ieee data 26512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 30 msb ieee data 26656 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 18 msb ieee data 26896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.688600 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 24 msb ieee data 27040 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 15 msb ieee data 27232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 27352 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 27400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 27432 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 27448 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 27456 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 27504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 27536 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 27592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 27632 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 27648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 15 msb ieee data 27656 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 16 msb ieee data 27776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 43 msb ieee data 27904 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 42 msb ieee data 28248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.626000 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 36 msb ieee data 28584 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 31 msb ieee data 28872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.657300 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 29 msb ieee data 29120 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 28 msb ieee data 29352 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.594700 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 40 msb ieee data 29576 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 32 msb ieee data 29896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.657300 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 33 msb ieee data 30152 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 31 msb ieee data 30416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.594700 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 30 msb ieee data 30664 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 22 msb ieee data 30904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.438200 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 68 msb ieee data 31080 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 69 msb ieee data 31624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.594700 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 46 msb ieee data 32176 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 29 msb ieee data 32544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.719900 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 29 msb ieee data 32776 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 17 msb ieee data 33008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.375600 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 31 msb ieee data 33144 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 25 msb ieee data 33392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.406900 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 39 msb ieee data 33592 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 21 msb ieee data 33904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.688600 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 21 msb ieee data 34072 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 11 msb ieee data 34240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.375600 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 71 msb ieee data 34328 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 47 msb ieee data 34896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 1.064200 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 46 msb ieee data 35272 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 29 msb ieee data 35640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.719900 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 36 msb ieee data 35872 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 36 msb ieee data 36160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.626000 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 45 msb ieee data 36448 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 34 msb ieee data 36808 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.657300 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 41 msb ieee data 37080 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 33 msb ieee data 37408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.626000 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 32 msb ieee data 37672 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 21 msb ieee data 37928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.532100 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 30 msb ieee data 38096 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 33 msb ieee data 38336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 16 msb ieee data 38600 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 14 msb ieee data 38728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.469500 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 32 msb ieee data 38840 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 23 msb ieee data 39096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.719900 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 17 msb ieee data 39280 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 11 msb ieee data 39416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.563400 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 23 msb ieee data 39504 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 17 msb ieee data 39688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.751200 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 28 msb ieee data 39824 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 16 msb ieee data 40048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.626000 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 27 msb ieee data 40176 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 20 msb ieee data 40392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.594700 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 24 msb ieee data 40552 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 15 msb ieee data 40744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.563400 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 40864 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 41144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 41416 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 41432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 41440 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 41720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 41992 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 42152 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 42312 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 24 msb ieee data 42408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4t=K(R>4t=¥®_>4t?ê:>4t?$ðÇ> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>s¹> A‰>© > A‰?,ô>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>s¹>@N¥>© >@N¥?,ô>`[Ç=K(R>`[Ç=¥®_>`[Ç?ê:>`[Ç?$ðÇ     =à[Î>éº==à[Î?$ðÇ>:û?$ðÇ>:û?,ô>0H?$ðÇ>ÈQï>éº=>ÈQï?$ðÇ>ØXy?$ðÇ>ØXy?,ô>è_ ?$ðÇ =ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =ÀN¥>ñg=ÀN¥>S ž=ÀN¥>ùÀÊ=ÀN¥?ê:>4n=¥®_>4n>ñg>4n>2þ‚>4n>Ù³¯>4n>ùÀÊ>4n?ã¬>4n?ê:> A=K(R> A>ñg> A>S ž> A>Ù³¯> A>éº=> A?$ðÇ>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¨½Úîé>ÀN¨<•çÉ>ÀN¨?,ô>ÀN¨?M*>ÐU6>™™x>ÐU6>© >ÐU6>¹¦“>ðbN=K(R>ðbN>‰’ê>ðbN>™™x>ðbN>ùÀÊ>ðbN? æó>ðbN?$ðÇ?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?4o?ã¬?4o? æó?4o?í?7¶>ñg?7¶>s¹?7¶>ùÀÊ?7¶? æó*++##""//00,,$$ ''&&!!( ))..--%%  =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7µ>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =à[À=åÈ—=à[À>S ž>;=K(R>;=åÈ—>;>S ž>;>‰’ê>0H=K(R>0H=åÈ—>0H>S ž>0H>‰’ê>PU2<•çÉ>PU2=K(R>PU2>‰’ê>PU2>™™x>pbU>ùÀÊ>pbU?ã¬>pbU?ê:>ˆ7µ<•çÉ>ˆ7µ>É­!>ˆ7µ>Ù³¯>ˆ7µ>éº=>ˆ7µ?$ðÇ>¨DÐ<•çÉ>¨DÐ>™™x>¨DÐ>© >¨DÐ>É­!>¨DÐ?,ô>¸Ka>© >ÈQì=K(R>ÈQì>éº=>ÈQì?$ðÇ>ØXy?ã¬>ØXy?ê:>è_ =åÈ—>è_ >ñg>è_ >2þ‚>øe˜>2þ‚?6>S ž? 9X=K(R? 9X=¥®_?<¡=¥®_?<¡>¹¦“??ç<•çÉ??ç=K(R??ç>Ù³¯?$C.=K(R?$C.>¹¦“?$C.>Ù³¯?$C.>éº=?,Ft<•çÉ?,Ft=K(R?,Ft>É­!?,Ft>Ù³¯?,Ft>éº=?4I¼=¥®_?4I¼=åÈ—?4I¼>¹¦“?4I¼>Ù³¯344//..88995500,,))%%!!  ""&&**11667  ##''+  $$((--226>4t>éº=>4t?í>4t?$ðÇ> A‰?ê:> A‰?í> A‰?$ðÇ> A‰?,ô>@N¥>ùÀÊ>@N¥?ê:>@N¥?í>@N¥?$ðÇ>@N¥?,ô>`[Ç? æó>`[Ç?í>`[Ç?$ðÇ     =à[À>s¹=à[À>¹¦“>:û=¥®_>:û>S ž>:û>É­!>:û?ã¬>0H=¥®_>0H>S ž>0H>É­!>0H?ã¬>PU9½5tý>PU9¼U;>PU9<•çÉ>PU9?ê:>PU9?í>PU9?$ðÇ>pbN½šÔµ>pbN?,ô>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M*     =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>PU2½šÔµ>PU2?,ô>pbN½5tý>pbN¼U;>pbN<•çÉ>pbN?ê:>pbN?í>pbN?$ðÇ>ˆ7¸=¥®_>ˆ7¸>S ž>ˆ7¸>É­!>ˆ7¸?ã¬>˜>F=¥®_>˜>F>S ž>˜>F>É­!>˜>F?ã¬>¨DÓ>s¹>¨DÓ>¹¦“     =ÀN²>É­!=ÀN²>Ù³¯=ÀN²? æó=ÀN²?ê:>4n>É­!>4n?ê:>`[Ç>© >`[Ç?$ðÇ>€4n>™™x>€4n?,ô>:û>© >:û?$ðÇ>ÀN¨>É­!>ÀN¨?ê:>ÐU2>É­!>ÐU2>Ù³¯>ÐU2? æó>ÐU2?ê:      >4t>™™x>4t>© >ÀN¥=K(R>ÀN¥?ê:>ÐU2=K(R>ÐU2?ê:?(DÐ>™™x?(DÐ>© >4t½Úîé>4t=K(R>4t=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥½šÔµ>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[ǼU;>`[Ç=K(R>`[Ç=¥®_     >4t>™™x>4t>© ?(DÐ>™™x?(DÐ>© >4t=K(R>4t=¥®_> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>`[Ç=K(R>`[Ç=¥®_ =€4l¾MžÇ=ÀNµ¾MžÇ? A‰?M*?(DÒ?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n>‰’ê>4n>Ù³¯>4n? æó> A>ñg> A>‰’ê> A>Ù³¯> A? æó>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥?ê:>@N¥?í>@N¥?$ðÇ>`[À=K(R>`[À?$ðÇ>:ÿ<•çÉ>:ÿ?,ô>°H<•çÉ>°H?,ô>ÐU6=K(R>ÐU6?$ðÇ>à[Ã=K(R>à[Ã=¥®_>à[Ã=åÈ—>à[Ã?ê:>à[Ã?í>à[Ã?$ðÇ>ðbN>ñg>ðbN>‰’ê>ðbN>Ù³¯>ðbN? æó?4o>ñg?4o>‰’ê?4o>Ù³¯?4o? æó?7¶>™™x?7¶>É­! ""&&''%%  ##$$!!   > A<•çÉ>@N¥? æó>`[À<•çÉ>€4n<•çÉ>€4n?ê:>:ÿ<•çÉ>:ÿ=K(R>:ÿ=¥®_>:ÿ?í> A‰=K(R> A‰?í>°H<•çÉ>°H=K(R>°H=¥®_>°H?,ô>ÀN¨<•çÉ>ÐU6<•çÉ>ðbN<•çÉ    =ÀN¥<•çÉ=ÀN¥=¥®_=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥? æó>4n=åÈ—>4n>S ž>4n>ùÀÊ>4n?ã¬>4n? æó>4n?ê:>4n?í> A>ùÀÊ> A?ã¬> A? æó> A?ê:> A?$ðÇ>@N¥=åÈ—>@N¥>‰’ê>@N¥?ã¬>@N¥? æó>€4n>™™x>€4n?,ô>°H<•çÉ>°H=K(R>°H=¥®_>ÀN¨>¹¦“>ÀN¨?,ô>ÐU6>¹¦“>à[Ã>Ù³¯>à[Ã?$ðÇ>ðbN<•çÉ>ðbN=K(R>ðbN=¥®_>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN? æó>ðbN?í>ðbN?$ðÇ?4o=K(R?4o=¥®_?4o>Ù³¯?4o>ùÀÊ?4o? æó?4o?í?7¶=åÈ—?7¶>2þ‚?7¶>ùÀÊ?7¶? æó     &&,,00//))%++**"$$##!!- (''--.=ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥?ã¬=ÀN¥? æó>4n=¥®_>4n=åÈ—>4n>ñg>4n>2þ‚>4n>S ž>4n>ùÀÊ>4n?ã¬>4n? æó>4n?ê:>4n?í> A=K(R> A=åÈ—> A>ñg> A>2þ‚> A>S ž> A>ùÀÊ> A?ã¬> A? æó> A?ê:> A?$ðÇ>@N¥>ñg>@N¥>2þ‚>@N¥?ã¬>@N¥? æó>€4n<•çÉ>€4n?,ô>:ÿ>É­!>°H>É­!>°H?,ô>ÀN¨<•çÉ>ÀN¨>É­!>ÀN¨?,ô>ÐU6>¹¦“>ÐU6>Ù³¯>ÐU6?$ðÇ>à[Ã=K(R>à[Ã>© >à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã>ùÀÊ>à[Ã?ê:>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>ñg>ðbN>s¹>ðbN>™™x>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>s¹?4o>™™x?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>s¹    ##66<<;;33"-5544* &&,,++%%""))::>>==77..!!29988/$$((1100''!=€4~>S ž>€4n<•çÉ>:ÿ<•çÉ> A‰<•çÉ>°H<•çÉ>°H=K(R>°H=¥®_>°H?ê:>ÀN¨=K(R>ÀN¨?í>ÐU6<•çÉ>ÐU6=K(R>ÐU6=¥®_>ÐU6?,ô>à[Ã<•çÉ>ðbN<•çÉ?4o<•çÉ?:ý>S ž    =ÀN¥>ñg=ÀN¥>2þ‚=ÀN¥>¹¦“>4n=¥®_>4n=åÈ—>4n>ñg>4n>2þ‚>4n>S ž> A=K(R> A=åÈ—> A>ñg> A>2þ‚> A>S ž> A>Ù³¯> A?í> A?$ðÇ> A?,ô>@N¥>ñg>@N¥>2þ‚>€4n<•çÉ>€4n>éº=>:ÿ?í>°H<•çÉ>°H>éº=>ÐU6=K(R>ÐU6>Ù³¯>ÐU6?$ðÇ>à[Ã=K(R>à[Ã=¥®_>à[Ã>É­!>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>2þ‚>ðbN>™™x>ðbN>¹¦“>ðbN?,ô?4o=åÈ—?4o>2þ‚?4o>™™x?4o>¹¦“?7¶>S ž?7¶>‰’ê ''))(($$  "&&%%!!  ##=ÀN¥>S ž=ÀN¥>É­!>4n=åÈ—>4n>S ž>4n>É­!>4n?ã¬> A=åÈ—> A>S ž> A>™™x> A>Ù³¯> A?ã¬> A?ê:>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥? æó>@N¥?ê:>`[À=K(R>`[À>É­!>`[À?í>`[À?$ðÇ>€4n?$ðÇ>:ÿ<•çÉ>:ÿ>Ù³¯> A‰?,ô>°H<•çÉ>°H>Ù³¯>ÐU6=K(R>ÐU6>É­!>ÐU6? æó>ÐU6?ê:>ÐU6?,ô>à[Ã=K(R>à[Ã=¥®_>à[Ã>¹¦“>à[Ã>É­!>à[Ã?ã¬>à[Ã? æó>à[Ã?ê:>à[Ã?í>ðbN=åÈ—>ðbN>2þ‚>ðbN>‰’ê>ðbN>© >ðbN?ã¬>ðbN? æó>ðbN?ê:>ðbN?í>ðbN?$ðÇ?4o=åÈ—?4o>2þ‚?4o>‰’ê?4o>© ?4o? æó?4o?ê:?7¶>S ž?7¶>s¹'&&..//'0((%%--667711   !!22889955$$  )3344, ""**++##=ÀN¥>ùÀÊ=ÀN¥? æó=ÀN¥?,ô>4n?ê:>4n?í> A?í>@N¥?í>@N¥?$ðÇ>@N¥?,ô>€4n<•çÉ>€4n>ñg>€4n?í>€4n?$ðÇ>€4n?,ô>:ÿ<•çÉ>:ÿ>ñg>:ÿ>s¹> A‰<•çÉ> A‰>ñg> A‰>s¹> A‰?í>°H>‰’ê>°H>™™x>°H>© >ÀN¨>© >ÐU6?ê:>ðbN?ê:?4o>ùÀÊ?4o?í?7¶?ê:?7¶?,ô    =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n>ñg>4n>‰’ê>4n>© >4n>ùÀÊ>4n?ê:> A=K(R> A=¥®_> A>ñg> A>‰’ê> A>© > A>¹¦“> A>Ù³¯> A>ùÀÊ> A?ê:> A?$ðÇ>@N¥=K(R>@N¥>¹¦“>@N¥>Ù³¯>@N¥>ùÀÊ>@N¥?ê:>@N¥?$ðÇ>`[À>Ù³¯>`[À?$ðÇ>€4n<•çÉ>€4n>É­!>€4n?,ô>ÀN¨<•çÉ>ÀN¨>É­!>ÀN¨?,ô>ÐU6>Ù³¯>ÐU6?$ðÇ>à[Ã=K(R>à[Ã>¹¦“>à[Ã>Ù³¯>à[Ã>ùÀÊ>à[Ã?ê:>à[Ã?$ðÇ>ðbN=K(R>ðbN=¥®_>ðbN>ñg>ðbN>‰’ê>ðbN>© >ðbN>¹¦“>ðbN>Ù³¯>ðbN>ùÀÊ>ðbN?ê:>ðbN?$ðÇ?4o=¥®_?4o>ñg?4o>‰’ê?4o>© ?4o>ùÀÊ?4o?ê:?7¶>ñg?7¶>‰’ê..667711$//00' %%&&!! ((22889955--  )3344, ""**++##=ÀN¥>éº==ÀN¥>ùÀÊ>4n=åÈ—>4n>ñg>4n>¹¦“>4n>Ù³¯>4n?ã¬>4n?ê:> A=K(R> A=¥®_> A=åÈ—> A>ñg> A>2þ‚> A>¹¦“> A>Ù³¯> A?ã¬> A?ê:>@N¥=¥®_>@N¥=åÈ—>@N¥>ñg>@N¥>2þ‚>@N¥>™™x>@N¥>© >@N¥?í>@N¥?$ðÇ>`[À<•çÉ>`[À=åÈ—>`[À>ñg>`[À>™™x>`[À?$ðÇ>:ÿ>‰’ê>:ÿ?,ô> A‰<•çÉ>°H>‰’ê>°H?,ô>ÀN¨=K(R>ÐU6=K(R>ÐU6=¥®_>ÐU6>™™x>ÐU6?$ðÇ>à[Ã=åÈ—>à[Ã>ñg>à[Ã>© >à[Ã?ê:>à[Ã?í>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>2þ‚>ðbN>‰’ê>ðbN>É­!>ðbN>ùÀÊ>ðbN?ê:?4o>2þ‚?4o>™™x?4o>ùÀÊ?4o?ê:?7¶>™™x?7¶>ùÀÊ  1**&&!!""--77998844..$$   ,336655//("''++2200))%%## >4t=K(R>4t=¥®_>4t>É­!>4t>Ù³¯> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥>éº=>`[Ç=K(R>`[Ç=¥®_>`[Ç>É­!>`[Ç>Ù³¯     >4t½Úîé>4t=K(R>4t=¥®_>4t>É­!>4t>Ù³¯> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>¹¦“> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥½šÔµ>@N¥<•çÉ>@N¥=K(R>@N¥=¥®_>@N¥=åÈ—>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>@N¥>éº=>`[ǼU;>`[Ç=K(R>`[Ç=¥®_>`[Ç>É­!>`[Ç>Ù³¯      >4t>™™x? A‹<•çÉ? A‹?ê:>4t>2þ‚>4t>S ž>4t>Ù³¯>4t>éº=?(DÐ>2þ‚?(DÐ>S ž?(DÐ>Ù³¯?(DÐ>éº=>4t<•çÉ>4t?ê:? A‹>™™x=ÀN¥>ùÀÊ=ÀN¥? æó>4t?ã¬>4t? æó>4t?í> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>`[À?,ô>€4q=K(R>€4q=¥®_>:û<•çÉ>:û=K(R>:û=¥®_>:û=åÈ—>:û>s¹>:û>© > A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰=åÈ—> A‰>s¹> A‰>© >°H=K(R>°H=¥®_>°H?,ô>ÀN¨>¹¦“>ÐU6>É­!>ÐU6?$ðÇ>à[À>É­!>à[À>Ù³¯>à[À>éº=>à[À?ê:>à[À?í>à[À?$ðÇ>ðbQ>Ù³¯>ðbQ>éº=>ðbQ?ê:>ðbQ?í?4o>ùÀÊ?4o? æó""&&((''##!%%$$    =ÀN¦>™™x=ÀN¦>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¨<•çÉ>ÀN¨?ã¬>ÀN¨?,ô>à[À>2þ‚>ðbQ<•çÉ>ðbQ?ã¬>ðbQ?,ô?4o>S ž?7¶>S ž?7¶>‰’ê?7¶>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4k<•çÉ=€4~<•çÉ=ÀN¥=K(R> A<•çÉ> A>S ž>`[À<•çÉ>:ÿ?ê:> A‰?ê:> A‰?,ô>ÀN¨<•çÉ>ÐU6<•çÉ>à[Ã<•çÉ>à[Ã>S ž>ðbN<•çÉ>ðbN=K(R>ðbN=¥®_?4o<•çÉ?4o=¥®_?7¶<•çÉ?:ý<•çÉ?>B<•çÉ     = Aˆ<•çÉ= Aˆ?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H=K(R>0H=¥®_>0H?í>0H?$ðÇ>0H?,ô>PU9=K(R>PU9?$ðÇ>pbN<•çÉ>pbN=K(R>pbN=¥®_>pbN>¹¦“>pbN?í>pbN?$ðÇ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B<•çÉ>˜>B?,ô>è_ <•çÉ>è_ >¹¦“>è_ ?,ô?6=K(R?6>© ?6>É­!?6?$ðÇ? 9Z=K(R? 9Z=¥®_? 9Z=åÈ—? 9Z>‰’ê? 9Z>™™x? 9Z>© ? 9Z>É­!? 9Z>Ù³¯? 9Z>éº=? 9Z?ê:? 9Z?í? 9Z?$ðÇ?<¡=¥®_?<¡>ñg?<¡>s¹?<¡>™™x?<¡>Ù³¯?<¡>ùÀÊ?<¡? æó?<¡?í??ç>ñg??ç>s¹??ç>ùÀÊ??ç? æó  ++33776600&&*2211'))((%%//5544,, $..--!##""  =ÀNµ>‰’ê=ÀNµ>Ù³¯>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰>‰’ê> A‰>Ù³¯> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«>ñg>@N«? æó>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n?$ðÇ> A<•çÉ> A?,ô>ÐU6<•çÉ>ÐU6?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý>ùÀÊ?:ý?,ô     = Aˆ<•çÉ= Aˆ?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H=K(R>0H=¥®_>0H?í>0H?$ðÇ>0H?,ô>PU9=K(R>PU9?$ðÇ>pbN<•çÉ>pbN=K(R>pbN=¥®_>pbN?í>pbN?$ðÇ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B<•çÉ>˜>B?,ô>ÈQì<•çÉ>ÈQì?,ô>è_ =K(R>è_ ?$ðÇ>øe˜=K(R>øe˜?$ðÇ?6=åÈ—?6>ñg?6? æó?6?ê:? 9Z=åÈ—? 9Z>2þ‚? 9Z>‰’ê? 9Z>Ù³¯? 9Z?ã¬? 9Z?ê:?<¡>2þ‚?<¡>‰’ê?<¡>Ù³¯?<¡?ã¬??ç>‰’ê??ç>Ù³¯  ''++--,,((""!&&**))## %%$$  = Aˆ<•çÉ= Aˆ?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H=K(R>0H=¥®_>0H?í>0H?$ðÇ>0H?,ô>PU9=K(R>PU9?$ðÇ>pbN<•çÉ>pbN=K(R>pbN=¥®_>pbN>¹¦“>pbN?í>pbN?$ðÇ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B<•çÉ>˜>B>¹¦“>˜>B?,ô>¸K^>¹¦“>ÈQì>¹¦“>ØX}<•çÉ>ØX}>s¹>ØX}>™™x>ØX}>© >ØX}>¹¦“>ØX}>É­!>ØX}>Ù³¯>ØX}>ùÀÊ>ØX}?,ô>øe˜<•çÉ>øe˜?,ô?6<•çÉ?6?,ô? 9Z<•çÉ? 9Z?,ô?<¡<•çÉ?<¡=K(R?<¡=¥®_?<¡=åÈ—?<¡>S ž?<¡>ùÀÊ?<¡?ê:?<¡?í?<¡?$ðÇ?<¡?,ô  440 #++/  $3&2(1*0#"!,%-'.)/=€4l<•çÉ=€4l?,ô=ÀNµ<•çÉ=ÀNµ?,ô>4n<•çÉ>4n?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?$ðÇ> A‰?,ô>@N«=K(R>@N«?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>¹¦“>`[À?í>`[À?$ðÇ>`[À?,ô>€4n<•çÉ>€4n?,ô>:û<•çÉ>:û>¹¦“>:û?,ô> A<•çÉ>°H>¹¦“>ÀN¥>¹¦“>ÐU6>s¹>ÐU6>™™x>ÐU6>© >ÐU6>¹¦“>ÐU6>É­!>ÐU6>Ù³¯>ÐU6>ùÀÊ>ÐU6?,ô>ðbQ?,ô?4n?,ô?7¶?,ô?:ý>ùÀÊ?:ý?ê:?:ý?í?:ý?$ðÇ?:ý?,ô  ,,( #  $+%*&)'(#"!= A™>‰’ê= A™>Ù³¯=à[À>2þ‚=à[À>‰’ê=à[À>Ù³¯=à[À?ã¬>:û=åÈ—>:û>2þ‚>:û>‰’ê>:û>Ù³¯>:û?ã¬>:û?ê:>0H=åÈ—>0H>ñg>0H? æó>0H?ê:>PU2=K(R>PU2?$ðÇ>pbN=K(R>pbN?$ðÇ>˜>F<•çÉ>˜>F?,ô>ÈQï<•çÉ>ÈQï>‰’ê>ÈQï?,ô>ØX}>‰’ê>è_ =K(R>è_ >‰’ê>è_ ?$ðÇ>øe•=¥®_>øe•>S ž>øe•>s¹>øe•>‰’ê?6=K(R?6=¥®_?6>s¹?6?ê:? 9Z<•çÉ? 9Z>S ž? 9Z>s¹? 9Z>‰’ê? 9Z>ùÀÊ? 9Z?,ô?<¡>‰’ê??æ>‰’ê?$C.>‰’ê$**))$$ !!%%(    #" -+&,'=€4o<•çÉ=€4o?,ô=ÀN¥<•çÉ=ÀN¥?,ô>4t<•çÉ>4t?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?$ðÇ> A‰?,ô>@N¥=K(R>@N¥?$ðÇ>`[Ç<•çÉ>`[Ç=K(R>`[Ç=¥®_>`[Ç>¹¦“>`[Ç?í>`[Ç?$ðÇ>`[Ç?,ô>€4n<•çÉ>€4n?,ô>:û<•çÉ>:û?,ô> A‰<•çÉ> A‰?,ô>à[Ã<•çÉ>à[Ã?,ô>ðbQ<•çÉ>ðbQ?,ô?4o<•çÉ?4o?,ô?7µ<•çÉ?7µ=K(R?7µ=¥®_?7µ>¹¦“?7µ?í?7µ?$ðÇ?7µ?,ô?:ý=K(R?:ý?$ðÇ?>D<•çÉ?>D=K(R?>D=¥®_?>D?í?>D?$ðÇ?>D?,ô? A‹<•çÉ? A‹?,ô?(DÐ<•çÉ?(DÐ?,ô?0H<•çÉ?0H?,ô  '!)(/*5$4  & %1-3."#,0+2=€4n<•çÉ=€4n?,ô=ÀN¥<•çÉ=ÀN¥?,ô>4n<•çÉ>4n?,ô> A<•çÉ> A=K(R> A=¥®_> A?í> A?$ðÇ> A?,ô>@N¥=K(R>@N¥?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À?í>`[À?$ðÇ>`[À?,ô>€4q<•çÉ>€4q?,ô>:ÿ<•çÉ>:ÿ?,ô> A<•çÉ> A?,ô    ¹I¹=åÈ—¹I¹>2þ‚<ýóì=K(R<ýóì=åÈ—<ýóì>ñg<ýóì>2þ‚<ýóì>S ž=.I=åÈ—=.I>ñg=.I>2þ‚=.I>S ž=¿±Z<•çÉ=¿±Z>ñg=¿±Z>2þ‚=ÿË’?,ô>òë<•çÉ>òë?,ô>@=K(R>@?,ô>` =K(R>` >ñg>` ?í>` ?$ðÇ>` ?,ô>€ =K(R>€ >ñg>€ ?$ðÇ>­>ñg>­?í>­?$ðÇ>­?,ô> :?,ô>° Å?,ô>À'V?,ô   ! =@N§<•çÉ=@N§?,ô= Aˆ<•çÉ= Aˆ?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û=K(R>:û=¥®_>:û?í>:û?$ðÇ>:û?,ô>0H=K(R>0H?$ðÇ>PU9<•çÉ>PU9=K(R>PU9=¥®_>PU9>™™x>PU9?í>PU9?$ðÇ>PU9?,ô>pbN<•çÉ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B<•çÉ>˜>B>¹¦“>˜>B?,ô>¨DÓ>¹¦“>¨DÓ>Ù³¯>ØX}<•çÉ>è_ <•çÉ>è_ ?,ô?6<•çÉ?6=¥®_?6?,ô? 9Z<•çÉ? 9Z?$ðÇ?<¡<•çÉ??ç<•çÉ??ç?,ô?$C-<•çÉ?$C-?,ô  %!$& *)  #%(%""'=@N¥<•çÉ=@N¥?,ô= A‹<•çÉ= A‹?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û=K(R>:û=¥®_>:û?í>:û?$ðÇ>:û?,ô>0H=K(R>0H?$ðÇ>PU2<•çÉ>PU2=K(R>PU2=¥®_>PU2?í>PU2?$ðÇ>PU2?,ô>pbU<•çÉ>pbU?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B?,ô>¸Ka<•çÉ>ØXy<•çÉ>è_ <•çÉ>øe˜<•çÉ?6<•çÉ?6=K(R?6=¥®_?6=åÈ—?6>S ž  !   !=€4o<•çÉ=€4o?,ô=ÀN¦<•çÉ=ÀN¦?,ô> A=K(R> A?$ðÇ> A?,ô>@N¥?,ô>`[À<•çÉ>`[À?,ô>€4q<•çÉ>ÀN¨<•çÉ>ÀN¨=åÈ—>ÐU2=åÈ—?4o<•çÉ?7¶<•çÉ?:û<•çÉ?>D<•çÉ?>D=K(R?>D=¥®_?>D?,ô? A‹=K(R? A‹?$ðÇ?(DÒ<•çÉ?(DÒ=K(R?(DÒ=¥®_?(DÒ?í?(DÒ?$ðÇ?(DÒ?,ô?0H<•çÉ?0H?,ô?8K_<•çÉ?8K_?,ô?@N¦<•çÉ?@N¦?,ô    " ! =€4o<•çÉ=€4o?,ô=ÀN¥<•çÉ=ÀN¥?,ô> A‰=K(R> A‰?$ðÇ> A‰?,ô>@N¥?,ô>`[Ç<•çÉ>`[Ç?,ô>€4n<•çÉ?4o?,ô?7µ?,ô?:ý=åÈ—?>D<•çÉ?>D=åÈ—?>D?$ðÇ?(DÐ?,ô?0H?,ô    =ÀNµ>™™x=ÀNµ>É­!>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰>‰’ê> A‰>Ù³¯> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«>ñg>@N«? æó>@N«?ê:>`[À=K(R>`[À?$ðÇ>€4n=K(R>€4n?$ðÇ> A<•çÉ> A?,ô>ÀN¥<•çÉ>ÀN¥?,ô>à[Ã=K(R>à[Ã?$ðÇ>ðbQ=K(R>ðbQ?$ðÇ?4n=åÈ—?4n>ñg?4n? æó?4n?ê:?7¶=åÈ—?7¶>2þ‚?7¶>‰’ê?7¶>Ù³¯?7¶?ã¬?7¶?ê:?:ý>2þ‚?:ý>‰’ê?:ý>Ù³¯?:ý?ã¬?>D>™™x?>D>É­!  &&**++))%%  !!''(($$  ""##= Aˆ<•çÉ= Aˆ?,ô=à[Î<•çÉ=à[Î?,ô>:û<•çÉ>:û?,ô>0H<•çÉ>0H=K(R>0H=¥®_>0H?í>0H?$ðÇ>0H?,ô>PU9=K(R>PU9?$ðÇ>pbN<•çÉ>pbN=K(R>pbN=¥®_>pbN>© >pbN?í>pbN?$ðÇ>pbN?,ô>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B<•çÉ>˜>B?,ô>¨DÓ<•çÉ>è_ >© >è_ ?,ô?6>¹¦“?6?$ðÇ? 9Z>¹¦“? 9Z>É­!? 9Z>Ù³¯? 9Z?ê:? 9Z?í? 9Z?$ðÇ?<¡>É­!?<¡>éº=?<¡? æó?<¡?í??ç>éº=??ç? æó  ##''))(($$"&&%%!!   =ÀNµ>™™x=ÀNµ>É­!>4n>2þ‚>4n>‰’ê>4n>Ù³¯>4n?ã¬> A‰=åÈ—> A‰>2þ‚> A‰>‰’ê> A‰>Ù³¯> A‰?ã¬> A‰?ê:>@N«=åÈ—>@N«>ñg>@N«? æó>@N«?ê:>`[À=K(R>`[À=åÈ—>`[À?$ðÇ>€4n=K(R>€4n>2þ‚>€4n?$ðÇ> A<•çÉ> A>S ž> A?,ô>°H>S ž>ÀN¥<•çÉ>ÀN¥?,ô>ÐU6>2þ‚>à[Ã=K(R>à[Ã=åÈ—>à[Ã?$ðÇ>ðbQ½šÔµ>ðbQ¼U;>ðbQ=K(R>ðbQ?$ðÇ?4n¾ „?4n½šÔµ?4n½5tý?4n=åÈ—?4n>ñg?4n? æó?4n?ê:?7¶½Úîé?7¶½šÔµ?7¶=åÈ—?7¶>2þ‚?7¶>‰’ê?7¶>Ù³¯?7¶?ã¬?7¶?ê:?:ý¾ „?:ý½Úîé?:ý½šÔµ?:ý>2þ‚?:ý>‰’ê?:ý>Ù³¯?:ý?ã¬?>D½šÔµ?>D½5tý?>D¼U;?>D>™™x?>D>É­! ""--66==>>9922##  '..778811*  ((//00)) $$33::<!%%++4&&,,55;=€4l<•çÉ=€4l?,ô=ÀNµ<•çÉ=ÀNµ?,ô>4n<•çÉ>4n?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?$ðÇ> A‰?,ô>@N«=K(R>@N«?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>¹¦“>`[À?í>`[À?$ðÇ>`[À?,ô>€4n<•çÉ>€4n?,ô>:û<•çÉ>:û?,ô> A<•çÉ>°H>¹¦“>ÐU6>© >à[Ã>‰’ê>à[Ã>™™x>à[Ã>¹¦“>à[Ã?,ô?4n=¥®_?4n>ñg?4n>É­!?4n?$ðÇ?7¶<•çÉ?7¶=¥®_?7¶=åÈ—?7¶>É­!?7¶>Ù³¯?7¶>éº=?7¶?ê:?7¶?í?7¶?$ðÇ?:ý=K(R?:ý=¥®_?:ý>Ù³¯?:ý>ùÀÊ?:ý? æó?:ý?í?>D<•çÉ?>D=K(R?>D=¥®_?>D>ùÀÊ?>D? æó? A‰=¥®_? A‰=åÈ—? A‰>ñg  ,,227766//''+1100(##**))"" $$3388:!%%--4&&..559  =ÀN¥<•çÉ=ÀN¥>S ž=ÀN¥>ùÀÊ=ÀN¥?ê:>4n=åÈ—>4n>Ù³¯>4n>ùÀÊ>4n?ã¬>4n?ê:> A>Ù³¯> A>éº=> A?$ðÇ>@N¥=K(R>`[À>¹¦“>`[À>É­!>`[À>Ù³¯>€4n?,ô>:ÿ<•çÉ>°H?,ô>ÀN¨<•çÉ>ÐU6>™™x>ÐU6>© >ÐU6>¹¦“>à[Ã?$ðÇ>ðbN=K(R>ðbN>‰’ê>ðbN>™™x?4o=¥®_?4o=åÈ—?4o>S ž?4o>s¹?4o>™™x?4o?ê:?7¶>ñg?7¶>s¹?7¶>ùÀÊ?7¶?,ô $$##      ""!! =€4~>ùÀÊ=€4~?ê:=€4~?í=€4~?$ðÇ=€4~?,ô=ÀN¥?,ô>4n?,ô> A?,ô>@N¥<•çÉ>`[À<•çÉ>`[À?,ô>€4n<•çÉ>:ÿ<•çÉ>:ÿ=K(R>:ÿ=¥®_>:ÿ?,ô> A‰=K(R> A‰?$ðÇ>°H<•çÉ>°H=K(R>°H=¥®_>°H?,ô>ÀN¨<•çÉ>ÐU6<•çÉ>ÐU6?,ô>à[Ã<•çÉ>ðbN?,ô?4o?,ô?7¶?,ô?:ý>ùÀÊ?:ý?ê:?:ý?í?:ý?$ðÇ?:ý?,ô !!    =€4o?,ô=ÀN¥?,ô>4t?,ô> A‰>S ž> A‰?í> A‰?$ðÇ> A‰?,ô>@N¥=åÈ—>@N¥>2þ‚>@N¥?$ðÇ>`[Ç=åÈ—>`[Ç>2þ‚>`[Ç?í>`[Ç?$ðÇ>`[Ç?,ô>€4n=K(R>€4n=¥®_>€4n?,ô>:û=K(R>:û?,ô> A‰?,ô>°H<•çÉ>ÐU2<•çÉ?4o=K(R?4o?,ô?7µ?,ô?:ý=åÈ—?>D>S ž?>D?$ðÇ?(DÐ?,ô?0H?,ô     =4k?,ô=€4~?,ô=ÀN¥?,ô>4n?í>4n?,ô> A?í> A?$ðÇ> A?,ô>@N¥?,ô>`[À?,ô>€4n?,ô> A‰<•çÉ> A‰=åÈ—>°H=åÈ—>ÐU6?,ô>ðbN?,ô?7¶?$ðÇ?:ý?,ô?>B?,ô     =4p?,ô=€4o?,ô=ÀN¥?,ô>4t?,ô> A‰?í> A‰?$ðÇ> A‰?,ô>@N¥?í>@N¥?$ðÇ>@N¥?,ô>`[Ç?,ô>€4n<•çÉ>€4n>2þ‚>€4n?,ô>:û>2þ‚>:û?,ô>ÀN¥?,ô>ÐU2?,ô>à[Ã?,ô?4o<•çÉ?4o>2þ‚?7µ>2þ‚?7µ?,ô?:ý?,ô? A‹?$ðÇ?0H?,ô?8K_?,ô     =4k<•çÉ=4k?,ô=€4~<•çÉ=€4~?,ô=ÀN¥?,ô>4n=K(R>4n?,ô> A?í> A?$ðÇ> A?,ô>@N¥<•çÉ>@N¥?,ô>`[À<•çÉ>`[À?,ô>€4n?,ô>ÀN¨<•çÉ>ÐU6<•çÉ>ÐU6?,ô>à[Ã<•çÉ>à[Ã?,ô>ðbN<•çÉ>ðbN=K(R>ðbN=¥®_?4o<•çÉ?4o?$ðÇ?7¶<•çÉ?:ý<•çÉ?:ý?,ô?>B<•çÉ?>B?,ô     =4p?,ô=€4l?,ô=ÀNµ?,ô>4n?$ðÇ>4n?,ô> A‰?$ðÇ> A‰?,ô>`[À<•çÉ>`[À?,ô>€4n<•çÉ>€4n?,ô>:û<•çÉ> A<•çÉ> A=K(R> A=¥®_> A>© >°H=K(R>°H>© >ÀN¥<•çÉ>ÀN¥=K(R>ÀN¥=¥®_>ÀN¥>© >ÐU6<•çÉ>à[Ã<•çÉ>ðbQ<•çÉ>ðbQ?,ô?4n?,ô?:ý?$ðÇ? A‰?,ô?(DÒ?,ô    =ÀN¥<•çÉ=ÀN¥>ùÀÊ=ÀN¥?ê:=ÀN¥?í=ÀN¥?$ðÇ=ÀN¥?,ô>4n<•çÉ>4n?,ô> A<•çÉ> A?,ô>@N¥?,ô>€4n?,ô>ÀN¨<•çÉ>à[Ã<•çÉ>ðbN<•çÉ>ðbN?,ô?4o<•çÉ?4o?,ô?7¶<•çÉ?7¶=K(R?7¶=¥®_?7¶=åÈ—?7¶>S ž?7¶?,ô     =à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>F¾MžÇ>˜>F?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4n<•çÉ>€4n? æó>€4n?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4t>ùÀÊ>4t?ã¬>4t?ê:> A‰>éº=> A‰>ùÀÊ> A‰?ã¬> A‰? æó> A‰?$ðÇ>@N¥>éº=>@N¥>ùÀÊ>@N¥?ã¬>@N¥? æó>`[Ç>ùÀÊ>`[Ç?ã¬>`[Ç?,ô  = A‹=åÈ—= A‹>ñg=à[Î=K(R=à[Î=åÈ—=à[Î>ñg=à[Î>S ž=à[Î>© =à[Î>É­!>:û=K(R>:û=åÈ—>:û>ñg>:û>S ž>:û>¹¦“>:û>É­!>:û>Ù³¯>0H=K(R>0H>S ž>0H>© >0H>É­!>PU2<•çÉ>PU2>s¹>PU2>éº=>pbU>s¹>˜>B<•çÉ>¨DÓ>éº=>¸Ka=K(R>¸Ka>‰’ê>¸Ka>Ù³¯>ÈQï=åÈ—>ÈQï>™™x>ÈQï>¹¦“>ÈQï>É­!>ÈQï>Ù³¯>ØXy=K(R>ØXy=åÈ—>ØXy>© >ØXy>É­!>è_ =K(R>è_ =åÈ—>è_ >© >øe˜=K(R?6<•çÉ? 9X<•çÉ  $$''&&(()##""%!!))*  = Aˆ?,ô=à[Î?,ô>:û?,ô>0H<•çÉ>0H?í>0H?$ðÇ>0H?,ô>PU9=K(R>PU9=¥®_>PU9?$ðÇ>pbN=K(R>pbN=åÈ—>pbN>¹¦“>pbN?,ô>ˆ7µ=K(R>ˆ7µ>Ù³¯>¨DÓ<•çÉ>¨DÓ>éº=>ÈQì<•çÉ>ÈQì>éº=>è_ =K(R>è_ >Ù³¯>øe˜=K(R>øe˜=¥®_>øe˜>É­!>øe˜>Ù³¯?6=åÈ—?6>2þ‚?6>™™x?6>¹¦“? 9Z=åÈ—? 9Z>2þ‚? 9Z>™™x? 9Z>¹¦“?<¡>S ž?<¡>‰’ê  !!##""  =ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>2þ‚>4n>™™x>4n>¹¦“> A=åÈ—> A>2þ‚> A>™™x> A>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>°H<•çÉ>ÀN¨>éº=>à[Ã=K(R>à[Ã>™™x>à[Ã>¹¦“>à[Ã>Ù³¯>ðbN>© >ðbN>¹¦“?4o=åÈ—?4o>™™x?4o>¹¦“     = A‹>S ž= A‹>‰’ê=à[À=åÈ—=à[À>2þ‚=à[À>™™x=à[À>¹¦“>;=åÈ—>;>2þ‚>;>™™x>;>¹¦“>0H=K(R>0H=¥®_>0H>É­!>0H>Ù³¯>PU2=K(R>PU2>Ù³¯>ˆ7¸<•çÉ>ˆ7¸>éº=>¨DÐ<•çÉ>¨DÐ>éº=>¨DÐ?,ô>¸Ka?,ô>ÈQï=K(R>ÈQï>Ù³¯>ÈQï?,ô>ØX}<•çÉ>ØX}=åÈ—>ØX}>¹¦“>ØX}?í>ØX}?$ðÇ>ØX}?,ô>è_=K(R>è_?$ðÇ>øe˜<•çÉ>øe˜=K(R>øe˜=¥®_>øe˜?,ô?6<•çÉ? 9Z<•çÉ?<Ÿ<•çÉ' $$!     #%"&=ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>2þ‚>4n>™™x>4n>¹¦“> A=åÈ—> A>2þ‚> A>‰’ê> A>™™x> A>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>°H<•çÉ>°H>éº=>ÐU6>Ù³¯>à[Ã=K(R>à[Ã>‰’ê>à[Ã>¹¦“>à[Ã>É­!>à[Ã>Ù³¯>ðbN>™™x>ðbN>© >ðbN>É­!?4o=åÈ—?4o>‰’ê?4o>©      =@NÀ<•çÉ=@NÀ>éº== A‹<•çÉ=à[À<•çÉ>:û<•çÉ>:û=K(R>:û=¥®_>:û?ã¬>0H=K(R>0H?ã¬>0H?í>PU2<•çÉ>PU2=K(R>PU2=¥®_>PU2?ê:>PU2?í>PU2?$ðÇ>pbN<•çÉ>pbN?$ðÇ>ˆ7¸<•çÉ>ˆ7¸?,ô>˜>F<•çÉ>¨DÓ>éº=>¨DÓ?ê:>¨DÓ?$ðÇ>¸K^?í>¸K^?$ðÇ>¸K^?,ô>ÈQï?ê:>ÈQï?$ðÇ     =€4n½Úîé=€4n½šÔµ=ÀN¥¾-‘¬=ÀN¥½Úîé=ÀN¥½šÔµ=ÀN¥¼U;=ÀN¥=¥®_=ÀN¥=åÈ—>4t¾-‘¬>4t¼U;>4t<•çÉ>4t=K(R>4t>2þ‚>4t>‰’ê>4t>© > A‰¼U;> A‰<•çÉ> A‰>S ž> A‰>‰’ê> A‰>© > A‰>É­!>@N¥¾MžÇ>@N¥<•çÉ>@N¥>2þ‚>@N¥>S ž>@N¥>s¹>@N¥>¹¦“>@N¥>É­!>@N¥>Ù³¯>`[À<•çÉ>`[À>2þ‚>`[À>Ù³¯>€4q½5tý>€4q¼U;>€4q>ñg>€4q>éº=> A‰>ñg> A‰>éº=>°H>2þ‚>°H>Ù³¯>ÀN¨¾MžÇ>ÀN¨½5tý>ÀN¨¼U;>ÀN¨<•çÉ>ÀN¨>2þ‚>ÀN¨>S ž>ÀN¨>s¹>ÀN¨>¹¦“>ÀN¨>É­!>ÀN¨>Ù³¯>ÐU6>S ž>ÐU6>‰’ê>ÐU6>© >ÐU6>É­!>ÐU6>Ù³¯>à[À>‰’ê>à[À>© >ðbQ¾-‘¬>ðbQ½šÔµ>ðbQ½5tý>ðbQ¼U;>ðbQ>Ù³¯>ðbQ>éº=?4o½Úîé?4o½šÔµ?4o>É­!?4o>éº=?7¶>Ù³¯=AACCBB>>660# ""$$,,2277885511%%#-33440#"$&&..//''%   ))::?!!**; ++<<@@??99(( =€4l<•çÉ=€4l?,ô=ÀNµ<•çÉ=ÀNµ?,ô>4n<•çÉ>4n?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?$ðÇ> A‰?,ô>@N«=K(R>@N«?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>© >`[À?,ô>€4n<•çÉ>€4n>É­!>:û<•çÉ>:û>Ù³¯> A<•çÉ>°H>éº=>ÐU6<•çÉ>à[Ã<•çÉ>à[Ã>éº=>ðbQ<•çÉ>ðbQ>Ù³¯?4n<•çÉ?4n=K(R?4n=¥®_?4n>© ?4n>É­!?4n>Ù³¯?7¶=K(R?7¶>™™x?7¶>É­!?:ý<•çÉ?:ý=K(R?:ý=¥®_?:ý>™™x?>D<•çÉ? A‰<•çÉ?(DÒ<•çÉ  ##&&**'"%%$!!-   )+(,=€4n<•çÉ=€4n>éº==ÀN¥<•çÉ=ÀN¥>éº=>4n<•çÉ>4n>éº=> A<•çÉ> A=K(R> A=¥®_> A>É­!> A>Ù³¯> A>éº=> A?í> A?$ðÇ> A?,ô>@N¥=K(R>@N¥>Ù³¯>@N¥?í>@N¥?,ô>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>éº=>`[À?í>`[À?$ðÇ>`[À?,ô>€4q<•çÉ>:ÿ<•çÉ> A<•çÉ     = A‰¾-‘¬= A‰½Úîé=à[ξMžÇ=à[ξ-‘¬=à[ξ „>:û¾-‘¬>:û½Úîé>0H>éº=>PU2¾MžÇ>PU2>éº=>pbU¾-‘¬>pbU>éº=>ˆ7µ¾-‘¬>ˆ7µ¾ „>ˆ7µ½šÔµ>ˆ7µ>É­!>ˆ7µ>Ù³¯>ˆ7µ>éº=>ˆ7µ?í>ˆ7µ?$ðÇ>ˆ7µ?,ô>˜>B¾ „>˜>B½5tý>˜>B>Ù³¯>˜>B?í>˜>B?,ô>¨DÓ½5tý>¨DÓ>éº=>¨DÓ?í>¨DÓ?$ðÇ>¨DÓ?,ô     =€4l<•çÉ=€4l?,ô=ÀNµ<•çÉ=ÀNµ?,ô>4n<•çÉ>4n?,ô> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰?í> A‰?$ðÇ> A‰?,ô>@N«=K(R>@N«?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>ñg>`[À?,ô>€4n<•çÉ>:û<•çÉ> A<•çÉ> A>s¹>°H>s¹>°H>‰’ê>ÐU6<•çÉ>ÐU6>éº=>à[Ã<•çÉ>à[Ã>éº=>ðbQ=¥®_?4n<•çÉ?4n=¥®_?4n>Ù³¯?7¶<•çÉ?:ý<•çÉ?>D<•çÉ?>D>éº=? A‰<•çÉ? A‰>éº=   "!&%   $ #=€4n<•çÉ=€4n?,ô=ÀN¥<•çÉ=ÀN¥?,ô>4n<•çÉ>4n?,ô> A<•çÉ> A=K(R> A=¥®_> A?í> A?$ðÇ> A?,ô>@N¥=K(R>@N¥?$ðÇ>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À?,ô>€4q<•çÉ>:ÿ<•çÉ> A<•çÉ    =€4z<•çÉ=€4z>éº==ÀN²<•çÉ=ÀN²>éº=>4n<•çÉ>4n>éº=> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>© >`[À>éº=>€4n<•çÉ>€4n>É­!>:ÿ<•çÉ>:ÿ>Ù³¯> A‰<•çÉ>°H>éº=>ÐU2<•çÉ>à[À<•çÉ>à[À>éº=>ðbN<•çÉ>ðbN>Ù³¯?4o<•çÉ?4o=K(R?4o=¥®_?4o>© ?4o>É­!?4o>Ù³¯?7µ=K(R?7µ>™™x?7µ>É­!?:û<•çÉ?:û=K(R?:û=¥®_?:û>™™x?:û>© ?>D<•çÉ?>D>É­!? A‹<•çÉ? A‹>Ù³¯?(DÒ<•çÉ?0H>éº=?@N¦<•çÉ?HQí<•çÉ?HQí>éº=?PU2<•çÉ?PU2>Ù³¯?XX{<•çÉ?XX{=K(R?XX{=¥®_?XX{>© ?XX{>É­!?XX{>Ù³¯?`[Â=K(R?`[Â>™™x?`[Â>É­!?h_<•çÉ?h_=K(R?h_=¥®_?h_>™™x?pbP<•çÉ?xe–<•çÉ?€4n<•çÉ  ##&&**'"%%$!!+--//1144<<??CC@;>>=466::702F   ),(.8395BDAE=€4l<•çÉ=€4l>éº==ÀNµ<•çÉ=ÀNµ>éº=>4n<•çÉ>4n>éº=> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N«=K(R>@N«>Ù³¯>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>© >`[À>éº=>€4n<•çÉ>€4n>É­!>:û<•çÉ>:û>Ù³¯> A<•çÉ>°H>éº=>ÐU6<•çÉ>à[Ã<•çÉ>à[Ã>éº=>ðbQ<•çÉ>ðbQ>Ù³¯?4n<•çÉ?4n=K(R?4n=¥®_?4n>© ?4n>É­!?4n>Ù³¯?7¶=K(R?7¶>™™x?7¶>É­!?:ý<•çÉ?:ý=K(R?:ý=¥®_?:ý>™™x?>D<•çÉ? A‰<•çÉ?(DÒ<•çÉ  ##&&**'"%%$!!-   )+(,=ÀN¥>S ž=ÀN¥>‰’ê>4n=åÈ—>4n>2þ‚>4n>™™x>4n>¹¦“> A=åÈ—> A>2þ‚> A>™™x> A>¹¦“>@N¥=K(R>@N¥=¥®_>@N¥>É­!>@N¥>Ù³¯>`[À=K(R>`[À>Ù³¯>:ÿ<•çÉ>:ÿ>éº=>°H<•çÉ>°H>éº=>ÐU6=K(R>ÐU6>Ù³¯>à[Ã=K(R>à[Ã=¥®_>à[Ã>É­!>à[Ã>Ù³¯>ðbN=åÈ—>ðbN>2þ‚>ðbN>™™x>ðbN>¹¦“?4o=åÈ—?4o>2þ‚?4o>™™x?4o>¹¦“?7¶>S ž?7¶>‰’ê  ""##!!    = Aˆ¾MžÇ= Aˆ>éº==à[ξMžÇ=à[Î>éº=>:û¾MžÇ>:û>éº=>0H¾MžÇ>0H¾-‘¬>0H¾ „>0H>É­!>0H>Ù³¯>0H>éº=>PU9¾-‘¬>PU9>Ù³¯>pbN¾MžÇ>pbN¾-‘¬>pbN¾ „>pbN=åÈ—>pbN>¹¦“>pbN>éº=>ˆ7µ¾MžÇ>ˆ7µ=K(R>ˆ7µ>Ù³¯>˜>B¾MžÇ>¨DÓ¾MžÇ>¨DÓ<•çÉ>¨DÓ>éº=>ÈQì<•çÉ>ÈQì>éº=>è_ =K(R>è_ >Ù³¯>øe˜=K(R>øe˜=¥®_>øe˜>É­!>øe˜>Ù³¯?6=åÈ—?6>2þ‚?6>™™x?6>¹¦“? 9Z=åÈ—? 9Z>2þ‚? 9Z>™™x? 9Z>¹¦“?<¡>S ž?<¡>‰’ê  ""**,,++''&))((#!!%%$$   =€4n>S ž=€4n>‰’ê=ÀN¥=åÈ—=ÀN¥>2þ‚=ÀN¥>™™x=ÀN¥>¹¦“>4t=åÈ—>4t>2þ‚>4t>™™x>4t>¹¦“> A‰=K(R> A‰=¥®_> A‰>É­!> A‰>Ù³¯>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=> A‰¾MžÇ> A‰<•çÉ> A‰>éº=>°H¾MžÇ>ÀN¨¾MžÇ>ÀN¨=K(R>ÀN¨>Ù³¯>ÐU6¾MžÇ>ÐU6¾-‘¬>ÐU6¾ „>ÐU6=åÈ—>ÐU6>¹¦“>ÐU6>Ù³¯>à[À¾-‘¬>à[À>É­!>à[À>Ù³¯>ðbQ¾MžÇ>ðbQ¾-‘¬>ðbQ¾ „>ðbQ>éº=?4o¾MžÇ?7¶¾MžÇ?:û¾MžÇ !!%%"     ($&#'=€4n<•çÉ=€4n>éº==ÀN¥<•çÉ=ÀN¥>éº=>4t<•çÉ>4t>éº=> A‰<•çÉ> A‰=K(R> A‰=¥®_> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>`[À<•çÉ>`[À=K(R>`[À=¥®_>`[À>‰’ê>`[À>éº=>€4q<•çÉ>€4q>¹¦“>:û<•çÉ> A‰<•çÉ> A‰>Ù³¯>ÀN¨>éº=>ÐU6>¹¦“>ÐU6>Ù³¯>à[À>É­!>à[À>Ù³¯>à[À>éº=>ðbQ>¹¦“>ðbQ>Ù³¯    =ÀN²<•çÉ=ÀN²>ñg=ÀN²>© =ÀN²>É­!>4n=¥®_>4n>‰’ê>4n>™™x>4n>© >4n>Ù³¯> A‰=K(R>@N¥>s¹>@N¥>‰’ê>@N¥>™™x>@N¥>éº=>`[Ç<•çÉ> A>éº=>°H<•çÉ>°H>S ž>°H>s¹>°H>‰’ê>ÀN¨>Ù³¯>ÐU2=K(R>ÐU2>2þ‚>ÐU2>S ž>ÐU2>s¹>ÐU2>É­!>à[Ã=¥®_>à[Ã>2þ‚>à[Ã>© >à[Ã>éº=     =@NÀ>éº=>:û>2þ‚>:û?í>0H=¥®_>0H>ñg>0H?í>PU2=K(R>PU2=¥®_>PU2>ñg>PU2?,ô>pbN=K(R>ˆ7¸<•çÉ>¨DÓ<•çÉ>¨DÓ>éº=>ÈQï=K(R>ØX}=åÈ—   =€4l>éº==ÀNµ>éº=>4n>éº=> A‰>2þ‚> A‰>É­!> A‰>Ù³¯> A‰>éº=>@N«=¥®_>@N«>ñg>@N«>Ù³¯>`[À=K(R>`[À=¥®_>`[À>ñg>`[À>éº=>€4n=K(R>:û<•çÉ>ÀN¥<•çÉ>ÐU6>éº=>à[Ã=K(R>ðbQ=¥®_?4n<•çÉ?4n>ñg?4n>éº=?7¶=K(R?7¶>Ù³¯?:ý<•çÉ?:ý=K(R?:ý=¥®_?:ý>éº=?>D<•çÉ? A‰<•çÉ?(DÒ<•çÉ   =4Ž>éº==€4n>éº==ÀN¥>éº=>4t>éº=> A‰>É­!> A‰>Ù³¯> A‰>éº=>`[À>éº=>€4q>éº=>:û<•çÉ>:û=¥®_> A‰=¥®_>°H>éº=>ÐU6>éº=>ðbQ>Ù³¯?4o>éº=?7¶>éº=      =4p>éº==€4o>éº=>4t>éº=> A‰>Ù³¯> A‰>éº=>@N¥>Ù³¯>@N¥>éº=>€4n<•çÉ>€4n=åÈ—>€4n>éº=>:û=åÈ—>:û>éº=>ÀN¥>éº=>ÐU2>éº=>à[Ã>éº=?4o<•çÉ?4o=åÈ—?7µ=åÈ—?7µ>éº=?:ý>éº=? A‹>Ù³¯?0H>éº=?8K_>éº=      =€4~<•çÉ=€4~>éº==ÀN¥<•çÉ=ÀN¥>éº=>4n>éº=> A=K(R> A>Ù³¯> A>éº=>@N¥>Ù³¯>@N¥>éº=>`[À<•çÉ>€4n<•çÉ>€4n>éº=>:ÿ>éº=>°H<•çÉ>ÀN¨<•çÉ>ÀN¨>éº=>ÐU6>éº=>à[Ã<•çÉ>à[Ã=K(R>ðbN<•çÉ>ðbN=K(R>ðbN>Ù³¯?4o<•çÉ?7¶<•çÉ?7¶>éº=?:ý<•çÉ?:ý>éº=     =4k¾-‘¬=4k½Úîé=€4~¾MžÇ=€4~¾-‘¬=€4~¾ „=€4~>éº==ÀN¥¾-‘¬=ÀN¥½Úîé=ÀN¥>éº=>4n¾MžÇ>4n>éº=> A>éº=>@N¥¾-‘¬>@N¥>É­!>@N¥>Ù³¯>@N¥>éº=>€4n½Úîé>€4n>éº=>:ÿ>éº=> A‰<•çÉ> A‰=¥®_>°H=¥®_>ÀN¨>éº=>à[Ã>éº=?4o>Ù³¯?7¶>éº=?:ý>éº=    =ÀN¥<•çÉ=ÀN¥>© =ÀN¥>¹¦“=ÀN¥>É­!=ÀN¥>Ù³¯=ÀN¥>éº=>4t<•çÉ>4t>éº=> A‰<•çÉ> A‰>éº=>@N¥>éº=>€4q>éº=> A‰<•çÉ>ÀN¨<•çÉ>ÐU6<•çÉ>ÐU6>éº=>à[À<•çÉ>à[À>éº=>ðbQ<•çÉ>ðbQ=K(R>ðbQ=¥®_>ðbQ=åÈ—>ðbQ>ñg>ðbQ>éº=     >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>F¾MžÇ>˜>F=åÈ—>˜>F>2þ‚>˜>F>Ù³¯>˜>F>ùÀÊ>˜>F?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7¸½šÔµ>ˆ7¸¼U;>ˆ7¸?í>ˆ7¸?,ô>˜>F>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N«>Ù³¯>@N«?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê:   dx-4.4.4/fonts/script_d.dx0000644000076500000240000026510307120242412012353 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 9 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 72 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 6 msb ieee data 144 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 4 msb ieee data 192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 224 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 35 msb ieee data 320 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 33 msb ieee data 600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.657300 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 864 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 48 msb ieee data 1280 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 49 msb ieee data 1664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2056 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2160 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.469500 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2416 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.469500 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2672 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.532100 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2744 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2792 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2896 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.344300 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2984 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 34 msb ieee data 3008 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 36 msb ieee data 3280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.657300 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 9 msb ieee data 3568 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 7 msb ieee data 3640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.657300 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 34 msb ieee data 3696 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 34 msb ieee data 3968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.657300 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 41 msb ieee data 4240 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 42 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.657300 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 6 msb ieee data 4904 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 4 msb ieee data 4952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.657300 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.657300 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 39 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 40 msb ieee data 5760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.657300 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6080 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 20 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.657300 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6416 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.657300 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 39 msb ieee data 7192 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 40 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.657300 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7824 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 7 msb ieee data 7888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 7944 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 10 msb ieee data 8032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 29 msb ieee data 8240 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 28 msb ieee data 8472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.657300 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 8696 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 9080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 30 msb ieee data 9464 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 30 msb ieee data 9704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.719900 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 57 msb ieee data 9944 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 58 msb ieee data 10400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.751200 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 37 msb ieee data 10864 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 37 msb ieee data 11160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 39 msb ieee data 11456 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 39 msb ieee data 11768 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.719900 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 40 msb ieee data 12080 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 41 msb ieee data 12400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.594700 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 39 msb ieee data 12728 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 38 msb ieee data 13040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.657300 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 44 msb ieee data 13344 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 45 msb ieee data 13696 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.688600 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 47 msb ieee data 14056 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 47 msb ieee data 14432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.751200 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 29 msb ieee data 14808 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 29 msb ieee data 15040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.500800 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 30 msb ieee data 15272 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 30 msb ieee data 15512 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.532100 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 46 msb ieee data 15752 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 47 msb ieee data 16120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.751200 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 36 msb ieee data 16496 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 36 msb ieee data 16784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.563400 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 36 msb ieee data 17072 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 37 msb ieee data 17360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.876400 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 30 msb ieee data 17656 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 30 msb ieee data 17896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.719900 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 30 msb ieee data 18136 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 30 msb ieee data 18376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.657300 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 45 msb ieee data 18616 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 45 msb ieee data 18976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.719900 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 39 msb ieee data 19336 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 39 msb ieee data 19648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.657300 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 52 msb ieee data 19960 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 53 msb ieee data 20376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.751200 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 32 msb ieee data 20800 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 32 msb ieee data 21056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 32 msb ieee data 21312 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 32 msb ieee data 21568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.563400 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 31 msb ieee data 21824 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 31 msb ieee data 22072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.688600 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 32 msb ieee data 22320 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 32 msb ieee data 22576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.657300 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 30 msb ieee data 22832 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 29 msb ieee data 23072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.719900 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 46 msb ieee data 23304 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 46 msb ieee data 23672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 34 msb ieee data 24040 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 34 msb ieee data 24312 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.688600 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 37 msb ieee data 24584 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 38 msb ieee data 24880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.657300 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 25184 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 25232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 25264 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 25280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 25288 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 25336 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 25368 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 25424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 25464 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 25480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 25488 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 25544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 25 msb ieee data 25592 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 25 msb ieee data 25792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.500800 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 19 msb ieee data 25992 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 17 msb ieee data 26144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.438200 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 17 msb ieee data 26280 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 18 msb ieee data 26416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.375600 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 25 msb ieee data 26560 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 25 msb ieee data 26760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.500800 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 19 msb ieee data 26960 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 19 msb ieee data 27112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.375600 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 22 msb ieee data 27264 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 23 msb ieee data 27440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.281700 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 31 msb ieee data 27624 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 30 msb ieee data 27872 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.500800 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 23 msb ieee data 28112 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 20 msb ieee data 28296 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.469500 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 14 msb ieee data 28456 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 13 msb ieee data 28568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.250400 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 19 msb ieee data 28672 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 18 msb ieee data 28824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.250400 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 21 msb ieee data 28968 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 19 msb ieee data 29136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.438200 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 13 msb ieee data 29288 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 11 msb ieee data 29392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.250400 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 33 msb ieee data 29480 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 33 msb ieee data 29744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.782500 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 24 msb ieee data 30008 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 24 msb ieee data 30200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.563400 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 24 msb ieee data 30392 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 25 msb ieee data 30584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.438200 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 23 msb ieee data 30784 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 20 msb ieee data 30968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.469500 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 27 msb ieee data 31128 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 27 msb ieee data 31344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.500800 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 16 msb ieee data 31560 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 16 msb ieee data 31688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.438200 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 17 msb ieee data 31816 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 16 msb ieee data 31952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.375600 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 15 msb ieee data 32080 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 12 msb ieee data 32200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.250400 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 21 msb ieee data 32296 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 19 msb ieee data 32464 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.500800 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 18 msb ieee data 32616 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 17 msb ieee data 32760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.469500 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 27 msb ieee data 32896 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 26 msb ieee data 33112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.657300 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 26 msb ieee data 33320 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 30 msb ieee data 33528 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.500800 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 26 msb ieee data 33768 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 24 msb ieee data 33976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 29 msb ieee data 34168 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 30 msb ieee data 34400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.406900 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 34640 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 34920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 35192 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 35208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 35216 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 35496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 35768 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 35928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 36088 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 36184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.469500 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.357301 # end =€4n=K(R=ÀN¥<•çÉ=ÀN¥=¥®_>4n=K(R> A‰>‰’ê>`[À?$ðÇ>€4n?$ðÇ>€4n?,ô>:û?$ðÇ=ÀN¥>éº=> A‰?,ô>@N¥?,ô>ÀN¥>éº=>à[Ã?,ô>ðbQ?,ô=ÀN¥>ñg>4n¾MžÇ>4n>© > A‰¾MžÇ>°H?,ô?7¶>ñg?7¶?,ô?:ý>© =€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n½Úîé>4n=K(R>4n>2þ‚> A?ã¬> A?ê:>@N¥>éº=>`[À<•çÉ>`[À>Ù³¯>`[À>éº=>`[À?$ðÇ>:û½Úîé> A‰?,ô>°H<•çÉ>ÀN¥?M*>à[Ã=K(R>à[Ã>™™x>à[Ã>© >à[Ã?,ô>ðbN=¥®_>ðbN>™™x?4o>ñg?4o>s¹?7¶?ã¬?7¶?$ðÇ?7¶?M*?:ý>ùÀÊ?:ý? æó?:ý?í?>B?ã¬?>B? æó!!""     =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =€4l=åÈ—=€4l>2þ‚=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>2þ‚=ÀN¥>s¹>4n=K(R>4n>s¹>4n>‰’ê> A>‰’ê>@N¥<•çÉ>@N¥>™™x>:û<•çÉ> A‰>ùÀÊ> A‰?ê:>°H=K(R>°H>™™x>°H>© >°H>¹¦“>°H?$ðÇ>ÀN¥>S ž>ÀN¥>s¹>ÐU2=åÈ—>ÐU2>É­!>ÐU2?,ô>à[À=åÈ—>à[À>ñg>ðbN>éº=>ðbN?$ðÇ?4n=K(R?4n=¥®_?4n?ã¬?4n?ê:?:û<•çÉ?:û=K(R?:û>¹¦“? A‹<•çÉ? A‹=K(R? A‹>Ù³¯?(DÒ=¥®_?(DÒ=åÈ—?0H>É­!?0H>éº=?8K_>¹¦“?8K_>Ù³¯?8K_>éº=?@N¦>É­!?@N¦>Ù³¯,))++..//--**&&##    !!$$''(   ""%%'>4n>ùÀÊ> A‰?$ðÇ>@N¥? æó>@N¥?í>@N¥?,ô>`[À?í>`[À?$ðÇ=@N¥=åÈ—=@N¥>s¹= A‹½5tý= A‹=K(R= A‹>S ž= A‹>É­!=à[À¾ „=à[À½Úîé=à[À>¹¦“>;¾MžÇ>;>éº=>;?ã¬>PU9?ê:>PU9?í>˜>B?4÷U>ØX}?M*    =@NÀ¾MžÇ>0H½Úîé>ˆ7µ¼U;>ˆ7µ<•çÉ>¨DÐ=¥®_>¨DÐ>ñg>¨DÐ?M*>¸K^>s¹>¸K^?4÷U>¸K^?<úœ>ÈQì>S ž>ÈQì>É­!>ÈQì? æó>ÈQì?$ðÇ>ØXy>¹¦“>ØXy>ùÀÊ   =à[À>É­!=à[À?ê:>ˆ7µ>™™x>ˆ7µ?,ô>ØX}>É­!>ØX}?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé> A‰=K(R>@N¥½5tý>@N¥<•çÉ>@N¥=¥®_>`[Ç<•çÉ>`[Ç=K(R>4n>™™x?0H>™™x>:û=K(R>0H<•çÉ>0H=¥®_>PU9=K(R½€4l¾MžÇ?@N¦?M*=ÀN¥>2þ‚=ÀN¥>‰’ê>4n=¥®_>4n>2þ‚>4n>‰’ê>4n>É­!> A=K(R> A=¥®_> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À?ê:>€4n?ê:>:û<•çÉ>:û?$ðÇ> A‰?$ðÇ>°H=K(R>ÀN¥=K(R>ÀN¥?,ô>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o?í?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶?ã¬?7¶?í?:ý>Ù³¯?:ý?㬠  !!  >PU2>ùÀÊ>pbN<•çÉ>ˆ7µ<•çÉ>ˆ7µ?ã¬>˜>B?ã¬>¸K^?ê:>ÈQì? æó>ØX}?ê:>è_?,ô=€4l<•çÉ=ÀN³=¥®_>4n=åÈ—>4n>ñg>@N«=åÈ—>@N«>S ž>`[À?ã¬>`[À? æó>€4n>ùÀÊ>€4n? æó>€4n?í>:û>‰’ê>:û?ã¬>:û?$ðÇ>°H<•çÉ>°H=K(R>ÀN¥?,ô>ÐU2>© >à[Ã<•çÉ>à[Ã=K(R>ðbQ>É­!>ðbQ?,ô?4o=K(R?4o=¥®_?4o>É­!?7¶>ñg?7¶>éº=?7¶?$ðÇ?:ý>éº=?:ý?ã¬?:ý?ê:?:ý?$ðÇ?>D?ã¬?>D?ê:  !!   = A˜>ñg= A˜>2þ‚=à[À=¥®_=à[À>ñg=à[À>S ž>:û=K(R>:û>2þ‚>PU2?ã¬>PU2? æó>pbN<•çÉ>pbN>ùÀÊ>pbN? æó>pbN?í>ˆ7µ?ã¬>ˆ7µ?$ðÇ>˜>B>¹¦“>¸K^<•çÉ>¸K^>¹¦“>¸K^?,ô>ØX}=K(R>ØX}>© >è_=K(R>è_=¥®_>è_>™™x>è_>© >è_>É­!>è_?,ô>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x?6>ñg?6>s¹?6>éº=?6?$ðÇ? 9Z>éº=? 9Z?ã¬? 9Z?ê:? 9Z?$ðÇ?<¡?ã¬?<¡?ê:  &&((''##""%%$$!!  = A˜>S ž>¨DÓ<•çÉ>¸K^<•çÉ?6?$ðÇ? 9Z?,ô?<¡>S ž=€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n=K(R>4n>2þ‚>4n>¹¦“> A>É­!>`[À<•çÉ>€4n>Ù³¯>:û?$ðÇ>:û?,ô> A‰<•çÉ>°H>Ù³¯>ÀN¥=K(R>ÐU2=K(R>ÐU2>É­!>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>S ž>ðbN>™™x>ðbN>¹¦“?4o>S ž?4o>™™x?>B?,ô      =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n=åÈ—>4n>s¹>4n>‰’ê>4n>É­!> A=K(R> A>™™x> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À>¹¦“>`[À?ê:>€4n?ê:>:û>É­!>:û?$ðÇ> A‰<•çÉ> A‰?$ðÇ>ÀN¥=K(R>ÀN¥>É­!>ÀN¥?,ô>ÐU2=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbN=åÈ—>ðbN>2þ‚>ðbN>™™x>ðbN>© >ðbN?,ô?4o>2þ‚?4o>‰’ê?4o? æó?7¶?ã¬?7¶?ê:?7¶?$ðÇ?:ý? æó?:ý?ê:#!!""%%&&$$     =ÀN§>ùÀÊ>4t?ê:> A‰<•çÉ> A‰?í> A‰?,ô>@N¥<•çÉ>@N¥>ñg>`[À>ñg>`[À>S ž>`[À?$ðÇ>`[À?,ô>€4q>S ž>:ÿ>™™x>:ÿ?$ðÇ>:ÿ?,ô> A>™™x>à[Ã?ê:>ðbQ>ùÀÊ?4o?ê:?7¶?ê:?7¶?í?:û?,ô    = A˜=åÈ—= A˜>S ž=à[À=K(R=à[À=åÈ—=à[À>S ž=à[À>‰’ê>:û=K(R>:û>‰’ê>0H>© >PU2<•çÉ>PU2>© >PU2>éº=>PU2? æó>pbN>É­!>pbN>éº=>pbN? æó>pbN?í>ˆ7µ>É­!>ˆ7µ?í>ˆ7µ?$ðÇ>˜>B>¹¦“>˜>B?$ðÇ>¨DÓ<•çÉ>¸K^?,ô>ÈQì>¹¦“>ØX}=K(R>è_=K(R>è_=¥®_>è_>© >è_?,ô>øe•=¥®_>øe•>ñg>øe•>‰’ê>øe•>™™x>øe•>É­!?6>ñg?6>s¹?6>É­!?6>Ù³¯?6?$ðÇ? 9Z>Ù³¯? 9Z>ùÀÊ? 9Z?ê:? 9Z?$ðÇ?<¡>ùÀÊ?<¡?ê: %%((,,--++""&&))**'' ##$$!!   =ÀN¥=åÈ—=ÀN¥>ñg>4n=K(R>4n=åÈ—>4n>2þ‚> A>ñg> A>Ù³¯> A?ã¬>@N¥<•çÉ>@N¥>¹¦“>@N¥>É­!>@N¥?ã¬>@N¥?ê:>`[À>© >`[À?ê:>€4n?$ðÇ>:û<•çÉ>:û>™™x>:û?$ðÇ>°H=K(R>°H?,ô>ÀN¥=K(R>ÀN¥>™™x>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã>© >à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o>É­!?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶>éº=?7¶?ê:?7¶?í?:ý>Ù³¯?:ý? æó"  $$&&%%  ##!!=ÀN¥=K(R>4n<•çÉ>4n=¥®_> A‰=K(R>@N¥>Ù³¯>`[À>É­!>`[À>éº=>€4n>Ù³¯= Aˆ½Úîé=à[À=K(R>:û½5tý>:û<•çÉ>:û=¥®_>0H<•çÉ>0H=K(R>PU2>Ù³¯>pbN>É­!>pbN>éº=>ˆ7µ>Ù³¯  >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x>4n?ã¬>4n? æó> A‰=K(R> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥<•çÉ>@N¥=¥®_>@N¥?ã¬>@N¥?$ðÇ>`[Ç=K(R>`[Ç>‰’ê>`[Ç>© >€4q>s¹>:û>¹¦“>:û?,ô> A>s¹>ÀN¥>É­!>ÐU2?,ô>à[Ã>Ù³¯>ðbQ>Ù³¯>ðbQ>éº=>ðbQ?$ðÇ?4o>éº=?4o?ã¬?4o?ê:?4o?$ðÇ?7µ?ã¬?7µ?ê:   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=@NÀ=K(R=@NÀ=åÈ—= Aˆ<•çÉ= Aˆ=¥®_= Aˆ>ñg=à[À=åÈ—>:û<•çÉ>PU2=K(R>ˆ7µ>s¹>ˆ7µ>™™x>˜>B>ñg>˜>B>© >¸K^>© >ÈQì=K(R>ÈQì>‰’ê>ØXy>™™x>è_>¹¦“>øe•<•çÉ>øe•>s¹?6>2þ‚? 9Z<•çÉ? 9Z=¥®_? 9Z?ã¬?<Ÿ<•çÉ?<Ÿ>s¹??æ<•çÉ??æ?í?$C-? æó?,Fu=K(R?,Fu?,ô   =€4l=K(R=€4l=åÈ—=ÀN¥<•çÉ=ÀN¥=¥®_=ÀN¥>ñg>4n=åÈ—> A<•çÉ> A>Ù³¯> A>ùÀÊ>@N¥>É­!>@N¥? æó>`[À=K(R>€4q=K(R>€4q>É­!>€4q?í>:û>ñg>:û>Ù³¯> A‰=åÈ—> A‰>S ž> A‰>ùÀÊ> A‰?$ðÇ>°H>2þ‚>ÀN¥>‰’ê>ÀN¥>É­!>ÐU2=K(R>ÐU2=åÈ—>ÐU2>É­!>ÐU2?,ô>à[À<•çÉ>à[À>S ž>à[À?ã¬>à[À? æó>ðbN>É­!>ðbN?í?4n<•çÉ?4n?$ðÇ?7µ>¹¦“?:û=K(R?:û=¥®_?:û>© ?:û>¹¦“?>D=¥®_?>D>2þ‚?>D>‰’ê?>D>© ?>D>Ù³¯?>D?,ô? A‹>2þ‚? A‹>‰’ê? A‹>éº=? A‹?$ðÇ?(DÒ>éº=?(DÒ?ã¬?(DÒ?ê:?(DÒ?$ðÇ?0H?ã¬?0H?ê:#!! !   ..66887733-- .22554411- ((,,00//))%%"" $$''++**&&"= A˜>ùÀÊ= A˜? æó=à[À>Ù³¯=à[À?í>:û=åÈ—>:û>S ž>0H=K(R>0H=åÈ—>0H>S ž>0H>© >PU2=K(R>PU2>© >PU2>É­!>pbN>éº=>ˆ7µ<•çÉ>ˆ7µ>éº=>˜>B>É­!>˜>B? æó>¨DÓ<•çÉ>¨DÓ>S ž>¨DÓ? æó>¸K^>‰’ê>ÈQì?$ðÇ>ØX}=K(R>ØX}>™™x>ØX}>Ù³¯>ØX}?$ðÇ>øe•=åÈ—>øe•>™™x>øe•>éº=>øe•?,ô?6>2þ‚?6>s¹? 9Z?ã¬? 9Z?,ô?<¡?ê:?<¡?$ðÇ !!##$$""    =€4l=K(R=€4l=åÈ—=ÀN¥<•çÉ=ÀN¥>ñg> A<•çÉ> A>ñg> A>éº=> A?ã¬>@N¥>Ù³¯>@N¥?ê:>`[À=K(R>`[À=åÈ—>€4q=K(R>€4q>Ù³¯>€4q?$ðÇ>:û=K(R>:û>ñg>:û>éº=> A‰=åÈ—> A‰>S ž> A‰?ã¬>°H<•çÉ>°H>2þ‚>°H?,ô>ÀN¥>‰’ê>ÀN¥>É­!>à[À<•çÉ>à[À?ã¬>à[À? æó>ðbN?í?4n=K(R?4n?$ðÇ?4n?,ô?:û=åÈ—?:û?$ðÇ? A‹>s¹? A‹?ê:?(DÒ>É­!?(DÒ>ùÀÊ   !!##%%&&$$""   =€4p>ñg=€4p>s¹=ÀN§=¥®_=ÀN§=åÈ—=ÀN§>s¹=ÀN§>™™x>4t=K(R>4t>™™x> A‰>¹¦“>@N¥<•çÉ>@N¥>¹¦“>`[À>ùÀÊ>`[À? æó>€4q>É­!>€4q>Ù³¯>€4q>éº=>€4q? æó>€4q?í>:ÿ<•çÉ>:ÿ>S ž>:ÿ?í>:ÿ?$ðÇ> A>‰’ê> A>É­!>°H?,ô>ÀN¨=K(R>ÀN¨>™™x>ÐU2>ùÀÊ>ÐU2? æó>à[Ã=åÈ—>à[Ã>™™x>à[Ã>éº=>à[Ã?ê:>à[Ã?,ô>ðbQ>2þ‚>ðbQ>s¹?4o>éº=?4o?$ðÇ?7¶?ã¬?7¶?ê: $$&&''%%!!   ""## =4p=¥®_=4p=åÈ—=€4l=K(R=€4l=¥®_=€4l>ñg=ÀN³=åÈ—>4n<•çÉ>4n>éº=>4n?ã¬> A‰>É­!> A‰?ê:>@N«<•çÉ>`[À>É­!>`[À?$ðÇ>€4n=K(R>€4n>‰’ê>:û=K(R>:û>™™x>:û>Ù³¯> A>ñg> A>ùÀÊ> A?,ô>°H=åÈ—>°H>S ž>°H>© >ÀN¥>2þ‚>ÀN¥?,ô>ÐU2>‰’ê>ÐU2>É­!>ðbQ>© >ðbQ?ã¬>ðbQ? æó?4o?í?4o?$ðÇ?7¶>s¹?7¶>¹¦“?7¶?$ðÇ?>D>éº=? A‰?,ô    &&$$  !!$##%%"= Aˆ=åÈ—= Aˆ>ñg= Aˆ>éº== Aˆ?ã¬=à[Î=K(R=à[Î=åÈ—=à[Î>2þ‚=à[Î>É­!=à[Î?ê:>:û>ñg>0H<•çÉ>0H>¹¦“>ˆ7µ<•çÉ>ˆ7µ>¹¦“>˜>B>© >˜>B>Ù³¯>¨DÓ>‰’ê>¨DÓ>™™x>¨DÓ>Ù³¯>¨DÓ?ã¬>¸Ka=K(R>¸Ka>É­!>¸Ka?ã¬>¸Ka?ê:>ÈQì=K(R>ÈQì>s¹>ÈQì?ê:>ØX}>Ù³¯>ØX}?$ðÇ>è_ =¥®_>è_ =åÈ—>è_ >s¹>è_ ?$ðÇ>øe•?,ô?6>ñg?6>2þ‚?6>‰’ê?6?ã¬?6?,ô? 9Z?í? 9Z?$ðÇ?<¡>‰’ê?<¡>© ??ç>É­! %%''((&&!!$$**+& +))""  )## =K(R=åÈ—=4p<•çÉ=4p=¥®_=4p>ñg=€4p=åÈ—=ÀN¥<•çÉ>4t>s¹> A‰=K(R> A‰=¥®_> A‰>‰’ê> A‰?ã¬> A‰?ê:>@N¥=¥®_>@N¥>ñg>@N¥>ùÀÊ>@N¥?$ðÇ>`[Ç>ñg>`[Ç>™™x>€4n>™™x>:û>© >:û>É­!>:û?,ô>ÀN¥?,ô>à[Ã=¥®_>à[Ã>2þ‚>ðbQ=¥®_>ðbQ>2þ‚>ðbQ>™™x?4o<•çÉ?4o>™™x?4o>É­!?7¶<•çÉ?7¶>ùÀÊ?:ý>Ù³¯?:ý>ùÀÊ?:ý? æó?>D=K(R? A‹?í? A‹?$ðÇ?(DÐ=åÈ—?(DÐ>ùÀÊ?0H?,ô?8K_? æó?8K_?,ô?@N¥?í?@N¥?$ðÇ    ""))++--..,,**''$$!! %%(*&&##=K(R=åÈ—=4‘<•çÉ=4‘=¥®_=4‘>ñg=€4p=åÈ—=ÀN§<•çÉ> A‰=K(R> A‰>ùÀÊ> A‰? æó>@N¥=K(R>@N¥>Ù³¯>@N¥?í>`[À>ñg>€4q=åÈ—>€4q>S ž>€4q>É­!>€4q?$ðÇ>:ÿ>2þ‚> A>¹¦“>°H>¹¦“>°H>É­!>ÀN¨?ã¬>ÀN¨?,ô>ÐU2? æó>à[Ã>Ù³¯>à[Ã?í?4o>ùÀÊ?4o?,ô    =4‘½šÔµ=4‘¼U;=€4p½Úîé=€4p=K(R>4t½šÔµ>4t=åÈ—> A‰½5tý> A‰>éº=> A‰?ã¬>@N¥>ñg>@N¥>É­!>@N¥?ê:>`[À=K(R>`[À=¥®_>€4q=åÈ—>€4q>¹¦“>€4q?$ðÇ>:ÿ>2þ‚> A>s¹> A>¹¦“>°H>¹¦“>ÀN¨?ã¬>ÀN¨?,ô>ÐU2>S ž>ÐU2?ã¬>à[Ã>É­!>à[Ã?ê:>à[Ã?í?4o>éº=?4o?,ô     =K(R=åÈ—=4p<•çÉ=4p=¥®_=4p>ñg=€4p=åÈ—=ÀN¥<•çÉ> A‰=K(R> A‰=¥®_> A‰?ã¬> A‰?ê:>@N¥=¥®_>@N¥>ñg>@N¥>ùÀÊ>`[Ç>ñg>`[Ç?$ðÇ>€4n>™™x>:û>© >:û>É­!> A‰>É­!> A‰?,ô>ÀN¥>¹¦“>ÀN¥?,ô>ÐU2>™™x>ÐU2>¹¦“>ÐU2>Ù³¯>à[Ã=¥®_>à[Ã>™™x>à[Ã>Ù³¯>ðbQ=¥®_>ðbQ>éº=?4o<•çÉ?4o>éº=?7¶<•çÉ?7¶>ùÀÊ?7¶?ã¬?>D=K(R? A‹?$ðÇ?(DÐ=åÈ—?0H?í?0H?,ô?8K_?ê:?8K_?$ðÇ?8K_?,ô?@N¥?í?@N¥?$ðÇ   %##*'')),,--++((%%"" !!$$&¼€4n=K(R¼€4n=åÈ—<€4^<•çÉ<€4^>ñg= Aˆ<•çÉ= Aˆ>ñg=à[À>éº==à[À?ã¬>;=K(R>;=åÈ—>;>É­!>;?ê:>0H=K(R>PU2>ñg>PU2>¹¦“>pbN=K(R>pbN=åÈ—>pbN>S ž>ˆ7µ>2þ‚>˜>B<•çÉ>˜>B>‰’ê>˜>B>¹¦“>¸K^>ùÀÊ>¸K^?ã¬>ÈQì<•çÉ>ÈQì>É­!>ØXy?í>è_=K(R>è_>Ù³¯>è_?$ðÇ?6=åÈ—?6?,ô? 9Z?ã¬? 9Z?,ô?<Ÿ?í?<Ÿ?$ðÇ   ""##!!   =K(R=åÈ—=4‘<•çÉ=4‘=¥®_=4‘>ñg=€4=åÈ—=ÀN§<•çÉ> A‰=K(R>`[À=åÈ—>:û>S ž>ÀN¥=K(R>ÀN¥>2þ‚>ÀN¥>É­!>ÐU2=K(R>ÐU2>2þ‚>ÐU2>© >à[À<•çÉ>à[À>É­!>à[À>éº=>ðbQ? æó?4o=åÈ—?4o?,ô?(DÒ=K(R?(DÒ>2þ‚?(DÒ>É­!?0H=K(R?0H>2þ‚?0H>© ?8K_<•çÉ?8K_>É­!?8K_>éº=?@N¦<•çÉ?@N¦? æó?HQì?,ô?PU4=K(R?`[À=åÈ—   !!""#! ½ Aˆ=K(R½ Aˆ=åÈ—½@N§<•çɽ@N§=¥®_½@N§>ñg¼€4n=åÈ—<€4n<•çÉ= A˜=K(R>:û>ñg>0H>S ž>pbN>¹¦“>˜>B? æó>¨DÓ?ã¬>¨DÓ?,ô>¸K^>2þ‚>¸K^?ã¬>ÈQì<•çÉ>ÈQì>2þ‚>ØX}>ñg>øe•>© ? 9Z>ùÀÊ?<¡? æó?$C.?$ðÇ?4Iº?,ô?2þ‚=ÀN¥>™™x>4n=¥®_>4n>2þ‚>4n>™™x>4n>Ù³¯> A=K(R> A=¥®_> A>Ù³¯> A>ùÀÊ>`[À<•çÉ>`[À? æó>`[À?ê:>€4n>2þ‚>€4n>‰’ê>:û<•çÉ>:û>Ù³¯>:û?$ðÇ>°H? æó>°H?,ô>ÀN¥=K(R>ÐU2?í>à[Ã=åÈ—>ðbN?$ðÇ?4o>S ž?4o?$ðÇ?7¶>‰’ê?7¶?í?:ý>É­!?:ý?㬠    =@N§=K(R=@N§=åÈ—= AŒ<•çÉ= AŒ=¥®_= AŒ>ñg=à[À=åÈ—>;<•çÉ>;>Ù³¯>;>ùÀÊ>0H>É­!>0H? æó>PU2=K(R>pbU=K(R>pbU>É­!>pbU?í>ˆ7µ>ñg>ˆ7µ>Ù³¯>˜>B=åÈ—>˜>B>S ž>˜>B>ùÀÊ>˜>B?$ðÇ>¨DÐ>2þ‚>¸Ka>‰’ê>¸Ka>É­!>ÈQï>¹¦“>ÈQï?,ô>ØX}?ã¬>ØX}? æó>è_ >© >è_ ?í>øe˜?$ðÇ?6>© ?6?,ô?<¡>¹¦“?<¡?$ðÇ??ç>¹¦“??ç>É­!??ç?í??ç?$ðÇ?$C.>É­!?$C.>éº=?$C.? æó?$C.?í?,Ft>éº=?,Ft? æó     &&**,,++''## ""%%))(($$!!=@N§=K(R=@N§=åÈ—= Aˆ<•çÉ= Aˆ>ñg>:û<•çÉ>:û>ñg>PU9=åÈ—>pbN=K(R>pbN>Ù³¯>pbN>ùÀÊ>ˆ7µ=¥®_>ˆ7µ>¹¦“>ˆ7µ?ê:>˜>B=K(R>˜>B=¥®_>¨DÓ>¹¦“>¨DÓ?$ðÇ>ÈQì<•çÉ>ÈQì>ñg>ÈQì>2þ‚>ÈQì>É­!>ØX}>Ù³¯>ØX}?,ô>è_ >ùÀÊ>è_ ? æó>øe•<•çÉ>øe•>‰’ê?6>‰’ê?6?,ô? 9Z=K(R? 9Z>¹¦“? 9Z?$ðÇ?<¡>¹¦“?<¡>éº=?<¡?ê:?<¡?$ðÇ??ç=åÈ—??ç>éº=??ç?ê:  ##&&%%  $""!! =4p=K(R=4p=åÈ—=€4p<•çÉ=€4p=¥®_=€4p>ñg=ÀN¥=åÈ—>4t<•çÉ>4t>Ù³¯>4t>ùÀÊ> A‰>É­!> A‰? æó>@N¥=K(R>`[Ç=K(R>`[Ç>É­!>`[Ç?í>€4n>ñg>€4n>Ù³¯>:û=åÈ—>:û>S ž>:û>ùÀÊ>:û?$ðÇ> A‰>2þ‚>°H>‰’ê>°H>É­!>ÀN¥>É­!>ÀN¥?,ô>ÐU2?ã¬>ÐU2? æó>à[Ã>¹¦“>à[Ã?í>ðbQ>™™x>ðbQ>¹¦“>ðbQ?$ðÇ?4o=¥®_?4o>™™x?4o>É­!?7¶=¥®_?7¶?,ô?:ý<•çÉ?:ý>Ù³¯?>D<•çÉ?>D>Ù³¯?>D>éº=?>D?$ðÇ? A‹>éº=? A‹?ã¬? A‹?ê:? A‹?$ðÇ?(DÐ=K(R?(DÐ?ã¬?(DÐ?ê:?8K_=åÈ—     %%//2211,,))##%++..--**''#""$$&!!&&((003=åÈ—>ñg=4h=K(R=4h=åÈ—=4h>2þ‚=€4}>ñg=ÀN¥<•çÉ> A>éº=> A?ã¬>@N¥<•çÉ>@N¥>É­!>@N¥?ê:>€4n=K(R>€4n>¹¦“>:û=K(R> A‰>ñg>°H=åÈ—>°H>s¹>°H>¹¦“>ÀN¥>S ž>ÐU2>Ù³¯>ÐU2>éº=>à[Ã>É­!>à[Ã? æó>ðbN?í?4o>Ù³¯?4o?$ðÇ?:ý?,ô?>B?ã¬?>B?,ô? A‹?í? A‹?$ðÇ    4=¥®_4=åÈ—=4p=K(R=4p=¥®_=4p>ñg=€4p=åÈ—=ÀN²<•çÉ=ÀN²>éº==ÀN²?ã¬>4n>É­!>4n?ê:> A‰<•çÉ>@N¥>É­!>@N¥?$ðÇ>`[Ç=K(R>€4q=K(R>€4q>Ù³¯>:û>ñg>:û>ùÀÊ>:û?,ô> A=åÈ—> A>S ž>°H>2þ‚>°H?,ô>ÀN¥>‰’ê>ÀN¥>É­!>à[Ã?ã¬>à[Ã? æó>ðbQ?í>ðbQ?$ðÇ?4o?$ðÇ?:ý?,ô    =4p? æó=ÀN³=¥®_=ÀN³>2þ‚=ÀN³?$ðÇ>4n=¥®_>4n>2þ‚>4n>‰’ê> A‰<•çÉ> A‰?,ô>@N«?,ô>`[À<•çÉ>`[À>Ù³¯>`[À?ã¬>`[À?í>€4n?ã¬>€4n?í>:û=K(R>ÀN¥>ñg>à[Ã=¥®_>à[Ã>2þ‚>à[Ã>s¹>ðbQ=¥®_>ðbQ>2þ‚>ðbQ>™™x?4o<•çÉ?4o>™™x?7¶<•çÉ?>D=K(R?>D?,ô? A‰?,ô?(DÒ=åÈ—    ? æó=€4}?$ðÇ=ÀN¥=¥®_=ÀN¥>2þ‚>4n=¥®_>4n>2þ‚>4n>™™x>4n?,ô> A<•çÉ> A?,ô>@N¥<•çÉ>@N¥>É­!>@N¥?ã¬>@N¥?í>`[À?ã¬>`[À?í>:û=K(R>ÀN¥>ñg>à[Ã>s¹>à[Ã>ùÀÊ>à[Ã?ê:>ðbN>Ù³¯>ðbN?$ðÇ?4o>¹¦“?4o?,ô?7¶>¹¦“?7¶>éº=?7¶?,ô?:ý?ê:?:ý?$ðÇ?>B>© ?(DÒ>©     ½4p?㬽4p?ê:>ùÀÊ?$ðÇ=4h>ùÀÊ=€4}<•çÉ=€4}?,ô=ÀN¥<•çÉ=ÀN¥>S ž>4n>S ž>4n>ùÀÊ> A=¥®_> A?í>@N¥?,ô>`[À>S ž> A‰<•çÉ> A‰>ùÀÊ>°H<•çÉ>°H>S ž>ÀN¥>S ž>ÀN¥>ùÀÊ>ÀN¥?í>ÐU2=¥®_>ÐU2?í>à[Ã?,ô>ðbN>S ž?:ý>ùÀÊ? A‹?ê:?0H?$ðÇ?@N¦?,ô   ½@N§=K(R½@N§=åÈ—¼€4n<•çɼ€4n=¥®_¼€4n>ñg<€4^=åÈ—=@NÀ<•çÉ=à[À=K(R=à[À?ã¬=à[À?ê:>;=K(R>;>ùÀÊ>;?$ðÇ>0H=åÈ—>PU2=åÈ—>PU2>ùÀÊ>PU2?,ô>pbN>S ž>pbN?ã¬>ˆ7µ>S ž>ˆ7µ?,ô>˜>B=åÈ—>˜>B>S ž>˜>B>¹¦“>˜>B?$ðÇ>¨DÐ=K(R>¨DÐ>¹¦“>¨DÐ>ùÀÊ>¨DÐ?ê:>¨DÐ?$ðÇ>¸K^<•çÉ>¸K^>ùÀÊ>¸K^?ê:>ÈQì<•çÉ>ÈQì>ùÀÊ>è_=K(R>è_?ê:?6=åÈ—?6?$ðÇ?<Ÿ?,ô??ç?í?$C.?ê:?$C.?$ðÇ?$C.?,ô?,Ft?í?,Ft?$ðÇ     *(()),,--++''&&$$""!!##%=4h=åÈ—=4h>ñg=€4}=K(R=€4}=åÈ—=€4}>2þ‚=€4}? æó=ÀN¥>ñg>4n<•çÉ>4n?$ðÇ>@N¥>™™x>@N¥>É­!>@N¥?,ô>`[À>™™x>`[À>É­!>`[À?,ô>€4n<•çÉ>€4n>s¹>€4n?ê:>€4n?$ðÇ>:û?ê:>:û?$ðÇ> A‰>s¹>°H=K(R>ÐU2=åÈ—>ÐU2>‰’ê>ðbN>S ž>ðbN>s¹>ðbN>© ?7¶>© ?7¶>Ù³¯?:ý>ùÀÊ?>B>ùÀÊ? A‹?,ô?(DÒ?,ô    !¼€4n=K(R¼€4n=åÈ—<€4n<•çÉ<€4n>ñg= A˜>ñg>:û<•çÉ>:û=åÈ—>0H>éº=>0H?ã¬>PU2>É­!>PU2?ê:>pbN=K(R>ˆ7µ>É­!>ˆ7µ?$ðÇ>˜>B<•çÉ>˜>B=K(R>˜>B=¥®_>¨DÓ>Ù³¯>¸K^>ñg>¸K^>ùÀÊ>¸K^?,ô>ÈQì<•çÉ>ÈQì=åÈ—>ØX}>s¹>è_>S ž>è_>™™x>è_?,ô>øe•=K(R>øe•>É­!?6>É­!? 9Z=åÈ—? 9Z?ã¬? 9Z? æó?<¡?í?<¡?$ðÇ??æ?$ðÇ?,Fu?,ô!    $$##!! ""#=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n? æó> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥?ã¬>`[À?,ô<€4n=åÈ—<€4n>2þ‚=@N½=K(R=@N½=¥®_=@N½>2þ‚=@N½>s¹= Aˆ>s¹= Aˆ>‰’ê=à[À<•çÉ>:û>™™x>0H<•çÉ>PU2>™™x>pbN=K(R>ˆ7µ=K(R>ˆ7µ=åÈ—>ˆ7µ>‰’ê>˜>B=K(R>˜>B=åÈ—>˜>B>S ž>¨DÓ<•çÉ>¨DÓ>™™x>¸K^>™™x>ÈQï=K(R>ØX}=¥®_>øe•>2þ‚    >2þ‚=4ƒ=K(R=4ƒ=åÈ—=€4l=K(R=€4l=åÈ—=€4l>‰’ê=ÀN¥<•çÉ>4n<•çÉ>4n>É­!>@N¥=K(R>`[À?,ô>€4n=åÈ—>€4n?,ô>:û>S ž>:û>™™x> A‰>2þ‚>°H>ñg>ÀN¨>ñg>à[Ã>2þ‚   <€4ž=åÈ—<€4ž>2þ‚=@N¥=K(R=@N¥=¥®_=@N¥>2þ‚=@N¥>s¹= A‹>s¹= A‹>‰’ê=à[À<•çÉ>;>™™x>PU9<•çÉ>PU9>s¹>PU9>™™x>pbN>s¹>pbN>‰’ê>˜>B=¥®_>¸Ka>2þ‚    <€4n=åÈ—<€4n>2þ‚=@N½=K(R=@N½=¥®_=@N½>2þ‚=@N½>s¹= Aˆ>s¹= Aˆ>‰’ê=à[À<•çÉ>:û>™™x>0H<•çÉ>PU2>™™x>pbN=K(R>ˆ7µ=K(R>ˆ7µ=åÈ—>ˆ7µ>‰’ê>˜>B=K(R>˜>B=åÈ—>˜>B>S ž>¨DÓ<•çÉ>ÈQï=K(R>ØX}=¥®_>è_ ?,ô>øe•>2þ‚>øe•?,ô    <€4ž=åÈ—<€4ž>2þ‚=@N¥=K(R=@N¥=¥®_=@N¥>2þ‚=@N¥>s¹= A‹=¥®_= A‹>s¹= A‹>‰’ê=à[À<•çÉ>;=åÈ—>;>™™x>0H>ñg>0H>™™x>PU9<•çÉ>PU9>S ž>PU9>‰’ê>˜>B=¥®_>¸Ka>2þ‚     ½€4n¾¦éš½€4n¾†Ü½4k¾¶ð(3À¾ „=4k¾¦éš=€4n¾m«â=€4n<•çÉ=ÀN¥=K(R>4n<•çÉ> A‰>™™x>@N¥<•çÉ>@N¥>Ù³¯>`[À?ê:>€4n=K(R>€4n>É­!>€4n?$ðÇ>:û=¥®_> A>ùÀÊ> A?,ô>°H>2þ‚>°H?ê:>°H?$ðÇ    <€4n¾¦éš<€4n¾†Ü<€4n=åÈ—<€4n>2þ‚=@N½¾¶ð(=@N½¾-‘¬=@N½=K(R=@N½=¥®_=@N½>2þ‚=@N½>s¹= Aˆ>s¹= Aˆ>‰’ê=à[À¾¦éš=à[À½Úîé=à[À<•çÉ>:û¾†Ü>:û>™™x>0H<•çÉ>PU2¾ „>PU2½5tý>PU2>™™x>pbN=K(R>ˆ7µ<•çÉ>ˆ7µ=åÈ—>ˆ7µ>‰’ê>˜>B>S ž>¨DÓ<•çÉ>¨DÓ>™™x>¸K^>™™x>ØX}=¥®_>øe•>2þ‚    <•çÉ>2þ‚=4ƒ<•çÉ=€4l>‰’ê=ÀN¥>S ž>4n>É­!> A‰>‰’ê>`[À>™™x>`[À?,ô>€4n=K(R>€4n=åÈ—>€4n>™™x>€4n?,ô>:û=K(R>:û=åÈ—>:û>S ž>:û>‰’ê> A‰<•çÉ> A‰>S ž> A‰>‰’ê>ÀN¨=K(R>ÐU6=¥®_>ðbN>2þ‚     <€4n=K(R<€4n=åÈ—=@N¥=K(R=@N¥=åÈ—= A<•çÉ= A>™™x=à[À>™™x=à[À>éº=>;=K(R>;>Ù³¯>;>ùÀÊ>0H=¥®_>0H>éº=>pbN>2þ‚   ½à[À¾¦éš½à[À¾†Ü½ Aˆ¾¶ð(½ Aˆ¾-‘¬¼€4-¾¦éš¼€4-½Úîé<€4n¾†Ü= A—¾ „= A—½5tý>:û<•çÉ>PU9<•çÉ>PU9>™™x>pbN>™™x>pbN>éº=>ˆ7µ>Ù³¯>ˆ7µ>ùÀÊ>˜>B=¥®_>˜>B>éº=>¸Ka>2þ‚    <•çÉ>2þ‚=4ƒ<•çÉ=€4l>‰’ê=ÀN¥>S ž>4n>É­!> A‰>2þ‚>@N¥=K(R>@N¥>2þ‚>@N¥>s¹>`[À=K(R>`[À?,ô>€4n<•çÉ>€4n>™™x>€4n?,ô>:û<•çÉ>:û>‰’ê>:û>™™x> A‰>‰’ê>ÀN¨=¥®_>à[Ã>2þ‚    >2þ‚=4p=K(R=4p=åÈ—=€4n=K(R=€4n=åÈ—=€4n>‰’ê=ÀN«<•çÉ>4n>É­!> A=K(R>@N¥=¥®_>`[Ç?,ô>€4q>2þ‚>€4q?,ô  >2þ‚=€4l>‰’ê=ÀN¥<•çÉ>4n<•çÉ>4n>™™x> A>S ž> A>‰’ê>@N¥>S ž>@N¥>‰’ê>€4q>‰’ê> A‰<•çÉ> A‰>™™x>°H<•çÉ>°H>™™x>ÀN¥>S ž>ÀN¥>‰’ê>ÐU2>S ž>ÐU2>‰’ê>ðbN>‰’ê?7µ>™™x?:û=K(R?:û=åÈ—?:û>™™x?>D=K(R?>D=åÈ—?>D>S ž?>D>‰’ê? A‹<•çÉ? A‹>S ž? A‹>‰’ê?0H=K(R?8K_=¥®_?HQì>2þ‚    >2þ‚=€4p>‰’ê=ÀN§<•çÉ>4t<•çÉ>4t>™™x> A‰>S ž> A‰>‰’ê>@N¥>S ž>@N¥>‰’ê>€4q>‰’ê> A>™™x>°H=K(R>°H=åÈ—>°H>™™x>ÀN¨=K(R>ÀN¨=åÈ—>ÀN¨>S ž>ÀN¨>‰’ê>ÐU2<•çÉ>ÐU2>S ž>ÐU2>‰’ê>ðbQ=K(R?4o=¥®_?:û>2þ‚   <€4n=åÈ—<€4n>2þ‚=@N½=K(R=@N½=¥®_=@N½>2þ‚=@N½>s¹= Aˆ>s¹= Aˆ>‰’ê=à[À<•çÉ>:û>™™x>0H<•çÉ>0H>S ž>0H>‰’ê>PU2>ñg>PU2>™™x>pbN=K(R>ˆ7µ=¥®_>ˆ7µ=åÈ—>ˆ7µ>‰’ê>˜>B>ñg>˜>B>S ž>¨DÓ=åÈ—>ÈQï>ñg>ØX}>2þ‚    ½€4l¾¶ð(½4p¾¶ð(=€4p>2þ‚>4n>‰’ê> A‰>S ž>@N¥>É­!>`[Ç>‰’ê>`[Ç>ùÀÊ>€4q>ùÀÊ>:û>™™x> A=K(R> A=åÈ—> A>™™x>°H=K(R>°H=åÈ—>°H>S ž>°H>‰’ê>ÀN¥<•çÉ>ÀN¥>S ž>ÀN¥>‰’ê>à[Ã=K(R>ðbQ=¥®_?7µ>2þ‚    <€4n=åÈ—<€4n>2þ‚=@N½=K(R=@N½=¥®_=@N½>2þ‚=@N½>s¹= Aˆ>s¹= Aˆ>‰’ê=à[À<•çÉ>:û¾¦éš>:û¾†Ü>:û>™™x>0H¾¶ð(>0H<•çÉ>PU2¾ „>PU2>™™x>pbN¾¦éš>pbN=K(R>ˆ7µ¾m«â>ˆ7µ<•çÉ>ˆ7µ>‰’ê>˜>B>S ž>¨DÓ<•çÉ>¨DÓ>™™x>¸K^>™™x>ØX}=¥®_>øe•>2þ‚     >2þ‚=€4l>‰’ê=ÀN¥<•çÉ>4n<•çÉ>4n>™™x> A‰>S ž> A‰>‰’ê>@N¥>S ž>@N¥>‰’ê>€4n>‰’ê> A‰>S ž> A‰>™™x>°H>ñg>°H>™™x>ÀN¨>ñg>à[Ã>2þ‚ =K(R>2þ‚=€4n<•çÉ=€4n>‰’ê=ÀN«>‰’ê=ÀN«>© >4n<•çÉ> A>S ž>@N¥=K(R>@N¥=¥®_>@N¥>ñg>@N¥>S ž>`[Ç<•çÉ>`[Ç=¥®_>`[Ç>ñg> A=¥®_>ÀN¨>2þ‚    >2þ‚=4p=K(R=4p=åÈ—=€4n=K(R=€4n=åÈ—=€4n>‰’ê=€4n>Ù³¯=ÀN«<•çÉ>4n>É­!> A=K(R>@N¥=¥®_>`[Ç?,ô>€4q>2þ‚>€4q>Ù³¯>€4q?,ô   <€4n=K(R<€4n=åÈ—=@N½=K(R=@N½=åÈ—= Aˆ<•çÉ= Aˆ>™™x=à[À<•çÉ=à[À>™™x>0H=K(R>pbN=åÈ—>ˆ7µ=K(R>ˆ7µ=åÈ—>˜>B=K(R>˜>B=åÈ—>˜>B>S ž>¨DÓ<•çÉ>¨DÓ>™™x>¸K^>™™x>ÈQï=K(R>ØX}=¥®_>øe•>2þ‚   <€4n=K(R<€4n>ñg=@N½=K(R=@N½>ñg=@N½>s¹= Aˆ<•çÉ= Aˆ>s¹= Aˆ>™™x=à[À<•çÉ=à[À>™™x>PU2=K(R>ˆ7µ=åÈ—>˜>B>S ž>˜>B>™™x>¨DÓ>2þ‚>¸K^>ñg>ÈQï>ñg>è_ >2þ‚  <€4^=K(R<€4^>ñg=@NÀ=K(R=@NÀ>ñg=@NÀ>s¹= Aˆ<•çÉ= Aˆ>s¹=à[À<•çÉ=à[À>™™x>;>™™x>0H=K(R>pbN=K(R>pbN=åÈ—>ˆ7µ=K(R>ˆ7µ=åÈ—>˜>B<•çÉ>˜>B>™™x>¨DÐ<•çÉ>¨DÐ>™™x>ÈQì=K(R>è_=åÈ—>øe˜>S ž>øe˜>™™x?6>2þ‚? 9Z>ñg?<Ÿ>ñg?$C.>2þ‚   4>2þ‚=4p=K(R=4p=¥®_=€4p<•çÉ=€4p=¥®_=€4p>‰’ê=ÀN²<•çÉ>4n>™™x> A‰=K(R>@N¥=åÈ—>@N¥>™™x>`[Ç=K(R>`[Ç=åÈ—>`[Ç>S ž>`[Ç>‰’ê>€4q<•çÉ>€4q>S ž>:û>‰’ê>°H<•çÉ>°H>™™x>ÀN¥>s¹>ÀN¥>™™x>ÐU2>s¹>ÐU2>‰’ê>à[Ã=¥®_?4o>2þ‚    <€4n¾¦éš<€4n¾†Ü<€4n=K(R<€4n=åÈ—=@N½¾¶ð(=@N½¾-‘¬=@N½=K(R=@N½=åÈ—= Aˆ<•çÉ= Aˆ>™™x=à[À¾¦éš=à[À½Úîé=à[À<•çÉ=à[À>™™x>:û¾†Ü>0H=K(R>PU2¾ „>PU2½5tý>pbN=åÈ—>ˆ7µ<•çÉ>˜>B>S ž>¨DÓ<•çÉ>¨DÓ>™™x>¸K^>™™x>ØX}=¥®_>øe•>2þ‚     ¼€4n¾¦éš¼€4n¾†Ü<€4n¾¶ð(<€4n¾-‘¬<€4n>2þ‚= Aˆ¾¦éš= Aˆ<•çÉ= Aˆ>‰’ê=à[À¾†Ü=à[À½šÔµ=à[À¼U;>:û¾†Ü>:û¾-‘¬>:û½šÔµ>:û¼U;>:û=K(R>:û>™™x>0H¾-‘¬>0H½šÔµ>PU2¼U;>PU2=åÈ—>PU2>™™x>pbN=åÈ—>pbN>2þ‚>pbN>‰’ê>ˆ7µ>2þ‚>ˆ7µ>‰’ê>¨DÓ=¥®_>ØX}>2þ‚   >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =à[À?ã¬=à[À?ê:>;>éº=>;?$ðÇ>PU9>Ù³¯>PU9?,ô>ˆ7µ>Ù³¯>ˆ7µ?,ô>¨DÓ>éº=>¨DÓ?$ðÇ>¸Ka?ã¬>¸Ka?ê: dx-4.4.4/fonts/script_s.dx0000644000076500000240000025350307120242521012374 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 9 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 9 msb ieee data 72 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.344300 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 6 msb ieee data 144 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 4 msb ieee data 192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.563400 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 224 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 35 msb ieee data 320 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 33 msb ieee data 600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.657300 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 864 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 1072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 48 msb ieee data 1280 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 49 msb ieee data 1664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 2056 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 2112 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.344300 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 16 msb ieee data 2160 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 16 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.469500 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 16 msb ieee data 2416 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 16 msb ieee data 2544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.469500 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 2672 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.532100 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2744 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2792 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 6 msb ieee data 2848 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.344300 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2896 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2920 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2984 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 3000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 34 msb ieee data 3008 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 36 msb ieee data 3280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.657300 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 9 msb ieee data 3568 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 7 msb ieee data 3640 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.657300 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 34 msb ieee data 3696 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 34 msb ieee data 3968 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.657300 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 41 msb ieee data 4240 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 42 msb ieee data 4568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.657300 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 6 msb ieee data 4904 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 4 msb ieee data 4952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.657300 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 29 msb ieee data 4984 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 29 msb ieee data 5216 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.657300 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 39 msb ieee data 5448 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 40 msb ieee data 5760 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.657300 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 22 msb ieee data 6080 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 20 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.657300 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 46 msb ieee data 6416 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 51 msb ieee data 6784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.657300 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 39 msb ieee data 7192 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 40 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.657300 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 7824 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 7 msb ieee data 7888 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.344300 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 7944 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 10 msb ieee data 8032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.344300 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 8112 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 8136 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 8152 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 8184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 8200 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 29 msb ieee data 8240 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 28 msb ieee data 8472 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.657300 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 8696 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 9080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 19 msb ieee data 9464 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 18 msb ieee data 9616 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.626000 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 36 msb ieee data 9760 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 37 msb ieee data 10048 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.719900 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 23 msb ieee data 10344 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 22 msb ieee data 10528 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.626000 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 32 msb ieee data 10704 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 33 msb ieee data 10960 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.719900 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 27 msb ieee data 11224 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 26 msb ieee data 11440 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.626000 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 24 msb ieee data 11648 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 22 msb ieee data 11840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.626000 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 28 msb ieee data 12016 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 27 msb ieee data 12240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.719900 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 36 msb ieee data 12456 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 34 msb ieee data 12744 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.751200 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 24 msb ieee data 13016 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 23 msb ieee data 13208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.532100 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 23 msb ieee data 13392 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 23 msb ieee data 13576 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.469500 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 34 msb ieee data 13760 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 33 msb ieee data 14032 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.751200 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 28 msb ieee data 14296 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 27 msb ieee data 14520 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.594700 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 40 msb ieee data 14736 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 39 msb ieee data 15056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 1.032900 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 29 msb ieee data 15368 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 28 msb ieee data 15600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.751200 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 27 msb ieee data 15824 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 27 msb ieee data 16040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.657300 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 30 msb ieee data 16256 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 29 msb ieee data 16496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.782500 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 31 msb ieee data 16728 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 30 msb ieee data 16976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 36 msb ieee data 17216 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 36 msb ieee data 17504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.782500 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 27 msb ieee data 17792 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 26 msb ieee data 18008 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 22 msb ieee data 18216 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 21 msb ieee data 18392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.594700 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 30 msb ieee data 18560 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 29 msb ieee data 18800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.751200 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 31 msb ieee data 19032 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 30 msb ieee data 19280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.719900 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 18 msb ieee data 19520 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 17 msb ieee data 19664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.876400 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 34 msb ieee data 19800 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 32 msb ieee data 20072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.751200 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 35 msb ieee data 20328 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 34 msb ieee data 20608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.719900 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 39 msb ieee data 20880 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 38 msb ieee data 21192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.657300 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 21496 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 21544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 21576 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 21592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 21600 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 21648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 21680 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 21736 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 21776 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 21792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 21800 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 21856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.344300 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 21 msb ieee data 21904 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 20 msb ieee data 22072 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.500800 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 22 msb ieee data 22232 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 21 msb ieee data 22408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.438200 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 13 msb ieee data 22576 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 12 msb ieee data 22680 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.344300 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 22 msb ieee data 22776 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 20 msb ieee data 22952 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.500800 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 16 msb ieee data 23112 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 15 msb ieee data 23240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.313000 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 23 msb ieee data 23360 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 22 msb ieee data 23544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.250400 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 25 msb ieee data 23720 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 24 msb ieee data 23920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.469500 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 26 msb ieee data 24112 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 25 msb ieee data 24320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.469500 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 13 msb ieee data 24520 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 12 msb ieee data 24624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.219100 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 17 msb ieee data 24720 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 16 msb ieee data 24856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.219100 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 28 msb ieee data 24984 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 27 msb ieee data 25208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.438200 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 17 msb ieee data 25424 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 16 msb ieee data 25560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.250400 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 28 msb ieee data 25688 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 27 msb ieee data 25912 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.782500 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 20 msb ieee data 26128 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 19 msb ieee data 26288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.563400 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 21 msb ieee data 26440 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 21 msb ieee data 26608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.438200 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 20 msb ieee data 26776 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 18 msb ieee data 26936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.469500 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 23 msb ieee data 27080 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 23 msb ieee data 27264 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.469500 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 14 msb ieee data 27448 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 13 msb ieee data 27560 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.406900 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 14 msb ieee data 27664 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 12 msb ieee data 27776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.344300 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 13 msb ieee data 27872 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 10 msb ieee data 27976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.281700 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 17 msb ieee data 28056 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 15 msb ieee data 28192 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.469500 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 14 msb ieee data 28312 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 13 msb ieee data 28424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.469500 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 20 msb ieee data 28528 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 19 msb ieee data 28688 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.657300 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 18 msb ieee data 28840 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 16 msb ieee data 28984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.500800 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 21 msb ieee data 29112 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 19 msb ieee data 29280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.469500 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 22 msb ieee data 29432 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 21 msb ieee data 29608 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.438200 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 29776 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 30056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 30328 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 30344 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 30352 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 30632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 30904 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 31064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 31224 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 31320 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.357301 # end =€4n=K(R=ÀN¥<•çÉ=ÀN¥=¥®_>4n=K(R> A‰>‰’ê>`[À?$ðÇ>€4n?$ðÇ>€4n?,ô>:û?$ðÇ=ÀN¥>éº=> A‰?,ô>@N¥?,ô>ÀN¥>éº=>à[Ã?,ô>ðbQ?,ô=ÀN¥>S ž>4n¾MžÇ>4n>É­!> A‰¾MžÇ>°H?M*?7¶>S ž?7¶?M*?:ý>É­!=€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n½Úîé>4n=K(R>4n>2þ‚> A?ã¬> A?ê:>@N¥>éº=>`[À<•çÉ>`[À>Ù³¯>`[À>éº=>`[À?$ðÇ>:û½Úîé> A‰?,ô>°H<•çÉ>ÀN¥?M*>à[Ã=K(R>à[Ã>™™x>à[Ã>© >à[Ã?,ô>ðbN=¥®_>ðbN>™™x?4o>ñg?4o>s¹?7¶?ã¬?7¶?$ðÇ?7¶?M*?:ý>ùÀÊ?:ý? æó?:ý?í?>B?ã¬?>B? æó!!""     =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =€4l=åÈ—=€4l>2þ‚=ÀN¥=K(R=ÀN¥=åÈ—=ÀN¥>2þ‚=ÀN¥>s¹>4n=K(R>4n>s¹>4n>‰’ê> A>‰’ê>@N¥<•çÉ>@N¥>™™x>:û<•çÉ> A‰>ùÀÊ> A‰?ê:>°H=K(R>°H>™™x>°H>© >°H>¹¦“>°H?$ðÇ>ÀN¥>S ž>ÀN¥>s¹>ÐU2=åÈ—>ÐU2>É­!>ÐU2?,ô>à[À=åÈ—>à[À>ñg>ðbN>éº=>ðbN?$ðÇ?4n=K(R?4n=¥®_?4n?ã¬?4n?ê:?:û<•çÉ?:û=K(R?:û>¹¦“? A‹<•çÉ? A‹=K(R? A‹>Ù³¯?(DÒ=¥®_?(DÒ=åÈ—?0H>É­!?0H>éº=?8K_>¹¦“?8K_>Ù³¯?8K_>éº=?@N¦>É­!?@N¦>Ù³¯,))++..//--**&&##    !!$$''(   ""%%'>4n>ùÀÊ> A‰?$ðÇ>@N¥? æó>@N¥?í>@N¥?,ô>`[À?í>`[À?$ðÇ=@N¥=åÈ—=@N¥>s¹= A‹½5tý= A‹=K(R= A‹>S ž= A‹>É­!=à[À¾ „=à[À½Úîé=à[À>¹¦“>;¾MžÇ>;>éº=>;?ã¬>PU9?ê:>PU9?í>˜>B?4÷U>ØX}?M*    =@NÀ¾MžÇ>0H½Úîé>ˆ7µ¼U;>ˆ7µ<•çÉ>¨DÐ=¥®_>¨DÐ>ñg>¨DÐ?M*>¸K^>s¹>¸K^?4÷U>¸K^?<úœ>ÈQì>S ž>ÈQì>É­!>ÈQì? æó>ÈQì?$ðÇ>ØXy>¹¦“>ØXy>ùÀÊ   =à[À>É­!=à[À?ê:>ˆ7µ>™™x>ˆ7µ?,ô>ØX}>É­!>ØX}?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé> A‰=K(R>@N¥½5tý>@N¥<•çÉ>@N¥=¥®_>`[Ç<•çÉ>`[Ç=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R½€4l¾MžÇ?@N¦?M*=ÀN¥>2þ‚=ÀN¥>‰’ê>4n=¥®_>4n>2þ‚>4n>‰’ê>4n>É­!> A=K(R> A=¥®_> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À?ê:>€4n?ê:>:û<•çÉ>:û?$ðÇ> A‰?$ðÇ>°H=K(R>ÀN¥=K(R>ÀN¥?,ô>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o?í?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶?ã¬?7¶?í?:ý>Ù³¯?:ý?㬠  !!  >PU2>ùÀÊ>pbN<•çÉ>ˆ7µ<•çÉ>ˆ7µ?ã¬>˜>B?ã¬>¸K^?ê:>ÈQì? æó>ØX}?ê:>è_?,ô=€4l<•çÉ=ÀN³=¥®_>4n=åÈ—>4n>ñg>@N«=åÈ—>@N«>S ž>`[À?ã¬>`[À? æó>€4n>ùÀÊ>€4n? æó>€4n?í>:û>‰’ê>:û?ã¬>:û?$ðÇ>°H<•çÉ>°H=K(R>ÀN¥?,ô>ÐU2>© >à[Ã<•çÉ>à[Ã=K(R>ðbQ>É­!>ðbQ?,ô?4o=K(R?4o=¥®_?4o>É­!?7¶>ñg?7¶>éº=?7¶?$ðÇ?:ý>éº=?:ý?ã¬?:ý?ê:?:ý?$ðÇ?>D?ã¬?>D?ê:  !!   = A˜>ñg= A˜>2þ‚=à[À=¥®_=à[À>ñg=à[À>S ž>:û=K(R>:û>2þ‚>PU2?ã¬>PU2? æó>pbN<•çÉ>pbN>ùÀÊ>pbN? æó>pbN?í>ˆ7µ?ã¬>ˆ7µ?$ðÇ>˜>B>¹¦“>¸K^<•çÉ>¸K^>¹¦“>¸K^?,ô>ØX}=K(R>ØX}>© >è_=K(R>è_=¥®_>è_>™™x>è_>© >è_>É­!>è_?,ô>øe•=¥®_>øe•>ñg>øe•>s¹>øe•>™™x?6>ñg?6>s¹?6>éº=?6?$ðÇ? 9Z>éº=? 9Z?ã¬? 9Z?ê:? 9Z?$ðÇ?<¡?ã¬?<¡?ê:  &&((''##""%%$$!!  = A˜>S ž>¨DÓ<•çÉ>¸K^<•çÉ?6?$ðÇ? 9Z?,ô?<¡>S ž=€4}>ñg=€4}>2þ‚=ÀN¥=¥®_=ÀN¥>ñg=ÀN¥>S ž>4n=K(R>4n>2þ‚>4n>¹¦“> A>É­!>`[À<•çÉ>€4n>Ù³¯>:û?$ðÇ>:û?,ô> A‰<•çÉ>°H>Ù³¯>ÀN¥=K(R>ÐU2=K(R>ÐU2>É­!>à[Ã=åÈ—>à[Ã>¹¦“>à[Ã>É­!>à[Ã?$ðÇ>ðbN=åÈ—>ðbN>S ž>ðbN>™™x>ðbN>¹¦“?4o>S ž?4o>™™x?>B?,ô      =ÀN¥>ñg=ÀN¥>‰’ê>4n=¥®_>4n=åÈ—>4n>s¹>4n>‰’ê>4n>É­!> A=K(R> A>™™x> A>É­!> A>ùÀÊ>@N¥>ùÀÊ>`[À<•çÉ>`[À>¹¦“>`[À?ê:>€4n?ê:>:û>É­!>:û?$ðÇ> A‰<•çÉ> A‰?$ðÇ>ÀN¥=K(R>ÀN¥>É­!>ÀN¥?,ô>ÐU2=K(R>à[Ã=åÈ—>à[Ã>¹¦“>ðbN=åÈ—>ðbN>2þ‚>ðbN>™™x>ðbN>© >ðbN?,ô?4o>2þ‚?4o>‰’ê?4o? æó?7¶?ã¬?7¶?ê:?7¶?$ðÇ?:ý? æó?:ý?ê:#!!""%%&&$$     =ÀN§>ùÀÊ>4t?ê:> A‰<•çÉ> A‰?í> A‰?,ô>@N¥<•çÉ>@N¥>ñg>`[À>ñg>`[À>S ž>`[À?$ðÇ>`[À?,ô>€4q>S ž>:ÿ>™™x>:ÿ?$ðÇ>:ÿ?,ô> A>™™x>à[Ã?ê:>ðbQ>ùÀÊ?4o?ê:?7¶?ê:?7¶?í?:û?,ô    = A˜=åÈ—= A˜>S ž=à[À=K(R=à[À=åÈ—=à[À>S ž=à[À>‰’ê>:û=K(R>:û>‰’ê>0H>© >PU2<•çÉ>PU2>© >PU2>éº=>PU2? æó>pbN>É­!>pbN>éº=>pbN? æó>pbN?í>ˆ7µ>É­!>ˆ7µ?í>ˆ7µ?$ðÇ>˜>B>¹¦“>˜>B?$ðÇ>¨DÓ<•çÉ>¸K^?,ô>ÈQì>¹¦“>ØX}=K(R>è_=K(R>è_=¥®_>è_>© >è_?,ô>øe•=¥®_>øe•>ñg>øe•>‰’ê>øe•>™™x>øe•>É­!?6>ñg?6>s¹?6>É­!?6>Ù³¯?6?$ðÇ? 9Z>Ù³¯? 9Z>ùÀÊ? 9Z?ê:? 9Z?$ðÇ?<¡>ùÀÊ?<¡?ê: %%((,,--++""&&))**'' ##$$!!   =ÀN¥=åÈ—=ÀN¥>ñg>4n=K(R>4n=åÈ—>4n>2þ‚> A>ñg> A>Ù³¯> A?ã¬>@N¥<•çÉ>@N¥>¹¦“>@N¥>É­!>@N¥?ã¬>@N¥?ê:>`[À>© >`[À?ê:>€4n?$ðÇ>:û<•çÉ>:û>™™x>:û?$ðÇ>°H=K(R>°H?,ô>ÀN¥=K(R>ÀN¥>™™x>ÐU2=åÈ—>à[Ã=åÈ—>à[Ã>© >à[Ã?,ô>ðbN>S ž?4o>S ž?4o>™™x?4o>É­!?4o?$ðÇ?7¶>™™x?7¶>Ù³¯?7¶>éº=?7¶?ê:?7¶?í?:ý>Ù³¯?:ý? æó"  $$&&%%  ##!!=ÀN¥=K(R>4n<•çÉ>4n=¥®_> A‰=K(R>@N¥>Ù³¯>`[À>É­!>`[À>éº=>€4n>Ù³¯= Aˆ½Úîé=à[À=K(R>:û½5tý>:û<•çÉ>:û=¥®_>0H<•çÉ>0H=K(R>PU2>Ù³¯>pbN>É­!>pbN>éº=>ˆ7µ>Ù³¯  >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x>4n?ã¬>4n? æó> A‰=K(R> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥<•çÉ>@N¥=¥®_>@N¥?ã¬>@N¥?$ðÇ>`[Ç=K(R>`[Ç>‰’ê>`[Ç>© >€4q>s¹>:û>¹¦“>:û?,ô> A>s¹>ÀN¥>É­!>ÐU2?,ô>à[Ã>Ù³¯>ðbQ>Ù³¯>ðbQ>éº=>ðbQ?$ðÇ?4o>éº=?4o?ã¬?4o?ê:?4o?$ðÇ?7µ?ã¬?7µ?ê:   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4p<•çÉ=ÀN¥=K(R> A‰>s¹> A‰>™™x>@N¥>ñg>@N¥>2þ‚>@N¥>© >€4n=åÈ—>€4n>© >:û>‰’ê>°H=K(R>°H>‰’ê>ÐU2>S ž>ÐU2>ùÀÊ>à[Ã<•çÉ>ðbQ=åÈ—?4o<•çÉ?4o?,ô?>D<•çÉ   = Aˆ=K(R= Aˆ>ñg=à[Î<•çÉ=à[Î>™™x>:û<•çÉ>:û>É­!>0H>éº=>PU9=K(R>pbN? æó>ˆ7µ=åÈ—>˜>B=K(R>˜>B?í>¨DÓ>S ž>¸Ka<•çÉ>¸Ka>‰’ê>¸Ka?$ðÇ>ÈQì>¹¦“>ÈQì?í>ØX}>¹¦“>ØX}>ùÀÊ>ØX}?ê:>è_ <•çÉ>è_ ?,ô?6=K(R?6>© ?6>É­!? 9Z=¥®_? 9Z>™™x? 9Z?,ô?<¡>ñg?<¡>s¹?<¡>Ù³¯??ç>éº=??ç?$ðÇ?$C-?ã¬?$C-?ê:  !!##""  = Aˆ>2þ‚= Aˆ>™™x=à[À=¥®_=à[À>Ù³¯>;=K(R>;>ùÀÊ>PU2<•çÉ>PU2?ê:>ˆ7µ<•çÉ>ˆ7µ?$ðÇ>¸K^=K(R>¸K^>éº=>¸K^>ùÀÊ>¸K^?,ô>ÈQì>Ù³¯>ØXy=åÈ—>è_>2þ‚>è_>Ù³¯>è_?,ô?6>éº=?6?$ðÇ? 9Z?ã¬? 9Z?ê:   <€4n=K(R<€4n=åÈ—=@N§<•çÉ=@N§>ñg=à[À<•çÉ=à[À>ñg>0H=K(R>0H=åÈ—>pbU=K(R>pbU=åÈ—>ˆ7µ>2þ‚>˜>B>‰’ê>¨DÐ<•çÉ>¨DÐ>éº=>¸Ka?ê:>ÈQï? æó>ÈQï?í>ÈQï?$ðÇ>ØX}<•çÉ>ØX}>éº=>è_ ?,ô>øe˜>¹¦“?6=K(R? 9Z>™™x? 9Z?,ô?<¡=åÈ—??ç?$ðÇ?$C.>s¹?$C.?í?,Ft>É­!?,Ft?ã¬?4I¼>S ž  = Aˆ>ñg= Aˆ>s¹=à[À=¥®_=à[À>™™x>;=K(R>;>© >0H>ùÀÊ>0H?ê:>PU2>Ù³¯>PU2?$ðÇ>pbN<•çÉ>pbN>¹¦“>pbN>É­!>˜>B?,ô>¨DÐ<•çÉ>¨DÐ>¹¦“>ØXy=K(R>ØXy?ã¬>ØXy? æó>ØXy?,ô>è_>ùÀÊ>øe˜=åÈ—?6>2þ‚?6>ùÀÊ?6?$ðÇ? 9Z?ã¬? 9Z?ê:    =åÈ—>2þ‚=4‘=K(R=4‘>S ž=ÀN§<•çÉ=ÀN§>S ž>4t?ê:> A‰<•çÉ> A‰>2þ‚> A‰?ã¬> A‰?$ðÇ>`[À=K(R>`[À>ùÀÊ>€4q>¹¦“>€4q?,ô>:ÿ=åÈ—>:ÿ>ùÀÊ>°H>s¹>°H?,ô>ÐU2>Ù³¯>ðbQ?$ðÇ?7¶>¹¦“?:û?$ðÇ? A‹?,ô    =€4l<•çÉ>4n=K(R>4n>2þ‚>4n>s¹> A=åÈ—>`[À=K(R>€4q>2þ‚>:û>ùÀÊ>:û?ê:> A‰<•çÉ> A‰>Ù³¯> A‰?$ðÇ>°H>© >°H?,ô>ÀN¥>É­!>ÀN¥>Ù³¯>ÀN¥?,ô>ÐU2? æó>ÐU2?$ðÇ>à[À<•çÉ?4n>É­!?7µ=K(R?>D=åÈ—?>D>Ù³¯? A‹>2þ‚? A‹>éº=?(DÒ>© ?(DÒ?㬠   <€4n=K(R<€4n=åÈ—=@N§<•çÉ=à[Î<•çÉ=à[Î? æó=à[Î?ê:>:û>ùÀÊ>:û?$ðÇ>0H=¥®_>PU9>™™x>PU9>éº=>PU9?,ô>pbN>S ž>pbN?,ô>˜>B>É­!>˜>B?$ðÇ>¨DÓ?ã¬>¨DÓ?ê:>è_ =K(R>è_ >ñg>øe•<•çÉ>øe•>™™x>øe•>É­!?6<•çÉ? 9Z>Ù³¯? 9Z>ùÀÊ?<¡=K(R??ç=¥®_??ç?í?$C->ùÀÊ?,Fu>2þ‚?,Fu?,ô?4I¼? æó?4I¼?,ô?2þ‚=ÀN¥=K(R=ÀN¥>S ž> A<•çÉ> A>S ž>`[À<•çÉ>`[À>2þ‚>:û=K(R>:û>ùÀÊ>:û?ê:> A‰>É­!> A‰?$ðÇ>°H=åÈ—>°H>© >°H?,ô>ÀN¥>2þ‚>ÐU2>s¹>ÐU2?,ô>à[Ã>© >à[Ã?$ðÇ>ðbN>2þ‚>ðbN>ùÀÊ>ðbN?ê:  =@N§¾¦éš=@N§¾†Ü= AŒ¾¶ð(= AŒ¾-‘¬>:û¾¦éš>:û½šÔµ>0H¾†Ü>0H>¹¦“>0H? æó>PU2¾-‘¬>PU2¼U;>PU2>2þ‚>PU2?$ðÇ>ˆ7µ<•çÉ>ˆ7µ?,ô>˜>B=K(R>¨DÓ½šÔµ>¨DÓ?,ô>¸Ka>™™x>¸Ka?$ðÇ>ÈQï>éº=>ÈQï? æó>ØX}=åÈ—    <€4n=K(R<€4n=åÈ—=@N§<•çÉ=à[Î<•çÉ=à[Î? æó=à[Î?ê:>:û>ùÀÊ>:û?$ðÇ>0H=¥®_>PU9>éº=>PU9?,ô>pbN>S ž>pbN?,ô>˜>B>É­!>˜>B?$ðÇ>¨DÓ?ã¬>¨DÓ?ê:>¸Ka>É­!>ÈQì=åÈ—>ÈQì>© >ØX}=K(R>ØX}>Ù³¯>è_ <•çÉ>øe•<•çÉ>øe•>ùÀÊ? 9Z=K(R? 9Z?ê:?<¡=¥®_??ç?$ðÇ?$C->2þ‚?,Fu?,ô?4I¼?,ô?ñg=à[À<•çÉ=à[À>ñg>;>™™x>0H=K(R>0H=åÈ—>PU2>™™x>pbN=åÈ—>ˆ7µ=K(R>ˆ7µ>2þ‚>˜>B>‰’ê>¨DÐ>© >¨DÐ>Ù³¯>¸K^<•çÉ>¸K^?ê:>ÈQì?$ðÇ>ØXy<•çÉ>ØXy>É­!>ØXy?,ô>øe˜>éº=>øe˜?,ô?6=K(R?6?ã¬?6?í?<Ÿ=åÈ—   =4p? æó=4p?ê:=€4>ùÀÊ=€4?$ðÇ>4n<•çÉ>4n>éº=>4n?,ô> A‰?,ô>@N¥>s¹>`[À>¹¦“>`[À?$ðÇ>€4n?ã¬>€4n?ê:>:ÿ>ùÀÊ>°H?í>ÀN¨?$ðÇ>à[À<•çÉ>à[À?,ô>ðbN?,ô?4o>s¹?7¶>¹¦“?7¶?$ðÇ?:ý?ã¬?:ý?ê:?>D>ùÀÊ?(DÒ?í?0H?$ðÇ?@N¦?,ô?HQí=K(R?HQí>ñg?HQí?,ô?PU2<•çÉ?XX{<•çÉ?XX{>¹¦“?XX{?$ðÇ?`[Â?ã¬?`[Â?ê:?h_ =K(R?pbP=¥®_?€4n>2þ‚  ""$$##!! %%&&'=4p? æó=4p?ê:=€4p>ùÀÊ=€4p?$ðÇ>4t<•çÉ>4t>éº=>4t?,ô> A‰?,ô>@N¥>s¹>`[Ç>¹¦“>`[Ç?$ðÇ>€4n?ã¬>€4n?ê:>:û>ùÀÊ>°H?í>ÀN¥?$ðÇ>à[Ã?,ô?4o=K(R?4o>ñg?4o?,ô?7¶<•çÉ?:ý<•çÉ?:ý>¹¦“?:ý?$ðÇ?>D?ã¬?>D?ê:? A‹=K(R?(DÐ=¥®_?8K_>2þ‚  =€4p>2þ‚=€4p>™™x=ÀN§=¥®_=ÀN§>Ù³¯>4t=K(R>4t>ùÀÊ>@N¥<•çÉ>@N¥?ê:>€4q<•çÉ>€4q?$ðÇ>:ÿ?ã¬>:ÿ?í> A>Ù³¯>°H=K(R>°H?,ô>ÀN¨>© >ÐU2=åÈ—>ÐU2?,ô>à[Ã>‰’ê>ðbQ>S ž>ðbQ?$ðÇ?4o>‰’ê?4o?í?7¶>S ž?7¶>É­!?7¶?ã¬?>D>2þ‚   =€4l=K(R=€4l>ñg=ÀN³<•çÉ=ÀN³>™™x>4n<•çÉ>4n>É­!> A‰>éº=>@N«=K(R>`[À? æó>€4n=åÈ—>:û?í> A>S ž>°H>‰’ê>°H?$ðÇ>ÀN¥>¹¦“>ÀN¥?í>ÐU2>É­!>ÐU2>ùÀÊ>ÐU2?ê:>à[Ã>¹¦“>à[Ã?,ô?4o>© ?>D>© ?>D?,ô?(DÒ>¹¦“?(DÒ?$ðÇ?0H>É­!?0H?í?8K^>éº=?8K^? æó  =@N§=K(R=@N§=åÈ—= Aˆ<•çÉ= Aˆ>ñg>:û<•çÉ>:û>ñg>PU9=åÈ—>pbN=K(R>pbN>Ù³¯>pbN>ùÀÊ>ˆ7µ>¹¦“>ˆ7µ?ê:>˜>B=K(R>˜>B=¥®_>¨DÓ>¹¦“>¨DÓ?$ðÇ>ÈQì<•çÉ>ÈQì>ñg>ÈQì>É­!>ØX}>Ù³¯>ØX}?,ô>è_ >ùÀÊ>øe•<•çÉ?6>‰’ê?6?,ô?<¡=K(R?<¡>¹¦“?<¡?$ðÇ??ç>éº=??ç?ê:?$C-=åÈ—    = Aˆ=K(R= Aˆ>ñg=à[Î<•çÉ=à[Î>™™x>:û<•çÉ>:û>É­!>0H>éº=>PU9=K(R>pbN? æó>ˆ7µ=åÈ—>˜>B?í>¨DÓ>S ž>¸Ka>‰’ê>¸Ka?$ðÇ>ÈQì>¹¦“>ÈQì?í>ØX}>© >ØX}>ùÀÊ>ØX}?ê:>è_ =åÈ—>è_ >‰’ê>è_ ?,ô>øe•=K(R>øe•>© ? 9Z<•çÉ?<¡>© ?<¡?,ô??ç=K(R?$C-=¥®_?$C->¹¦“?$C-?$ðÇ?,Fu>É­!?,Fu?í?4I¼>2þ‚?4I¼>éº=?4I¼? æó   ##""!=@N§<•çÉ=à[Î=K(R=à[Î>2þ‚=à[Î>s¹>:û=åÈ—>0H=åÈ—>PU9=K(R>ˆ7µ>s¹>˜>B<•çÉ>˜>B?ã¬>˜>B?ê:>¨DÓ>© >¨DÓ>éº=>¨DÓ?$ðÇ>¸Ka?,ô>ÈQì>É­!>ÈQì>éº=>ÈQì?,ô>ØX}<•çÉ>ØX}? æó>ØX}?$ðÇ>øe•>© ?6=K(R? 9Z=¥®_? 9Z>‰’ê?<¡>ñg?<¡>S ž  ¼€4n=åÈ—¼€4n>2þ‚<€4®=K(R<€4®>S ž= AŒ<•çÉ= AŒ>S ž=à[Î?ê:>:û<•çÉ>:û>2þ‚>:û?ã¬>:û?$ðÇ>PU2=K(R>PU2>ùÀÊ>pbU?,ô>ˆ7µ=åÈ—>ˆ7µ>ùÀÊ>¨DÓ>s¹>¨DÓ?,ô>ÈQï>Ù³¯>è_ ?$ðÇ? 9X?$ðÇ??ç?,ô   =4p? æó=4p?ê:=€4p>ùÀÊ=€4p?$ðÇ>4t>éº=>4t?,ô> A‰=åÈ—> A‰>2þ‚> A‰?,ô>@N¥=K(R>@N¥>™™x>`[Ç>É­!>`[Ç?$ðÇ>€4n<•çÉ>€4n?ã¬>€4n?ê:> A‰<•çÉ>ÀN¥=K(R>ÐU2=¥®_>ðbQ>S ž?4o=K(R?4o>ñg?7¶<•çÉ?7¶>© ?:ý<•çÉ?:ý>éº=? A‹=K(R? A‹?,ô?(DÐ=¥®_?8K_>2þ‚   =€4p? æó=€4p?ê:=ÀN¥>ùÀÊ=ÀN¥?$ðÇ> A‰>éº=> A‰?,ô>@N¥=¥®_>@N¥>2þ‚>@N¥?,ô>`[Ç<•çÉ>`[Ç>™™x>€4n>É­!>€4n?$ðÇ>:û<•çÉ>:û?ã¬>:û?ê:>°H=K(R>à[Ã>ñg?4o>s¹?4o?ã¬?4o?ê:?7¶>Ù³¯?7¶?$ðÇ?:ý>¹¦“?:ý?,ô?>D>¹¦“?>D>éº=?>D?,ô? A‹?ê:? A‹?$ðÇ?(DÐ>©    ? æó?ê:=4h>ùÀÊ=4h?$ðÇ=ÀN¥>éº==ÀN¥?,ô>4n?,ô>@N¥<•çÉ>@N¥?$ðÇ>`[À>ùÀÊ>`[À?ê:>à[À<•çÉ?4n?,ô?7µ>s¹? A‹>Ù³¯?8K_? æó?PU4?$ðÇ?`[Â?,ô    =4p=K(R=4p=åÈ—=€4p<•çÉ>4t<•çÉ> A‰?ã¬> A‰?ê:>@N¥=K(R>@N¥>ùÀÊ>@N¥?$ðÇ>€4n=åÈ—>€4n>ùÀÊ>€4n?,ô> A‰>S ž> A‰?,ô>°H=åÈ—>°H>S ž>ÀN¥=K(R>ÀN¥?$ðÇ>ÐU2>ùÀÊ>ÐU2?ê:>à[Ã<•çÉ>à[Ã>ùÀÊ?4o<•çÉ?4o>S ž?4o?ê:?:ý=K(R?:ý>S ž?:ý?$ðÇ?>D=åÈ—?>D>2þ‚? A‹?,ô?0H?,ô?8K_?ê:?8K_?$ðÇ   !! =€4p? æó=€4p?ê:=ÀN¥>ùÀÊ=ÀN¥?$ðÇ> A‰>éº=> A‰?,ô>@N¥=åÈ—>@N¥>2þ‚>@N¥?,ô>`[Ǿ¦éš>`[Ǿ†Ü>`[Ç=K(R>`[Ç>™™x>€4n¾¶ð(>€4n¾-‘¬>€4n<•çÉ>€4n>É­!>€4n?$ðÇ>:û?ã¬>:û?ê:> A‰¾¦éš> A‰½šÔµ> A‰<•çÉ>ÀN¥¾MžÇ>ÀN¥=K(R>ÐU2<•çÉ>à[ý5tý>à[Ã=åÈ—?4o=¥®_?4o>ñg?4o>S ž?7¶>‰’ê?>D>éº=?(DÐ>2þ‚?(DÐ?,ô   "  != A˜=K(R= A˜=åÈ—=à[À¾¦éš=à[À¾†Ü=à[À<•çÉ=à[À>ñg>:û¾¶ð(>:û¾-‘¬>PU2¾¦éš>PU2½šÔµ>PU2<•çÉ>PU2>ñg>PU2>Ù³¯>PU2>ùÀÊ>pbN>¹¦“>pbN?ê:>ˆ7µ¾m«â>ˆ7µ=K(R>ˆ7µ=åÈ—>˜>B¾-‘¬>˜>B<•çÉ>˜>B=¥®_>˜>B>¹¦“>˜>B?$ðÇ>¨DÓ½šÔµ>¨DÓ<•çÉ>¸K^>É­!>ÈQì=¥®_>ÈQì>ñg>ÈQì>Ù³¯>ÈQì?,ô>ØX}>ùÀÊ>øe•>s¹>øe•?,ô? 9Z>¹¦“? 9Z?$ðÇ?<¡>2þ‚?<¡>éº=?<¡?ê: !!##&&%%""    $=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n? æó> A‰>ùÀÊ> A‰? æó> A‰?í>@N¥?ã¬>`[À?,ô=åÈ—>2þ‚=4ƒ=K(R=4ƒ>s¹=€4l>‰’ê=ÀN¥<•çÉ>4n>™™x> A‰<•çÉ>@N¥>™™x>`[À=K(R>€4n=åÈ—>€4n>‰’ê>:û=K(R>:û>ñg>:û>S ž> A‰<•çÉ> A‰>™™x>°H<•çÉ>ÐU6=K(R>à[Ã=¥®_?4o>2þ‚   3À>2þ‚=4k=K(R=4k>s¹=€4n<•çÉ=€4n>‰’ê=€4n>éº==ÀN¥<•çÉ=ÀN¥?ê:>4n?$ðÇ> A‰=K(R> A‰>Ù³¯>@N¥>ùÀÊ>@N¥?,ô>`[À=åÈ—>`[À?ê:>`[À?$ðÇ>€4n>S ž>€4n>™™x>:û>2þ‚> A>ñg>ÀN¨>ñg>à[À>2þ‚   3À=åÈ—3À>2þ‚=4k=K(R=4k>s¹=€4n>‰’ê=ÀN¥<•çÉ>4n>™™x>@N¥<•çÉ>@N¥>™™x>`[À>s¹>`[À>‰’ê>:û=¥®_>°H>2þ‚  =åÈ—>2þ‚=4ƒ=K(R=4ƒ>s¹=€4l>‰’ê=ÀN¥<•çÉ>4n>™™x> A‰<•çÉ>@N¥>™™x>`[À=K(R>€4n=åÈ—>€4n>‰’ê>:û=K(R>:û>ñg>:û>S ž> A‰<•çÉ> A‰>™™x>°H<•çÉ>ÐU6=K(R>à[Ã=¥®_>à[Ã?,ô?4o>2þ‚   =åÈ—>S ž=4p=K(R=4p=¥®_=4p>‰’ê=ÀN«<•çÉ=ÀN«=åÈ—=ÀN«>™™x>4n>ñg>4n>™™x> A<•çÉ> A>S ž> A>‰’ê>`[Ç=K(R>€4q=¥®_> A>2þ‚  ½ Az¾¦éš½ Az¾†Ü½@N¥¾¶ð(½@N¥¾-‘¬<€4ž¾¦éš=@N¥¾m«â=@N¥=K(R= A‹=K(R= A‹>2þ‚=à[À<•çÉ>;>© >0H<•çÉ>PU9>© >PU9?ê:>pbN=K(R>pbN?$ðÇ>ˆ7µ=¥®_>ˆ7µ>Ù³¯>˜>B>ùÀÊ>˜>B?,ô>¨DÓ>2þ‚>¨DÓ?ê:>¨DÓ?$ðÇ   ¾¦éš¾†Ü=åÈ—>2þ‚=4ƒ¾¶ð(=4ƒ¾-‘¬=4ƒ=K(R=4ƒ>s¹=€4l>‰’ê=ÀN¥¾¦éš=ÀN¥<•çÉ>4n¾†Ü>4n½šÔµ>4n>™™x> A‰<•çÉ>@N¥>™™x>`[À¼U;>`[À=K(R>€4n=¥®_>€4n>‰’ê>:û<•çÉ>:û>S ž> A‰>™™x>ÀN¨=¥®_>ðbN>2þ‚    3À<•çÉ3À>2þ‚=4k=åÈ—=4k>‰’ê=€4n>2þ‚=€4n>‰’ê=€4n>éº==ÀN¥?ê:>4n>‰’ê>4n?$ðÇ> A‰>Ù³¯>@N¥>™™x>@N¥>ùÀÊ>@N¥?,ô>`[À?ê:>`[À?$ðÇ>€4n=K(R>€4n=åÈ—>€4n>™™x>:û<•çÉ>:û>S ž>:û>‰’ê> A<•çÉ>ÀN¨=K(R>ÐU6=¥®_>ðbQ>2þ‚   =K(R=åÈ—>2þ‚=4{<•çÉ=€4t<•çÉ=€4t>™™x=ÀN«>Ù³¯=ÀN«>éº=>4n=K(R>4n>Ù³¯>4n>éº=> A‰=¥®_>`[Ç>2þ‚  ¾4n¾¦éš¾4n¾†Ü½ÀN§¾¶ð(½ÀN§¾-‘¬½4p¾¦éš¾†Ü½šÔµ=ÀN¥¼U;>4n>2þ‚> A‰<•çÉ>@N¥>™™x>`[À>Ù³¯>`[À>éº=>€4n=¥®_>€4n>Ù³¯>€4n>éº=>°H>2þ‚    3À<•çÉ3À>2þ‚=4k=åÈ—=4k>‰’ê=€4n>2þ‚=€4n>‰’ê=€4n>éº==ÀN¥?ê:>4n>2þ‚>4n>‰’ê>4n?$ðÇ> A‰>Ù³¯>@N¥>ñg>@N¥>™™x>@N¥>ùÀÊ>@N¥?,ô>`[À=K(R>`[À>2þ‚>`[À?ê:>`[À?$ðÇ>€4n<•çÉ>€4n>™™x>:û<•çÉ>:û>S ž>:û>‰’ê>°H=K(R>ÀN¨=¥®_>à[À>2þ‚    >2þ‚=4k=K(R=4k>s¹=€4t<•çÉ=€4t>‰’ê=€4t>éº==ÀNª<•çÉ=ÀNª?ê:>4n?$ðÇ> A‰=K(R> A‰>Ù³¯>@N¥=¥®_>@N¥>ùÀÊ>@N¥?,ô>`[À?ê:>`[À?$ðÇ>€4n>2þ‚   >2þ‚=€4l>‰’ê=ÀN¥<•çÉ>4n=åÈ—>4n>™™x> A>2þ‚> A>s¹> A>‰’ê>`[À>‰’ê>:û>™™x> A‰<•çÉ>°H=åÈ—>°H>™™x>ÀN¥>2þ‚>ÀN¥>s¹>ÀN¥>‰’ê>à[À>‰’ê?4n>™™x?:û=K(R?:û=åÈ—?:û>™™x?>D<•çÉ?>D>S ž?>D>‰’ê? A‹<•çÉ?0H=K(R?8K_=¥®_?HQì>2þ‚  4>2þ‚=€4p>‰’ê=ÀN²<•çÉ>4n=åÈ—>4n>™™x> A‰>2þ‚> A‰>s¹> A‰>‰’ê>`[Ç>‰’ê>:û>™™x>°H=K(R>°H=åÈ—>°H>™™x>ÀN¥<•çÉ>ÀN¥>S ž>ÀN¥>‰’ê>ÐU2<•çÉ>ðbQ=K(R?4o=¥®_?:ý>2þ‚  =åÈ—>2þ‚=4ƒ=K(R=4ƒ>s¹=€4l>‰’ê=ÀN¥<•çÉ>4n>™™x> A‰<•çÉ> A‰>S ž> A‰>‰’ê>@N¥>ñg>@N¥>™™x>`[À=K(R>€4n=¥®_>€4n=åÈ—>€4n>‰’ê>:û>ñg>:û>S ž>°H=åÈ—>ÐU6>ñg>à[Ã>2þ‚    ½€4l¾¶ð(=€4p>2þ‚>4t=K(R>4t>S ž>4t>‰’ê> A‰>‰’ê> A‰>© >@N¥<•çÉ>`[À>™™x>€4q<•çÉ>:ÿ<•çÉ>:ÿ>™™x> A=K(R>°H=¥®_>°H>‰’ê>ÀN¨=K(R>ÀN¨>ñg>ÀN¨>S ž>à[Ã=¥®_?7¶>2þ‚   =åÈ—>2þ‚=4ƒ=K(R=4ƒ>s¹=€4l>‰’ê=ÀN¥¾¦éš=ÀN¥¾†Ü=ÀN¥<•çÉ>4n¾¶ð(>4n¾-‘¬>4n>™™x> A‰<•çÉ>@N¥¾¦éš>@N¥>™™x>`[À¾m«â>`[À¼U;>`[À=K(R>€4n>‰’ê>:û<•çÉ>:û>S ž> A‰>™™x>ÀN¨=¥®_>ðbN>2þ‚    3À>2þ‚=€4n>‰’ê=ÀN¥>‰’ê=ÀN¥>© >@N¥=K(R>@N¥=¥®_>@N¥>‰’ê>`[À<•çÉ>`[À>2þ‚>`[À>s¹>€4n<•çÉ> A=K(R>°H=¥®_>ÐU6>2þ‚  =K(R>2þ‚=€4n<•çÉ=€4n>‰’ê=ÀN«>‰’ê=ÀN«>© >4n<•çÉ> A>2þ‚>@N¥<•çÉ>@N¥=K(R>@N¥=åÈ—>€4q=K(R>:û=¥®_>°H>2þ‚  >2þ‚=4k=K(R=4k=åÈ—=4k>Ù³¯=€4t<•çÉ=€4t>‰’ê>4n<•çÉ>4n>É­!>@N¥=K(R>`[À=¥®_>`[À?,ô>€4n>Ù³¯>:ÿ>2þ‚   =K(R=åÈ—>2þ‚=4ƒ<•çÉ=€4l>™™x=ÀN¥<•çÉ> A‰=K(R>`[À=åÈ—>€4n=K(R>€4n=åÈ—>:û<•çÉ>:û>S ž> A‰<•çÉ> A‰>™™x>ÀN¨=K(R>ÐU6=¥®_>ðbN>2þ‚  >2þ‚=4ƒ=K(R=4ƒ>ñg=€4l<•çÉ=€4l>™™x=ÀN¥<•çÉ>@N¥=K(R>€4n=åÈ—>:û>S ž>:û>™™x> A‰>2þ‚>°H>ñg>ÐU6>ñg>ðbN>2þ‚ =¥®_>ñg=4‘<•çÉ=4‘>s¹=ÀN§<•çÉ=ÀN§>™™x> A‰=K(R>`[À=K(R>`[À=åÈ—>€4q<•çÉ>:ÿ>™™x> A<•çÉ>ÀN¨=K(R>à[Ã=åÈ—>ðbQ>S ž>ðbQ>™™x?4o>2þ‚?7¶>ñg?>D>ñg?(DÐ>2þ‚  4>2þ‚=4p=K(R=€4p<•çÉ=€4p>‰’ê>4n<•çÉ>4n>™™x> A‰=K(R>@N¥>™™x>`[Ç=K(R>`[Ç>‰’ê>€4q<•çÉ>:û>‰’ê> A>™™x>°H<•çÉ>ÀN¥>™™x>ÐU2>‰’ê>à[Ã=¥®_?4o>2þ‚   ¾¦éš¾†Ü=K(R=åÈ—>2þ‚=4ƒ¾¶ð(=4ƒ¾-‘¬=4ƒ<•çÉ=€4l>™™x=ÀN¥¾¦éš=ÀN¥<•çÉ>4n¾†Ü>4n½šÔµ> A‰=K(R>`[À¼U;>`[À=åÈ—>:û<•çÉ>:û>S ž> A‰>™™x>ÀN¨=¥®_>ðbN>2þ‚   ¾¦éš¾†Ü>2þ‚=4ƒ¾¶ð(=4ƒ¾-‘¬=€4l<•çÉ=€4l>‰’ê=ÀN¥¾¦éš>4n¾†Ü>4n½šÔµ>4n¼U;>4n>™™x> A‰¾-‘¬> A‰½šÔµ> A‰=K(R>@N¥>™™x>`[À¼U;>`[À=åÈ—>€4n>2þ‚>€4n>s¹>°H=¥®_>à[Ã>2þ‚   >:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/fonts/variable.dx0000644000076500000240000021456207120242617012343 00000000000000object 1 class field attribute "char width" number 0.000000 attribute "series position" number 255.000000 # object 2 class field attribute "char width" number 0.500800 attribute "series position" number 32.000000 # object 4 class array type float rank 1 shape 2 items 6 msb ieee data 0 attribute "dep" string "positions" # object 5 class array type int rank 1 shape 2 items 5 msb ieee data 48 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 3 class field component "positions" value 4 component "connections" value 5 attribute "char width" number 0.313000 attribute "series position" number 33.000000 # object 7 class array type float rank 1 shape 2 items 4 msb ieee data 88 attribute "dep" string "positions" # object 8 class array type int rank 1 shape 2 items 2 msb ieee data 120 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 6 class field component "positions" value 7 component "connections" value 8 attribute "char width" number 0.500800 attribute "series position" number 34.000000 # object 10 class array type float rank 1 shape 2 items 8 msb ieee data 136 attribute "dep" string "positions" # object 11 class array type int rank 1 shape 2 items 4 msb ieee data 200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 9 class field component "positions" value 10 component "connections" value 11 attribute "char width" number 0.657300 attribute "series position" number 35.000000 # object 13 class array type float rank 1 shape 2 items 24 msb ieee data 232 attribute "dep" string "positions" # object 14 class array type int rank 1 shape 2 items 21 msb ieee data 424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 12 class field component "positions" value 13 component "connections" value 14 attribute "char width" number 0.626000 attribute "series position" number 36.000000 # object 16 class array type float rank 1 shape 2 items 26 msb ieee data 592 attribute "dep" string "positions" # object 17 class array type int rank 1 shape 2 items 26 msb ieee data 800 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 15 class field component "positions" value 16 component "connections" value 17 attribute "char width" number 0.751200 attribute "series position" number 37.000000 # object 19 class array type float rank 1 shape 2 items 34 msb ieee data 1008 attribute "dep" string "positions" # object 20 class array type int rank 1 shape 2 items 33 msb ieee data 1280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 18 class field component "positions" value 19 component "connections" value 20 attribute "char width" number 0.813800 attribute "series position" number 38.000000 # object 22 class array type float rank 1 shape 2 items 7 msb ieee data 1544 attribute "dep" string "positions" # object 23 class array type int rank 1 shape 2 items 6 msb ieee data 1600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 21 class field component "positions" value 22 component "connections" value 23 attribute "char width" number 0.313000 attribute "series position" number 39.000000 # object 25 class array type float rank 1 shape 2 items 10 msb ieee data 1648 attribute "dep" string "positions" # object 26 class array type int rank 1 shape 2 items 9 msb ieee data 1728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 24 class field component "positions" value 25 component "connections" value 26 attribute "char width" number 0.438200 attribute "series position" number 40.000000 # object 28 class array type float rank 1 shape 2 items 10 msb ieee data 1800 attribute "dep" string "positions" # object 29 class array type int rank 1 shape 2 items 9 msb ieee data 1880 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 27 class field component "positions" value 28 component "connections" value 29 attribute "char width" number 0.438200 attribute "series position" number 41.000000 # object 31 class array type float rank 1 shape 2 items 6 msb ieee data 1952 attribute "dep" string "positions" # object 32 class array type int rank 1 shape 2 items 3 msb ieee data 2000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 30 class field component "positions" value 31 component "connections" value 32 attribute "char width" number 0.500800 attribute "series position" number 42.000000 # object 34 class array type float rank 1 shape 2 items 4 msb ieee data 2024 attribute "dep" string "positions" # object 35 class array type int rank 1 shape 2 items 2 msb ieee data 2056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 33 class field component "positions" value 34 component "connections" value 35 attribute "char width" number 0.813800 attribute "series position" number 43.000000 # object 37 class array type float rank 1 shape 2 items 7 msb ieee data 2072 attribute "dep" string "positions" # object 38 class array type int rank 1 shape 2 items 7 msb ieee data 2128 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 36 class field component "positions" value 37 component "connections" value 38 attribute "char width" number 0.313000 attribute "series position" number 44.000000 # object 40 class array type float rank 1 shape 2 items 2 msb ieee data 2184 attribute "dep" string "positions" # object 41 class array type int rank 1 shape 2 items 1 msb ieee data 2200 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 39 class field component "positions" value 40 component "connections" value 41 attribute "char width" number 0.813800 attribute "series position" number 45.000000 # object 43 class array type float rank 1 shape 2 items 4 msb ieee data 2208 attribute "dep" string "positions" # object 44 class array type int rank 1 shape 2 items 4 msb ieee data 2240 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 42 class field component "positions" value 43 component "connections" value 44 attribute "char width" number 0.313000 attribute "series position" number 46.000000 # object 46 class array type float rank 1 shape 2 items 2 msb ieee data 2272 attribute "dep" string "positions" # object 47 class array type int rank 1 shape 2 items 1 msb ieee data 2288 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 45 class field component "positions" value 46 component "connections" value 47 attribute "char width" number 0.688600 attribute "series position" number 47.000000 # object 49 class array type float rank 1 shape 2 items 16 msb ieee data 2296 attribute "dep" string "positions" # object 50 class array type int rank 1 shape 2 items 16 msb ieee data 2424 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 48 class field component "positions" value 49 component "connections" value 50 attribute "char width" number 0.626000 attribute "series position" number 48.000000 # object 52 class array type float rank 1 shape 2 items 4 msb ieee data 2552 attribute "dep" string "positions" # object 53 class array type int rank 1 shape 2 items 3 msb ieee data 2584 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 51 class field component "positions" value 52 component "connections" value 53 attribute "char width" number 0.626000 attribute "series position" number 49.000000 # object 55 class array type float rank 1 shape 2 items 14 msb ieee data 2608 attribute "dep" string "positions" # object 56 class array type int rank 1 shape 2 items 13 msb ieee data 2720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 54 class field component "positions" value 55 component "connections" value 56 attribute "char width" number 0.626000 attribute "series position" number 50.000000 # object 58 class array type float rank 1 shape 2 items 15 msb ieee data 2824 attribute "dep" string "positions" # object 59 class array type int rank 1 shape 2 items 14 msb ieee data 2944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 57 class field component "positions" value 58 component "connections" value 59 attribute "char width" number 0.626000 attribute "series position" number 51.000000 # object 61 class array type float rank 1 shape 2 items 4 msb ieee data 3056 attribute "dep" string "positions" # object 62 class array type int rank 1 shape 2 items 3 msb ieee data 3088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 60 class field component "positions" value 61 component "connections" value 62 attribute "char width" number 0.626000 attribute "series position" number 52.000000 # object 64 class array type float rank 1 shape 2 items 17 msb ieee data 3112 attribute "dep" string "positions" # object 65 class array type int rank 1 shape 2 items 16 msb ieee data 3248 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 63 class field component "positions" value 64 component "connections" value 65 attribute "char width" number 0.626000 attribute "series position" number 53.000000 # object 67 class array type float rank 1 shape 2 items 22 msb ieee data 3376 attribute "dep" string "positions" # object 68 class array type int rank 1 shape 2 items 22 msb ieee data 3552 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 66 class field component "positions" value 67 component "connections" value 68 attribute "char width" number 0.626000 attribute "series position" number 54.000000 # object 70 class array type float rank 1 shape 2 items 3 msb ieee data 3728 attribute "dep" string "positions" # object 71 class array type int rank 1 shape 2 items 2 msb ieee data 3752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 69 class field component "positions" value 70 component "connections" value 71 attribute "char width" number 0.626000 attribute "series position" number 55.000000 # object 73 class array type float rank 1 shape 2 items 28 msb ieee data 3768 attribute "dep" string "positions" # object 74 class array type int rank 1 shape 2 items 28 msb ieee data 3992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 72 class field component "positions" value 73 component "connections" value 74 attribute "char width" number 0.626000 attribute "series position" number 56.000000 # object 76 class array type float rank 1 shape 2 items 22 msb ieee data 4216 attribute "dep" string "positions" # object 77 class array type int rank 1 shape 2 items 22 msb ieee data 4392 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 75 class field component "positions" value 76 component "connections" value 77 attribute "char width" number 0.626000 attribute "series position" number 57.000000 # object 79 class array type float rank 1 shape 2 items 8 msb ieee data 4568 attribute "dep" string "positions" # object 80 class array type int rank 1 shape 2 items 8 msb ieee data 4632 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 78 class field component "positions" value 79 component "connections" value 80 attribute "char width" number 0.313000 attribute "series position" number 58.000000 # object 82 class array type float rank 1 shape 2 items 11 msb ieee data 4696 attribute "dep" string "positions" # object 83 class array type int rank 1 shape 2 items 11 msb ieee data 4784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 81 class field component "positions" value 82 component "connections" value 83 attribute "char width" number 0.313000 attribute "series position" number 59.000000 # object 85 class array type float rank 1 shape 2 items 3 msb ieee data 4872 attribute "dep" string "positions" # object 86 class array type int rank 1 shape 2 items 2 msb ieee data 4896 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 84 class field component "positions" value 85 component "connections" value 86 attribute "char width" number 0.751200 attribute "series position" number 60.000000 # object 88 class array type float rank 1 shape 2 items 4 msb ieee data 4912 attribute "dep" string "positions" # object 89 class array type int rank 1 shape 2 items 2 msb ieee data 4944 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 87 class field component "positions" value 88 component "connections" value 89 attribute "char width" number 0.813800 attribute "series position" number 61.000000 # object 91 class array type float rank 1 shape 2 items 3 msb ieee data 4960 attribute "dep" string "positions" # object 92 class array type int rank 1 shape 2 items 2 msb ieee data 4984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 90 class field component "positions" value 91 component "connections" value 92 attribute "char width" number 0.751200 attribute "series position" number 62.000000 # object 94 class array type float rank 1 shape 2 items 18 msb ieee data 5000 attribute "dep" string "positions" # object 95 class array type int rank 1 shape 2 items 17 msb ieee data 5144 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 93 class field component "positions" value 94 component "connections" value 95 attribute "char width" number 0.563400 attribute "series position" number 63.000000 # object 97 class array type float rank 1 shape 2 items 48 msb ieee data 5280 attribute "dep" string "positions" # object 98 class array type int rank 1 shape 2 items 48 msb ieee data 5664 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 96 class field component "positions" value 97 component "connections" value 98 attribute "char width" number 0.845100 attribute "series position" number 64.000000 # object 100 class array type float rank 1 shape 2 items 5 msb ieee data 6048 attribute "dep" string "positions" # object 101 class array type int rank 1 shape 2 items 3 msb ieee data 6088 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 99 class field component "positions" value 100 component "connections" value 101 attribute "char width" number 0.563400 attribute "series position" number 65.000000 # object 103 class array type float rank 1 shape 2 items 18 msb ieee data 6112 attribute "dep" string "positions" # object 104 class array type int rank 1 shape 2 items 18 msb ieee data 6256 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 102 class field component "positions" value 103 component "connections" value 104 attribute "char width" number 0.657300 attribute "series position" number 66.000000 # object 106 class array type float rank 1 shape 2 items 18 msb ieee data 6400 attribute "dep" string "positions" # object 107 class array type int rank 1 shape 2 items 17 msb ieee data 6544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 105 class field component "positions" value 106 component "connections" value 107 attribute "char width" number 0.657300 attribute "series position" number 67.000000 # object 109 class array type float rank 1 shape 2 items 12 msb ieee data 6680 attribute "dep" string "positions" # object 110 class array type int rank 1 shape 2 items 12 msb ieee data 6776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 108 class field component "positions" value 109 component "connections" value 110 attribute "char width" number 0.657300 attribute "series position" number 68.000000 # object 112 class array type float rank 1 shape 2 items 6 msb ieee data 6872 attribute "dep" string "positions" # object 113 class array type int rank 1 shape 2 items 4 msb ieee data 6920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 111 class field component "positions" value 112 component "connections" value 113 attribute "char width" number 0.594700 attribute "series position" number 69.000000 # object 115 class array type float rank 1 shape 2 items 5 msb ieee data 6952 attribute "dep" string "positions" # object 116 class array type int rank 1 shape 2 items 3 msb ieee data 6992 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 114 class field component "positions" value 115 component "connections" value 116 attribute "char width" number 0.563400 attribute "series position" number 70.000000 # object 118 class array type float rank 1 shape 2 items 20 msb ieee data 7016 attribute "dep" string "positions" # object 119 class array type int rank 1 shape 2 items 19 msb ieee data 7176 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 117 class field component "positions" value 118 component "connections" value 119 attribute "char width" number 0.657300 attribute "series position" number 71.000000 # object 121 class array type float rank 1 shape 2 items 6 msb ieee data 7328 attribute "dep" string "positions" # object 122 class array type int rank 1 shape 2 items 3 msb ieee data 7376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 120 class field component "positions" value 121 component "connections" value 122 attribute "char width" number 0.688600 attribute "series position" number 72.000000 # object 124 class array type float rank 1 shape 2 items 2 msb ieee data 7400 attribute "dep" string "positions" # object 125 class array type int rank 1 shape 2 items 1 msb ieee data 7416 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 123 class field component "positions" value 124 component "connections" value 125 attribute "char width" number 0.250400 attribute "series position" number 73.000000 # object 127 class array type float rank 1 shape 2 items 10 msb ieee data 7424 attribute "dep" string "positions" # object 128 class array type int rank 1 shape 2 items 9 msb ieee data 7504 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 126 class field component "positions" value 127 component "connections" value 128 attribute "char width" number 0.500800 attribute "series position" number 74.000000 # object 130 class array type float rank 1 shape 2 items 6 msb ieee data 7576 attribute "dep" string "positions" # object 131 class array type int rank 1 shape 2 items 3 msb ieee data 7624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 129 class field component "positions" value 130 component "connections" value 131 attribute "char width" number 0.657300 attribute "series position" number 75.000000 # object 133 class array type float rank 1 shape 2 items 3 msb ieee data 7648 attribute "dep" string "positions" # object 134 class array type int rank 1 shape 2 items 2 msb ieee data 7672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 132 class field component "positions" value 133 component "connections" value 134 attribute "char width" number 0.532100 attribute "series position" number 76.000000 # object 136 class array type float rank 1 shape 2 items 5 msb ieee data 7688 attribute "dep" string "positions" # object 137 class array type int rank 1 shape 2 items 4 msb ieee data 7728 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 135 class field component "positions" value 136 component "connections" value 137 attribute "char width" number 0.751200 attribute "series position" number 77.000000 # object 139 class array type float rank 1 shape 2 items 4 msb ieee data 7760 attribute "dep" string "positions" # object 140 class array type int rank 1 shape 2 items 3 msb ieee data 7792 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 138 class field component "positions" value 139 component "connections" value 140 attribute "char width" number 0.688600 attribute "series position" number 78.000000 # object 142 class array type float rank 1 shape 2 items 20 msb ieee data 7816 attribute "dep" string "positions" # object 143 class array type int rank 1 shape 2 items 20 msb ieee data 7976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 141 class field component "positions" value 142 component "connections" value 143 attribute "char width" number 0.688600 attribute "series position" number 79.000000 # object 145 class array type float rank 1 shape 2 items 11 msb ieee data 8136 attribute "dep" string "positions" # object 146 class array type int rank 1 shape 2 items 10 msb ieee data 8224 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 144 class field component "positions" value 145 component "connections" value 146 attribute "char width" number 0.657300 attribute "series position" number 80.000000 # object 148 class array type float rank 1 shape 2 items 22 msb ieee data 8304 attribute "dep" string "positions" # object 149 class array type int rank 1 shape 2 items 21 msb ieee data 8480 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 147 class field component "positions" value 148 component "connections" value 149 attribute "char width" number 0.688600 attribute "series position" number 81.000000 # object 151 class array type float rank 1 shape 2 items 13 msb ieee data 8648 attribute "dep" string "positions" # object 152 class array type int rank 1 shape 2 items 11 msb ieee data 8752 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 150 class field component "positions" value 151 component "connections" value 152 attribute "char width" number 0.657300 attribute "series position" number 82.000000 # object 154 class array type float rank 1 shape 2 items 20 msb ieee data 8840 attribute "dep" string "positions" # object 155 class array type int rank 1 shape 2 items 19 msb ieee data 9000 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 153 class field component "positions" value 154 component "connections" value 155 attribute "char width" number 0.626000 attribute "series position" number 83.000000 # object 157 class array type float rank 1 shape 2 items 4 msb ieee data 9152 attribute "dep" string "positions" # object 158 class array type int rank 1 shape 2 items 2 msb ieee data 9184 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 156 class field component "positions" value 157 component "connections" value 158 attribute "char width" number 0.500800 attribute "series position" number 84.000000 # object 160 class array type float rank 1 shape 2 items 10 msb ieee data 9200 attribute "dep" string "positions" # object 161 class array type int rank 1 shape 2 items 9 msb ieee data 9280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 159 class field component "positions" value 160 component "connections" value 161 attribute "char width" number 0.688600 attribute "series position" number 85.000000 # object 163 class array type float rank 1 shape 2 items 3 msb ieee data 9352 attribute "dep" string "positions" # object 164 class array type int rank 1 shape 2 items 2 msb ieee data 9376 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 162 class field component "positions" value 163 component "connections" value 164 attribute "char width" number 0.563400 attribute "series position" number 86.000000 # object 166 class array type float rank 1 shape 2 items 5 msb ieee data 9392 attribute "dep" string "positions" # object 167 class array type int rank 1 shape 2 items 4 msb ieee data 9432 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 165 class field component "positions" value 166 component "connections" value 167 attribute "char width" number 0.751200 attribute "series position" number 87.000000 # object 169 class array type float rank 1 shape 2 items 4 msb ieee data 9464 attribute "dep" string "positions" # object 170 class array type int rank 1 shape 2 items 2 msb ieee data 9496 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 168 class field component "positions" value 169 component "connections" value 170 attribute "char width" number 0.626000 attribute "series position" number 88.000000 # object 172 class array type float rank 1 shape 2 items 4 msb ieee data 9512 attribute "dep" string "positions" # object 173 class array type int rank 1 shape 2 items 3 msb ieee data 9544 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 171 class field component "positions" value 172 component "connections" value 173 attribute "char width" number 0.563400 attribute "series position" number 89.000000 # object 175 class array type float rank 1 shape 2 items 4 msb ieee data 9568 attribute "dep" string "positions" # object 176 class array type int rank 1 shape 2 items 3 msb ieee data 9600 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 174 class field component "positions" value 175 component "connections" value 176 attribute "char width" number 0.626000 attribute "series position" number 90.000000 # object 178 class array type float rank 1 shape 2 items 6 msb ieee data 9624 attribute "dep" string "positions" # object 179 class array type int rank 1 shape 2 items 4 msb ieee data 9672 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 177 class field component "positions" value 178 component "connections" value 179 attribute "char width" number 0.438200 attribute "series position" number 91.000000 # object 181 class array type float rank 1 shape 2 items 2 msb ieee data 9704 attribute "dep" string "positions" # object 182 class array type int rank 1 shape 2 items 1 msb ieee data 9720 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 180 class field component "positions" value 181 component "connections" value 182 attribute "char width" number 0.438200 attribute "series position" number 92.000000 # object 184 class array type float rank 1 shape 2 items 6 msb ieee data 9728 attribute "dep" string "positions" # object 185 class array type int rank 1 shape 2 items 4 msb ieee data 9776 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 183 class field component "positions" value 184 component "connections" value 185 attribute "char width" number 0.438200 attribute "series position" number 93.000000 # object 187 class array type float rank 1 shape 2 items 7 msb ieee data 9808 attribute "dep" string "positions" # object 188 class array type int rank 1 shape 2 items 5 msb ieee data 9864 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 186 class field component "positions" value 187 component "connections" value 188 attribute "char width" number 0.500800 attribute "series position" number 94.000000 # object 190 class array type float rank 1 shape 2 items 2 msb ieee data 9904 attribute "dep" string "positions" # object 191 class array type int rank 1 shape 2 items 1 msb ieee data 9920 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 189 class field component "positions" value 190 component "connections" value 191 attribute "char width" number 0.500800 attribute "series position" number 95.000000 # object 193 class array type float rank 1 shape 2 items 7 msb ieee data 9928 attribute "dep" string "positions" # object 194 class array type int rank 1 shape 2 items 6 msb ieee data 9984 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 192 class field component "positions" value 193 component "connections" value 194 attribute "char width" number 0.313000 attribute "series position" number 96.000000 # object 196 class array type float rank 1 shape 2 items 16 msb ieee data 10032 attribute "dep" string "positions" # object 197 class array type int rank 1 shape 2 items 14 msb ieee data 10160 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 195 class field component "positions" value 196 component "connections" value 197 attribute "char width" number 0.594700 attribute "series position" number 97.000000 # object 199 class array type float rank 1 shape 2 items 16 msb ieee data 10272 attribute "dep" string "positions" # object 200 class array type int rank 1 shape 2 items 14 msb ieee data 10400 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 198 class field component "positions" value 199 component "connections" value 200 attribute "char width" number 0.594700 attribute "series position" number 98.000000 # object 202 class array type float rank 1 shape 2 items 14 msb ieee data 10512 attribute "dep" string "positions" # object 203 class array type int rank 1 shape 2 items 13 msb ieee data 10624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 201 class field component "positions" value 202 component "connections" value 203 attribute "char width" number 0.563400 attribute "series position" number 99.000000 # object 205 class array type float rank 1 shape 2 items 16 msb ieee data 10728 attribute "dep" string "positions" # object 206 class array type int rank 1 shape 2 items 14 msb ieee data 10856 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 204 class field component "positions" value 205 component "connections" value 206 attribute "char width" number 0.594700 attribute "series position" number 100.000000 # object 208 class array type float rank 1 shape 2 items 16 msb ieee data 10968 attribute "dep" string "positions" # object 209 class array type int rank 1 shape 2 items 16 msb ieee data 11096 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 207 class field component "positions" value 208 component "connections" value 209 attribute "char width" number 0.563400 attribute "series position" number 101.000000 # object 211 class array type float rank 1 shape 2 items 7 msb ieee data 11224 attribute "dep" string "positions" # object 212 class array type int rank 1 shape 2 items 5 msb ieee data 11280 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 210 class field component "positions" value 211 component "connections" value 212 attribute "char width" number 0.375600 attribute "series position" number 102.000000 # object 214 class array type float rank 1 shape 2 items 21 msb ieee data 11320 attribute "dep" string "positions" # object 215 class array type int rank 1 shape 2 items 19 msb ieee data 11488 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 213 class field component "positions" value 214 component "connections" value 215 attribute "char width" number 0.594700 attribute "series position" number 103.000000 # object 217 class array type float rank 1 shape 2 items 9 msb ieee data 11640 attribute "dep" string "positions" # object 218 class array type int rank 1 shape 2 items 7 msb ieee data 11712 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 216 class field component "positions" value 217 component "connections" value 218 attribute "char width" number 0.594700 attribute "series position" number 104.000000 # object 220 class array type float rank 1 shape 2 items 6 msb ieee data 11768 attribute "dep" string "positions" # object 221 class array type int rank 1 shape 2 items 5 msb ieee data 11816 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 219 class field component "positions" value 220 component "connections" value 221 attribute "char width" number 0.250400 attribute "series position" number 105.000000 # object 223 class array type float rank 1 shape 2 items 9 msb ieee data 11856 attribute "dep" string "positions" # object 224 class array type int rank 1 shape 2 items 8 msb ieee data 11928 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 222 class field component "positions" value 223 component "connections" value 224 attribute "char width" number 0.313000 attribute "series position" number 106.000000 # object 226 class array type float rank 1 shape 2 items 6 msb ieee data 11992 attribute "dep" string "positions" # object 227 class array type int rank 1 shape 2 items 3 msb ieee data 12040 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 225 class field component "positions" value 226 component "connections" value 227 attribute "char width" number 0.532100 attribute "series position" number 107.000000 # object 229 class array type float rank 1 shape 2 items 2 msb ieee data 12064 attribute "dep" string "positions" # object 230 class array type int rank 1 shape 2 items 1 msb ieee data 12080 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 228 class field component "positions" value 229 component "connections" value 230 attribute "char width" number 0.250400 attribute "series position" number 108.000000 # object 232 class array type float rank 1 shape 2 items 15 msb ieee data 12088 attribute "dep" string "positions" # object 233 class array type int rank 1 shape 2 items 13 msb ieee data 12208 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 231 class field component "positions" value 232 component "connections" value 233 attribute "char width" number 0.939000 attribute "series position" number 109.000000 # object 235 class array type float rank 1 shape 2 items 9 msb ieee data 12312 attribute "dep" string "positions" # object 236 class array type int rank 1 shape 2 items 7 msb ieee data 12384 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 234 class field component "positions" value 235 component "connections" value 236 attribute "char width" number 0.594700 attribute "series position" number 110.000000 # object 238 class array type float rank 1 shape 2 items 16 msb ieee data 12440 attribute "dep" string "positions" # object 239 class array type int rank 1 shape 2 items 16 msb ieee data 12568 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 237 class field component "positions" value 238 component "connections" value 239 attribute "char width" number 0.594700 attribute "series position" number 111.000000 # object 241 class array type float rank 1 shape 2 items 16 msb ieee data 12696 attribute "dep" string "positions" # object 242 class array type int rank 1 shape 2 items 14 msb ieee data 12824 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 240 class field component "positions" value 241 component "connections" value 242 attribute "char width" number 0.594700 attribute "series position" number 112.000000 # object 244 class array type float rank 1 shape 2 items 16 msb ieee data 12936 attribute "dep" string "positions" # object 245 class array type int rank 1 shape 2 items 14 msb ieee data 13064 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 243 class field component "positions" value 244 component "connections" value 245 attribute "char width" number 0.594700 attribute "series position" number 113.000000 # object 247 class array type float rank 1 shape 2 items 7 msb ieee data 13176 attribute "dep" string "positions" # object 248 class array type int rank 1 shape 2 items 5 msb ieee data 13232 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 246 class field component "positions" value 247 component "connections" value 248 attribute "char width" number 0.406900 attribute "series position" number 114.000000 # object 250 class array type float rank 1 shape 2 items 17 msb ieee data 13272 attribute "dep" string "positions" # object 251 class array type int rank 1 shape 2 items 16 msb ieee data 13408 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 249 class field component "positions" value 250 component "connections" value 251 attribute "char width" number 0.532100 attribute "series position" number 115.000000 # object 253 class array type float rank 1 shape 2 items 7 msb ieee data 13536 attribute "dep" string "positions" # object 254 class array type int rank 1 shape 2 items 5 msb ieee data 13592 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 252 class field component "positions" value 253 component "connections" value 254 attribute "char width" number 0.375600 attribute "series position" number 116.000000 # object 256 class array type float rank 1 shape 2 items 9 msb ieee data 13632 attribute "dep" string "positions" # object 257 class array type int rank 1 shape 2 items 7 msb ieee data 13704 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 255 class field component "positions" value 256 component "connections" value 257 attribute "char width" number 0.594700 attribute "series position" number 117.000000 # object 259 class array type float rank 1 shape 2 items 3 msb ieee data 13760 attribute "dep" string "positions" # object 260 class array type int rank 1 shape 2 items 2 msb ieee data 13784 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 258 class field component "positions" value 259 component "connections" value 260 attribute "char width" number 0.500800 attribute "series position" number 118.000000 # object 262 class array type float rank 1 shape 2 items 5 msb ieee data 13800 attribute "dep" string "positions" # object 263 class array type int rank 1 shape 2 items 4 msb ieee data 13840 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 261 class field component "positions" value 262 component "connections" value 263 attribute "char width" number 0.688600 attribute "series position" number 119.000000 # object 265 class array type float rank 1 shape 2 items 4 msb ieee data 13872 attribute "dep" string "positions" # object 266 class array type int rank 1 shape 2 items 2 msb ieee data 13904 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 264 class field component "positions" value 265 component "connections" value 266 attribute "char width" number 0.532100 attribute "series position" number 120.000000 # object 268 class array type float rank 1 shape 2 items 7 msb ieee data 13920 attribute "dep" string "positions" # object 269 class array type int rank 1 shape 2 items 6 msb ieee data 13976 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 267 class field component "positions" value 268 component "connections" value 269 attribute "char width" number 0.500800 attribute "series position" number 121.000000 # object 271 class array type float rank 1 shape 2 items 4 msb ieee data 14024 attribute "dep" string "positions" # object 272 class array type int rank 1 shape 2 items 3 msb ieee data 14056 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 270 class field component "positions" value 271 component "connections" value 272 attribute "char width" number 0.532100 attribute "series position" number 122.000000 # object 274 class array type float rank 1 shape 2 items 35 msb ieee data 14080 attribute "dep" string "positions" # object 275 class array type int rank 1 shape 2 items 34 msb ieee data 14360 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 273 class field component "positions" value 274 component "connections" value 275 attribute "char width" number 0.438200 attribute "series position" number 123.000000 # object 277 class array type float rank 1 shape 2 items 2 msb ieee data 14632 attribute "dep" string "positions" # object 278 class array type int rank 1 shape 2 items 1 msb ieee data 14648 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 276 class field component "positions" value 277 component "connections" value 278 attribute "char width" number 0.250400 attribute "series position" number 124.000000 # object 280 class array type float rank 1 shape 2 items 35 msb ieee data 14656 attribute "dep" string "positions" # object 281 class array type int rank 1 shape 2 items 34 msb ieee data 14936 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 279 class field component "positions" value 280 component "connections" value 281 attribute "char width" number 0.438200 attribute "series position" number 125.000000 # object 283 class array type float rank 1 shape 2 items 20 msb ieee data 15208 attribute "dep" string "positions" # object 284 class array type int rank 1 shape 2 items 20 msb ieee data 15368 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 282 class field component "positions" value 283 component "connections" value 284 attribute "char width" number 0.751200 attribute "series position" number 126.000000 # object 286 class array type float rank 1 shape 2 items 12 msb ieee data 15528 attribute "dep" string "positions" # object 287 class array type int rank 1 shape 2 items 12 msb ieee data 15624 attribute "element type" string "lines" attribute "ref" string "positions" attribute "dep" string "connections" # object 285 class field component "positions" value 286 component "connections" value 287 attribute "char width" number 0.438200 attribute "series position" number 127.000000 # object "default" class series member 0 position 0 value 1 member 1 position 1 value 1 member 2 position 2 value 1 member 3 position 3 value 1 member 4 position 4 value 1 member 5 position 5 value 1 member 6 position 6 value 1 member 7 position 7 value 1 member 8 position 8 value 1 member 9 position 9 value 1 member 10 position 10 value 1 member 11 position 11 value 1 member 12 position 12 value 1 member 13 position 13 value 1 member 14 position 14 value 1 member 15 position 15 value 1 member 16 position 16 value 1 member 17 position 17 value 1 member 18 position 18 value 1 member 19 position 19 value 1 member 20 position 20 value 1 member 21 position 21 value 1 member 22 position 22 value 1 member 23 position 23 value 1 member 24 position 24 value 1 member 25 position 25 value 1 member 26 position 26 value 1 member 27 position 27 value 1 member 28 position 28 value 1 member 29 position 29 value 1 member 30 position 30 value 1 member 31 position 31 value 1 member 32 position 32 value 2 member 33 position 33 value 3 member 34 position 34 value 6 member 35 position 35 value 9 member 36 position 36 value 12 member 37 position 37 value 15 member 38 position 38 value 18 member 39 position 39 value 21 member 40 position 40 value 24 member 41 position 41 value 27 member 42 position 42 value 30 member 43 position 43 value 33 member 44 position 44 value 36 member 45 position 45 value 39 member 46 position 46 value 42 member 47 position 47 value 45 member 48 position 48 value 48 member 49 position 49 value 51 member 50 position 50 value 54 member 51 position 51 value 57 member 52 position 52 value 60 member 53 position 53 value 63 member 54 position 54 value 66 member 55 position 55 value 69 member 56 position 56 value 72 member 57 position 57 value 75 member 58 position 58 value 78 member 59 position 59 value 81 member 60 position 60 value 84 member 61 position 61 value 87 member 62 position 62 value 90 member 63 position 63 value 93 member 64 position 64 value 96 member 65 position 65 value 99 member 66 position 66 value 102 member 67 position 67 value 105 member 68 position 68 value 108 member 69 position 69 value 111 member 70 position 70 value 114 member 71 position 71 value 117 member 72 position 72 value 120 member 73 position 73 value 123 member 74 position 74 value 126 member 75 position 75 value 129 member 76 position 76 value 132 member 77 position 77 value 135 member 78 position 78 value 138 member 79 position 79 value 141 member 80 position 80 value 144 member 81 position 81 value 147 member 82 position 82 value 150 member 83 position 83 value 153 member 84 position 84 value 156 member 85 position 85 value 159 member 86 position 86 value 162 member 87 position 87 value 165 member 88 position 88 value 168 member 89 position 89 value 171 member 90 position 90 value 174 member 91 position 91 value 177 member 92 position 92 value 180 member 93 position 93 value 183 member 94 position 94 value 186 member 95 position 95 value 189 member 96 position 96 value 192 member 97 position 97 value 195 member 98 position 98 value 198 member 99 position 99 value 201 member 100 position 100 value 204 member 101 position 101 value 207 member 102 position 102 value 210 member 103 position 103 value 213 member 104 position 104 value 216 member 105 position 105 value 219 member 106 position 106 value 222 member 107 position 107 value 225 member 108 position 108 value 228 member 109 position 109 value 231 member 110 position 110 value 234 member 111 position 111 value 237 member 112 position 112 value 240 member 113 position 113 value 243 member 114 position 114 value 246 member 115 position 115 value 249 member 116 position 116 value 252 member 117 position 117 value 255 member 118 position 118 value 258 member 119 position 119 value 261 member 120 position 120 value 264 member 121 position 121 value 267 member 122 position 122 value 270 member 123 position 123 value 273 member 124 position 124 value 276 member 125 position 125 value 279 member 126 position 126 value 282 member 127 position 127 value 285 member 128 position 128 value 1 member 129 position 129 value 1 member 130 position 130 value 1 member 131 position 131 value 1 member 132 position 132 value 1 member 133 position 133 value 1 member 134 position 134 value 1 member 135 position 135 value 1 member 136 position 136 value 1 member 137 position 137 value 1 member 138 position 138 value 1 member 139 position 139 value 1 member 140 position 140 value 1 member 141 position 141 value 1 member 142 position 142 value 1 member 143 position 143 value 1 member 144 position 144 value 1 member 145 position 145 value 1 member 146 position 146 value 1 member 147 position 147 value 1 member 148 position 148 value 1 member 149 position 149 value 1 member 150 position 150 value 1 member 151 position 151 value 1 member 152 position 152 value 1 member 153 position 153 value 1 member 154 position 154 value 1 member 155 position 155 value 1 member 156 position 156 value 1 member 157 position 157 value 1 member 158 position 158 value 1 member 159 position 159 value 1 member 160 position 160 value 1 member 161 position 161 value 1 member 162 position 162 value 1 member 163 position 163 value 1 member 164 position 164 value 1 member 165 position 165 value 1 member 166 position 166 value 1 member 167 position 167 value 1 member 168 position 168 value 1 member 169 position 169 value 1 member 170 position 170 value 1 member 171 position 171 value 1 member 172 position 172 value 1 member 173 position 173 value 1 member 174 position 174 value 1 member 175 position 175 value 1 member 176 position 176 value 1 member 177 position 177 value 1 member 178 position 178 value 1 member 179 position 179 value 1 member 180 position 180 value 1 member 181 position 181 value 1 member 182 position 182 value 1 member 183 position 183 value 1 member 184 position 184 value 1 member 185 position 185 value 1 member 186 position 186 value 1 member 187 position 187 value 1 member 188 position 188 value 1 member 189 position 189 value 1 member 190 position 190 value 1 member 191 position 191 value 1 member 192 position 192 value 1 member 193 position 193 value 1 member 194 position 194 value 1 member 195 position 195 value 1 member 196 position 196 value 1 member 197 position 197 value 1 member 198 position 198 value 1 member 199 position 199 value 1 member 200 position 200 value 1 member 201 position 201 value 1 member 202 position 202 value 1 member 203 position 203 value 1 member 204 position 204 value 1 member 205 position 205 value 1 member 206 position 206 value 1 member 207 position 207 value 1 member 208 position 208 value 1 member 209 position 209 value 1 member 210 position 210 value 1 member 211 position 211 value 1 member 212 position 212 value 1 member 213 position 213 value 1 member 214 position 214 value 1 member 215 position 215 value 1 member 216 position 216 value 1 member 217 position 217 value 1 member 218 position 218 value 1 member 219 position 219 value 1 member 220 position 220 value 1 member 221 position 221 value 1 member 222 position 222 value 1 member 223 position 223 value 1 member 224 position 224 value 1 member 225 position 225 value 1 member 226 position 226 value 1 member 227 position 227 value 1 member 228 position 228 value 1 member 229 position 229 value 1 member 230 position 230 value 1 member 231 position 231 value 1 member 232 position 232 value 1 member 233 position 233 value 1 member 234 position 234 value 1 member 235 position 235 value 1 member 236 position 236 value 1 member 237 position 237 value 1 member 238 position 238 value 1 member 239 position 239 value 1 member 240 position 240 value 1 member 241 position 241 value 1 member 242 position 242 value 1 member 243 position 243 value 1 member 244 position 244 value 1 member 245 position 245 value 1 member 246 position 246 value 1 member 247 position 247 value 1 member 248 position 248 value 1 member 249 position 249 value 1 member 250 position 250 value 1 member 251 position 251 value 1 member 252 position 252 value 1 member 253 position 253 value 1 member 254 position 254 value 1 member 255 position 255 value 1 attribute "font ascent" number 0.800000 attribute "font descent" number 0.200000 # end >4n=K(R> A‰<•çÉ> A‰=¥®_> A‰>s¹> A‰?,ô>@N¥=K(R>4n>éº=>4n?,ô>ÀN¥>éº=>ÀN¥?,ô=ÀN¥>S ž>4n¾MžÇ>4n>É­!> A‰¾MžÇ>°H?M*?7¶>S ž?7¶?M*?:ý>É­!=ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=> A=K(R> A>Ù³¯> A?$ðÇ>`[À>É­!>€4n½Úîé>€4n<•çÉ>€4n?,ô>€4n?M*>ÀN¥½Úîé>ÀN¥<•çÉ>ÀN¥?,ô>ÀN¥?M*>ÐU2>© >ðbN=K(R>ðbN>™™x>ðbN?$ðÇ?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:    =ÀN¥<•çÉ=ÀN¥?ã¬=ÀN¥?ê:>4t?$ðÇ> A‰>éº=>@N¥?,ô>`[Ç>éº=>€4n?,ô>:û>ùÀÊ> A‰? æó> A‰?í> A‰?$ðÇ>ÐU2?í>à[Ã=¥®_>à[Ã>ñg>ðbQ>S ž?4o<•çÉ?4o?í?7¶>s¹?:ý<•çÉ?>D>s¹?>D?$ðÇ? A‹=K(R?(DÐ=åÈ—?(DÐ>2þ‚?(DÐ?,ô   =ÀN¥>ñg=ÀN¥>S ž>4n=¥®_>4n>‰’ê> A=K(R> A>™™x>`[À<•çÉ>€4q?ã¬>€4q?ê:>:û>Ù³¯>:û?$ðÇ>°H<•çÉ>°H>© >°H?,ô>ÀN¥>Ù³¯>ÐU2=K(R>ÐU2>éº=>ÐU2?$ðÇ>à[À?ã¬>à[À?ê:>ðbN=åÈ—?4n=åÈ—?7µ>S ž?:û=K(R?>D>¹¦“? A‹<•çÉ? A‹>Ù³¯?(DÒ>éº=?0H<•çÉ?0H>éº=?8K_=K(R?8K_=¥®_?8K_>É­!?8K_>Ù³¯ !!   >4n>ùÀÊ>4n?$ðÇ> A‰?ã¬> A‰?í> A‰?,ô>@N¥?ê:>@N¥?$ðÇ=à[À>s¹=à[À>¹¦“>:û=¥®_>:û?ã¬>PU2½5tý>PU2?$ðÇ>ˆ7µ¾ „>ˆ7µ?<úœ>¨DÓ¾MžÇ>¨DÓ?M* =à[À¾MžÇ=à[À?M*>0H¾ „>0H?<úœ>pbN½5tý>pbN?$ðÇ>˜>B=¥®_>˜>B?ã¬>¨DÓ>s¹>¨DÓ>¹¦“ =ÀN²>É­!=ÀN²?ê:>€4q>™™x>€4q?,ô>ÐU2>É­!>ÐU2?ê:>4n>™™x>ÐU2<•çÉ>ÐU2?ê:?0H>™™x>4n½Úîé>4n=K(R> A‰½šÔµ> A‰<•çÉ> A‰=¥®_>@N¥¼U;>@N¥=K(R>4n>™™x?0H>™™x>4n=K(R> A‰<•çÉ> A‰=¥®_>@N¥=K(R=€4l¾MžÇ? A‰?M*=ÀN¥>™™x=ÀN¥>É­!>4n>ñg>4n? æó>@N¥=K(R>@N¥?$ðÇ>:û<•çÉ>:û?,ô>°H<•çÉ>°H?,ô>à[Ã=K(R>à[Ã?$ðÇ?4o>ñg?4o? æó?7¶>™™x?7¶>É­!  >pbN? æó>˜>B?ê:>ÈQì<•çÉ>ÈQì?,ô=ÀN¥<•çÉ>4n?ã¬>4n? æó> A?í>@N¥?$ðÇ>€4n?,ô>ÀN¥?,ô>ÐU2>© >à[Ã?$ðÇ>ðbN>Ù³¯>ðbN?í?4o>ùÀÊ?4o? æó?7¶<•çÉ  =ÀN¥>ñg>4n=¥®_> A=K(R> A?,ô>€4n<•çÉ> A‰>Ù³¯>°H<•çÉ>ÐU2>Ù³¯>à[Ã=K(R>ðbN>É­!?4o=åÈ—?4o>¹¦“?4o?,ô?7¶>S ž?7¶>‰’ê   = Aˆ>s¹>ÈQì<•çÉ>ÈQì?,ô? 9Z>s¹=ÀN¥>ñg>4n=¥®_>4n>É­!> A=K(R> A>Ù³¯> A?,ô>€4n<•çÉ>€4n>éº=>°H<•çÉ>°H>éº=>à[Ã=K(R>à[Ã>Ù³¯>ðbN?,ô?4o=åÈ—?4o>¹¦“?7¶>S ž?7¶>‰’ê   =à[À>s¹=à[À>É­!>;=åÈ—>;>© >;? æó>PU2=K(R>PU2>É­!>PU2?$ðÇ>˜>B<•çÉ>˜>B>Ù³¯>˜>B?,ô>¨DÐ<•çÉ>¨DÐ>Ù³¯>¸K^?,ô>ØXy=K(R>ØXy>É­!>è_?$ðÇ>øe˜=åÈ—>øe˜>© >øe˜?ê:?6>S ž?6>s¹   =ÀN¥?,ô>`[À<•çÉ?7¶?,ô=ÀN¥>ñg=ÀN¥>s¹>4n=¥®_>4n>™™x>4n?ã¬>4n?ê:> A=K(R> A>éº=> A?$ðÇ>@N¥>¹¦“>`[À>Ù³¯>€4n<•çÉ>€4n?,ô>:û>É­!>°H>É­!>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>Ù³¯>à[Ã>¹¦“>ðbN=K(R>ðbN>éº=>ðbN?$ðÇ?4o=¥®_?4o>™™x?4o?ã¬?4o?ê:?7¶>ñg?7¶>s¹     =à[À>éº==à[À>ùÀÊ>:û=åÈ—>:û>¹¦“>:û?ê:>0H=K(R>PU2>™™x>PU2?$ðÇ>ˆ7µ<•çÉ>˜>B>‰’ê>˜>B?,ô>¨DÓ<•çÉ>¨DÓ>‰’ê>¨DÓ?,ô>ØX}=K(R>ØX}>™™x>ØX}?$ðÇ>øe•>ñg>øe•>¹¦“>øe•?ê:?6>™™x?6>éº=   >4n=K(R>4n>Ù³¯> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥=K(R>@N¥>Ù³¯>4n½Úîé>4n=K(R>4n>Ù³¯> A‰½šÔµ> A‰<•çÉ> A‰=¥®_> A‰>É­!> A‰>éº=>@N¥¼U;>@N¥=K(R>@N¥>Ù³¯   >4t>™™x? A‹<•çÉ? A‹?ê:>4n>S ž>4n>É­!?0H>S ž?0H>É­!>4t<•çÉ>4t?ê:? A‹>™™x=ÀN§?ã¬=ÀN§? æó>4t?í> A‰?$ðÇ>`[À?,ô>€4q=K(R>:ÿ<•çÉ>:ÿ=¥®_>:ÿ>s¹>:ÿ>© > A=K(R>°H?,ô>ÐU2>É­!>ÐU2?$ðÇ>à[Ã>Ù³¯>à[Ã?í>ðbQ>ùÀÊ>ðbQ? æó   =ÀN¥>™™x=ÀN¥>É­!>4n>S ž>4n>ùÀÊ> A>ñg> A? æó>`[À=¥®_>`[À?í>€4q>‰’ê>€4q>¹¦“>:û=K(R>:û>S ž>:û>‰’ê>:û>¹¦“>:û>éº=>:û?$ðÇ> A‰>S ž> A‰>éº=> A‰>ùÀÊ>°H>2þ‚>ÀN¥<•çÉ>ÀN¥?ã¬>ÀN¥?,ô>à[À>2þ‚>ðbN<•çÉ>ðbN?ã¬>ðbN?,ô?4n>S ž?7µ>S ž?7µ>‰’ê?7µ>ùÀÊ?:û=K(R?:û>S ž?:û>‰’ê?:û>Ù³¯?:û?ã¬?:û?$ðÇ?>D>2þ‚?>D?ã¬? A‹=¥®_? A‹?í?(DÒ=åÈ—?(DÒ>2þ‚?0H? æó?8K_>s¹?8K_>ùÀÊ?@N¦>© ?@N¦>É­!"   #%%**,,..//--++(($$ '')&!! %=4‘<•çÉ>4t>s¹>:ÿ?,ô>à[Ã>s¹?7¶<•çÉ=à[À<•çÉ=à[À>¹¦“=à[À?,ô>ÈQì<•çÉ>ÈQì>¹¦“>ÈQì?,ô>øe•=K(R>øe•>© >øe•>É­!>øe•?$ðÇ?6=¥®_?6>™™x?6>Ù³¯?6?í? 9Z>ñg? 9Z>s¹? 9Z>ùÀÊ? 9Z? æó    =ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n?ã¬> A=åÈ—> A?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>ðbN=K(R>ðbN?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?㬠 =à[À<•çÉ=à[À?,ô>¨DÓ<•çÉ>¨DÓ?,ô>ØX}=K(R>ØX}?$ðÇ>øe•=åÈ—>øe•?ê:?6>2þ‚?6?ã¬? 9Z>‰’ê? 9Z>Ù³¯ =ÀN§<•çÉ=ÀN§>¹¦“=ÀN§?,ô>°H>¹¦“?4o<•çÉ?4o?,ô= AŒ<•çÉ= AŒ>¹¦“= AŒ?,ô>¨DÓ>¹¦“>øe˜?,ô=ÀN¥>‰’ê=ÀN¥>Ù³¯>4n>2þ‚>4n?ã¬> A=åÈ—> A?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2>‰’ê>ÐU2?,ô>ðbN=K(R>ðbN?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý>‰’ê?:ý?㬠  >4n<•çÉ>4n>¹¦“>4n?,ô?:ý<•çÉ?:ý>¹¦“?:ý?,ô>4n<•çÉ>4n?,ô=ÀN§>2þ‚=ÀN§>s¹>4t=¥®_> A‰=K(R>`[À<•çÉ>:ÿ<•çÉ>°H=K(R>ÀN¨=¥®_>ÐU2>2þ‚>ÐU2?,ô =à[À<•çÉ=à[À>s¹=à[À?,ô>ˆ7µ>É­!? 9Z<•çÉ? 9Z?,ô= AŒ<•çÉ= AŒ?,ô>è_ <•çÉ>4t<•çÉ>4t?,ô>ÀN¥<•çÉ? A‹<•çÉ? A‹?,ô>4n<•çÉ>4n?,ô?:ý<•çÉ?:ý?,ô=ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÐU2<•çÉ>ÐU2?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯   =à[À<•çÉ=à[À>© =à[À?,ô>ÈQì>© >ÈQì?,ô>øe•>¹¦“>øe•?$ðÇ?6>É­!?6?í? 9Z>éº=? 9Z? æó =ÀN³>‰’ê=ÀN³>Ù³¯>4n>2þ‚>4n?ã¬> A‰=åÈ—> A‰?ê:>`[À=K(R>`[À?$ðÇ>:û<•çÉ>:û?,ô>ÀN¥>ñg>ÐU2<•çÉ>ÐU2?,ô>ðbQ=K(R>ðbQ?$ðÇ?7¶=åÈ—?7¶?ê:?:ý½5tý?:ý>2þ‚?:ý?ã¬?>D>‰’ê?>D>Ù³¯   =à[À<•çÉ=à[À>¹¦“=à[À?,ô>¨DÓ>¹¦“>ÈQì>¹¦“>ÈQì?,ô>øe•>É­!>øe•?$ðÇ?6>Ù³¯?6?í? 9Z<•çÉ? 9Z>ùÀÊ? 9Z? æó  =ÀN¥=åÈ—=ÀN¥?ã¬=ÀN¥?ê:>4n>éº=> A=K(R> A>Ù³¯> A?$ðÇ>`[À>É­!>€4n<•çÉ>€4n?,ô>ÀN¥<•çÉ>ÀN¥?,ô>ÐU2>© >ðbN=K(R>ðbN>™™x>ðbN?$ðÇ?4o>‰’ê?7¶=åÈ—?7¶>S ž?7¶?ê:   =4p?,ô>€4q<•çÉ>€4q?,ô>ðbQ?,ô>4n>S ž>4n?,ô> A‰=åÈ—>`[À=K(R> A<•çÉ>ÀN¥<•çÉ>ðbQ=K(R?7¶=åÈ—?:ý>S ž?:ý?,ô =4‘?,ô>:ÿ<•çÉ?7¶?,ô=€4p?,ô>`[Ç<•çÉ>ÀN¥?,ô?7¶<•çÉ?0H?,ô=ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô=4‘?,ô>:ÿ<•çÉ>:ÿ>¹¦“?7¶?,ô=ÀN¥<•çÉ=ÀN¥?,ô?7¶<•çÉ?7¶?,ô=à[À¾MžÇ=à[À?M*>:û¾MžÇ>:û?M*>¨DÓ¾MžÇ>¨DÓ?M*?,ô>à[ýšÔµ=à[À¾MžÇ=à[À?M*>˜>B¾MžÇ>˜>B?M*>¨DÓ¾MžÇ>¨DÓ?M*=ÀN²>É­!>@N¥>ùÀÊ>€4q<•çÉ>€4q? æó>€4q?ê:> A>ùÀÊ>ÐU2>É­!4½5tý?4o½5tý>4n?ã¬>4n?ê:> A‰>ùÀÊ> A‰? æó> A‰?$ðÇ>@N¥?ã¬>@N¥?,ô=à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜<•çÉ>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   =à[À<•çÉ=à[À=åÈ—=à[À>¹¦“=à[À?,ô>0H=K(R>0H>Ù³¯>pbN<•çÉ>pbN>éº=>¨DÐ<•çÉ>¨DÐ>éº=>ÈQì=K(R>ÈQì>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜>S ž>øe˜>‰’ê  =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>ðbQ=åÈ—>ðbQ>¹¦“  =à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜<•çÉ>øe˜=åÈ—>øe˜>¹¦“>øe˜?,ô   =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>à[Ã>É­!>ðbQ=åÈ—>ðbQ>‰’ê>ðbQ>©   =€4n>éº=> A‰<•çÉ> A‰? æó>@N¥?$ðÇ>€4n?,ô>:û>éº=> A?,ô=à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2¾-‘¬>PU2=K(R>PU2>Ù³¯>ˆ7µ¾MžÇ>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^¾MžÇ>¸K^<•çÉ>¸K^>éº=>ØXy¾-‘¬>ØXy=K(R>ØXy>Ù³¯>è_¾ „>øe˜½5tý>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   >4t<•çÉ>4t>© >4t?,ô>`[À>Ù³¯>:ÿ>éº=>ÀN¨>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© =ÀN«?,ô>4n<•çÉ>4n>éº=>4n?$ðÇ>4n?4÷U> A?,ô=€4l¾MžÇ>4n¾MžÇ>@N¥¾-‘¬>@N¥?,ô>`[À½šÔµ>`[À>éº=>`[À?$ðÇ>`[À?4÷U>€4n?,ô=ÀN²<•çÉ=ÀN²>ñg=ÀN²?,ô>`[Ç>‰’ê>ÐU2>éº=>à[Ã<•çÉ>4n<•çÉ>4n?,ô>4n<•çÉ>4n>© >4n>éº=>`[Ç>Ù³¯>:û>éº=>ÀN¥>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© ?:û>Ù³¯? A‰>éº=?8K_>éº=?HQí>Ù³¯?PU4<•çÉ?PU4>©   >4t<•çÉ>4t>© >4t>éº=>`[À>Ù³¯>:ÿ>éº=>ÀN¨>éº=>à[Ã>Ù³¯>ðbQ<•çÉ>ðbQ>© =ÀN§>S ž=ÀN§>‰’ê>4t=åÈ—>4t>¹¦“>@N¥=K(R>@N¥>Ù³¯>€4q<•çÉ>€4q>éº=>°H<•çÉ>°H>éº=>ÐU2=K(R>ÐU2>Ù³¯>ðbQ=åÈ—>ðbQ>¹¦“?4o>S ž?4o>‰’ê  =à[À¾MžÇ=à[À=åÈ—=à[À>¹¦“=à[À>éº=>0H=K(R>0H>Ù³¯>pbN<•çÉ>pbN>éº=>¨DÐ<•çÉ>¨DÐ>éº=>ÈQì=K(R>ÈQì>Ù³¯>è_=åÈ—>è_>¹¦“>øe˜>S ž>øe˜>‰’ê  =à[À>S ž=à[À>‰’ê>;=åÈ—>;>¹¦“>PU2=K(R>PU2>Ù³¯>ˆ7µ<•çÉ>ˆ7µ>éº=>¸K^<•çÉ>¸K^>éº=>ØXy=K(R>ØXy>Ù³¯>øe˜¾MžÇ>øe˜=åÈ—>øe˜>¹¦“>øe˜>éº=   = A‹<•çÉ= A‹>‰’ê= A‹>éº==à[À>¹¦“>0H>Ù³¯>pbN>éº=>¨DÓ>éº==ÀN²=åÈ—=ÀN²>¹¦“>4n=K(R>4n>™™x>4n>Ù³¯>@N¥>‰’ê>`[Ç<•çÉ>`[Ç>éº=> A<•çÉ> A>éº=>°H>s¹>ÐU2=K(R>ÐU2>S ž>ÐU2>Ù³¯>à[Ã=åÈ—>à[Ã>ñg>à[Ã>¹¦“   =€4n>éº=> A‰>ñg> A‰?,ô>@N¥=K(R>€4n<•çÉ>:û>éº=> A<•çÉ>4t>ñg>4t>éº=> A‰=K(R>`[À<•çÉ> A<•çÉ>ÀN¨=K(R>ðbQ<•çÉ>ðbQ>ñg>ðbQ>éº==€4p>éº=>€4q<•çÉ>à[Ã>éº==ÀN³>éº=>`[À<•çÉ>°H>éº=>ðbQ<•çÉ?>D>éº==ÀN²<•çÉ=ÀN²>éº=>à[Ã<•çÉ>à[Ã>éº==@N§¾MžÇ= AŒ¾MžÇ= AŒ>éº=>:û¾-‘¬>PU2½Úîé>ˆ7µ<•çÉ>è_ >éº==ÀN²<•çÉ=ÀN²>éº=>à[Ã<•çÉ>à[Ã>éº=>:û>™™x>0H½šÔµ>0H¼U;>0H?í>0H?,ô>PU9¾ „>PU9½Úîé>PU9½5tý>PU9=K(R>PU9>‰’ê>PU9>© >PU9? æó>PU9?$ðÇ>PU9?4÷U>PU9?<úœ>pbN¾-‘¬>pbN<•çÉ>pbN=¥®_>pbN?ã¬>pbN?ê:>pbN?Dýã>ˆ7µ=K(R>ˆ7µ>ñg>ˆ7µ>S ž>ˆ7µ>s¹>ˆ7µ>¹¦“>ˆ7µ>É­!>ˆ7µ>éº=>ˆ7µ? æó>˜>B¾MžÇ>˜>B=åÈ—>˜>B>2þ‚>˜>B>Ù³¯>˜>B>ùÀÊ>˜>B?M*"   !!  >4n¾MžÇ>4n?M*>:û¾MžÇ>:û=åÈ—>:û>2þ‚>:û>Ù³¯>:û>ùÀÊ>:û?M*>0H=K(R>0H>ñg>0H>S ž>0H>s¹>0H>¹¦“>0H>É­!>0H>éº=>0H? æó>PU2¾-‘¬>PU2<•çÉ>PU2=¥®_>PU2?ã¬>PU2?ê:>PU2?Dýã>pbN¾ „>pbN½Úîé>pbN½5tý>pbN=K(R>pbN>‰’ê>pbN>© >pbN? æó>pbN?$ðÇ>pbN?4÷U>pbN?<úœ>ˆ7µ½šÔµ>ˆ7µ¼U;>ˆ7µ?í>ˆ7µ?,ô>˜>B>™™x!!    "" =ÀN¥>S ž=ÀN¥>‰’ê>4t>© >4t>¹¦“>@N¥>¹¦“>@N¥>É­!>€4n>¹¦“>€4n>É­!> A‰>© > A‰>¹¦“>à[Ã>s¹>à[Ã>‰’ê?4o>S ž?4o>s¹?:ý>S ž?:ý>s¹? A‹>s¹? A‹>‰’ê?(DÐ>© ?(DÐ>É­!  =ÀN¥?ã¬=ÀN¥?ê:>4n>éº=>4n?$ðÇ>@N¥>Ù³¯>@N¥?,ô>€4n>Ù³¯>€4n?,ô> A>éº=> A?$ðÇ>°H?ã¬>°H?ê: dx-4.4.4/help/0000777000076500000240000000000010472427070010074 500000000000000dx-4.4.4/help/dxall10000644000076500000240000000042207430046105011112 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CIndianRed #!N #!Rall0 QuickStart Guide #!N #!EC #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lquikov,dxall2 h A Very Quick Overview #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall100000644000076500000240000000241107430046105011172 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CNavyBlue #!N #!Rtuta5 Controlling the Appearance of an Object: The Image Window #!N #!EC #!N #!N Controlling the appearance of an object means being able to control various aspects of its visual image on the screen as well as the data used in generating that image. This section deals briefly with control of the following aspects: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N o the object's appearance (size and the "view" displayed in the Image window) #!N #!I30 #!N o the sequence in which object images are presented #!N #!I30 #!N o the input from which an object's image is generated #!N #!I30 #!N o the color(s) of an object #!N #!I30 #!N o the placement of axes around an object. #!N #!I0 #!N #!EF #!N Note: Throughout this document, the term "Image window" refers to the window generated by Image (not by Display). Both of these modules are described in IBM Visualization Data Explorer User's Reference. Also see IBM Visualization Data Explorer User's Guide for a comprehensive treatment of the user interface. #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall10,dxall11 h Size, View, and AutoAxes #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall1000000644000076500000240000000244607430046106011263 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CSeaGreen #!N #!Rall99 Importing Data #!N #!EC #!N #!N Found in directory $DXROOT/samples/programs/IMPORTING #!N #!N #!F-adobe-times-bold-r-normal--18* Categorical.net #!EF How to import some data associated with state abbreviations using ImportSpreadsheet, then plot the average data for each state. #!N #!N #!F-adobe-times-bold-r-normal--18* Duplicates.net #!EF checks a simple table of data and checks for duplicate state names. #!N #!N #!F-adobe-times-bold-r-normal--18* GeneralImport1.net, GeneralImport2.net #!EF Importing data in the general array import format. #!N #!N #!F-adobe-times-bold-r-normal--18* ImportExternalFilter.net #!EF How to use the external-filter option of the Import module to import data in file formats other than Data Explorer. #!N #!N #!F-adobe-times-bold-r-normal--18* ZipCodes.net #!EF How to import some data associated with zipcodes using ImportSpreadsheet, then display those data on a state map. This program also illustrates the use of CategoryStatistics to compute the mean data value for each category (in this case, zipcode). #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall100,dxall101 h Interface Control #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10000000644000076500000240000000361707430046106011344 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CDarkGreen #!N #!Rall999 Including Hello in a Visual Program #!N #!EC #!N #!N In this example ( #!Lhmvp119,dxall1000 f Figure 119 #!EL ), the Hello module is not given an input value and therefore uses its default string ("hello world") as output. The Echo module sends the string to Data Explorer's Message window. #!Cbrown #!N #!F-adobe-times-medium-r-normal--18* #!Rhmvp119 #!N Graphics omitted from Online Documentation. Please see the manual. #!N #!N Figure 119. The Hello Module in a Visual Program. The protrusion of the upper tab indicates that the Hello module is using default input. When input is supplied through a connecting "arc," as it is to the Echo module, the input tab folds in. #!EF #!N #!EC #!N #!N A visual program that produces the string "hello, how are you?" can be created by: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N o Using the visual program in #!Lhmvp119,dxall1000 f Figure 119 #!EL and entering the string ", how are you?" as the argument of the #!F-adobe-times-bold-r-normal--18* value #!EF input parameter of the Hello module's configuration dialog box, or #!N #!I30 #!N o Creating a visual program ( #!Lhmvpsi120,dxall1000 f Figure 120 #!EL ) in which a string interactor stand-in provides the input (previously entered in the interactor by the user). #!N #!I0 #!N #!EF #!N #!Cbrown #!N #!F-adobe-times-medium-r-normal--18* #!Rhmvpsi120 #!N Graphics omitted from Online Documentation. Please see the manual. #!N #!N Figure 120. The Hello Module with a String Interactor in a Visual Program. Note that both input tabs are folded in (compare #!Lhmvp119,dxall1000 f Figure 119 #!EL ). #!EF #!N #!EC #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall1000,dxall1001 h Using Hello in a Script #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10010000644000076500000240000000241207430046106011335 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CDarkGreen #!N #!Rall1000 Using Hello in a Script #!N #!EC #!N #!N In the following example, no input to Hello is provided, so the module produces its default output: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N a = Hello(); #!N #!N Echo(a); #!EF #!N #!N #!EC #!N #!N In the next three examples, the user provides input to the Hello module. All three produce the output "hello, how are you?" #!N #!N #!F-adobe-times-bold-r-normal--18* EXAMPLE 1 #!EF ________________ #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N b = Hello( ", how are you?"); #!N Echo(b); #!EF #!N #!N #!EC #!F-adobe-times-bold-r-normal--18* EXAMPLE 2 #!EF ________________ #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N b = Hello(value = ", how are you?"); #!N Echo(b); #!EF #!N #!N #!EC #!N #!N #!F-adobe-times-bold-r-normal--18* EXAMPLE 3 #!EF ________________ #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N a = ", how are you?"; #!N b = Hello(a); #!N Echo(b); #!EF #!N #!N #!EC #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lhec,dxall1002 h Hello Module with Error Checking #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10020000644000076500000240000001122507430046106011340 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CSeaGreen #!N #!Rhec Hello Module with Error Checking #!N #!EC #!N #!N The definition of the Hello module (see #!Lhmod,dxall991 h Adding the Hello Module #!EL ) contains no error checking code. This omission, of course, is not a recommended practice. In the following version, the Data Explorer routine #!F-adobe-times-bold-r-normal--18* DXSetError #!EF reports errors to the user. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 01 #include #!N 02 #!N 03 #!N 04 m_HelloErrorChecking(Object *in, Object *out) #!N 05 { #!N 06 char message[30], *greeting, longmessage=NULL; #!N 07 #!N 08 if (!in[0]) { #!N 09 sprintf(message, "hello world"); #!N 10 out[0] = DXNewString(message); #!N 11 } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 12 else { #!N 13 if (!DXExtractString(in[0], &greeting)) { #!N 14 DXSetError(ERROR_BAD_PARAMETER, "value must be a string"); #!N 15 goto error; #!N 16 } #!N 17 if (strlen(greeting)<=(28-strlen("hello")) { #!N 18 sprintf(message, "%s %s", "hello", greeting); #!N 19 out[0] = DXNewString(message); #!N 20 } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 21 else { #!N 22 longmessage = DXAllocate((strlen("hello")+strlen(greeting)+2) #!N * sizeof(char)); #!N 23 if (!longmessage) #!N 24 goto error; #!N 25 sprintf(longmessage, "%s %s", "hello", greeting); #!N 26 out[0] = DXNewString(longmessage); #!N 27 DXFree((Pointer)longmessage); #!N 28 } #!N 29 } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 30 return OK; #!N 31 #!N 32 error: #!N 33 DXFree((Pointer)longmessage); #!N 34 return ERROR; #!N 35 } #!EF #!N #!N #!EC #!N #!N In this example, the return from #!F-adobe-times-bold-r-normal--18* DXExtractString #!EF (line 13) is checked. If the routine returns #!F-adobe-times-bold-r-normal--18* ERROR #!EF , the error message "value must be a string" is generated and Hello returns #!F-adobe-times-bold-r-normal--18* ERROR #!EF . #!N #!N The combined length of the user-supplied parameter string and "hello" is checked against the length of the buffer. If it exceeds the length, a new buffer is allocated for the output message (and freed before returning). Because #!F-adobe-times-bold-r-normal--18* longmessage #!EF is initialized to #!F-adobe-times-bold-r-normal--18* NULL #!EF , it can safely be freed on error, even if it has not yet been allocated. Note: The #!F-adobe-times-bold-r-normal--18* m_ #!EF #!F-adobe-times-bold-i-normal--18* module #!EF function should return an error code according to the Data Explorer library standard: #!F-adobe-times-bold-r-normal--18* ERROR #!EF for error and #!F-adobe-times-bold-r-normal--18* OK #!EF for successful completion. Thus the module entry point would typically be declared by: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N Error m_ #!F-adobe-times-bold-i-normal--18* module #!EF (Object *in, Object *out); #!EF #!N #!N #!EC #!N #!N To create a version of Data Explorer that includes the HelloErrorChecking module, copy the following files to the directory you want to work in: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N #!F-adobe-times-bold-r-normal--18* /usr/lpp/dx/samples/program_guide/Makefile_ #!EF #!F-adobe-times-bold-i-normal--18* workstation #!EF #!N #!F-adobe-times-bold-r-normal--18* /usr/lpp/dx/samples/program_guide/hello_errorchecking.c #!EF #!N #!F-adobe-times-bold-r-normal--18* /usr/lpp/dx/samples/program_guide/helloerr.mdf #!EF #!EF #!N #!N #!EC Now rename the makefile to #!F-adobe-times-bold-r-normal--18* Makefile #!EF (the name of the default makefile) and enter: make helloerr. This command creates an executable that contains the HelloErrorChecking module. #!N #!N To invoke this executable (from the directory to which the files were copied), enter: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N dx -edit -mdf ./helloerr.mdf -exec ./dxexec. #!EF #!N #!N #!EC This command starts Data Explorer (the #!F-adobe-times-bold-r-normal--18* helloerr.mdf #!EF file tells the graphical user interface about HelloErrorChecking and its inputs and outputs). #!N #!N You can now run any visual program that uses the HelloErrorChecking module. One such program is #!F-adobe-times-bold-r-normal--18* hello_errorchecking.net #!EF in the #!F-adobe-times-bold-r-normal--18* /usr/lpp/dx/samples/program_guide #!EF directory. #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lmblder,dxall1003 h Module Builder #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10030000644000076500000240000000114607430046106011342 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CSlateBlue #!N #!Rmblder Module Builder #!N #!EC #!N #!N The Module Builder is a point-and-click interface for creating a module from user-supplied information. #!N #!N The next several sections describe the general structure of modules built with the Module Builder; its dialog box; and examples of the "worker routine"--the interface between a module and the user-supplied application code. #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall1003,dxall1004 h Overview #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10040000644000076500000240000000566007430046106011350 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CNavyBlue #!N #!Rall1003 Overview #!N #!EC From specifications supplied by the user, the Module Builder generates three files: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N 1. a module description file (with the extension #!F-adobe-times-bold-r-normal--18* .mdf #!EF ); #!N #!I30 #!N 2. a C-code framework file that implements the structure of the module; and #!N #!I30 #!N 3. a makefile. #!N #!I0 #!N #!EF #!N #!N #!N #!N #!N The C-code framework file itself consists of three major routines: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N o The first routine checks input parameters and creates output Objects. It is named by prefixing #!F-adobe-times-bold-r-normal--18* m_ #!EF to the module name (e.g., the entry point for a module named Example is #!F-adobe-times-bold-r-normal--18* m_Example #!EF ). #!N #!I30 #!N o The second routine traverses hierarchically defined data Objects. When this routine ( #!F-adobe-times-bold-r-normal--18* Traverse #!EF ) encounters a Data Explorer Field Object, it calls the third routine. #!N #!I30 #!N o The third routine ( #!F-adobe-times-bold-r-normal--18* doLeaf #!EF ) creates a "worker routine" as an interface to the user's application-specific code: it extracts the input arguments, sets up the outputs, and calls the user-supplied code. (See #!Lmbwrkrt,dxall1014 h Worker Routine #!EL and #!Lwrkrxmp,dxall1020 h Worker Routine Examples #!EL .). The worker routine appears at the end of the C-code framework file. #!N #!I0 #!N #!EF #!N #!N #!N To complete a customized module, the user need only: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N add the application-specific code to the worker routine (after the line "User's code goes here" at the end of the C-code framework file) by: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N using an "include" file, #!F-adobe-times-medium-i-normal--18* or #!EF #!N #!I30 #!N adding the application code directly to the framework file. #!N #!I0 #!N #!EF #!N #!N #!I0 #!N #!EF #!N #!N #!N Using an include file is recommended because (1) if you rerun the module builder, it will overwrite the #!F-adobe-times-bold-r-normal--18* .c #!EF file, and (2) it makes replacing your own code easy. #!N #!N #!I0 #!N Notes: #!N #!I30 #!N 1. The Module Builder is designed to accommodate the most common form of customized module, in which the output Object is a copy of the input, but the data component is modified. #!N #!I30 #!N 2. Other inputs can be constant parameters or other hierarchically defined data Objects (note that the hierarchy of the data Objects must match exactly). #!I0 #!N #!N #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall1004,dxall1005 h Creating a Module with the Module Builder: A Summary #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10050000644000076500000240000000745607430046106011356 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CNavyBlue #!N #!Rall1004 Creating a Module with the Module Builder: A Summary #!N #!EC #!N #!N To begin a Module Builder session, enter: dx -builder. The dialog box ( #!L1a121,dxall1005 f Figure 121 #!EL ) consists of a menu bar and two major sections: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N o A #!F-adobe-times-bold-r-normal--18* Overall Module Description #!EF section for defining the module, and #!N #!I30 #!N o An #!F-adobe-times-bold-r-normal--18* Individual Parameter #!EF section for defining the individual input and output parameters. #!N #!I0 #!N #!EF #!N #!Cbrown #!N #!F-adobe-times-medium-r-normal--18* #!R1a121 #!N Graphics omitted from Online Documentation. Please see the manual. #!N #!N Figure 121. Module Builder Dialog Box. In the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section, the #!F-adobe-times-bold-r-normal--18* Input or Output? #!EF button specifies the kind of parameter being defined, and the associated #!F-adobe-times-bold-r-normal--18* Number #!EF setting specifies its ordinal ranking (i.e., first, second, etc.). Use the #!F-adobe-times-bold-r-normal--18* Number #!EF stepper buttons to proceed from one parameter description to the next. #!EF #!N #!EC #!N #!N When all the necessary information has been entered, save it. For new modules, use the #!F-adobe-times-bold-r-normal--18* Save as... #!EF option in the #!F-adobe-times-bold-r-normal--18* File #!EF pull-down menu (or #!F-adobe-times-bold-r-normal--18* Save #!EF , if the specified module name is already known to the system). The saved file has the name of the module and the extension #!F-adobe-times-bold-r-normal--18* .mb #!EF . #!N #!N You can now use the options in the #!F-adobe-times-bold-r-normal--18* Build #!EF pull-down menu to create a module description file ( #!F-adobe-times-bold-r-normal--18* .mdf #!EF ), a C-code module framework ( #!F-adobe-times-bold-r-normal--18* .c #!EF ), a makefile ( #!F-adobe-times-bold-r-normal--18* .make #!EF ), or all three together. You can incorporate your own application code in the C-code framework file and reference additional files in the makefile. #!N #!N Compile the program as follows: #!N make -f #!F-adobe-times-bold-i-normal--18* filename #!EF .make This command creates a customized version of the Data Explorer executive that can use the new module. To run this version in your working directory, enter the following command: #!N #!N For an #!F-adobe-times-medium-i-normal--18* inboard #!EF module: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N dx -edit -mdf #!F-adobe-times-bold-i-normal--18* filename #!EF .mdf -exec dxexec #!EF #!N #!N #!EC For an #!F-adobe-times-medium-i-normal--18* outboard #!EF or #!F-adobe-times-medium-i-normal--18* runtime-loadable #!EF module: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N dx -edit -mdf #!F-adobe-times-bold-i-normal--18* filename #!EF .mdf #!EF #!N #!N #!EC #!N #!N To create a version of the Data Explorer executive with more than one customized module, you must: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N 1. concatenate in a single mdf file the module descriptions you want to use; #!N #!I30 #!N 2. create a makefile that references the combined mdf file as well as all the individual #!F-adobe-times-bold-r-normal--18* .c #!EF framework files. #!N #!I30 #!N 3. compile the program as above. #!N #!I0 #!N #!EF #!N #!N #!N You can now run the new version with the new mdf file. #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Ltmodbld,dxall1006 h Using the Module Builder: A Quick Walk Through #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10060000644000076500000240000002400207430046106011341 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CNavyBlue #!N #!Rtmodbld Using the Module Builder: A Quick Walk Through #!N #!EC #!N #!N In this example, you will use the Module Builder to create a simple module that adds a single number to each data value of a set. Note: This function is supplied with Data Explorer as part of the #!F-adobe-times-bold-r-normal--18* Compute #!EF module and is used here only for purposes of illustration. #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N 1. Start the Module Builder with the command dx -builder. The Module Builder dialog box appears. #!N #!I30 #!N 2. Fill in the #!F-adobe-times-bold-r-normal--18* Overall Module Description #!EF section as follows: #!N #!I0 #!N #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Name #!EF #!EF #!I50 #!N Type in a name for the module (for this example, use "Add.") #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Category #!EF #!EF #!I50 #!N Select a category for the new module, either by clicking on one of the entries in the #!F-adobe-times-bold-r-normal--18* Existing #!EF pull-down menu or by typing in a menu name or a name of your choosing. #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Description #!EF #!EF #!I50 #!N Type in a short description of the module. This description will appear in the module's configuration dialog box (in the VPE window). #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Number of inputs #!EF #!EF #!I50 #!N Use the stepper buttons to set the value to "2." The two inputs of the new module will be a data Field and the number to be added to each data value. #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Number of outputs #!EF #!EF #!I50 #!N The module generates a single output. Use the stepper buttons to set the value to "1" if that is not already the value. The output is the new Field (i.e., the data value plus the added value). #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Outboard #!EF #!EF #!I50 #!N Activate the #!F-adobe-times-bold-r-normal--18* outboard #!EF toggle button and type in "Add" in the #!F-adobe-times-bold-r-normal--18* Executable Name #!EF field. (Leave the other toggle buttons and fields as they are.) Note: In this example, the new ("outboard") module is an independent process. In contrast, an "inboard" module is compiled and incorporated as part of the Data Explorer executable; and a runtime-loadable module is compiled independently and loaded into Data Explorer at run time. #!I0 #!N #!N #!N #!I30 #!N 3. Fill in the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section as follows: #!N #!I0 #!N #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Input Number < 1 > #!EF #!EF #!I50 #!N The first input is the data field. #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N a. Set the button in the top-left corner of the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section to #!F-adobe-times-bold-r-normal--18* Input #!EF if that is not already the setting. #!N #!I30 #!N b. Use the stepper buttons to set #!F-adobe-times-bold-r-normal--18* Number #!EF to "1" if that is not already the value. #!N #!I30 #!N c. Enter a name for this parameter in the #!F-adobe-times-bold-r-normal--18* Name #!EF field (e.g., "data"). #!N #!I30 #!N d. Enter a short description in the #!F-adobe-times-bold-r-normal--18* Description #!EF field. #!N #!I30 #!N e. Confirm that the #!F-adobe-times-bold-r-normal--18* Required #!EF toggle button for the first input is activated. #!N #!I30 #!N f. Confirm that the #!F-adobe-times-bold-r-normal--18* field object #!EF toggle button (below #!F-adobe-times-bold-r-normal--18* Object Type #!EF ) is activated. #!N #!I30 #!N g. On the right-hand side of the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section, select #!F-adobe-times-bold-r-normal--18* float #!EF ("floating point") and #!F-adobe-times-bold-r-normal--18* Scalar #!EF for #!F-adobe-times-bold-r-normal--18* Data type #!EF and #!F-adobe-times-bold-r-normal--18* Data shape #!EF respectively. #!N #!I30 #!N h. Set #!F-adobe-times-bold-r-normal--18* Positions #!EF and #!F-adobe-times-bold-r-normal--18* Connections #!EF to #!F-adobe-times-bold-r-normal--18* Not required #!EF (information about these components is not needed). #!N #!I30 #!N i. For this example, since the dependency of the data on positions or connections in the output Object will be the same as it was in the input Object, select #!F-adobe-times-bold-r-normal--18* Positions or Connections #!EF . #!N #!I0 #!N #!EF #!N #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Input Number < 2 > #!EF #!EF #!I50 #!N The second input is the value to be added to each data value. #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N a. Confirm that the button in the top-left corner of the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section is set to #!F-adobe-times-bold-r-normal--18* Input #!EF . #!N #!I30 #!N b. Use the stepper buttons to set #!F-adobe-times-bold-r-normal--18* Number #!EF to "2." #!N #!I30 #!N c. Enter a name for this parameter in the #!F-adobe-times-bold-r-normal--18* Name #!EF field (e.g., "value"). #!N #!I30 #!N d. Enter a short description in the #!F-adobe-times-bold-r-normal--18* Description #!EF field. #!N #!I30 #!N e. Confirm that the #!F-adobe-times-bold-r-normal--18* Required #!EF toggle button is deactivated. #!N #!I30 #!N f. Specify a default value, such as "0." #!N #!I30 #!N g. If the default value is meant to be descriptive, activate the #!F-adobe-times-bold-r-normal--18* Descriptive #!EF toggle button. #!N #!I30 #!N h. Under #!F-adobe-times-bold-r-normal--18* Object Type #!EF , activate the #!F-adobe-times-bold-r-normal--18* simple parameter #!EF toggle button. #!N #!I30 #!N i. Now activate the #!F-adobe-times-bold-r-normal--18* Scalar #!EF toggle button (below #!F-adobe-times-bold-r-normal--18* Type #!EF on the right-hand side). #!N #!I0 #!N #!EF #!N #!N #!I0 #!N #!F-adobe-times-bold-r-normal--18* #!F-adobe-times-bold-r-normal--18* Output Number < 1 > #!EF #!EF #!I50 #!N Now describe the output of the module. #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N a. Change #!F-adobe-times-bold-r-normal--18* Input #!EF to #!F-adobe-times-bold-r-normal--18* Output #!EF (top-left corner of the #!F-adobe-times-bold-r-normal--18* Individual Parameter Information #!EF section). The #!F-adobe-times-bold-r-normal--18* Number #!EF setting changes to "1" automatically. #!N #!I30 #!N b. Enter a name for this parameter in the #!F-adobe-times-bold-r-normal--18* Name #!EF field (e.g., "result"). #!N #!I30 #!N c. Enter a short description in the #!F-adobe-times-bold-r-normal--18* Description #!EF field. #!N #!I30 #!N d. Confirm that the #!F-adobe-times-bold-r-normal--18* field object #!EF toggle button (below #!F-adobe-times-bold-r-normal--18* Object Type #!EF ) is activated. #!N #!I30 #!N e. Confirm that #!F-adobe-times-bold-r-normal--18* Data type #!EF and #!F-adobe-times-bold-r-normal--18* Data Shape #!EF are set to #!F-adobe-times-bold-r-normal--18* float #!EF and #!F-adobe-times-bold-r-normal--18* Scalar #!EF respectively. #!N #!I30 #!N f. Confirm that #!F-adobe-times-bold-r-normal--18* Dependency #!EF is set to #!F-adobe-times-bold-r-normal--18* Positions or connections #!EF . #!N #!I0 #!N #!EF #!N #!I0 #!N #!N #!N #!N You can now create the necessary files: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N a. Click on #!F-adobe-times-bold-r-normal--18* Build #!EF in the dialog box menu bar and select #!F-adobe-times-bold-r-normal--18* Create All #!EF in the pull-down menu. #!N #!N The Module Builder creates three files for the Add module: Add.c, Add.mdf, and Add.make. #!N #!I30 #!N b. To insert the necessary user-specific code in Add.c, use an editor. Look for the phrase "User's code goes here" at the bottom of the file, and type in the following: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N int i; #!N float value; #!N #!N if (value_knt==0) #!N value = 0; #!N else #!N value = value_data[0]; #!N #!N for (i=0; i= 0 && ((i % (c_counts[1]-1)) != 0)) { #!N output_data[neighbor]+=input_data[i]; #!N itemcounts[neighbor]++; #!N } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N neighbor = i+1; #!N if (neighbor < input_knt &&(((i+1)%(c_counts[1]-1)) != 0)) { #!N output_data[neighbor]+=input_data[i]; #!N itemcounts[neighbor]++; #!N } #!N #!N /* now do neighbors in the slowest-varying dimension */ #!N neighbor = i - (c_counts[1]-1); #!N if (neighbor >= 0) { #!N output_data[neighbor]+=input_data[i]; #!N itemcounts[neighbor]++; #!N } #!N neighbor = i + (c_counts[1]-1); #!N if (neighbor < input_knt) { #!N output_data[neighbor]+=input_data[i]; #!N itemcounts[neighbor]++; #!N } #!N } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N /* now divide by the number of items added for that cell */ #!N for (i=0; i< input_knt; i++) #!N output_data[i] = output_data[i]/itemcounts[i]; #!N #!N DXFree((Pointer)itemcounts); #!N return OK; #!N error: #!N DXFree((Pointer)itemcounts); #!N return ERROR; #!N } #!EF #!N #!N #!EC #!N #!N The file /usr/lpp/dx/samples/program_guide/averagecell.c contains a completed version of this program. #!N #!N #!F-adobe-times-bold-r-normal--18* (7) TO CREATE A VERSION OF DATA EXPLORER THAT INCLUDES #!EF the AverageCell module, enter the command: ____________________________________________________________ #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N make -f averagecell.make dxexec #!EF #!N #!N #!EC #!N #!N (You have now created an executable that contains the AverageCell module.) #!N #!N #!F-adobe-times-bold-r-normal--18* (8) TO INVOKE THIS VERSION, ENTER: #!EF _________________________________________ #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N dx -edit -mdf ./averagecell.mdf -exec ./dxexec #!EF #!N #!N #!EC #!N #!N This command starts Data Explorer (the averagecell.mdf file tells the graphical user interface about AverageCell and its inputs and outputs). The executable dxexec invoked here is the one created in Step 6. #!N #!N #!F-adobe-times-bold-r-normal--18* (9) WITH THIS VERSION OF DATA EXPLORER #!EF you can now run any visual program that uses the AverageCell module. ____________________________________________ One such program is /usr/lpp/dx/samples/program_guide/averagecell.net #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Limptd,dxall1036 h Importing Data #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10360000644000076500000240000000322607430046111011345 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CSlateBlue #!N #!Rimptd Importing Data #!N #!EC #!N #!N If you want to import data that is not in a format supported by Data Explorer, you have three options: #!N #!I0 #!N #!F-adobe-times-medium-r-normal--18* #!N #!N #!I30 #!N o Write an import filter to convert the data to Data Explorer or General Array importer format on disk. #!N #!I30 #!N o Write an import filter to convert the data to Data Explorer or General Array header format on standard output, and use the external filter option of Import to import the data. (See #!Limport,dxall871 h Import #!EL in IBM Visualization Data Explorer User's Reference.) #!N #!I30 #!N o Write your own import module to read the data and create a Data Explorer Object as its output (e.g., a Field Object). #!N #!I0 #!N #!EF #!N #!N #!N #!I0 #!N Notes: #!N #!I30 #!N 1. The following examples illustrate the conversion of data from Hierarchical Data Format (HDF) to Data Explorer file format. Understanding the examples does not require any familiarity with HDF. #!N #!I30 #!N 2. HDF libraries are not distributed with Data Explorer and no makefiles are provided for the programs used. If you have the HDF libraries, you can use the same compilation and linking procedures as you do for other programs requiring those libraries. #!N #!I30 #!N 3. The Import module will import HDF data. The example in #!Lwrimp,dxall1038 h Writing an Import Module #!EL is for illustration only. #!I0 #!N #!N #!N #!N #!N #!F-adobe-times-medium-i-normal--18* Next Topic #!EF #!N #!N #!Lall1036,dxall1037 h Writing a Filter #!EL #!N #!F-adobe-times-medium-i-normal--18* #!N dx-4.4.4/help/dxall10370000644000076500000240000001432607430046111011351 00000000000000#!F-adobe-helvetica-medium-r-normal--18* #!N #!CNavyBlue #!N #!Rall1036 Writing a Filter #!N #!EC #!N #!N The filters used to create a Data Explorer format file on disk and on standard output are essentially the same. #!N #!N Assume a single data set of scalar data stored in an HDF file. All HDF files are gridded. The dimensionality and size of the grid are to be determined from queries to the data set. #!N #!N The following C program requires the HDF file name as an argument. It is found in #!F-adobe-times-bold-r-normal--18* /usr/lpp/dx/samples/program_guide/simpleimportfilter.c #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 01 #!N 02 #!N 03 #include #!EF #!N #!N #!EC #!N #!N #!F-adobe-times-bold-r-normal--18* df.h #!EF is a necessary include file for HDF library routines. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 04 #include #!N 05 #!N 06 #define MAXRANK 3 #!N 07 #!N 08 main(argc, argv) #!N 09 char *argv[]; #!N 10 { #!N 11 FILE *in; #!N 12 char filename[80]; #!N 13 int dims, counts[MAXRANK], numelements, i, j; #!N 14 float deltas[MAXRANK*MAXRANK], origins[MAXRANK], *databuf=NULL; #!N 15 #!EF #!N #!N #!EC #!N #!N Check that the user has supplied the name of the file to be opened. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 16 if (argc < 2) { #!N 17 fprintf(stderr,"Usage: simpleimportfilter \n"); #!N 18 return 0; #!N 19 } #!N 20 #!N 21 strcpy(filename, argv[1]); #!N 22 } #!EF #!N #!N #!EC #!N #!N The HDF library routine #!F-adobe-times-bold-r-normal--18* DFishdf #!EF checks the file for accessibility and for the correct (HDF) format. If the file is not accessible or is not an HDF file, the routine generates an error message. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 23 if (DFishdf(filename) != 0) { #!N 24 fprintf(stderr, #!N 25 "file \"%s\" is not accessible, or is not an hdf file\n", #!N 26 filename); #!N 27 return 0; #!N 28 } #!EF #!N #!N #!EC #!N #!N Initialize the HDF library. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 29 DFSDrestart(); #!EF #!N #!N #!EC #!N #!N The HDF library routine #!F-adobe-times-bold-r-normal--18* DFSDgetdims #!EF returns the dimensionality of the grid (1D, 2D, etc.) in #!F-adobe-times-bold-r-normal--18* dims #!EF . The number of positions in each dimension is returned in the Array #!F-adobe-times-bold-r-normal--18* counts #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 30 DFSDgetdims(filename, &dims, counts, MAXRANK); #!EF #!N #!N #!EC #!N #!N Determine the number of elements in the data Array. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 31 numelements=1; #!N 32 for (i=0; i #!EF #!N #!N #!EC #!N #!N #!F-adobe-times-bold-r-normal--18* df.h #!EF is a necessary include file for HDF library routines. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 02 #include #!N 03 #!N 04 #define MAXRANK 3 #!N 05 #!N 06 Error m_SimpleImport(Object *in, Object *out) #!N 07 { #!N 08 Array a=NULL; #!N 09 Field f=NULL; #!N 10 char *filename; #!N 11 int dims, counts[MAXRANK], numelements, i, j; #!N 12 float deltas[MAXRANK*MAXRANK], origins[MAXRANK], *data; #!EF #!N #!N #!EC #!N #!N Extract the file name from #!F-adobe-times-bold-r-normal--18* in[0] #!EF , and check that it is a string. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 13 if (!in[0]) { #!N 14 DXSetError(ERROR_BAD_PARAMETER,"missing filename"); #!N 15 goto error; #!N 16 } #!N 17 else if (!DXExtractString(in[0], &filename)) { #!N 18 DXSetError(ERROR_BAD_PARAMETER, "filename must be a string"); #!N 19 goto error; #!N 20 } #!EF #!N #!N #!EC #!N #!N The HDF library routine #!F-adobe-times-bold-r-normal--18* DFishdf #!EF checks the file for accessibility and for the correct (HDF) format. If the file is not accessible or is not an HDF file, the routine generates an error message. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 21 if (DFishdf(filename) != 0) { #!N 22 DXSetError(ERROR_BAD_PARAMETER, #!N 23 "file \"%s\" is not accessible, or is not an hdf file", #!N 24 filename); #!N 25 goto error; #!N 26 } #!N 27 #!EF #!N #!N #!EC #!N #!N Initialize the HDF library. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 28 DFSDrestart(); #!EF #!N #!N #!EC #!N #!N The HDF library routine #!F-adobe-times-bold-r-normal--18* DFSDgetdims #!EF returns the dimensionality of the grid (1D, 2D, etc.) in #!F-adobe-times-bold-r-normal--18* dims #!EF . The number of positions in each dimension is returned in the Array #!F-adobe-times-bold-r-normal--18* counts #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 29 DFSDgetdims(filename, &dims, counts, MAXRANK); #!EF #!N #!N #!EC #!N #!N Make a new Array (scalar). #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 30 a = DXNewArray(TYPE_FLOAT, CATEGORY_REAL, 0); #!N 31 if (!a) #!N 32 goto error; #!EF #!N #!N #!EC #!N #!N Determine the number of elements in the data Array. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 33 numelements=1; #!N 34 for (i=0; i #!N 02 #include "pick.h" #!N 03 #!N 04 static Error DoPick(Object, Object, RGBColor, int, int, int, int); #!N 05 static Error SetColor(Object, RGBColor); #!N 06 #!N 07 Error m_ShowPick(Object *in, Object *out) #!N 08 { #!N 09 Object o = NULL, pickfield; #!N 10 char *colorstring; #!N 11 int colorwhich, poke, pick, depth; #!N 12 RGBColor color; #!EF #!N #!N #!EC #!N #!N #!N #!N Copy the structure of #!F-adobe-times-bold-r-normal--18* in[0] #!EF , the object in which picking took place. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 13 if (!in[0]) { #!N 14 DXSetError(ERROR_BAD_PARAMETER, "missing input"); #!N 15 goto error; #!N 16 } #!N 17 o = (Object)DXCopy(in[0], COPY_STRUCTURE); #!N 18 if (!o) #!N 19 goto error; #!EF #!N #!N #!EC #!N #!N First, set all the colors to white, to initialize. (The SetColor routine is defined below.) #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 20 if (!SetColor(o, DXRGB(1.0, 1.0, 1.0))) #!N 21 goto error; #!EF #!N #!N #!EC #!N #!N #!F-adobe-times-bold-r-normal--18* in[1] #!EF is the pick Field. If the pick Field is #!F-adobe-times-bold-r-normal--18* NULL #!EF or an empty Field, just return the copy of the object. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 22 if (!in[1] || DXEmptyField(in[1])) { #!N 23 out[0] = o; #!N 24 return OK; #!N 25 } #!N 26 pickfield = in[1]; #!EF #!N #!N #!EC #!N #!N Get the color that will be used for picked Objects, which is #!F-adobe-times-bold-r-normal--18* in[2] #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 27 if (in[2]) { #!N 28 if (!DXExtractString((Object)in[2], &colorstring)) { #!N 29 DXSetError(ERROR_BAD_PARAMETER,"color must be a string"); #!N 30 goto error; #!N 31 } #!EF #!N #!N #!EC #!N #!N Convert the color name to an RGB vector. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 32 #!N 33 if (!DXColorNameToRGB(colorstring, &color)) #!N 34 goto error; #!N 35 } #!N 36 else { #!EF #!N #!N #!EC #!N #!N If #!F-adobe-times-bold-r-normal--18* in[2] #!EF is not specified, then the default color is red. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 37 color = DXRGB(1.0, 0.0, 0.0); #!N 38 } #!EF #!N #!N #!EC #!N #!N Determine if we are to color just the picked element, just the vertex closest to the picked point, or the entire Field. The default is to color just the picked element. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 39 if (!in[3]) { #!N 40 colorwhich = 0; #!N 41 } #!N 42 else { #!N 43 if (!DXExtractInteger(in[3], &colorwhich)) { #!N 44 DXSetError(ERROR_BAD_PARAMETER,"colorwhich flag must be 0, 1, or 2"); #!N 45 goto error; #!N 46 } #!N 47 if ((colorwhich < 0)&&(colorwhich > 2)) { #!N 48 DXSetError(ERROR_BAD_PARAMETER,"colorwhich flag must be 0, 1, or 2"); #!N 49 goto error; #!N 50 } #!N 51 } #!EF #!N #!N #!EC #!N #!N Determine if we are to select a particular poke, or all of them. The default is to select all of them. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 52 #!N 53 if (!in[4]) { #!N 54 poke = -1; #!N 55 } #!N 56 else { #!N 57 if (!DXExtractInteger(in[4], &poke)) { #!N 58 DXSetError(ERROR_BAD_PARAMETER,"poke must be a nonnegative integer"); #!N 59 goto error; #!N 60 } #!N 61 if (poke < 0) { #!N 62 DXSetError(ERROR_BAD_PARAMETER,"poke must be a nonnegative integer"); #!N 63 goto error; #!N 64 } #!N 65 } #!EF #!N #!N #!EC #!N #!N Determine if we are to select a particular pick, or all of them. The default is to select all of them. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 66 if (!in[5]) { #!N 67 pick = -1; #!N 68 } #!N 69 else { #!N 70 if (!DXExtractInteger(in[5], &pick)) { #!N 71 DXSetError(ERROR_BAD_PARAMETER,"pick must be a nonnegative integer"); #!N 72 goto error; #!N 73 } #!N 74 if (pick < 0) { #!N 75 DXSetError(ERROR_BAD_PARAMETER,"pick must be a nonnegative integer"); #!N 76 goto error; #!N 77 } #!N 78 } #!EF #!N #!N #!EC #!N #!N Determine if we are to select a depth. The default is to select the deepest level. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 79 if (!in[6]) { #!N 80 depth = -1; #!N 81 } #!N 82 else { #!N 83 if (!DXExtractInteger(in[6], &depth)) { #!N 84 DXSetError(ERROR_BAD_PARAMETER,"depth must be a nonnegative integer"); #!N 85 goto error; #!N 86 } #!N 87 if (depth < 0) { #!N 88 DXSetError(ERROR_BAD_PARAMETER,"depth must be a nonnegative integer"); #!N 89 goto error; #!N 90 } #!N 91 } #!EF #!N #!N #!EC #!N #!N Traverse the picked object, using the pick structure, passing the given parameters. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 92 if (!DoPick(o, pickfield, color, colorwhich, poke, pick, depth)) #!N 93 goto error; #!EF #!N #!N #!EC #!N #!N Delete the #!F-adobe-times-bold-r-normal--18* opacities #!EF component. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 94 if (DXExists(o, "opacities")) #!N 95 DXRemove(o,"opacities"); #!EF #!N #!N #!EC #!N #!N Successful return. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 96 out[0] = o; #!N 97 return OK; #!EF #!N #!N #!EC #!N #!N Return on error. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 98 error: #!N 99 DXDelete(o); #!N 100 return ERROR; #!N 101 } #!EF #!N #!N #!EC #!N #!N The #!F-adobe-times-bold-r-normal--18* DoPick() #!EF routine traverses the picked object. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 102 static #!N 103 Error #!N 104 DoPick(Object o, Object pickfield, RGBColor color, int colorwhich, #!N 105 int pokes, int picks, int depth) #!N 106 { #!N 107 int pokecount, pickcount, poke, pick, i, pathlength; #!N 108 int vertexid, elementid, *path, numitems, index; #!N 109 Object current; #!N 110 Matrix matrix; #!N 111 Array a, newcolors=NULL, oldcolors; #!N 112 char *depatt; #!N 113 RGBColor *newcolors_ptr, oldcolor; #!N 114 int pokemin, pokemax; #!N 115 int pickmin, pickmax; #!N 116 int thisdepth; #!EF #!N #!N #!EC #!N #!N #!F-adobe-times-bold-r-normal--18* pickfield #!EF is expected to be a Field. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 117 if (!(DXGetObjectClass(pickfield)==CLASS_FIELD)) { #!N 118 DXSetError(ERROR_INVALID_DATA,"pickfield must be a field"); #!N 119 goto error; #!N 120 } #!EF #!N #!N #!EC #!N #!N Find out the number of pokes. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 121 DXQueryPokeCount(pickfield, &pokecount); #!EF #!N #!N #!EC #!N #!N The user has chosen to mark all pokes. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 122 if (pokes < 0) { #!N 123 pokemin = 0, pokemax = pokecount-1; #!N 124 } #!EF #!N #!N #!EC #!N #!N The user has specified a poke larger than the number present. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 125 else if (pokes > pokecount-1) { #!N 126 DXSetError(ERROR_BAD_PARAMETER, #!N 127 "only %d pokes are present", pokecount); #!N 128 return ERROR; #!N 129 } #!EF #!N #!N #!EC #!N #!N Consider only the specified poke. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 130 else #!N 131 pokemin = pokemax = pokes; #!EF #!N #!N #!EC #!N #!N For each poke... #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 132 for (poke=pokemin; poke<=pokemax; poke++) { #!EF #!N #!N #!EC #!N #!N Find out how many picks there are in this poke. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 133 if (!DXQueryPickCount(pickfield, poke, &pickcount)) #!N 134 goto error; #!EF #!N #!N #!EC #!N #!N Issue warning if this particular poke does not contain as many picks as the user has specified. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 135 if (picks > pickcount-1) { #!N 136 DXWarning("poke %d contains only %d picks", poke, pickcount); #!N 137 } #!N 138 #!N 139 else { #!N 140 if (picks < 0) { #!N 141 pickmin = 0, pickmax = pickcount-1; #!N 142 } #!N 143 else { #!N 144 pickmin = pickmax = picks; #!N 145 } #!EF #!N #!N #!EC #!N #!N For each pick... #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 146 #!N 147 for (pick=pickmin; pick<=pickmax; pick++) { #!EF #!N #!N #!EC #!N #!N For the given #!F-adobe-times-bold-r-normal--18* pickfield #!EF , the current poke number, and the current pick number, get the traversal path #!F-adobe-times-bold-r-normal--18* path #!EF , the length of the traversal path #!F-adobe-times-bold-r-normal--18* pathlength #!EF , and the IDs of the picked element and the picked vertex. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 148 DXQueryPickPath(pickfield, poke, pick, &pathlength, &path, #!N 149 &elementid, &vertexid); #!EF #!N #!N #!EC #!N #!N Initialize #!F-adobe-times-bold-r-normal--18* current #!EF to the picked object, and #!F-adobe-times-bold-r-normal--18* matrix #!EF to the identity matrix. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 150 current = o; #!N 151 matrix = Identity; #!N 152 if (depth != -1 && pathlength > depth) #!N 153 thisdepth = depth; #!N 154 else #!N 155 thisdepth = pathlength; #!EF #!N #!N #!EC #!N #!N Iterate through the pick path. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 156 for (i=0; i= numitems) { #!N 189 DXSetError(ERROR_INVALID_DATA, #!N 190 "pick structure does not correspond to picked object"); #!N 191 goto error; #!N 192 } #!EF #!N #!N #!EC #!N #!N Get the original colors component. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 193 oldcolors = DXGetComponentValue((Field)current, "colors"); #!EF #!N #!N #!EC #!N #!N If it is a constant Array, we need to expand it so that we can set just one element or vertex to the given color. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 194 if (DXQueryConstantArray(oldcolors, NULL, &oldcolor)) { #!EF #!N #!N #!EC #!N #!N Create a new colors Array and allocate space to it. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 195 newcolors = DXNewArray(TYPE_FLOAT,CATEGORY_REAL, 1, 3); #!N 196 if (!DXAddArrayData(newcolors, 0, numitems, NULL)) #!N 197 goto error; #!EF #!N #!N #!EC #!N #!N Start by setting all colors to the original constant color. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 198 newcolors_ptr = (RGBColor *)DXGetArrayData(newcolors); #!N 199 for (i=0; i #!N 02 #!N 03 static Error DoAdd(Object o, float x); #!N 04 #!N 05 m_AddParallel(Object *in, Object *out) #!N 06 { #!N 07 Object o = NULL; #!N 08 float x; #!EF #!N #!N #!EC #!N #!N Copy the structure of #!F-adobe-times-bold-r-normal--18* in[0] #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 09 if (!in[0]) #!N 10 DXErrorGoto(ERROR_BAD_PARAMETER, "missing object"); #!N 11 o = DXCopy(in[0], COPY_STRUCTURE); #!N 12 if (!o) #!N 13 goto error; #!EF #!N #!N #!EC #!N #!N Extract floating-point parameter from #!F-adobe-times-bold-r-normal--18* in[1] #!EF (default 0). #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 14 if (!in[1]) #!N 15 x = 0; #!N 16 else if (!DXExtractFloat(in[1], &x)) #!N 17 DXErrorGoto(ERROR_BAD_PARAMETER, "bad addend"); #!EF #!N #!N #!EC #!N #!N Create the task Group, call #!F-adobe-times-bold-r-normal--18* DoAdd() #!EF for recursive traversal, and then execute the task Group. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 18 DXCreateTaskGroup(); #!N #!N 19 if (!DoAdd(o, x)) { #!N 20 DXAbortTaskGroup() #!N 21 goto error; #!N 22 } #!N 23 if (!DXExecuteTaskGroup()) #!N 24 goto error; #!N #!EF #!N #!N #!EC #!N #!N A successful return or return on error. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 25 out[0] = o; #!N 26 return OK; #!N 27 #!N 28 error: #!N 29 DXDelete(o); #!N 30 return ERROR; #!N 31 } #!N 32 #!N 33 #!EF #!N #!N #!EC #!N #!N The argument block for passing parameters to the task routine: #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 34 struct arg { #!N 35 Field field; #!N 36 float x; #!N 37 } #!EF #!N #!N #!EC #!N #!N The following task routine does the actual work of processing a Field. #!F-adobe-times-bold-r-normal--18* DXAddTask #!EF instructs the executive to call this routine once for each Field. The executive will pass to #!F-adobe-times-bold-r-normal--18* task #!EF the argument block pointer that was specified when #!F-adobe-times-bold-r-normal--18* DXAddTask #!EF itself was called. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 01 #!N 02 static Error #!N 03 task(Pointer p) #!N 04 { #!N 05 struct arg *arg = (struct arg *)p; #!N 06 Field field; #!N 07 float x, *from, *to; #!N 08 int i, n; #!N 09 Array a; #!EF #!N #!N #!EC #!N #!N Extract the arguments. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 10 field = arg->field; #!N 11 x = arg->x; #!EF #!N #!N #!EC #!N #!N Extract, typecheck, and get the data from the "data" component. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 12 a = (Array) DXGetComponentValue(field, "data"); #!N 13 if (!a) #!N 14 DXErrorReturn(ERROR_MISSING_DATA, "field has no data"); #!N 15 if (!DXTypeCheck(a, TYPE_FLOAT, CATEGORY_REAL, 0)) #!N 16 DXErrorReturn(ERROR_BAD_TYPE, "data is not floating point"); #!N 17 from = (float *) DXGetArrayData(a); #!EF #!N #!N #!EC #!N #!N Create a new Array, allocate space to it, and put it in the Field. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 18 DXGetArrayInfo(a, &n, NULL, NULL, NULL, NULL); #!N 19 a = DXNewArray(TYPE_FLOAT, CATEGORY_REAL, 0); #!N 20 if (!DXAddArrayData(a, 0, n, NULL)) #!N 21 return ERROR; #!N 22 to = (float *) DXGetArrayData(a); #!N 23 DXSetComponentValue(field, "data", (Object)a); #!EF #!N #!N #!EC #!N #!N The following loop adds #!F-adobe-times-bold-r-normal--18* x #!EF to obtain the result. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 24 for (i=0; i #!N 02 #!N 03 static Error DoAverageCell(Object); #!N 04 #!N 05 #!N 06 #!N 07 Error m_AverageCellParallel(Object *in, Object *out) #!N 08 { #!N 09 Object o=NULL; #!N 10 #!N 11 if (!in[0]) { #!N 12 DXSetError(ERROR_BAD_PARAMETER,"missing input"); #!N 13 goto error; #!N 14 } #!N 15 #!N 16 o = DXCopy(in[0], COPY_STRUCTURE); #!EF #!N #!N #!EC #!N #!N "Grow" the Fields so that averaging can be performed across partition boundaries. Since it is not necessary to grow a Field beyond the original boundaries of the data, and since only the "data" component is affected, grow the partition by one cell. (The original components--"positions," "data," etc.--are copied into components named "original positions," "original data," and so on.) #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 17 if (!DXGrow(o, 1, GROW_NONE, "data", NULL)) #!N 18 goto error; #!EF #!N #!N #!EC #!N #!N Create the task Group. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 19 if (!DXCreateTaskGroup()) #!N 20 goto error; #!EF #!N #!N #!EC #!N #!N The add tasks will be added in #!F-adobe-times-bold-r-normal--18* DoAverageCell() #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 21 if (!DoAverageCell(o)) { #!N 22 DXAbortTaskGroup(); #!N 23 goto error; #!N 24 } #!N 25 #!N 26 if (!DXExecuteTaskGroup()) #!N 27 goto error; #!EF #!N #!N #!EC #!N #!N Do not call #!F-adobe-times-bold-r-normal--18* DXShrink #!EF to shrink the grown Field until you have recursively removed any "original data" component(s), assuming that you want to save the newly created one(s). Otherwise the new "data" component(s) will be replaced by the (unprocessed) "original data" components(s). Now you can call #!F-adobe-times-bold-r-normal--18* DXShrink #!EF . #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 28 if (DXExists(o, "original data")) #!N 29 DXRemove(o,"original data"); #!N 30 if (!DXShrink(o)) #!N 31 goto error; #!N 32 #!N 33 out[0] = o; #!N 34 return OK; #!N 35 error: #!N 36 DXDelete((Object)o); #!N 37 return ERROR; #!N 38 } #!N 39 #!N 40 struct arg { #!N 41 Field field; #!N 42 }; #!N 43 #!N 44 static Error AddCellTask(Pointer p) #!N 45 { #!N 46 struct arg *arg = (struct arg *)p; #!N 47 int i, j, numitems, shape, *neighbors_ptr, sum, neighbor; #!N 48 int dim, counts[3]; #!N 49 char *attribute; #!N 50 float *data_ptr, *newdata_ptr, dataaverage; #!N 51 Array connections, data, newdata=NULL, neighbors; #!N 52 Field field; #!N 53 #!N 54 field = arg->field; #!N 55 #!EF #!N #!N #!EC #!N #!N Get the connections component; determine the number of connections and their element type. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 56 #!N 57 connections = (Array)DXGetComponentValue(field,"connections"); #!N 58 if (!connections) { #!N 59 DXSetError(ERROR_MISSING_DATA,"input has no connections"); #!N 60 goto error; #!N 61 } #!N 62 if (!DXGetArrayInfo(connections, &numitems, NULL, NULL, NULL, NULL)) { #!N 63 goto error; #!N 64 } #!N 65 if (!(attribute= #!N 66 (char *)DXGetString((String)DXGetComponentAttribute(field, #!N 67 "connections", #!N 68 "element type")))) { #!N 69 DXSetError(ERROR_MISSING_DATA, #!N 70 "missing connection element type attribute"); #!N 71 goto error; #!N 72 } #!N 73 #!N 74 #!EF #!N #!N #!EC #!N #!N Get the data component, and get the data dependency attribute. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 75 data = (Array)DXGetComponentValue(field,"data"); #!N 76 if (!data) { #!N 77 DXSetError(ERROR_MISSING_DATA,"input has no data"); #!N 78 goto error; #!N 79 } #!N 80 if (!(attribute= #!N 81 (char *)DXGetString((String)DXGetComponentAttribute(field, #!N 82 "data", #!N 83 "dep")))) { #!N 84 DXSetError(ERROR_MISSING_DATA, #!N 85 "missing data dependency attribute"); #!N 86 goto error; #!N 87 } #!N 88 #!EF #!N #!N #!EC #!N #!N In this example, the data must be dependent on the connections. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 89 if (strcmp(attribute,"connections")) { #!N 90 DXSetError(ERROR_INVALID_DATA, #!N 91 "data must be dependent on connections"); #!N 92 goto error; #!N 93 } #!N 94 #!EF #!N #!N #!EC #!N #!N For this example, the data must be floating-point scalar. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 95 if (!DXTypeCheck(data, TYPE_FLOAT, CATEGORY_REAL, 0, NULL)) { #!N 96 DXSetError(ERROR_INVALID_DATA, "data must be floating point scalar"); #!N 97 goto error; #!N 98 } #!EF #!N #!N #!EC #!N #!N Get a pointer to the data. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 99 data_ptr = (float *)DXGetArrayData(data); #!N 100 #!EF #!N #!N #!EC #!N #!N Make a new data component, allocate space in it, and get a pointer to it. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 101 newdata = DXNewArray(TYPE_FLOAT,CATEGORY_REAL, 0); #!N 102 if (!DXAddArrayData(newdata, 0, numitems, NULL)) #!N 103 goto error; #!N 104 newdata_ptr = (float *)DXGetArrayData(newdata); #!N 105 #!EF #!N #!N #!EC #!N #!N If the data is ungridded, use the neighbors component. If it is gridded, use a different method. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 106 if (!DXQueryGridConnections(connections, &dim, counts)) { #!N 107 #!EF #!N #!N #!EC #!N #!N Now the program needs the neighbors of the connections. Note that neighbors can be obtained only for ungridded data: for gridded data there are more efficient ways to determine neighbors. #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 108 neighbors = DXNeighbors(field); #!N 109 if (!neighbors) #!N 110 goto error; #!N 111 neighbors_ptr = (int *)DXGetArrayData(neighbors); #!N 112 if (!DXGetArrayInfo(neighbors, NULL, NULL, NULL, NULL, &shape)) #!N 113 goto error; #!N 114 #!N 115 #!N 116 for (i=0; i 0) { #!N 142 neighbor = i-1; #!N 143 dataaverage = dataaverage + data_ptr[neighbor]; #!N 144 sum++; #!N 145 } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 146 if ((i % (counts[1]-1)) < (counts[1] - 2)) { #!N 147 neighbor = i+1; #!N 148 dataaverage = dataaverage + data_ptr[neighbor]; #!N 149 sum++; #!N 150 } #!EF #!N #!N #!EC #!CForestGreen #!N #!N #!F-adobe-courier-bold-r-normal--18* #!N 151 neighbor = i-(counts[1]-1); #!N 152 if (neighbor>=0 && neighbor=0 && neighbor